我有一个 WCF 服务。它有两种方法,比如获取和保存。我只想向将使用该服务的第三方公开 Get 方法,而我的应用程序应该能够同时使用 Get 和 Save。
有没有办法使用不在 OperationContract 中的方法?我正在考虑验证请求的主机名并仅在它是我的应用程序的主机名时才授予访问权限。
为什么不创建一个ServiceContract
同时具有Get
和Set
as的第二个OperationContracts
?然后你可以锁定谁可以获得第二份合同。
[ServiceContract]
public interface IFoo
{
[OperationContract]
void Get();
}
[ServiceContract]
public interface IFooInternal : IFoo
{
[OperationContract]
void Set();
}
下面是识别主机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";
}