Hello !
I have created a simple web service for document literal style, I need to generate client on Oracle application server and when i have try to call that web service am getting following response:
faultcode=ns1:Client,faultstring=No such operation 'GOLDBANotificationOutput',ns2:hostname=ggndglda3,
please find attached wsdl:
<?xml version='1.0' encoding='UTF-8' ?>
<definitions
xmlns:wsdl='http://schemas.xmlsoap.org/wsdl/'
xmlns:xsd='http://www.w3.org/2001/XMLSchema'
xmlns='http://schemas.xmlsoap.org/wsdl/'
xmlns:wsdlns='http://10.239.30.79/'
xmlns
ime='http://schemas.xmlsoap.org/ws/2002/04/dime/wsdl/'
xmlns:soap='http://schemas.xmlsoap.org/wsdl/soap/'
xmlns:typens='http://tempuri.org/WSBANotification/type/'
targetNamespace="http://10.239.30.79/"
name='WSGoldBANotificationService'>
<types>
<schema
targetNamespace='http://tempuri.org/WSBANotification/type/'
xmlns='http://www.w3.org/2001/XMLSchema'
xmlns:SOAP-ENC='http://schemas.xmlsoap.org/soap/encoding/'
xmlns:wsdl='http://schemas.xmlsoap.org/wsdl/'
xmlns:xsd='http://www.w3.org/2001/XMLSchema'
elementFormDefault='qualified'>
<element name="BANRequest" type="xsd:string"/>
<element name="GOLDBANotificationOutput" type="xsd:string"/>
</schema>
</types>
<message name='GoldBANotificationInput'>
<part name='BANRequest' element='typens:BANRequest'/>
</message>
<message name='GoldBANotificationOutput'>
<part name='GOLDBANotificationOutput' element='typens:GOLDBANotificationOutput'/>
</message>
<portType name='Ordering_BanInterface_servicesPortType'>
<operation name='BANRequest'>
<input message='wsdlns:GoldBANotificationInput'/>
<output message='wsdlns:GoldBANotificationOutput'/>
</operation>
</portType>
<binding name='Ordering_BanInterface_servicesBinding' type='wsdlns
rdering_BanInterface_servicesPortType'>
<
soap:binding style='document' transport='http://schemas.xmlsoap.org/soap/http'/>
<operation name='BANRequest'>
<soap
peration soapAction=''/>
<input>
<soap:body
use='literal'
parts='BANRequest'/>
</input>
<output>
<soap:body
use='literal'
parts='GOLDBANotificationOutput'/>
</output>
</operation>
</binding>
<service name='WSGoldBANotificationService' >
<port name='WSGoldBANotification' binding='wsdlns
rdering_BanInterface_servicesBinding' >
<soap:address location='http://10.237.93.26/home/gold/web-services/WSGoldBANotification'/>
</port>
</service>
</definitions>
Please let me know the process to generate client proxy..
Thanks & Regards,
Anshul