两天前我听说过肥皂,从那以后我就成功地与服务器通信了。但我不熟悉 SOAP 协议
我的应用程序会将敏感数据传输到服务器,这表示我一直想知道主应用程序的创建者使用的方法是否足够安全:
<?xml version="1.0" encoding="utf-8"?>
<soap12:Envelope xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance" xmlns:xsd="http://www.w3.org/2001/XMLSchema" xmlns:soap12="http://www.w3.org/2003/05/soap-envelope">
<soap12:Body>
<GetArtigoRef xmlns="http://www.*********.com:**/">
<username>string</username>
<password>string</password>
<referencia>string</referencia>
</GetArtigoRef>
</soap12:Body>
</soap12:Envelope>
您可能会注意到,用户名和密码以纯文本形式位于前两个字段中,而且识别得非常好。
通过 php 和 soapcall 发送数据时,我没有使用任何类型的加密。
我能从中得到什么?有什么担心或我可以冷静吗?
非常感谢您的开导!祝大家欢呼。