
Originally Posted by
smies It begins with that it missed the request header SOAPAction. I didn't know SOAP services need that. It wasn't really a problem because I could add the header to the request (But it cost a lot of time to find out that one...).
After I fixed that the server gave me back another error: "Internal protocol error: Illegal parent: .". I found out that xmlns:soap attribute in the Envelope node was different from the working request. AjxSoapDoc uses 'http://www.w3.org/2003/05/soap-envelope' but the other working request used 'http://schemas.xmlsoap.org/soap/envelope/'. After changing this, the request worked (kind off, the xml returned back isn't parsed write but that is a different problem). Is this a bug or is there something wrong with my SOAP service?