Closed GoogleCodeExporter closed 9 years ago
[deleted comment]
One more thing: by passing the WSDL over to soapUI, it creates this schema:
<soapenv:Envelope
xmlns:soapenv="http://schemas.xmlsoap.org/soap/envelope
xmlns:tem="http://tempuri.org/"
xmlns:i="http://www.w3.org/2001/XMLSchema-instance"
xmlns:d="http://www.w3.org/2001/XMLSchema"
xmlns:c="http://schemas.xmlsoap.org/soap/encoding/"
xmlns:v="http://schemas.xmlsoap.org/soap/envelope/">
<soapenv:Header/>
<soapenv:Body>
<tem:ConvalidaLogin>
<!--Optional:-->
<tem:Username>?</tem:Username>
<!--Optional:-->
<tem:password>?</tem:password>
</tem:ConvalidaLogin>
</soapenv:Body>
</soapenv:Envelope>
Instead, the RequestDump was:
<v:Envelope
xmlns:i="http://www.w3.org/2001/XMLSchema-instance"
xmlns:d="http://www.w3.org/2001/XMLSchema"
xmlns:c="http://schemas.xmlsoap.org/soap/encoding/"
xmlns:v="http://schemas.xmlsoap.org/soap/envelope/">
<v:Header />
<v:Body>
<convalidaLogin id="o0" c:root="1">
<username i:type="d:string">?</username>
<password i:type="d:string">?</password>
</convalidaLogin>
</v:Body>
</v:Envelope>
I'm pretty sure this is the problem, but how can I solve it? The SOAP version
on the server-side is 1.1, and I have set the envelope as 11:
SoapSerializationEnvelope _envelope = new
SoapSerializationEnvelope(SoapEnvelope.VER11);
Original comment by francesc...@gmail.com
on 24 Jun 2011 at 1:16
you might want to look at wsdl2ksoap instead. Seems a more maintained project.
Original comment by mosa...@gmail.com
on 5 Jul 2011 at 6:08
Close as invalid since it is a generator problem and not a ksoap problem from
what I can tell.
Original comment by mosa...@gmail.com
on 5 Aug 2011 at 6:05
Original issue reported on code.google.com by
francesc...@gmail.com
on 24 Jun 2011 at 11:08