web service

A

Anonymous

I have build a web service, document literal encoding, I can see the method,
but when I get to the parameters in the wizard, there is nothing there? Do I
need to code the web service in some particular way? The method is expecting
a string. Here is a snippet of the WSDL:

<schema elementFormDefault="qualified" targetNamespace="urn:....webservices"
xmlns="http://www.w3.org/2001/XMLSchema">
<element name="xmlString" type="xsd:string" />
<element name="submitDocumentReturn" type="xsd:string" />
</schema>
</wsdl:types>
<wsdl:message name="submitDocumentResponse">
<wsdl:part element="impl:submitDocumentReturn" name="submitDocumentReturn"
/>
</wsdl:message>
<wsdl:message name="submitDocumentRequest">
<wsdl:part element="impl:xmlString" name="xmlString" />
</wsdl:message>
.......

Any help, please?
 

Ask a Question

Want to reply to this thread or ask your own question?

You'll need to choose a username for the site, which only take a couple of moments. After that, you can post your question and our members will help you out.

Ask a Question

Top