exception code 61

2006-02-27 Thread Tao Yang
Hi there, I am trying moving my Axis C++ client from linux box to windows box but no luck yet - it seems the client loads the dll OK as I saw following from the output window in MS Visual Studio: 'searchClient.exe': Loaded 'C:\opt\utils\axis-c-1-5-win32\bin\AxisXMLParserXerces.dll', No

Re: Re: SIGABRT on Axis C++ client

2006-02-21 Thread Tao Yang
Hi, But I am only using the client lib - my code is talking to a Axis JAVA server deployed in tomcat. Or do you mean even one uses only the client, he has to provide the server dploy description? If so, what it should contain? I tried add one, still same crash though. BTW, I also changed

Re: Problem communicating strings with Apache Axis 1.3 toolkit

2006-02-21 Thread Tao Yang
Just in case - you do remember to convert that string from UTF8 encoding to what ever appropriate before you pass it to std::out, right? since you are using a Java server which would encoding all string in UTF8 in my understanding. Hope your problem has been solved. cheers, Tao

Re: Re: Re: SIGABRT on Axis C++ client

2006-02-21 Thread Tao Yang
Just to clarify - I found the problem. The binary distribution from apache site is not compatible with my local linux installation though I do installed the compact-libstdc++ stuff. I recompile and now it seems I did climb over that hurdle. But still thanks for taking a look. :-) and hope my

AxisC++ 1.5 fail retrieve string arrays in SOAP message?

2006-02-21 Thread Tao Yang
Hi, Again with my Axis C++ 1.5 client running against the Axis JAVA 1.3 server experiment: I have a webservice has interface : String[] search(String getIgnored) the java client handle it perfectly by the way. My c++ client is a bit funky though. The stub generated has following code (I add

Re: AxisC++ 1.5 fail retrieve string arrays in SOAP message?

2006-02-21 Thread Tao Yang
Oops, I forget to say. Even the valid response is observed through the SOAPMonitor, the c++ client code is always reporting: result.size = 0 What could be preventing it extract the strings from the message? Thanks, Tao Tao Yang wrote: Hi, Again with my Axis C++ 1.5 client running against

Re: AxisC++ 1.5 fail retrieve string arrays in SOAP message?

2006-02-21 Thread Tao Yang
. However, nicely the Axis C++ does return the array size; but fail to cope with my null boundary indicator and thought error has happened. This does raise a question though: why Axis C++ can't handle a null item? the java version process this nicely by the way. cheers, Tao Tao Yang wrote

linux distribution don't have ssl support?

2006-02-20 Thread Tao Yang
Hi, I am trying to get Axis C++ 1.5 on linux as client to interact with Axis 1.3 server (java, deployed on tomcat 5) this morning. I notice a few things: 1) The installation document mentioned following configuration: Transport_http:/usr/local/axiscpp_deploy/lib/libaxis3_transport.so

SIGABRT on Axis C++ client

2006-02-20 Thread Tao Yang
HI, I was experimenting with Axis C++ 1.5 this afternoon to writing a client to talk to a Axis Java web service deployed in tomcat. the code is pretty simple - though I call it Index - which only send a string to the web service which later could be pull back through another web service.