我有一个 WCF 3.0 服务,它已在web.config
我的 Web 应用程序中配置,它通过.svc
文件托管:
<endpoint address="https://domain.co.uk/services/accountservice"
binding="basicHttpBinding" bindingConfiguration="BasicHttpBinding_IAccountService"
contract="AccountServiceReference.IAccountService"
name="BasicHttpBinding_IAccountService" />
地址值不应该是 web.config 中的纯文本,因为我们想使用我们拥有的加密算法对其进行加密,并且只将加密的值存储在那里。这怎么可能?
我在想也许我应该以编程方式在我们的 IIS 中托管 WCF 服务,以便可以在运行时通过读取EncryptedAddress
值来设置地址,AppSetting
然后在运行时对其进行解密。这怎么可能?