forked from vpulim/node-soap
-
Notifications
You must be signed in to change notification settings - Fork 0
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
- Loading branch information
1 parent
8623bcf
commit 6661b80
Showing
2 changed files
with
67 additions
and
3 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,67 @@ | ||
<?xml version="1.0" encoding="UTF-8"?> | ||
<wsdl:definitions xmlns:wsdl="http://schemas.xmlsoap.org/wsdl/" | ||
xmlns:soap="http://schemas.xmlsoap.org/wsdl/soap/" | ||
xmlns:xs="http://www.w3.org/2001/XMLSchema" | ||
xmlns:tns="http://www.Dummy.com" xmlns:n="http://www.Dummy.com/Name/Types" xmlns:ns="http://schemas.xmlsoap.org/soap/encoding/" targetNamespace="http://www.Dummy.com"> | ||
<wsp:Policy wsu:Id="Dummy_policy"> | ||
<wsp:ExactlyOne> | ||
<wsp:All> | ||
<sp:TransportBinding xmlns:sp="http://schemas.xmlsoap.org/ws/2005/07/securitypolicy"> | ||
<wsp:Policy> | ||
<sp:TransportToken> | ||
<wsp:Policy> | ||
<sp:HttpsToken RequireClientCertificate="false"/> | ||
</wsp:Policy> | ||
</sp:TransportToken> | ||
<sp:AlgorithmSuite> | ||
<wsp:Policy> | ||
<sp:Basic256/> | ||
</wsp:Policy> | ||
</sp:AlgorithmSuite> | ||
<sp:Layout> | ||
<wsp:Policy> | ||
<sp:Strict/> | ||
</wsp:Policy> | ||
</sp:Layout> | ||
</wsp:Policy> | ||
</sp:TransportBinding> | ||
</wsp:All> | ||
</wsp:ExactlyOne> | ||
</wsp:Policy> | ||
<wsdl:types> | ||
<xs:schema> | ||
<xs:import namespace="http://www.Dummy.com/Common/Types" schemaLocation="./Common.xsd"/> | ||
<xs:import namespace="http://www.Dummy.com/Name/Types" schemaLocation="./Name.xsd"/> | ||
</xs:schema> | ||
</wsdl:types> | ||
<wsdl:message name="DummyRequest"> | ||
<wsdl:part name="DummyRequest" element="n:DummyRequest"/> | ||
</wsdl:message> | ||
<wsdl:message name="DummyResponse"> | ||
<wsdl:part name="DummyResponse" element="n:DummyResponse"/> | ||
</wsdl:message> | ||
<wsdl:portType name="DummyPortType"> | ||
<wsdl:operation name="Dummy"> | ||
<wsdl:input message="tns:DummyRequest"/> | ||
<wsdl:output message="tns:DummyResponse"/> | ||
</wsdl:operation> | ||
</wsdl:portType> | ||
<wsdl:binding name="DummyBinding" type="tns:DummyPortType"> | ||
<soap:binding style="document" transport="http://schemas.xmlsoap.org/soap/http"/> | ||
<wsdl:operation name="Dummy"> | ||
<soap:operation soapAction="http://www.Dummy.com#Dummy" style="document"/> | ||
<wsdl:input> | ||
<soap:body use="literal"/> | ||
</wsdl:input> | ||
<wsdl:output> | ||
<soap:body use="literal"/> | ||
</wsdl:output> | ||
</wsdl:operation> | ||
</wsdl:binding> | ||
<wsdl:service name="DummyService"> | ||
<wsdl:port name="DummyPortType" binding="tns:DummyBinding"> | ||
<soap:address location="http://www.Dummy.com/"/> | ||
</wsdl:port> | ||
</wsdl:service> | ||
</wsdl:definitions> | ||
|