ASMX Web服务的成员变量总是重新初始化

本文关键字:初始化 变量 Web 服务 成员 ASMX | 更新日期: 2023-09-27 18:16:03

我正在VS 2010中创建一个c# Web服务,将数据从另一个软件程序传递给服务消费者。由于过于复杂的原因,我编写的Web服务应该在会话的整个生命周期中跟踪一些信息。这些数据与其他软件程序绑定在一起。我把这些信息作为成员变量放在WebService类中。我在另一个程序中创建了Webservice类的对象,并保留了这些对象。不幸的是,Webservice对象中的数据不会超出当前函数的作用域。以下是我的文件:

/* the Web service class */
public class Service1 : System.Web.Services.WebService
{
    protected string _softwareID;
    protected ArrayList _softwareList;
    public Service1()
    {
        _softwareID= "";
        _softwareList = new ArrayList();
    }
    [WebMethod]
    public int WebServiceCall(int request)
    {
        _softwareID = request;
        _softwareList.Add(request.ToString());
        return 1;
    }
    /* other Web methods */
}
/* the form in the application that will call the Web service */
public partial class MainForm : Form
{
    /* the service object */
    protected Service1 _service;
    public MainForm()
    {
        InitializeComponent();
        _service = null;
    }
    private void startSoftware_Click(object sender, EventArgs e)
    {
        //initializing the service object
        _service = new Service1();
        int results = _service.WebServiceCall(15);
        /* etc., etc. */
    }
    private void doSomethingElse_Click(object sender, EventArgs e)
    {
        if (_service == null)
        {
            /* blah, blah, blah */
            return;
        }
        //The value of service is not null
        //However, the value of _softwareID will be a blank string
        //and _softwareList will be an empty list
        //It is as if the _service object is being re-initialized
        bool retVal = _service.DoSomethingDifferent();
    }
}

我能做些什么来修复这个或做不同的工作围绕它?提前感谢任何帮助我的人。我是创建Web服务的新手。

ASMX Web服务的成员变量总是重新初始化

假设您正在调用WebService, Service1将在每次调用期间使用默认构造函数初始化。这是设计的一部分。

如果需要在方法调用之间持久化数据,则需要以某种方式持久化数据,而不是更新类。

有几种方法可以做到这一点,哪一种最好取决于你的需要:

  • 数据库,可能是最安全的,并提供永久持久性
  • 静态字典,每个调用传递一个键,或者使用IP地址作为键
  • HTTP会话对象(我不确定如何与WebServices交互)