Re[4]: please, help with "no deserializer found ..." message
Vladimir Brezhnev <[email protected]>
| Newsgroups | gmane.text.xml.soap.user |
|---|---|
| Organization | Portal |
| Message-ID | <[email protected]> |
Hello Scott,
Tuesday, November 9, 2004, 5:49:03 PM, you wrote:
SN> Your service class is written to use the messaging API:
SN> public void SubmitReq(Envelope envelope, SOAPContext
SN> soapcontext, SOAPContext soapcontext1)
SN> Your deployment descriptor should read
SN> <isd:service
SN> xmlns:isd="http://xml.apache.org/xml-soap/deployment"
SN>
SN> id="http://www.3gpp.org/ftp/Specs/archive/23_series/23.140/schema/REL-5-MM7-1-2"
SN> type="message"
SN> >
SN> You do not need the type mappings in the deployment
SN> descriptor, since your code will be responsible for interpretting
SN> the XML.
Does not work. Looks like there is no type="message" attribute in
deploy.xml.
SOAP answer:
<faultstring>No Deserializer found to deserialize a
'http://www.3gpp.org/ftp/Specs/archive/23_series/23.140/schema/REL-5-MM7-1-2:MM7Version'
using encoding style 'http://schemas.xmlsoap.org/soap/encoding/'.</faultstring>
SOAP version 2.3.1 last build.
deploy.xml:
<?xml version="1.0"?>
<isd:service xmlns:isd="http://xml.apache.org/xml-soap/deployment"
id="http://www.3gpp.org/ftp/Specs/archive/23_series/23.140/schema/REL-5-MM7-1-2"
type="message">
<isd:provider type="java"
scope="Application"
methods="SubmitReq CancelReq">
<isd:java class="com.ericsson.services.mms.sdk.vasp.samples.sim.MMCRelay"
static="false"/>
</isd:provider>
<isd:faultListener>org.apache.soap.server.DOMFaultListener</isd:faultListener>
</isd:service>
--
Best regards,
Vladimir