【发布时间】:2014-04-15 03:27:30
【问题描述】:
我想将 SMS 服务公开为 SOAP 端点。我有 SMS 服务在 mule 中工作,但我目前有一个简单的 HTTP 端点
谁能帮助我完成此 SOAP 服务的步骤和 WSDL 文件,以将其作为入站端点
<soapenv:Envelope xmlns:soapenv="http://schemas.xmlsoap.org/soap/envelope/" xmlns:ws="http://ws.sms.example.com/">
<soapenv:Header/>
<soapenv:Body>
<ws:sendTextMessage>
<sender>%SENDERID%</sender>
<to>%TO%</to>
<text>%MESSAGE%</text>
</ws:sendTextMessage>
</soapenv:Body>
</soapenv:Envelope>
亲切的问候。
贾科
【问题讨论】:
标签: web-services web wsdl mule