Hi, I try to deserialize the SOAPMessage below which I get as a response to my RPC-Request. But I do not know how to set the return-type for my call an how to deserialize this response. I use a DII-Client because the WSDL2Java-Tool could not manage the WSDL file. <id/> and <cnc/> are long-type. Maybe somebody has a good idea. Thanx! Oli
<?xml version="1.0" encoding="UTF-8"?> <SOAP-ENV:Envelope xmlns:SOAP-ENV="http://schemas.xmlsoap.org/soap/envelope/" xmlns:SOAP-ENC="http://schemas.xmlsoap.org/soap/encoding/" xmlns:xsi="http://www.w3.org/1999/XMLSchema-instance" xmlns:xsd="http://www.w3.org/1999/XMLSchema" xmlns:svapi="http://ssugianto:2001" xmlns:svas="http://ssugianto:2001/svas.xsd"> <SOAP-ENV:Body SOAP-ENV:encodingStyle="http://schemas.xmlsoap.org/soap/encoding/"> <svas:connectRes> <status xsi:type="svas:status"> <id>0</id> </status> <cnc>32004968</cnc> </svas:connectRes> </SOAP-ENV:Body> </SOAP-ENV:Envelope>