
March 23rd, 2004, 11:05 PM
|
|
Contributing User
|
|
Join Date: Jun 2003
Posts: 373
Time spent in forums: 3 h 49 m 6 sec
Reputation Power: 6
|
|
|
Please make a sticky! SOAPAction problem solved
Hello! Sorry but I really think this is super important. If someone is trying to develop SOAP stuff for mozilla, they need to know this and it will save them lots of headaches! there is NOT a lot of documentation on this stuff! ok:
http://bugzilla.mozilla.org/show_bug.cgi?id=220827
this bug indicates that if you set the actionURI = "" it will not generate the SOAPAction header at all. Now this header may be deprecated in SOAP 1.2, but for now it is in there. So if you deploy your web service and do not define the SOAPAction as a required field in the WSDL you will have to make a null SOAPAction header from Mozilla. Just set it to
s.actionURI = " " with a SPACE. That small difference cost me like a week of development time since all the resources don't talk about this hardly at all. I really want to save people time! happy SOAPing!
|