新书推介:《语义网技术体系》
作者:瞿裕忠,胡伟,程龚
   XML论坛     W3CHINA.ORG讨论区     计算机科学论坛     SOAChina论坛     Blog     开放翻译计划     新浪微博  
 
  • 首页
  • 登录
  • 注册
  • 软件下载
  • 资料下载
  • 核心成员
  • 帮助
  •   Add to Google

    >> 本版讨论.NET,C#,ASP,VB技术
    [返回] 中文XML论坛 - 专业的XML技术讨论区计算机技术与应用『 Dot NET,C#,ASP,VB 』 → 在WinForm程序中嵌入ASP.NET 查看新帖用户列表

      发表一个新主题  发表一个新投票  回复主题  (订阅本版) 您是本帖的第 4631 个阅读者浏览上一篇主题  刷新本主题   树形显示贴子 浏览下一篇主题
     * 贴子主题: 在WinForm程序中嵌入ASP.NET 举报  打印  推荐  IE收藏夹 
       本主题类别:     
     admin 帅哥哟,离线,有人找我吗?
      
      
      
      威望:9
      头衔:W3China站长
      等级:计算机硕士学位(管理员)
      文章:5255
      积分:18407
      门派:W3CHINA.ORG
      注册:2003/10/5

    姓名:(无权查看)
    城市:(无权查看)
    院校:(无权查看)
    给admin发送一个短消息 把admin加入好友 查看admin的个人资料 搜索admin在『 Dot NET,C#,ASP,VB 』的所有贴子 点击这里发送电邮给admin  访问admin的主页 引用回复这个贴子 回复这个贴子 查看admin的博客楼主
    发贴心情 在WinForm程序中嵌入ASP.NET


    发信人: flier (小海 [寻找风车中]), 信区: DotNET
    标  题: 在WinForm程序中嵌入ASP.NET
    发信站: BBS 水木清华站 (Mon Feb  9 20:53:20 2004), 转信

    在WinForm程序中嵌入ASP.NET

        现在的流行趋势是桌面程序Web化,Web程序桌面化,呵呵。最终目标就是你中有我,我中有你。例如MSN Explorer就是一个很好的展示,让用户在使用的时候分不清什么时候是在本地什么时候是在网络。而这类程序往往需要有一个后台服务器如IIS的支持,这对大多数桌面应用来说too heavy了。本着简单就是美的设计思想,这里给出一个轻量级的解决方法,把ASP.NET嵌入到普通WinForm桌面程序中去。
      因为安全以及其它一些方面的原因,在使用ASP.NET引擎之前,必须建立一个新的AppDomain。简单的方法是直接使用ApplicationHost.CreateApplicationHost函数为指定的虚拟目录和物理路径建立ASP.NET引擎宿主的实例,如

    // should create a subdirectory ./bin and copy the assembly to it
    static public WebHost Create(string name, string path)
    {  
      if(!name.StartsWith(new string(Path.AltDirectorySeparatorChar, 1)))
      {
        name = Path.AltDirectorySeparatorChar + name;
      }

      WebHost host = (WebHost)ApplicationHost.CreateApplicationHost(
        typeof(WebHost), name, path);

      host.setVirtualDirectory(name);
      host.setBaseDirectory(path);

      return host;
    }

    但这样建立的程序有个BT的要求,他会在指定目录的bin子目录中去尝试载入宿主类型(WebHost)的assembly,也就是说你必须把程序在bin子目录下复制一份,非常不爽。解决方法是自己手工完成整个建立过程,如下:

    static public WebHost Create(string virtualDir, string physicalDir)
    {
      if(!virtualDir.StartsWith(new string(Path.AltDirectorySeparatorChar, 1)))
      {
        virtualDir = Path.AltDirectorySeparatorChar + virtualDir;
      }

      if(!physicalDir.EndsWith(new string(Path.DirectorySeparatorChar, 1)))
      {
        physicalDir += Path.DirectorySeparatorChar;
      }

      AppDomainSetup setup = new AppDomainSetup();

      setup.ApplicationName = "APP_" + Guid.NewGuid().ToString();
      setup.ConfigurationFile = "web.config";

      AppDomain domain = AppDomain.CreateDomain("ASPHOST_" + Guid.NewGuid().ToString(), null, setup);
       
      domain.SetData(".appDomain", "*");
      domain.SetData(".appPath", physicalDir);
      domain.SetData(".appVPath", virtualDir);
      domain.SetData(".domainId", domain.FriendlyName);
      domain.SetData(".hostingVirtualPath", virtualDir);
      domain.SetData(".hostingInstallDir", HttpRuntime.AspInstallDirectory);

      WebHost host = (WebHost)domain.CreateInstanceAndUnwrap(
        typeof(WebHost).Module.Assembly.FullName, typeof(WebHost).FullName);

      host.setApplicationDomain(domain);
      host.setVirtualDirectory(virtualDir);
      host.setBaseDirectory(physicalDir);

      return host;

    }

    这儿的一堆domain.SetData是传递参数给ASP.NET引擎。然后在那个appdomain中建立新的宿主类型的实例。这样就避免多份代码的尴尬。而使用ASP.NET就比较简单了,在宿主类中使用HttpRuntime.ProcessRequest函数处理特定请求。简单一点的话,可以直接用SimpleWorkerRequest包装请求,生成页面到一个指定的TextWriter中,如

    private void DoRequest(string page, string query, TextWriter writer)
    {
      HttpRuntime.ProcessRequest(new SimpleWorkerRequest(page, query, writer));
    }

    public void RequestPage(string page, string query, Stream stream)
    {       
      DoRequest(page, query, new StreamWriter(stream));
    }

    public void RequestPage(string page, Stream stream)
    {
      RequestPage(page, null, stream);
    }

    public string RequestPage(string page, string query)
    {
      using(StringWriter writer = new StringWriter())       
      {
        DoRequest(page, query, writer);

        return writer.ToString();
      }
    }

    public string RequestPage(string page)
    {
      return RequestPage(page, string.Empty);
    }

    这个缺省的请求包装使用是简单,但对中文的兼容性不太好,过两天有空再自己写个强一点的吧,呵呵

    最终类的使用就比较简单了,在WinForm程序中建立一个singleton模式的属性

    static private WebHost.WebHost _host = null;

    public WebHost.WebHost Host
    {
      get
      {
        if(_host == null)
        {
          _host = WebHost.WebHost.Create();
        }
        return _host;
      }
    }

    然后请求指定的asp.net页面,如

    HTML = Host.RequestPage(_page);

    即可完成从动态的asp.net脚本到静态html的转换。嵌入WinForm程序中,还可以通过Host类型完成两者之间的双向通讯,实现互相控制。下次有空继续,呵呵

    参考资料:
      1.Using the ASP.Net Runtime for extending desktop applications with dynamic HTML Scripts
        http://www.west-wind.com/presentations/aspnetruntime/aspnetruntime.asp

      2.Executing ASMX files without a web server  
        http://radio.weblogs.com/0105476/stories/2002/10/24/executingAsmxFilesWithoutAWebServer.html

      3.ASP. NET Client-side Hosting with Cassini
        http://msdn.microsoft.com/msdnmag/issues/03/01/CuttingEdge/

      4.Using ASP.NET Runtime in Desktop Applications  
        http://www.codeguru.com/cs_internet/UsingAspRuntime.html

    --
    .    生命的意义在于   /\   ____\ /\_ \   /\_\                                .  
    .        希望         \ \  \___/_\/\ \   \/_/__     __    _ _★              .  
    .        工作          \ \   ____\\ \ \    /\  \  /'__`\ /\`'_\              .  
    .      爱你的人         \ \  \___/ \ \ \___\ \  \/\ __// \ \ \/              .  
    .     和你爱的人         \ \___\    \ \_____\ \__\ \____\ \ \_\              .  
    .        ……             \/___/     \/_____/\/__/\/____/  \/_/ @nsfocus.com.  


    ※ 来源:·BBS 水木清华站 smth.org·[FROM: 211.167.254.*]
    上一篇
    返回上一页
    回到目录
    回到页首
    下一篇


       收藏   分享  
    顶(0)
      




    ----------------------------------------------

    -----------------------------------------------

    第十二章第一节《用ROR创建面向资源的服务》
    第十二章第二节《用Restlet创建面向资源的服务》
    第三章《REST式服务有什么不同》
    InfoQ SOA首席编辑胡键评《RESTful Web Services中文版》
    [InfoQ文章]解答有关REST的十点疑惑

    点击查看用户来源及管理<br>发贴IP:*.*.*.* 2004/11/9 2:25:00
     
     GoogleAdSense
      
      
      等级:大一新生
      文章:1
      积分:50
      门派:无门无派
      院校:未填写
      注册:2007-01-01
    给Google AdSense发送一个短消息 把Google AdSense加入好友 查看Google AdSense的个人资料 搜索Google AdSense在『 Dot NET,C#,ASP,VB 』的所有贴子 点击这里发送电邮给Google AdSense  访问Google AdSense的主页 引用回复这个贴子 回复这个贴子 查看Google AdSense的博客广告
    2025/7/20 1:35:55

    本主题贴数1,分页: [1]

    管理选项修改tag | 锁定 | 解锁 | 提升 | 删除 | 移动 | 固顶 | 总固顶 | 奖励 | 惩罚 | 发布公告
    W3C Contributing Supporter! W 3 C h i n a ( since 2003 ) 旗 下 站 点
    苏ICP备05006046号《全国人大常委会关于维护互联网安全的决定》《计算机信息网络国际联网安全保护管理办法》
    59.082ms