Ask a Question related to ASP.NET Web Services, Design and Development.
-
Jennifer #1
RPC/Encoded to Document/Literal Conversion
How do we convert an RPC/Encoded WSDL to a Document/Literal WSDL? Do any
tools exist?
Jennifer Guest
-
Add field to PDF document before conversion
Ok, this is for those who knows the guts of the PDF document. I have a routine that was handed down to me that creates a PDF document in the... -
Document-literal style web services
I created a simple web service that returns a query (Querybean). It works great! Now, I'm being told that I have to use an XML schema that was... -
Document-literal web services
I created a simple web service that returns a query (Querybean). It works great! Now, I'm being told that I have to use an XML schema that was... -
Problem with consuming document/literal web services.
I'm having problems consuming a document literal web service with <cfinvoke> in a CFM page. I'm receiving the following error. Could not generate... -
Creating a Document-Literal Web Service
I'm trying to help a customer set up a Document Literal service under his CF environment. I'll be calling from an Axis/Castor client, but I'm not... -
Dilip Krishnan #2
Re: RPC/Encoded to Document/Literal Conversion
Hello Jennifer,
Its just a matter of changing an attribute in the wsdl
Within your wsdl in your bindings you should see something like this... notice
the *literal*
<soap:binding style="document" transport="http://schemas.xmlsoap.org/soap/http"/>
...
<operation name="CreateAccount">
<soap:operation soapAction="http://abc/CreateAccount"/>
<input>
<soap:body use="literal"/>
</input>
<output>
<soap:body use="literal"/>
</output>
<fault name="AcctFault">
<soap:fault name="AcctFault" use="literal"/>
</fault>
</operation>
HTH
Regards,
Dilip Krishnan
MCAD, MCSD.net
dkrishnan at geniant dot com
[url]http://www.geniant.com[/url]
> How do we convert an RPC/Encoded WSDL to a Document/Literal WSDL? Do
> any tools exist?
>
Dilip Krishnan Guest
-
Unregistered #3
RPC/Encoded to Document/Literal Conversion
I am trying to achieve the same.
Can you please provide the steps to do it?
Any references will be useful too.
Thanks,
ChayakiranUnregistered Guest



Reply With Quote

