WCF服务中的客户端IP地址格式

时间:2016-09-09 14:02:27

标签: c# .net wcf ip wcf-binding

我使用的是最新的WCF版本。我正在获取客户端的IP地址:

        OperationContext context = OperationContext.Current;
        MessageProperties prop = context.IncomingMessageProperties;
        RemoteEndpointMessageProperty endpoint = prop[RemoteEndpointMessageProperty.Name] as RemoteEndpointMessageProperty;
        string ip = endpoint.Address;

我获得的IP是:

  

:: 1

这是什么意思,有人可以解释我这种格式吗?

是否因为绑定?我使用basicHttpBinding

1 个答案:

答案 0 :(得分:2)

这是IPv6环回地址

https://en.wikipedia.org/wiki/Localhost

即。客户端位于同一台计算机上,并使用IPv6连接到服务