Forum Discussion

Julieg's avatar
12 years ago

HTTP Post Binding WSDL Import doesn't show Operations

Hello I'm trying to import int a SOAPUI project a sample WSDL with HTTP Post binding. The operations do not appear in the navigator.
I read that SOAPUI supports HTTP Bindings.
Here is the WSDL.

<definitions xmlns="http://schemas.xmlsoap.org/wsdl/" xmlns:http="http://schemas.xmlsoap.org/wsdl/http/" xmlns:mime="http://schemas.xmlsoap.org/wsdl/mime/" xmlns:xsd="http://www.w3.org/2001/XMLSchema" targetNamespace="urn:example" xmlns:tns="urn:example">
<types>
<schema xmlns="http://www.w3.org/2001/XMLSchema" targetNamespace="urn:example">
<element name="content">
<complexType>
<sequence>
<element name="first" type="string"/>
<element name="second" type="integer"/>
</sequence>
</complexType>
</element>
</schema>
</types>

<message name="id">
<part name="id" type="xsd:string"/>
</message>

<message name="info">
<part name="info" type="tns:content"/>
</message>

<portType name="widgetPortType">
<operation name="getInfo">
<input message="tns:id"/>
<output message="tns:info"/>
</operation>
</portType>

<binding name="binding" type="tns:widgetPortType">
<http:binding verb="POST"/>
<operation name="getInfo">
<http:operation location="getInfo"/>
<input>
<mime:content type="application/x-www-form-urlencoded"/>
</input>
<output>
<mime:mimeXml/>
</output>
</operation>
</binding>

<service name="widgetService">
<port name="port" binding="tns:binding">
<http:address location="http://www.example.org/"/>
</port>
</service>

</definitions>
No RepliesBe the first to reply