RPC/Encoded to Document/Literal Conversion

Ask a Question related to ASP.NET Web Services, Design and Development.

  1. #1

    Default 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

  2. Similar Questions and Discussions

    1. 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...
    2. 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...
    3. 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...
    4. 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...
    5. 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...
  3. #2

    Default 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

  4. #3

    Default 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,
    Chayakiran
    Unregistered Guest

Posting Permissions

  • You may not post new threads
  • You may post replies
  • You may not post attachments
  • You may not edit your posts

1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 41 42 43 44 45 46 47 48 49 50 51 52 53 54 55 56 57 58 59 60 61 62 63 64 65 66 67 68 69 70 71 72 73 74 75 76 77 78 79 80 81 82 83 84 85 86 87 88 89 90 91 92 93 94 95 96 97 98 99 100 101 102 103 104 105 106 107 108 109 110 111 112 113 114 115 116 117 118 119 120 121 122 123 124 125 126 127 128 129 130 131 132 133 134 135 136 137 138 139