Hi Anne Below is the WSDL found at: http://192.168.1.150:8880/axis/services/ProvidentConnector_ProvidentRece iver_ProvidentWSPortSoap?WSDL
Patrick <?xml version="1.0" encoding="UTF-8" ?> - <wsdl:definitions targetNamespace="http://namespace.accenture.com/" xmlns:apachesoap="http://xml.apache.org/xml-soap" xmlns:impl="http://namespace.accenture.com/" xmlns:intf="http://namespace.accenture.com/" xmlns:soapenc="http://schemas.xmlsoap.org/soap/encoding/" xmlns:wsdl="http://schemas.xmlsoap.org/wsdl/" xmlns:wsdlsoap="http://schemas.xmlsoap.org/wsdl/soap/" xmlns:xsd="http://www.w3.org/2001/XMLSchema"> - <wsdl:types> - <schema targetNamespace="http://namespace.accenture.com/" xmlns="http://www.w3.org/2001/XMLSchema"> - <element name="SOPResponse"> - <complexType> - <sequence> <element name="ProvidentResponse" type="tns1:ProvidentResponse" /> </sequence> </complexType> </element> - <element name="SOPResponseResponse"> - <complexType> - <sequence> <element name="part" type="xsd:string" /> </sequence> </complexType> </element> </schema> </wsdl:types> - <wsdl:message name="SOPResponseResponse"> <wsdl:part element="impl:SOPResponseResponse" name="parameters" /> </wsdl:message> - <wsdl:message name="SOPResponseRequest"> <wsdl:part element="impl:SOPResponse" name="parameters" /> </wsdl:message> - <wsdl:portType name="ProvidentConnector_ProvidentReceiver_ProvidentWSPortSoap"> - <wsdl:operation name="SOPResponse" parameterOrder=""> <wsdl:input message="impl:SOPResponseRequest" name="SOPResponseRequest" /> <wsdl:output message="impl:SOPResponseResponse" name="SOPResponseResponse" /> </wsdl:operation> </wsdl:portType> - <wsdl:binding name="ProvidentConnector_ProvidentReceiver_ProvidentWSPortSoapSoapBindin g" type="impl:ProvidentConnector_ProvidentReceiver_ProvidentWSPortSoap"> <wsdlsoap:binding style="document" transport="http://schemas.xmlsoap.org/soap/http" /> - <wsdl:operation name="SOPResponse"> <wsdlsoap:operation soapAction="http://namespace.accenture.com/ProvidentConnector_ProvidentR eceiver_ProvidentWSPort/SOPResponse" /> - <wsdl:input name="SOPResponseRequest"> <wsdlsoap:body namespace="http://namespace.accenture.com/" use="literal" /> </wsdl:input> - <wsdl:output name="SOPResponseResponse"> <wsdlsoap:body namespace="http://namespace.accenture.com/" use="literal" /> </wsdl:output> </wsdl:operation> </wsdl:binding> - <wsdl:service name="ProvidentConnector_ProvidentReceiver_ProvidentWSPort"> - <wsdl:port binding="impl:ProvidentConnector_ProvidentReceiver_ProvidentWSPortSoapSo apBinding" name="ProvidentConnector_ProvidentReceiver_ProvidentWSPortSoap"> <wsdlsoap:address location="http://192.168.1.150:8880/axis/services/ProvidentConnector_Pro videntReceiver_ProvidentWSPortSoap" /> </wsdl:port> </wsdl:service> </wsdl:definitions> -----Original Message----- From: Anne Thomas Manes [mailto:[EMAIL PROTECTED] Sent: 07 July 2005 14:57 To: [email protected] Subject: Re: Error seen on BizTalk client request to my web service Patrick, This obviously isn't the WSDL file for your test Axis service. Because that WSDL file will specify the correct location URI. Please send me the WSDL that you obtain by adding the ?wsdl to the location URI. Anne On 7/7/05, Patrick Quinn <[EMAIL PROTECTED]> wrote: > Hi Anne > > The client soap request, client code, error message, WSDL, and WSDD > are > below: > > Thanks > > Pat > > *CLIENT SOAP REQUEST* > > <?xml version="1.0" encoding="UTF8"?> > <soapenv:Envelope > xmlsn:soapenv="http://schemas.xmlsoap.org/soap/envelope/" > xmlns:xsd="http://www.w3.org/2001/XMLSchema" > xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance"> > <soapenv:Body> > <SOPResponse xmlns="http://namespace.accenture.com/"> > nsl:ProvidentResponse > xmlns:nsl="http://ProvidentConnector.ProvidentResponseToOrch"> > <REQUESTID xmlns="">1</REQUESTID> > <SO_RESULT_CODE xmlns="">2</SO_RESULT_CODE> > <SO_ERR_DESC xmlns="">blank</SO_ERR_DESC> > <XML_SORESULT xmlns="">0</XML_SORESULT> > </nsl:ProvidentResponse> > </SOPResponse> > </soapenv:Body> > </soapenv:Envelope> > > > *client code* > > > com.accenture.namespace.ProvidentConnector_ProvidentReceiver_Provident > WS > Port wsPort = new > com.accenture.namespace.ProvidentConnector_ProvidentReceiver_ProvidentWS > PortLocator(); > > ProvidentConnector_ProvidentReceiver_ProvidentWSPortSoap pt = > wsPort.getProvidentConnector_ProvidentReceiver_ProvidentWSPortSoap(ser > vi > ceURL); > > Where serviceURL is configurable, and set currently to: > http://192.168.1.150:8880/axis/services/ProvidentConnector_ProvidentRe > ce > iver_ProvidentWSPortSoap > > > > *error* > > > ERROR!!!!org.xml.sax.SAXException: Deserializing parameter > 'ProvidentResponse': could not find deserializer for type > {http://ProvidentConnector.ProvidentResponseToOrch}ProvidentResponse > > > *WSDD file* > > <deployment > xmlns="http://xml.apache.org/axis/wsdd/" > xmlns:java="http://xml.apache.org/axis/wsdd/providers/java"> > > <!-- Services from > ProvidentConnector_ProvidentReceiver_ProvidentWSPort WSDL service --> > > <service > name="ProvidentConnector_ProvidentReceiver_ProvidentWSPortSoap" > provider="java:RPC" style="wrapped" use="literal"> > <parameter name="wsdlTargetNamespace" > value="http://namespace.accenture.com/"/> > <parameter name="wsdlServiceElement" > value="ProvidentConnector_ProvidentReceiver_ProvidentWSPort"/> > <parameter name="schemaQualified" > value="http://ProvidentConnector.ProvidentResponseToOrch,http://namesp > ac > e.accenture.com/"/> > <parameter name="wsdlServicePort" > value="ProvidentConnector_ProvidentReceiver_ProvidentWSPortSoap"/> > <parameter name="className" > value="com.accenture.namespace.ProvidentConnector_ProvidentReceiver_Prov > identWSPortSoapSkeleton"/> > <parameter name="wsdlPortType" > value="ProvidentConnector_ProvidentReceiver_ProvidentWSPortSoap"/> > <parameter name="typeMappingVersion" value="1.2"/> > <parameter name="allowedMethods" value="*"/> > > <typeMapping > xmlns:ns="http://ProvidentConnector.ProvidentResponseToOrch" > qname="ns:ProvidentResponse" > > type="java:ProvidentResponseToOrch.ProvidentConnector.ProvidentResponse" > serializer="org.apache.axis.encoding.ser.BeanSerializerFactory" > > deserializer="org.apache.axis.encoding.ser.BeanDeserializerFactory" > encodingStyle="" > /> > </service> > </deployment> > > > > > * WSDL file * > > <?xml version="1.0" encoding="utf-8"?> > <wsdl:definitions > xmlns:s1="http://ProvidentConnector.ProvidentResponseToOrch" > xmlns:http="http://schemas.xmlsoap.org/wsdl/http/" > xmlns:soap="http://schemas.xmlsoap.org/wsdl/soap/" > xmlns:s="http://www.w3.org/2001/XMLSchema" > xmlns:soapenc="http://schemas.xmlsoap.org/soap/encoding/" > xmlns:tns="http://namespace.accenture.com/" > xmlns:tm="http://microsoft.com/wsdl/mime/textM > atching/" xmlns:mime="http://schemas.xmlsoap.org/wsdl/mime/" > targetNamespace="http://namespace.accenture.com/" > xmlns:wsdl="http://schemas.xmlsoap.org/wsdl/"> > <wsdl:types> > <s:schema elementFormDefault="qualified" > targetNamespace="http://namespace.accenture.com/"> > <s:import > namespace="http://ProvidentConnector.ProvidentResponseToOrch" /> > <s:element name="SOPResponse"> > <s:complexType> > <s:sequence> > <s:element minOccurs="0" maxOccurs="1" > ref="s1:ProvidentResponse" /> > </s:sequence> > </s:complexType> > </s:element> > <s:element name="SOPResponseResponse"> > <s:complexType> > <s:sequence> > <s:element minOccurs="0" maxOccurs="1" name="part" > type="s:string" /> > </s:sequence> > </s:complexType> > </s:element> > </s:schema> > <s:schema elementFormDefault="qualified" > targetNamespace="http://ProvidentConnector.ProvidentResponseToOrch"> > <s:element name="ProvidentResponse" type="s1:ProvidentResponse" /> > <s:complexType name="ProvidentResponse"> > <s:sequence> > <s:element minOccurs="0" maxOccurs="1" form="unqualified" > name="REQUESTID" type="s:string" /> > <s:element minOccurs="0" maxOccurs="1" form="unqualified" > name="SO_RESULT_CODE" type="s:string" /> > <s:element minOccurs="0" maxOccurs="1" form="unqualified" > name="SO_PROV_DATE" type="s:string" /> > <s:element minOccurs="0" maxOccurs="1" form="unqualified" > name="SO_ERR_DESC" type="s:string" /> > <s:element minOccurs="0" maxOccurs="1" form="unqualified" > name="XML_SORESULT" type="s:string" /> </s:sequence> > </s:complexType> > </s:schema> > </wsdl:types> > <wsdl:message name="SOPResponseSoapIn"> > <wsdl:part name="parameters" element="tns:SOPResponse" /> > </wsdl:message> <wsdl:message name="SOPResponseSoapOut"> > <wsdl:part name="parameters" element="tns:SOPResponseResponse" /> > </wsdl:message> > <wsdl:portType > name="ProvidentConnector_ProvidentReceiver_ProvidentWSPortSoap"> > <wsdl:operation name="SOPResponse"> > <wsdl:input message="tns:SOPResponseSoapIn" /> > <wsdl:output message="tns:SOPResponseSoapOut" /> > </wsdl:operation> > </wsdl:portType> > <wsdl:binding > name="ProvidentConnector_ProvidentReceiver_ProvidentWSPortSoap" > type="tns:ProvidentConnector_ProvidentReceiver_ProvidentWSPortSoap"> > <soap:binding transport="http://schemas.xmlsoap.org/soap/http" > style="document" /> > <wsdl:operation name="SOPResponse"> > <soap:operation > soapAction="http://namespace.accenture.com/ProvidentConnector_ProvidentR > eceiver_ProvidentWSPort/SOPResponse" style="document" /> > <wsdl:input> > <soap:body use="literal" /> > </wsdl:input> > <wsdl:output> > <soap:body use="literal" /> > </wsdl:output> > </wsdl:operation> > </wsdl:binding> > <wsdl:service > name="ProvidentConnector_ProvidentReceiver_ProvidentWSPort"> > <documentation xmlns="http://schemas.xmlsoap.org/wsdl/">BizTalk > assembly "ProvidentConnector, Version=1.0.0.0, Culture=neutral, > PublicKeyToken=ae7c9e263f196bff" published web service.</documentation> > <wsdl:port > name="ProvidentConnector_ProvidentReceiver_ProvidentWSPortSoap" > binding="tns:ProvidentConnector_ProvidentReceiver_ProvidentWSPortSoap"> > <soap:address > location="http://localhost/ProvidentConnector/ProvidentWSPort.asmx" /> > </wsdl:port> > </wsdl:service> > </wsdl:definitions> > > This e-mail and any attachments may be confidential and/or legally > privileged. If you have received this e-mail and you are not a named > addressee, please inform Evolving Systems TIS at [EMAIL PROTECTED] and > then delete the e-mail from your system. If you are not a named > addressee you must not use, disclose, distribute, copy, print or rely > on this e-mail. To ensure regulatory compliance and for the protection > of our clients and business, Evolving Systems may monitor and read > e-mails sent to and from its servers. Although Evolving Systems > routinely screens for viruses, addressees should scan this e-mail and > any attachments for viruses. Evolving Systems makes no representation > or warranty as to the absence of viruses in this e-mail or any > attachments. > > Registered Office: One Angel Square, Torrents Street, London. EC1V > 1PL. Registered number 2325854 > This e-mail and any attachments may be confidential and/or legally privileged. If you have received this e-mail and you are not a named addressee, please inform Evolving Systems TIS at [EMAIL PROTECTED] and then delete the e-mail from your system. If you are not a named addressee you must not use, disclose, distribute, copy, print or rely on this e-mail. To ensure regulatory compliance and for the protection of our clients and business, Evolving Systems may monitor and read e-mails sent to and from its servers. Although Evolving Systems routinely screens for viruses, addressees should scan this e-mail and any attachments for viruses. Evolving Systems makes no representation or warranty as to the absence of viruses in this e-mail or any attachments. Registered Office: One Angel Square, Torrents Street, London. EC1V 1PL. Registered number 2325854
