惯性聚合 高效追踪和阅读你感兴趣的博客、新闻、科技资讯
阅读原文 在惯性聚合中打开

推荐订阅源

宝玉的分享
宝玉的分享
NISL@THU
NISL@THU
E
Exploit-DB.com RSS Feed
L
LINUX DO - 热门话题
L
Lohrmann on Cybersecurity
K
Kaspersky official blog
Project Zero
Project Zero
Cisco Talos Blog
Cisco Talos Blog
T
The Exploit Database - CXSecurity.com
P
Palo Alto Networks Blog
C
CXSECURITY Database RSS Feed - CXSecurity.com
T
Threatpost
S
Schneier on Security
G
GRAHAM CLULEY
The Hacker News
The Hacker News
T
Threat Research - Cisco Blogs
Scott Helme
Scott Helme
Threat Intelligence Blog | Flashpoint
Threat Intelligence Blog | Flashpoint
P
Privacy & Cybersecurity Law Blog
C
Cyber Attacks, Cyber Crime and Cyber Security
Cyberwarzone
Cyberwarzone
C
CERT Recently Published Vulnerability Notes
T
Tor Project blog
AWS News Blog
AWS News Blog
Simon Willison's Weblog
Simon Willison's Weblog
cs.CL updates on arXiv.org
cs.CL updates on arXiv.org
爱范儿
爱范儿
P
Privacy International News Feed
云风的 BLOG
云风的 BLOG
P
Proofpoint News Feed
S
Securelist
G
Google Developers Blog
The Last Watchdog
The Last Watchdog
Google Online Security Blog
Google Online Security Blog
美团技术团队
F
Fortinet All Blogs
小众软件
小众软件
Recorded Future
Recorded Future
V
Visual Studio Blog
B
Blog RSS Feed
H
Help Net Security
CTFtime.org: upcoming CTF events
CTFtime.org: upcoming CTF events
Google DeepMind News
Google DeepMind News
Blog — PlanetScale
Blog — PlanetScale
博客园 - 聂微东
Stack Overflow Blog
Stack Overflow Blog
Martin Fowler
Martin Fowler
Latest news
Latest news
Spread Privacy
Spread Privacy
H
Heimdal Security Blog

博客园 - miqier

离职时需要注意的问题 WMI问题答案集锦 ASCII码对照表 链接:一个较好的C#----Remoting站点 基于.NET项目的代码书写规范要求书 c#中实现文件拖放打开的方法 .net中的函数可以返回多个值了 P2P之UDP穿透NAT的原理与实现 C#编程让Outlook乖乖交出帐户密码 在C#中应用哈希表(Hashtable) C#-WebService中取客户端IP地址 部署 XML Web services Web Service中保持ASP.net的状态 71个做饭技巧 《Effective C#》翻译札记 QQ协议网络协议--请求部份 QQ协议分析 哪些食物不宜存放在冰箱中 食谱禁忌
WebService状态管理
miqier · 2005-11-10 · via 博客园 - miqier
 

  在默认情况下,.NET下的WebService是无状态的。不过可以用ASP.NET提供的状态管理那就是Session和Application。这使得WebService下状态管理变得简单了,只需使用Webmethod属性的Enablesession子属性就可,即[WEBMETHO(ENABLESESSION=TRUE)]

  服务端代码如下:

[WebMethod(EnableSession= true)]
public client GetClientState()
{
cstate = (client)Session["clientstate"];
if (cstate == null)
{
cstate = new client();
Session["clientstate"] = cstate;
}

return cstate;
}
[WebMethod(EnableSession = true)]
public void click()
{
client c = this.GetClientState();
c.requsest++;

}

}
public class client
{
public int requsest;
}

  先创建一个CLIENT类,用于表示客户端连接的次数,GetClientState()方法用于返回当前用户的状态.

  客户端代码如下:

partial class Form1 : Form
{
webstate.Service ws ;
webstate.client c;
public Form1()
{
InitializeComponent();
ws = new testwebstate.webstate.Service();
ws.CookieContainer = new System.Net.CookieContainer();
//设置COOKIE容器,以便代理对象能正确使用COOKIE来提供状态信息
}

private void button1_Click(object sender, EventArgs e)
{
ws.click();//每点击一次,当前用户的CLIENT STATE的REQUEST就++
c = ws.GetClientState();//获取状态信息
MessageBox.Show("you have click" + c.requsest + "times");
}
}

  以上的是Seesion的状态管理,下面介绍Application.

  服务端代码如下:

[WebServiceBinding(ConformanceClaims = WsiClaims.BP10, EmitConformanceClaims = true)]
public class Service : System.Web.Services.WebService
{
ArrayList clist;

[WebMethod]
public string GetHistory()
{
StringBuilder xbuider = new StringBuilder();//要添加USING SYSTEM.TEXT;
clist = (ArrayList)Application["client"];
if (clist == null)
{
clist = new ArrayList();
Application["client"] = clist;
}
foreach (client c in clist)
{
xbuider.Append(c.name + "" + c.request +"" + "\r\n");

}
return xbuider.ToString();

}
[WebMethod]
public void click(ref client c)//这里用的是传递对象的引用
{
clist = (ArrayList)Application["client"];
if (clist == null)
{
clist = new ArrayList();
Application["client"] = clist;
}
clist.Add(c);

}

}
public class client
{
public int request;
public string name;
}

  客户端代码如下:

partial class Form1 : Form
{

webstate.client c;
public Form1()
{
InitializeComponent();
c = new testwebstate2.webstate.client();
c.name = "jisiki";

}

private void button1_Click(object sender, EventArgs e)
{

c.request++;
webstate.Service s = new testwebstate2.webstate.Service();
s.click(ref c);//这里用的是传递对象的引用
this.richTextBox1.Text = s.GetHistory();

}
}

  对于WebService而言,Application属性总是可用的,Application返回Httpapplicationatate类的一个实例,它能存储来自任何客户端的可访问的"名称/值".