我正在尝试从ASP.NET基础上的jQuery移动网站调用webservices。 webservices接受post参数并返回XML。 我无法改变网络服务方面。
我正面临跨域问题,根据我的理解,我需要使用代理。
我正在考虑使用通用处理程序,但我不知道该怎么做。
我的服务方法如下:
https://myserver.com/WCF/Info.svc/MyMehod1
https://myserver.com/WCF/Info.svc/MyMehod2
并使用Post参数
在c#中这样做的好方法是什么?
由于
答案 0 :(得分:2)
请检查此问题:Accessing web Service from jQuery - cross domain
作为替代方案,您还可以创建一个使用jQuery Ajax调用的HttpHandler。然后,处理程序可以调用Web服务并将输出写入Http响应。
答案 1 :(得分:1)
我终于开始工作了。
对于那些有同样问题的人,
在客户端,我使用了一个通用的处理程序来进行webservice调用并公开结果。
处理程序示例:
public void ProcessRequest(HttpContext context)
{
string method = context.Request.QueryString["method"].ToString().ToLower();
if (method == "MyMethod1")
{
context.Response.ContentType = "text/plain";
context.Response.Write(CallWebService(method, param));
context.Response.Cache.SetCacheability(HttpCacheability.NoCache);
}
else if (method == "MyMethod2")
{
context.Response.ContentType = "text/plain";
string param = "myparam";
context.Response.Write(CallWebService(method, param));
context.Response.Cache.SetCacheability(HttpCacheability.NoCache);
}
else
{
//context.Response.ContentType = "text/plain";
//context.Response.Write("Hello World");
}
}
private string CallWebService(string method, string param)
{
string ServeurURL = "https://myserver.com";
System.Net.WebRequest req = System.Net.WebRequest.Create(ServeurURL + method);
req.Method = "POST";
byte[] byteArray = System.Text.Encoding.UTF8.GetBytes(param);
req.ContentType = "text/xml";
req.ContentLength = byteArray.Length;
System.IO.Stream reqstream = req.GetRequestStream();
reqstream.Write(byteArray, 0, byteArray.Length);
reqstream.Close();
System.Net.WebResponse wResponse = req.GetResponse();
reqstream = wResponse.GetResponseStream();
System.IO.StreamReader reader = new System.IO.StreamReader(reqstream);
string responseFromServer = reader.ReadToEnd();
return responseFromServer;
}
jQuery / Ajax调用:
jQuery(function() {
$('#btn1').click(function (e) {
e.preventDefault();
jQuery.ajax({
type: "GET",
url: "MyHandler.ashx",
data: "method=MyMethod1",
success: function (data) {
$('#display').html("<h1>" + data.toString() + "</h1>");
}
});
});
$('#btn2').click(function (e) {
e.preventDefault();
jQuery.ajax({
type: "GET",
url: "MyHandler.ashx",
data: "method=MyMethod2",
success: function (data) {
$('#display').html("<h1>" + data.toString() + "</h1>");
}
});
});
});
现在它正在工作:)