• Post Reply Bookmark Topic Watch Topic
  • New Topic
programming forums Java Mobile Certification Databases Caching Books Engineering Micro Controllers OS Languages Paradigms IDEs Build Tools Frameworks Application Servers Open Source This Site Careers Other Pie Elite all forums
this forum made possible by our volunteer staff, including ...
Marshals:
  • Campbell Ritchie
  • Ron McLeod
  • Paul Clapham
  • Tim Cooke
  • Devaka Cooray
Sheriffs:
  • Liutauras Vilda
  • paul wheaton
  • Rob Spoor
Saloon Keepers:
  • Tim Moores
  • Stephan van Hulst
  • Tim Holloway
  • Piet Souris
  • Mikalai Zaikin
Bartenders:
  • Carey Brown
  • Roland Mueller

how to generate WS client in Oracle app server

 
Greenhorn
Posts: 1
  • Mark post as helpful
  • send pies
    Number of slices to send:
    Optional 'thank-you' note:
  • Quote
  • Report post to moderator
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
 
There is no "i" in denial. Tiny ad:
We need your help - Coderanch server fundraiser
https://coderanch.com/wiki/782867/Coderanch-server-fundraiser
reply
    Bookmark Topic Watch Topic
  • New Topic