Open GoogleCodeExporter opened 9 years ago
i better ad both complete versions
not working (original)
<?xml version="1.0"?>
<soap:Envelope xmlns:soap="http://schemas.xmlsoap.org/soap/envelope/"
xmlns:xsl="http://www.w3.org/1999/XSL/Transform"
xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance"
xmlns:xs="http://www.w3.org/2001/XMLSchema"
xmlns:SupportServiceSvc="http://ws.controller.support.navitas.de/"
xsl:version="1.0">
<soap:Body>
<login xsi:type="SupportServiceSvc:login">
<username>admin</username>
<password>admin</password>
</login>
</soap:Body>
</soap:Envelope>
working (changed)
<?xml version="1.0"?>
<soap:Envelope
xmlns:soap="http://schemas.xmlsoap.org/soap/envelope/"
xmlns:xsl="http://www.w3.org/1999/XSL/Transform"
xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance"
xmlns:xs="http://www.w3.org/2001/XMLSchema"
xmlns:SupportServiceSvc="http://ws.controller.support.navitas.de/"
xsl:version="1.0">
<soap:Body>
<SupportServiceSvc:login>
<username>admin</username>
<password>admin</password>
</SupportServiceSvc:login>
</soap:Body>
</soap:Envelope>
Original comment by dustin.b...@googlemail.com
on 18 Sep 2009 at 3:31
I have the same problem, I had to hack the source code to fix this. It is
because of some namespace issue. I hope
this get fixed soon. If you want I may send my updated source code (it is a
hack, so I am not sure if it will work
for everyone).
Original comment by gabrielg...@gmail.com
on 22 Sep 2009 at 5:47
[deleted comment]
Please send that patch to me and I'll take a look as soon as I get some time.
You can find my contact info on henri.tel
Original comment by hasse...@gmail.com
on 22 Sep 2009 at 9:27
@ gabrielnnrinaldi:please send me your hacks , too ..
Original comment by dustin.b...@googlemail.com
on 25 Sep 2009 at 10:02
Here is my code, please let me know if you need anything! I hope I helped :)
Original comment by gabrielg...@gmail.com
on 25 Sep 2009 at 2:36
Attachments:
This fixed an issue I was seeing with <soap:Text xml:lang="en">Unable to handle
request without a valid action
parameter. Please supply a valid soap action.</soap:Text>.
Original comment by rtwo...@gmail.com
on 2 Oct 2009 at 6:42
sry of my, maybe, stupid question:
if i try to compile the outputted files from gabrielnnrinaldi patch .. ill get
some errors
ServiceSvc.h:27: error: expected specifier-qualifier-list before 'unsignedShort'
.....
ServiceSvc.m:360: warning: receiver 'xs_unsignedShort' is a forward class and
corresponding @interface may
not exist
am i missing something to include the unsignedShort stuff?! i am new to objc
but is this a custom wrapper
class for unsigned short int?
maybe you can help me :)
Original comment by dustin.b...@googlemail.com
on 7 Oct 2009 at 2:27
I have a similar issue with using an ASP.net service. Their expected format
looks like
<soap:Body>
<Request xmlns="http://example.org/">
<Param1>boolean</Param1>
<Param2>int</Param2>
</Request>
</soap:Body>
Personally I don't see how the syntax conforms to XML specs, but I've had to
hack
this into the source to get my app to work.
Perhaps the request could be generated differently depending on where the WSDL
file
came from?
Original comment by Uncorr...@gmail.com
on 14 Oct 2009 at 7:37
[deleted comment]
I have noticed a pattern with this generation example. If the namespace for
the
request is the same as the namespace of the parameters then this bug occurs.
If the
namespaces are different the request is generated correctly.
Original comment by tony%cha...@gtempaccount.com
on 12 Jan 2010 at 10:15
Original issue reported on code.google.com by
dustin.b...@googlemail.com
on 18 Sep 2009 at 3:28Attachments: