I have an Axis 1 web service with an Axis 1 client. Everything is working quite well, and the data I'm getting from the web service is correct. Now, there's a requirement to move the web service to use Axis 2, I'm having problems to get data on the Axis 1 client. I have used SOAPUI to see the format of the response that I'm getting.
With the Axis 1 web service, the response was as follows:
<soapenv:Envelope xmlns:soapenv="http://schemas.xmlsoap.org/soap/envelope/" xmlns:xsd="http://www.w3.org/2001/XMLSchema" xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance">
<soapenv:Body>
<getLastInventoryCountResponse xmlns="http://webservices.supplierconnect.linkserver.wavemark">
<getLastInventoryCountReturn>
<errorCode>1007</errorCode>
<lastInventoryCounts xsi:nil="true"/>
</getLastInventoryCountReturn>
</getLastInventoryCountResponse>
</soapenv:Body>
</soapenv:Envelope>
With the Axis 2 web service, the response is as follows:
<soapenv:Envelope xmlns:soapenv="http://schemas.xmlsoap.org/soap/envelope/">
<soapenv:Body>
<ns:getLastInventoryCountResponse xmlns:ns="http://webservices.supplierconnect.linkserver.wavemark">
<ns:return xsi:type="ax21:LastInventoryCountList" xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance" xmlns:ax21="http://model.supplierconnect.linkserver.wavemark/xsd">
<ax21:errorCode>1007</ax21:errorCode>
<ax21:lastInventoryCounts xsi:nil="true"/>
</ns:return>
</ns:getLastInventoryCountResponse>
</soapenv:Body>
</soapenv:Envelope>
As you can see, the element called "errorCode" has a value of 1007. I'm receiving the errorCode value correctly on the client from both web services. But I have a complex type called "ProductItem" that I receive as part of the response (It doesn't appear in the responses I have included above 'cause it will take me some time to populate the appropriate data on the web service). The ProductItem contains fields of different data types (String, Calendar). What I have noticed is that the response from the Axis 2 web service contains the <axs21> xml tag whereas in the Axis 1 web service, it's not there. So I'm assuming that I have a parsing problem on the client side with the response coming from the Axis 2 web service.
Does anyone know how can I solve this?