Re: solution to deserializing an org.w3c.dom.Element in a SOAP client

2002-10-25 Thread jingkun . hu
PROTECTED]> To: <[EMAIL PROTECTED]> Sent: Thursday, October 24, 2002 11:02 PM Subject: Re: solution to deserializing an org.w3c.dom.Element in a SOAP client > I do .. its because SOAP (v1.1 at least) does not have a fixed > rule for determining the response encoding style. So th

Re: solution to deserializing an org.w3c.dom.Element in a SOAP client

2002-10-25 Thread Scott Nichol
, 2002 11:02 PM Subject: Re: solution to deserializing an org.w3c.dom.Element in a SOAP client > I do .. its because SOAP (v1.1 at least) does not have a fixed > rule for determining the response encoding style. So there's > a heuristic in Apache SOAP; see org.apache.soap.server.RPCRo

Re: solution to deserializing an org.w3c.dom.Element in a SOAP client

2002-10-24 Thread Sanjiva Weerawarana
--- Original Message - From: "Scott Nichol" <[EMAIL PROTECTED]> To: <[EMAIL PROTECTED]> Sent: Friday, October 25, 2002 4:50 AM Subject: Re: solution to deserializing an org.w3c.dom.Element in a SOAP client > I'm glad you have a working solution. It still does not

Re: solution to deserializing an org.w3c.dom.Element in a SOAP client

2002-10-24 Thread Scott Nichol
er 24, 2002 5:28 PM Subject: solution to deserializing an org.w3c.dom.Element in a SOAP client > > > > > I found the answer: > >SOAPMappingRegistry smr = new SOAPMappingRegistry(); > XMLParameterSerializer xmlSer = new XMLParameterSerializer(); > > // Ma

Re: deserializing an org.w3c.dom.Element in a SOAP client

2002-10-24 Thread Scott Nichol
02 4:36 PM Subject: Re: deserializing an org.w3c.dom.Element in a SOAP client > > > > > Here is what the TCPMON tool shows that I am getting back from the web > service: > > > http://schemas.xmlsoap.org/soap/envelope/"; > xmlns:xsd="http://www.w3.org/2001/XMLS

solution to deserializing an org.w3c.dom.Element in a SOAP client

2002-10-24 Thread David Q Levitt
MUS cc: Subject: Re: deserializing an org.w3c.dom.Element in a SOAP client

deserializing an org.w3c.dom.Element in a SOAP client

2002-10-24 Thread David Q Levitt
Is there a way to deserialize an org.w3c.dom.Element in a SOAP client ? I am using soapCall.setEncodingStyleURI(Constants.NS_URI_LITERAL_XML); but apparently that's not enough. Do I need to create a mapping registry for deserializing org.w3c.dom.Element and if so what deserializer do

Re: deserializing an org.w3c.dom.Element in a SOAP client

2002-10-24 Thread Scott Nichol
October 24, 2002 3:50 PM Subject: deserializing an org.w3c.dom.Element in a SOAP client > > > > > Is there a way to deserialize an org.w3c.dom.Element in a SOAP client ? I > am using > soapCall.setEncodingStyleURI(Constants.NS_URI_LITERAL_XML); > but apparentl

Re: deserializing an org.w3c.dom.Element in a SOAP client

2002-10-24 Thread David Q Levitt
Scott Nichol cc: