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
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
|
// $Id$
#include "ace/Naming_Context.h"
ACE_RCSID(Naming, test_non_existent, "$Id$")
int main (int, char *[])
{
#if defined (ACE_HAS_WCHAR)
int i;
ACE_Naming_Context *ns_ptr;
ACE_NEW_RETURN (ns_ptr,
ACE_Naming_Context,
1);
ACE_Name_Options *name_options = ns_ptr->name_options ();
const char *m_argv[] =
{
"MyName",
"-cNODE_LOCAL" ,
#if defined (ACE_WIN32)
"-lC:\\temp\\non_existent",
#else
"-l/tmp/foobar.mine",
#endif /* ACE_WIN32 */
NULL
};
int m_argc =
sizeof (m_argv) / sizeof (char *) -1;
name_options->parse_args (m_argc,
(char **) m_argv);
i = ns_ptr->open (ACE_Naming_Context::NODE_LOCAL);
ACE_DEBUG ((LM_DEBUG,
"(%P) opened with %d\n",
i));
if (i != 0)
return -1;
i = ns_ptr->bind ("Key_Value",
"Val_Value",
"-");
ACE_DEBUG ((LM_DEBUG,
"(%P) bound with %d\n",
i));
#else /* ACE_HAS_WCHAR */
ACE_ERROR ((LM_INFO, ACE_TEXT ("Naming requires wchar_t support to run.\n")));
#endif /* ACE_HAS_WCHAR */
return 0;
}
|