summaryrefslogtreecommitdiff
path: root/examples/Naming/test_non_existent.cpp
blob: a78bc26ab2015a50039383e7dafdaca8ab6a633f (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
#include "ace/Naming_Context.h"

int main (int, char *[])
{
  int i;
    
  ACE_Naming_Context * ns_ptr = new ACE_Naming_Context ();
  ACE_Name_Options *name_options = ns_ptr->name_options ();
     
#if defined (ACE_WIN32)
  char * m_argv[] = {"MyName",
                     "-cNODE_LOCAL" ,
                     "-lC:\\temp\\non_existent",
                     NULL};
#else
  char * m_argv[] = {"MyName",
                     "-cNODE_LOCAL" ,
                     "-l/tmp/foobar.mine",
                     NULL};
#endif
  int m_argc = sizeof (m_argv) / sizeof (char *) -1;

  name_options->parse_args (m_argc,m_argv);
  i = ns_ptr->open (ACE_Naming_Context::NODE_LOCAL); 
  cout << ACE_OS::getpid () << ": opened with " << i << endl;
  if (i != 0) return -1;
		
  i = ns_ptr->bind ("Key_Value","Val_Value","-");  

  cout << ACE_OS::getpid () << ": bound with " << i << endl;
		
  return 0;

}