Code Block |
---|
<?xml version="1.0" encoding="UTF-8"?>
<wsdl:definitions xmlns:wsdl="http://schemas.xmlsoap.org/wsdl/" xmlns:http="http://schemas.xmlsoap.org/wsdl/http/"
xmlns:mime="http://schemas.xmlsoap.org/wsdl/mime/" xmlns:soap="http://schemas.xmlsoap.org/wsdl/soap/"
xmlns:soapenc="http://schemas.xmlsoap.org/soap/encoding/" xmlns:tns="http://MonTier/SMTPSender/"
xmlns:xsd="http://www.w3.org/2001/XMLSchema" xmlns:xsdi="http://www.w3.org/2001/XMLSchema-instance"
targetNamespace="http://MonTier/SMTPSender/">
<wsdl:types>
<schema xmlns="http://www.w3.org/2001/XMLSchema">
<import schemaLocation="SMTPSender.xsd" namespace="http://MonTier/SMTPSender/" />
</schema>
</wsdl:types>
<wsdl:message name="SMTPRequestMessage">
<wsdl:part name="parameter" element="tns:SMTPRequest" />
</wsdl:message>
<wsdl:message name="SMTPResponseMessage">
<wsdl:part name="parameter" element="tns:SMTPResponse" />
</wsdl:message>
<wsdl:portType name="SMTPSenderSoapPortType">
<wsdl:operation name="SendSMTP">
<wsdl:input message="tns:SMTPRequestMessage" />
<wsdl:output message="tns:SMTPResponseMessage" />
</wsdl:operation>
</wsdl:portType>
<wsdl:binding name="SMTPSenderSoapBinding" type="tns:SMTPSenderSoapPortType">
<soap:binding transport="http://schemas.xmlsoap.org/soap/http" style="document" />
<wsdl:operation name="SendSMTP">
<soap:operation soapAction="uri" />
<wsdl:input>
<soap:body use="literal" />
</wsdl:input>
<wsdl:output>
<soap:body use="literal" />
</wsdl:output>
</wsdl:operation>
</wsdl:binding>
<wsdl:service name="SMTPSenderService">
<wsdl:port name="SMTPSenderSoapPort" binding="tns:SMTPSenderSoapBinding">
<soap:address location="http://1.1.1.1/MonTier/SMTPSender" />
</wsdl:port>
</wsdl:service>
</wsdl:definitions> |
Page Comparison
General
Content
Integrations