我有一个用WebInvoke属性修饰的WCF服务和用于JSON启用的WebHttp绑定。可以从JavaScript访问该服务,直到我们尝试使其跨域工作。能否请您推荐如何跨域工作?
我们尝试创建代理Web处理程序,但每次WebHttpRequest尝试访问它时都会出现“Bad Request”。
答案 0 :(得分:0)
我必须做的是创建一个代理。跨域请求仅适用于GET动词,而不适用于POST。我的所有请求都通过代理,如果它是一个POST,那么它就是一个典型的代理。如果请求使用GET,那么我必须将其转换为POST。 (我在我的服务合同中将POST指定为动词)。
在客户端,我使用JQuery的josnp(带填充的json)功能将正确的信息附加到查询字符串。
private static readonly Properties.Settings settings = new Properties.Settings();
public void ProcessRequest(HttpContext context)
{
try
{
string wcfAddress = context.Request.QueryString["WcfAddress"];
HttpWebRequest request = (HttpWebRequest)WebRequest.Create(settings.WCFAddress + wcfAddress);
request.ContentType = "application/json";
request.Method = "POST";
if (context.Request.RequestType == "GET")
{
string callback = context.Request.QueryString["callback"];
string qs = context.Request.QueryString[null];
byte[] body = body = Encoding.UTF8.GetBytes(qs);
request.ContentLength = body.Length;
request.GetRequestStream().Write(body, 0, body.Length);
HttpWebResponse response = (HttpWebResponse)request.GetResponse();
using (StreamReader reader = new StreamReader(response.GetResponseStream(), Encoding.UTF8))
{
string contents = reader.ReadToEnd();
contents = callback + "(" + contents + ");";
context.Response.ContentType = "application/json";
context.Response.Write(contents);
response.Close();
reader.Close();
}
}
else if (context.Request.RequestType == "POST")
{
byte[] body = new byte[context.Request.ContentLength];
context.Request.InputStream.Read(body, 0, body.Length);
request.ContentLength = body.Length;
request.GetRequestStream().Write(body, 0, body.Length);
HttpWebResponse response = (HttpWebResponse)request.GetResponse();
using (StreamReader reader = new StreamReader(response.GetResponseStream(), Encoding.UTF8))
{
string contents = reader.ReadToEnd();
context.Response.ContentType = "application/json";
context.Response.Write(contents);
response.Close();
reader.Close();
}
}
}
catch (Exception ex)
{
System.Diagnostics.Trace.WriteLine(ex.ToString());
}
}
答案 1 :(得分:0)
按照this excellent article series的第1-4部分中提供的步骤操作,最终得到一个干净的解决方案。 我在生产中使用它没有任何问题。
您必须进行一次调整才能使其适用于所有浏览器。在CorsDispatchMessageInspector.BeforeSendReply
注释掉支票:
if(state.Message!= null)
否则“允许”标题仅适用于飞行前请求,但不适用于实际请求。
答案 2 :(得分:0)
要解决此问题,请执行以下操作
创建Global.asax并添加以下代码以启用Ajax跨域POST
public void Application_BeginRequest(object sender, EventArgs e)
{
HttpContext.Current.Response.AddHeader("Access-Control-Allow-Origin", "*");
HttpContext.Current.Response.AddHeader("Access-Control-Allow-Methods", "GET, POST,OPTIONS");
if ((HttpContext.Current.Request.HttpMethod == "OPTIONS"))
{
HttpContext.Current.Response.AddHeader("Access-Control-Allow-Headers", "Content-Type, Accept");
HttpContext.Current.Response.AddHeader("Access-Control-Max-Age", "1728000");
HttpContext.Current.Response.End();
}
}
}