Forum OpenACS Q&A: Re: tSOAP arrays

Collapse
2: Re: tSOAP arrays (response to 1)
Posted by brian hennessey on
More information...

tSOAP is using SOAP encoding 1.1 whereas the .Net server is using "no encoding". There appears to be no option to turn encoding off/set to none. 

SOAP-procs.tcl:

360     # Default SOAP encoding is SOAP 1.1
361     if { $procvar(encoding) == {} } {
362         set procvar(encoding) SOAP1.1
363     }
364     switch -glob -- $procvar(encoding) {
365         SOAP1.1 - 1.1 {
366             set procvar(encoding) "http://schemas.xmlsoap.org/soap/encoding/"
367         }
368         SOAP1.2 - 1.2 {
369             set procvar(encoding) "http://www.w3.org/2001/soap-encoding"+
370         }
371     }
372

Has anyone gotten around this?

Thanks for any help.