Corba call parameter - Object
This is a discussion on Corba call parameter - Object ; in my idl is function:
void MyFunction(in wstring wsMsg);
C++ code is
myVar->MyFunction( L"" );
if I used this c++ code with linux compiler (don't remember version),
then all worked OK.
But with Visual C++ .NET it got an error.
...
-
Corba call parameter
in my idl is function:
void MyFunction(in wstring wsMsg);
C++ code is
myVar->MyFunction( L"" );
if I used this c++ code with linux compiler (don't remember version),
then all worked OK.
But with Visual C++ .NET it got an error.
Why can't use empty widestring?
myVar->MyFunction( L"TEST" ); compiled fine.
-
Re: Corba call parameter
On Tue, 01 Feb 2005 19:46:43 +0200, Indrek Mägi
<polemeili@hotmail.com> wrote:
>
>in my idl is function:
>void MyFunction(in wstring wsMsg);
>
>C++ code is
>myVar->MyFunction( L"" );
>
>
>if I used this c++ code with linux compiler (don't remember version),
>then all worked OK.
>But with Visual C++ .NET it got an error.
It compiled, but using this function got Corba::Exception.
>
>Why can't use empty widestring?
>myVar->MyFunction( L"TEST" ); compiled fine.
this get not exception.
>
>
>
Similar Threads
-
By Application Development in forum Java
Replies: 4
Last Post: 07-07-2007, 04:14 PM
-
By Application Development in forum Java
Replies: 4
Last Post: 10-27-2006, 02:17 PM
-
By Application Development in forum Object
Replies: 4
Last Post: 10-27-2006, 02:17 PM
-
By Application Development in forum Java
Replies: 1
Last Post: 09-13-2005, 05:16 PM
-
By Application Development in forum Object
Replies: 2
Last Post: 05-25-2004, 10:44 PM