SSLVPN想增加短信认证功能 网关类型使用:HTTP协议 页面编码:UTF-8 SOAP:1.1 请求类型:POST
从设备提供的配置帮助界面是: <SOAP:Body> <ns2:SendMessageRequest> <ns2:clientId>sslvpn</ns2:clientId> <ns2:extendCode></ns2:extendCode> <ns2:smsCode></ns2:smsCode> <ns2:password></ns2:password> <ns2:content>$$SMS_CONTENT$$</ns2:content> <ns2:receiver>$$MOBILE_NUM$$</ns2:receiver> <ns2:sendTime></ns2:sendTime> <ns2:infoId></ns2:infoId> </ns2:SendMessageRequest> </SOAP:Body>
从短信代理商所提供的配置模块是: <?xml version="1.0" encoding="UTF-8"?> <SOAP-ENV:Envelope xmlns:SOAP-ENV="http://www.w3.org/2003/05/soap-envelope" xmlns:SOAP-ENC="http://www.w3.org/2003/05/soap-encoding" xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance" xmlns:xsd="http://www.w3.org/2001/XMLSchema" xmlns:ns1="http://tempuri.org/"> <SOAP-ENV:Body> <ns1:mdSmsSend> <ns1:sn>**************</ns1:sn> <ns1:pwd> *********************</ns1:pwd> <ns1:mobile>$$MOBILE_NUM$$</ns1:mobile> <ns1:content>$$SMS_CONTENT$$</ns1:content> <ns1:ext></ns1:ext> <ns1:stime></ns1:stime> <ns1:rrid></ns1:rrid> </ns1:mdSmsSend> </SOAP-ENV:Body> </SOAP-ENV:Envelope>
对这方面并不了解,希望各位指教一下我应该如何配置,谢谢 |