Open GoogleCodeExporter opened 8 years ago
I'm not too sure I follow this Issue report fully, but I think my problem may
be related. My WSDL server does not expect the namespace part added to the
input parameters in my request, but the request generated by your code prepends
a "service:" namespace. If I remove it in the generated code for only those
elements all works well.
My modification looks as follows: (after only this change it all works
correctly)
- (void)addElementsToNode:(xmlNodePtr)node
{
if(self.GetInput != 0) {
// xmlAddChild(node, [self.GetInput xmlNodeForDoc:node->doc elementName:@"GetInput" elementNSPrefix:@"service"]);
xmlAddChild(node, [self.GetInput xmlNodeForDoc:node->doc elementName:@"GetInput" elementNSPrefix:@""]);
}
}
Original comment by lailo...@gmail.com
on 13 Oct 2010 at 10:33
Original issue reported on code.google.com by
stiggerm...@gmail.com
on 26 Aug 2010 at 7:06