Skip to content

Instantly share code, notes, and snippets.

@sudiptamondal
Created March 25, 2020 20:35
Show Gist options
  • Star 0 You must be signed in to star a gist
  • Fork 0 You must be signed in to fork a gist
  • Save sudiptamondal/7df1ffc1fcb76a0b5bf1c4ad696d7eae to your computer and use it in GitHub Desktop.
Save sudiptamondal/7df1ffc1fcb76a0b5bf1c4ad696d7eae to your computer and use it in GitHub Desktop.
<?xml version="1.0" encoding="UTF-8"?>
<wsdl:definitions xmlns:wsdl="http://schemas.xmlsoap.org/wsdl/" xmlns:tns="http://xmlns.oracle.com/apps/scm/altItem/" xmlns:soap="http://schemas.xmlsoap.org/wsdl/soap/" xmlns:xsd="http://www.w3.org/2001/XMLSchema" xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance" xmlns:soap-enc="http://schemas.xmlsoap.org/soap/encoding/" name="pdhsoap" xmlns:plnk="http://schemas.xmlsoap.org/ws/2003/05/partner-link/" targetNamespace="http://xmlns.oracle.com/apps/scm/altItem/">
<wsdl:documentation xmlns:oer="http://xmlns.oracle.com/oer">
<name>pdhsoap</name>
<description>Sample WSDL</description>
<oer:lifecycle>Active</oer:lifecycle>
<oer:operation name="check_altitem">
<description>Sample Operation</description>
</oer:operation>
</wsdl:documentation>
<plnk:partnerLinkType name="pdhsoap_service">
<plnk:role name="pdhsoap_service_provider">
<plnk:portType name="tns:pdhsoap_service"/>
</plnk:role>
</plnk:partnerLinkType>
<wsdl:types>
<schema targetNamespace="http://xmlns.oracle.com/apps/scm/altItem/" xmlns="http://www.w3.org/2001/XMLSchema">
</schema>
</wsdl:types>
<message name="check_altitem">
<part name="alternate_item_number" type="xsd:string" nillable="true"/>
</message>
<message name="check_altitem_response">
<part name="value" type="xsd:string" nillable="true"/>
</message>
<wsdl:portType name="pdhsoap_port">
<wsdl:operation name="check_altitem">
<wsdl:input message="tns:check_altitem"/>
<wsdl:output message="tns:check_altitem_response"/>
</wsdl:operation>
</wsdl:portType>
<wsdl:binding name="pdhsoap_binding" type="tns:pdhsoap_port">
<soap:binding style="document" transport="http://schemas.xmlsoap.org/soap/http"/>
<wsdl:operation name="check_altitem">
<soap:operation soapAction="check_altitem"/>
<wsdl:input>
<soap:body use="literal" namespace="http://xmlns.oracle.com/apps/scm/altItem/"/>
</wsdl:input>
<wsdl:output>
<soap:body use="literal" namespace="http://xmlns.oracle.com/apps/scm/altItem/"/>
</wsdl:output>
</wsdl:operation>
</wsdl:binding>
<wsdl:service name="service">
<wsdl:port name="pdhsoap_port" binding="tns:pdhsoap_binding">
<soap:address location="https://enigmatic-journey-58864.herokuapp.com/pdhsoap/action"/>
</wsdl:port>
</wsdl:service>
</wsdl:definitions>
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment