[ http://issues.apache.org/jira/browse/AXISCPP-598?page=comments#action_12314288 ]
Dushshantha Chandradasa commented on AXISCPP-598: ------------------------------------------------- I managed to get the following response message that seems to be correct from the server (captured from TCPMon). HTTP/1.1 200 OK Date: Thu, 23 Jun 2005 03:20:36 GMT Server: Apache/2.0.52 (Win32) Content-Length: 799 Content-Type: text/xml <?xml version='1.0' encoding='utf-8' ?> <SOAP-ENV:Envelope xmlns:SOAP-ENV="http://schemas.xmlsoap.org/soap/envelope/" xmlns:xsd="http://www.w3.org/2001/XMLSchema" xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance"> <SOAP-ENV:Body> <ns1:multilistResponse xmlns:ns1="http://complexlist.test.apache.org"> <multilistReturn><ns2:attrlist><ns2:item><ns2:m_list><ns2:item>never odd or even</ns2:item> <ns2:item>any data string</ns2:item> </ns2:m_list><ns2:name>namepair1</ns2:name> </ns2:item><ns2:item><ns2:m_list><ns2:item>Test</ns2:item> <ns2:item>Complex</ns2:item> </ns2:m_list><ns2:name>namepair2</ns2:name> </ns2:item></ns2:attrlist><ns2:errorcode>0</ns2:errorcode> <ns2:errortext xsi:nil="true"></ns2:errortext> </multilistReturn> </ns1:multilistResponse> </SOAP-ENV:Body> </SOAP-ENV:Envelope> The client throws an Unknown Exception when it tries to get the server response, in the client code (The line is atated below). attrlisterr* ale = ws->multilist(&ml, &al); As the server sends the correct response, the server skeleton generation should be correct (??) I guess the problem should be in client deserialization. Any thoughts please > ComplexLists client fails to execute > ------------------------------------ > > Key: AXISCPP-598 > URL: http://issues.apache.org/jira/browse/AXISCPP-598 > Project: Axis-C++ > Type: Bug > Components: Test > Versions: current (nightly) > Environment: All > Reporter: Dushshantha Chandradasa > Assignee: Dushshantha Chandradasa > > ComplexLists Client fails to run and give the output properly. > Following are the request to the server and the response from the server. > Request > ------- > POST /axis/ComplexListsService HTTP/1.1 > Host: localhost:8888 > Content-Type: text/xml; charset=UTF-8 > SOAPAction: "ComplexListsService#multilist" > Content-Length: 968 > <?xml version='1.0' encoding='utf-8' ?> > <SOAP-ENV:Envelope xmlns:SOAP-ENV="http://schemas.xmlsoap.org/soap/envelope/" > xmlns:xsd="http://www.w3.org/2001/XMLSchema" > xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance"> > <SOAP-ENV:Body> > <ns1:multilist xmlns:ns1="http://complexlist.test.apache.org"> > <ns1:arg_0_0><ns3:item > xmlns:ns3="http://complexlistservice.test.apache.org">never odd or > even</ns3:item> > <ns4:item xmlns:ns4="http://complexlistservice.test.apache.org">any data > string</ns4:item> > </ns1:arg_0_0> > <ns1:arg_1_0><ns6:item > xmlns:ns6="http://complexlistservice.test.apache.org"><ns6:m_list><ns6:item>Apache</ns6:item> > <ns6:item>Axis C++</ns6:item> > </ns6:m_list><ns6:name>namepair1</ns6:name> > </ns6:item><ns8:item > xmlns:ns8="http://complexlistservice.test.apache.org"><ns8:m_list><ns8:item>Test</ns8:item> > <ns8:item>Complex</ns8:item> > </ns8:m_list><ns8:name>namepair2</ns8:name> > </ns8:item></ns1:arg_1_0> > </ns1:multilist> > </SOAP-ENV:Body> > </SOAP-ENV:Envelope> > Response > -------- > HTTP/1.1 200 OK > Date: Fri, 01 Apr 2005 09:27:30 GMT > Server: Apache/2.0.52 (Win32) > Content-Length: 673 > Content-Type: text/xml > <?xml version='1.0' encoding='utf-8' ?> > <SOAP-ENV:Envelope xmlns:SOAP-ENV="http://schemas.xmlsoap.org/soap/envelope/" > xmlns:xsd="http://www.w3.org/2001/XMLSchema" > xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance"> > <SOAP-ENV:Body> > <ns1:multilistResponse xmlns:ns1="http://complexlist.test.apache.org"> > <multilistReturn><ns2:attrlist><ns2:item><ns2:m_list><ns2:item>never odd or > even</ns2:item> > <ns2:item>any data string</ns2:item> > </ns2:m_list><ns2:name xsi:nil="true"></ns2:name> > </ns2:item></ns2:attrlist><ns2:errorcode>0</ns2:errorcode> > <ns2:errortext xsi:nil="true"></ns2:errortext> > </multilistReturn> > </ns1:multilistResponse> > </SOAP-ENV:Body> > </SOAP-ENV:Envelope> > According to Samisa, this seems to be related with the issue AXISCPP-465. -- This message is automatically generated by JIRA. - If you think it was sent incorrectly contact one of the administrators: http://issues.apache.org/jira/secure/Administrators.jspa - For more information on JIRA, see: http://www.atlassian.com/software/jira
