Open GoogleCodeExporter opened 9 years ago
As posted in discussion group i added to "serializedFormUsingHeaderElements":
xmlNodePtr methodNode = xmlNewDocNode(doc, NULL, (const xmlChar*)"methodName",
NULL);
xmlNsPtr methodNs = xmlNewNs(methodNode, (const
xmlChar*)"http://namespacehost.com",
(const xmlChar*)"m");
xmlSetNs(methodNode, methodNs);
xmlAddChild(bodyNode, methodNode);
to get the request namespace. But how do I access the function name inside that
function name?
Next step is the namespace in the response.
Original comment by beate...@googlemail.com
on 19 Oct 2009 at 7:16
OK, second problem in the response solved by changing
for(bodyNode=cur->children ; bodyNode != NULL ; bodyNode = bodyNode->next){
to
for(bodyNode=cur->children->children ; bodyNode != NULL ; bodyNode =
bodyNode->next){
I suppose it's just a workaround, but well. it's working.
Original comment by beate...@googlemail.com
on 19 Oct 2009 at 7:53
Original issue reported on code.google.com by
beate...@googlemail.com
on 18 Oct 2009 at 8:47