创建WCF跨域交互界面

开发 后端
由于WCF跨域交互代码太多,这里显示部分代码,所以大家有communitysever的可以从里面获得然后反编译为自己所用,没有的就到网络上搜下吧,有许多资源呢!

接下来我们将学习WCF跨域交互各个角度出来,来讲述WCF跨域交互的功能,这主要包括C#3.0,VB9.0,WCF,WPF,WP,LINQ,AJAX,mobile开发,Cardspace,智能客户端。

下面是我扫除这一障碍的一个笨得不能再笨的方法 #t#

第一步:在项目中创建一个页面Proxy.aspx,作为ExtJs与Wcf跨域操作的代理页面。这个页面和ExtJs位于一个位置,并且去除页面中的HTML代码:

WCF跨域交互后台代码为:

  1. Proxy.aspx.cs  
  2. using System;  
  3. using System.Collections;  
  4. using System.Configuration;  
  5. using System.Data;  
  6. using System.Linq;  
  7. using System.Web;  
  8. using System.Web.Security;  
  9. using System.Web.UI;  
  10. using System.Web.UI.HtmlControls;  
  11. using System.Web.UI.WebControls;  
  12. using System.Web.UI.WebControls.WebParts;  
  13. using System.Xml.Linq;  
  14. using System.Collections.Specialized;  
  15.     
  16. namespace ExtJs_Wcf_Linq_PageGrid  
  17. {  
  18. public partial class Proxy : System.Web.UI.Page  
  19. {  
  20. protected void Page_Load(object sender, EventArgs e)  
  21. {  
  22. string remoteUrl = Request.QueryString["remote"];  
  23. using(System.Net.WebClient wc = new System.Net.WebClient())  
  24. {  
  25. NameValueCollection nvc = Request.QueryString;  
  26. foreach (string key in nvc.Keys)  
  27. {  
  28. if (key != "remote")  
  29. {  
  30. if (remoteUrl.IndexOf("?") == -1)  
  31. {  
  32. remoteUrlremoteUrl = remoteUrl + "?"+key+"="+ nvc[key];  
  33. continue;  
  34. }  
  35. remoteUrlremoteUrl = remoteUrl + "&" + key + "=" + nvc[key];  
  36. }  
  37. }  
  38. string response = wc.DownloadString(remoteUrl);  
  39. Response.Write(response);  
  40. Response.End();  
  41. }  
  42. }  
  43. }  
责任编辑:chenqingxiang 来源: NET130
相关推荐

2010-02-22 17:29:47

WCF跨域

2010-02-24 10:55:01

WCF跨域访问

2009-12-22 11:21:43

WCF跨域访问

2011-04-01 10:40:53

WCFiPhone调用

2019-04-10 10:32:16

CORSNginx反向代理

2016-11-01 21:51:03

phpjavascript

2021-06-15 07:32:59

Cookie和Sess实现跨域

2021-04-27 15:20:41

人工智能机器学习技术

2024-05-20 09:28:44

Spring客户端浏览器

2011-07-08 20:54:12

iPhone WCF

2009-12-08 14:10:55

Silverlight

2009-12-07 10:46:08

WCF框架

2009-12-08 11:34:40

WCF Windows

2017-06-06 14:13:16

2021-05-06 20:51:52

跨域http协议

2009-11-05 13:16:59

WCF代理

2021-06-10 18:11:02

Cors跨域Web开发Cors

2020-12-31 08:14:39

VueAxiosJavaScript

2017-08-20 12:49:59

浏览器跨域服务器

2016-09-19 13:52:26

Javascript跨域前端
点赞
收藏

51CTO技术栈公众号