我们制作了一个管理电子钱包的网络服务,但我们不知道如何授权我们的用户。
身份验证被委托给返回 SOAP 的身份服务。
<?xml version="1.0" encoding="utf-8"?>
<soap:Envelope xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance" xmlns:xsd="http://www.w3.org/2001/XMLSchema" xmlns:soap="http://schemas.xmlsoap.org/soap/envelope/">
<soap:Body>
<AuthenticateUserByEmailResponse xmlns="http://services.xxxx.xx/">
<AuthenticateUserByEmailResult>boolean</AuthenticateUserByEmailResult>
</AuthenticateUserByEmailResponse>
</soap:Body>
</soap:Envelope>
我们已经阅读了有关 BasicHttpBinding 和 WSHttpBinding 的信息,但我们找不到类似的场景,我们只需要担心授权。
你们对如何开始有什么建议吗?