ASP.NET在webservice中使用session和cookie

2014-07-25 20:05:19|?次阅读|上传:wustguangh【已有?条评论】发表评论

关键词:C#, ASP.NET|来源:唯设编程网

在webservice中使用session的几点说明:

1.webservice方法需要在服务端的方法中加入[WebMethod(EnableSession=true)]修饰语句;

2.在客户端,要在实例化了webservice代理类之后,要为它的CookieContainer 实例化一个 new CookieContainer();这样才能使用session存储状态。

3. 另外在多个webservice代理中,只要含有相同的cookie,就能共用相同的session,其中的cookie通过代理类的 CookieContainer.GetCookies(new Uri(s.Url))["ASP.NET_SessionId"]取得,如果其他的webserivce代理类需要用相同的session则可以用 CookieContainer.Add方法,将取得的cookie加入即可。

如果只想使用cookie,则只需要在客户端做设置就可以,服务器端不需要像session一样加入属性修饰。

另外webmethod只用于public的成员方法,不用于static的,虽然不报错,但在客户端代理类中是找不到static方法的。

在使用asp.net编写webservice时,默认情况下是不支持session的,但我们可以把WebMethod的EnableSession选项设为true来显式的打开它,请看以下例子:

1 新建网站WebSite

2 新建web服务WebService.asmx,它具有以下两个方法:

[WebMethod(EnableSession = true)]
public string Login(string name)
{
    Context.Session["name"] = name;
    return name;
}

[WebMethod(EnableSession = true)]
public string GetName()
{
    if (Context.Session["name"] != null)
        return Context.Session["name"].ToString();
    else
        return "";
}

3 添加asp.net页面SessionInWebservice.aspx

<form id="form1" runat="server">
    <div>
        <asp:TextBox ID="txtName" runat="server"></asp:TextBox>
        <asp:Button ID="btnLogin" runat="server"
            Text="Login" OnClick="btnLogin_Click" />
    </div>
    <div>
        <asp:Button ID="btnGetName" runat="server"
            Text="GetName" OnClick="btnGetName_Click" />
        <asp:Label ID="lblName" runat="server" Text="Label"></asp:Label>
    </div>
</form>

下面是后台页面SessionInWebservice.aspx.cs

protected void btnLogin_Click(object sender, EventArgs e)
{
    WebService ws = new WebService();
  
    ws.Login(txtName.Text);
}
protected void btnGetName_Click(object sender, EventArgs e)
{
    WebService ws = new WebService();
    lblName.Text = ws.GetName();
}

问题似乎到此结束了,按Login按钮记录用户名以后,再按GetName就可以获取到刚才输入的名字。

但如果我们另外新建一个website,并添加web引用来调用刚才编写的webservice,问题就出来了,GeName方法并没有获取到我们刚才登录的用户名(如果是在winform中调用该方法,也会出现同样的问题)。莫非这个方法行不通了?

其实不然,我们给该WebService的CookieContainer赋值就可以了,修改SessionInWebservice.aspx.cs 的代码:

private static System.Net.CookieContainer cookieContainer
    = new System.Net.CookieContainer();
protected void btnLogin_Click(object sender, EventArgs e)
{
    localhost.WebService ws = new localhost.WebService();
    ws.CookieContainer = cookieContainer;
    ws.Login(txtName.Text);
}
protected void btnGetName_Click(object sender, EventArgs e)
{
    localhost.WebService ws = new localhost.WebService();
    ws.CookieContainer = cookieContainer;
    lblName.Text = ws.GetName();
}

请注意:Login方法和GetName方法必须指定同一个CookieContainer,因此在这里我们使用了静态变量。

但如果是在不同的页面中调用该webservice,问题依旧存在,因此我们需要重新修改代码,通过编写新类继承上面的webservice,并给CookieContainer赋值就可以解决该问题了:

public class WebService1:localhost.WebService
{
    private static System.Net.CookieContainer cookieContainer;

    static WebService1()
    {
        cookieContainer = new System.Net.CookieContainer();
    }
    public WebService1()
    {
        this.CookieContainer = cookieContainer;
    }
}

调用的时候也不需要重新给CookieContainer赋值了:

protected void btnLogin_Click(object sender, EventArgs e)
{
    WebService1 ws = new WebService1();
    ws.Login(txtName.Text);
}
protected void btnGetName_Click(object sender, EventArgs e)
{
    WebService1 ws = new WebService1();
    lblName.Text = ws.GetName();
}

ps:在实际使用时发现在如果调用webservice的两个页面是在同一个网站里可以,如果分别是2个不同网站的页面就还是不能使用同一个session

本文转自:http://www.cnblogs.com/Jan_Dai/archive/2011/04/01/2001742.html

发表评论0条 】
网友评论(共?条评论)..
ASP.NET在webservice中使用session和cookie