0

我有一个 WCF 服务。它有两种方法,比如获取和保存。我只想向将使用该服务的第三方公开 Get 方法,而我的应用程序应该能够同时使用 Get 和 Save。

有没有办法使用不在 OperationContract 中的方法?我正在考虑验证请求的主机名并仅在它是我的应用程序的主机名时才授予访问权限。

4

2 回答 2

4

为什么不创建一个ServiceContract同时具有GetSetas的第二个OperationContracts?然后你可以锁定谁可以获得第二份合同。

[ServiceContract]
public interface IFoo
{
    [OperationContract]
    void Get();
}

[ServiceContract]
public interface IFooInternal : IFoo
{
    [OperationContract]
    void Set();
}
于 2009-05-04T10:57:42.503 回答
0

下面是识别主机ip地址的代码:

string GetAddressAsString()
{
           RemoteEndpointMessageProperty clientEndpoint =
                        OperationContext.Current.IncomingMessageProperties[
                        RemoteEndpointMessageProperty.Name] as RemoteEndpointMessageProperty;

                    if (clientEndpoint != null)
                    {
                        return String.Format("{0}:{1}", clientEndpoint.Address, clientEndpoint.Port);
                    }
                    return "Failed to identify address";
}
于 2010-01-19T22:29:11.960 回答