当我尝试在 WCF 项目中使用 WebOperationContext.Current 时,Current 为空。下面是示例。任何人都可以阐明它吗?
WebForm - default.aspx:
ServiceClient sc = new ServiceClient();
Response.Write(sc.DoWork(1) + "<br />");
WebOperationContext c = WebOperationContext.Current; --Current is null
//WCF接口
[ServiceContract]
public interface IService
{
[OperationContract]
[WebGet]
int DoWork(int num);
}
//WCF实现
public class Service : IService
{
public int DoWork(int num)
{
return num;
}
}
系统设置:ASP.NET 3.5
先感谢您。
我的问题的描述更改如下:
当我尝试在 WCF 项目中使用 WebOperationContext.Current 时,Current 为空。下面是示例。任何人都可以阐明它吗?
我需要的是一种透明的方式(或一种对现有代码改动很小的方式),以使现有代码基于令牌做指定的工作。这就是这里使用 HttpModule 的原因,如下所示:
//HttpModule: 插入一个token,在pipneline中工作可以基于。如前所述,HttpModule 用于对现有代码进行最少的更改。
public class ImageIntercept : IHttpModule
{
public void Init(HttpApplication context)
{
context.BeginRequest += new EventHandler(context_BeginRequest);
}
void context_BeginRequest(object sender, EventArgs e)
{
WebOperationContext.Current.IncomingRequest.Headers.Add("image", "true"); //a token on which works will be based
}
public void Dispose()
{ }
}
//WCF Interface
[ServiceContract]
public interface IService
{
[OperationContract]
[WebGet]
int DoWork(int num);
}
//WCF Implementation
public class Service : IService
{
public int DoWork(int num)
{
string isImage = WebOperationContext.Current.IncomingRequest.Headers["image"];
if(isImage == "true")
{
//this is what I need to do something here
}
return num;
}
}
系统设置:ASP.NET 3.5
先感谢您。