我正在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();
}
}
我可以做些什么来解决这个问题,或者做些不同的事情来解决它? 提前感谢任何帮助过的人。我是品牌spankin'创建Web服务的新手。
答案 0 :(得分:2)
假设您正在调用WebService,则在每次调用期间将使用默认构造函数初始化Service1
。这是设计的一部分。
如果需要在方法调用之间保留数据,则除了更新类之外,还需要以某种方式保留数据。
有几种方法可以做到,哪种方法最好取决于您的需求: