代码之家  ›  专栏  ›  技术社区  ›  Gishu

如何在asp.net中创建有状态的XML web服务?

  •  0
  • Gishu  · 技术社区  · 15 年前

    如果不参加“有状态的服务是不好的”讨论。。。如何创建一个?

    因为缺少有用的搜索结果。。似乎我不是在寻找错误的术语,就是在积极地劝阻它。我能找到的最好的链接是 this one on MSDN

    简单介绍一下我当前的应用程序。 Rails Web App => ASP.Net Xml webservice => Legacy C#/C++ code

    到现在为止,一直都还不错。现在发现,当我向WebMethod发出第一个请求时,它需要启动一些进程/资源,这些进程/资源在每次调用时创建use dispose代价高昂。所以我想重新利用这些资源。

    MyWebService 在另一个线程上初始化。

    链接表明,这样做的方法是

    • 在状态为全局时使用应用程序哈希/属性集合

    问题:

    1. 是这样吗?我是不是少了一些魔法属性?
    2. 如何处理同步?锁定私有成员对象的.net方法不起作用。

    我的Web服务类如下所示。。

    [WebService(Namespace = "http://Walkthrough/XmlWebServices/", 
          Description="A temperature conversion xml web service")]
       [WebServiceBinding(ConformsTo = WsiProfiles.BasicProfile1_1)]
       [System.ComponentModel.ToolboxItem(false)]
    
       public class TemperatureConverter : System.Web.Services.WebService, IDisposable
       {
          [WebMethod(Description = "This method converts celsius to fahrenheit")]
          public double convert_fahrenheit_to_celsius(double temp_in_fahrenheit)
          {
             /// code
          }
        }
    

    我仍在为Q 2而挣扎。有一些奇怪的行为

    protected void Application_Start(object sender, EventArgs e)  // global.asax.cs
    {
             Application["UserName"] = "Gishu";
    }
    
    myWebMethod // MyWebService.cs
    {
      if (Application["myKey"] == null)
        LoadHeavyObjectsAndCacheKeys(); // set Application["myKey"] between  Application.Lock() Unlock() calls.
      ...
    } 
    

    “用户名”密钥写入成功-它出现在哈希中。但是,我在web方法中编写的键值对在当前web请求中不存在。在下一个请求中,哈希表仍然只有一个项-“UserName”。由于这是ApplicationState,我假设不必将EnableSession属性设置为true。

    1 回复  |  直到 15 年前
        1
  •  1
  •   John Saunders    15 年前

    是的,你应该用 Session 每会话数据的状态,以及 Application

    您的web服务操作需要 [WebMethod(EnableSession=true)] 归因于他们。