my suds soap program generates a soap header like the following
<SOAP-ENV:Envelope xmlns:ns3="http://schemas.xmlsoap.org/soap/envelope/" xmlns:ns0="http://userregistration.usermanagement.core.soap.yodlee.com" xmlns:ns1="http://common.soap.yodlee.com" xmlns:ns2=" http://login.ext.soap.yodlee.com" xmlns:xsi=" http://www.w3.org/2001/XMLSchema-instance" xmlns:SOAP-ENV=" http://schemas.xmlsoap.org/soap/envelope/%22%3E SOAP-ENV:Header/
now, i want to add http://www.w3.org/2001/XMLSchema in it , as i am getting a
<?xml version='1.0' encoding='utf-8'?><soapenv:Envelope xmlns:soapenv=" http://schemas.xmlsoap.org/soap/envelope/%22%3Esoapenv:Bodysoapenv:Fault<faultcode>soapenv:Server</faultcode><faultstring>org.apache.axis2.databinding.ADBException: Any type element type has not been given</faultstring><detail /></soapenv:Fault></soapenv:Body></soapenv:Envelope>
error from my soap server for anyType data
Please let me know how to do the same.
Thanks in advance
sudipta
solved it using the MessagePlugin apis , regards
On Mon, Nov 29, 2010 at 6:17 PM, Sudipta Banerjee < sudipta.banerjee@moneysights.com> wrote:
my suds soap program generates a soap header like the following
<SOAP-ENV:Envelope xmlns:ns3="http://schemas.xmlsoap.org/soap/envelope/" xmlns:ns0="http://userregistration.usermanagement.core.soap.yodlee.com" xmlns:ns1="http://common.soap.yodlee.com" xmlns:ns2=" http://login.ext.soap.yodlee.com" xmlns:xsi=" http://www.w3.org/2001/XMLSchema-instance" xmlns:SOAP-ENV=" http://schemas.xmlsoap.org/soap/envelope/%22%3E SOAP-ENV:Header/
now, i want to add http://www.w3.org/2001/XMLSchema in it , as i am getting a
<?xml version='1.0' encoding='utf-8'?><soapenv:Envelope xmlns:soapenv="
http://schemas.xmlsoap.org/soap/envelope/%22%3Esoapenv:Bodysoapenv:Fault<faultcode>soapenv:Server</faultcode><faultstring>org.apache.axis2.databinding.ADBException: Any type element type has not been given</faultstring><detail /></soapenv:Fault></soapenv:Body></soapenv:Envelope>
error from my soap server for anyType data
Please let me know how to do the same.
Thanks in advance
sudipta