- 浏览: 503995 次
- 性别:
- 来自: 北京
文章分类
- 全部博客 (329)
- [发布至博客园首页] (12)
- [随笔分类][01] .Net X (59)
- [随笔分类][20] Architecture (16)
- [随笔分类][21] Developer Logs (13)
- [网站分类]Windows 7 (1)
- [随笔分类][13] Oracle & .Net (7)
- [随笔分类][16] Love in China (14)
- [随笔分类][15] Development Tools (20)
- [随笔分类][18] Windows Phone (12)
- [随笔分类][12] Design & Pattern (17)
- [网站分类].NET新手区 (22)
- [网站分类]首页候选区 (2)
- [随笔分类][08] Windows (Server) (13)
- [随笔分类][02] CSLA.Net (3)
- [随笔分类][10] jQuery & javaScript (10)
- [随笔分类][11] SQL Server (4)
- [随笔分类][22] Enterprise Logs (3)
- [随笔分类][03] News (9)
- [随笔分类][19] Quality Assurance (2)
- [随笔分类][05] Silverlight (20)
- [随笔分类][14] Google Earth & .Net (6)
- [网站分类]非技术区 (9)
- [随笔分类][07] WWF (2)
- [随笔分类][04] SharePoint (1)
- [随笔分类][20] Analysis & Design (36)
- [随笔分类][06] WCF (5)
- [随笔分类][12] Architecture (1)
- [随笔分类][09] WPF (0)
- [随笔分类][17] VStudio & Expression (5)
最新评论
-
zhangyy130:
你好,我关于第二段的那个表视图、模型与图这三者的关系我没有看明 ...
UML模型的组成 -
guji528:
谢谢分享!
Enterprise Architect 基础应用 -
studentsky:
好文章,图文并茂!
WCF 第一个用 Visual Studio 2010 创建的WCF服务 -
chen975311486:
用哪个工具画的????
UML中对关系的描述 (二) -
frankies:
继续学习中。。
UML 交互概述图
WCF 中 使用 Session
1.标记WCF服务开启Session模式,使用SessionMode 来使Session有效化
[ServiceContract(SessionMode = SessionMode.Required)]
2.服务类添加ASPNETSESSION兼容标记
[System.ServiceModel.Activation.AspNetCompatibilityRequirements(RequirementsMode = System.ServiceModel.Activation.AspNetCompatibilityRequirementsMode.Required)]
using System; using System.Linq; using System.Runtime.Serialization; using System.ServiceModel; using System.ServiceModel.Activation; using System.Collections.Generic; using System.Text; namespace Service { [ServiceContract(SessionMode = SessionMode.Required)] [AspNetCompatibilityRequirements(RequirementsMode = System.ServiceModel.Activation.AspNetCompatibilityRequirementsMode.Required)] public partial class Service { } }
3.配置WEB.CONFIG文件中<system.serviceModel>节
<serviceHostingEnvironment aspNetCompatibilityEnabled="true"></serviceHostingEnvironment>
<!--WCF Siverlight 配置--> <system.serviceModel> <behaviors> <serviceBehaviors> <behavior name=".Service.ServiceBehavior"> <serviceMetadata httpGetEnabled="true" /> <serviceDebug includeExceptionDetailInFaults="false" /> </behavior> </serviceBehaviors> </behaviors> <bindings> <customBinding> <binding name="customBinding0"> <binaryMessageEncoding /> <httpTransport> <extendedProtectionPolicy policyEnforcement="Never" /> </httpTransport> </binding> </customBinding> </bindings> <serviceHostingEnvironment aspNetCompatibilityEnabled="true" /> <!--这里配置--> <services> <service behaviorConfiguration=".Service.ServiceBehavior" name=".Service.Service"> <endpoint address="" binding="customBinding" bindingConfiguration="customBinding0" contract=".Service.Service" /> <endpoint address="mex" binding="mexHttpBinding" contract="IMetadataExchange" /> </service> </services> </system.serviceModel>
WCF状态保存分为两步:
(1) 使用SessionMode 来使Session有效化
- [ServiceContract(SessionMode
SessionMode=SessionMode.Required)] - public interface ICalculator
- {
- [OperationContract(IsOneWay=true)]
- void Adds(double x);
- [OperationContract]
- double GetResult();
- }
(2)ServiceBehavior 里面利用参数InstanceContextMode设定到底使用哪一种Session方式
- [ServiceBehavior(InstanceContextMode
InstanceContextMode=InstanceContextMode.PerCall)] - public class CalculatorService:ICalculator
- { }
WCF状态保存SessionMode 有三种值:
(1)Allowed 默认选值,允许但不强制使用Session
(2)Required 强制使用Session
(3)NotAllowed 不允许使用Session
WCF状态保存InstanceContextMode 有三种值:
(1) Percall 为user的每一次调用生成一个SessionID
生命周期:调用开始 ---->调用结束,这种情况和不使用Session是一样的
(2) PerSession 为每个用户生成一个SessionID
生命周期:客户端代理生成--->客户端代理关闭 和最原先的Session是一样的
(3) Seigle 生成唯一的SessionID,所有的用户共享 从host创建---->host 关闭,和Application 一样
在Silverlight中使用SESSION
首先Session是运行在服务器上的,而Silverlight运行在客户端。因此在Silverlight中使用SESSION的说法并不准确,
只因大家经常这样搜索才起这个名字。
有两种方法实现Silverlight与Session的关联:
方法一、通过WCF使用ASP.NET中的Session[因BasicHttpBinding不支持WCF中的Session,如使用WCF会话将报错 ]
首先:在web.config中<system.serviceModel >下添加:
<serviceHostingEnvironment aspNetCompatibilityEnabled="true"/>
然后:在服务类[不是接口]下添加如下属性:
[AspNetCompatibilityRequirements(RequirementsMode = AspNetCompatibilityRequirementsMode.Allowed)]
接下来就可以使用Session记得添加System.Web的引用
HttpContext.Current.Session["YourName"] = something;
object something = HttpContext.Current.Session["YourName"];
方法二、在客户端新建一个静态类模拟Session
如要保存登陆信息,可在验证了用户名、密码之后在客户端保存相关信息。
using System;
using System.Collections.Generic;
namespace SessionDemo
{
public static class SessionManager
{
private static Dictionary<string, object> session = new Dictionary<string, object>();
public static Dictionary<string, object> Session
{
get { return SessionManager.session; }
set { SessionManager.session = value; }
}
}
}
使用方法:
赋值:
SessionManager.Session["uname"] = "kunal";
取值:
txbUname.Text = SessionManager.Session["uname"].ToString();
介绍 WCF(Windows Communication Foundation) - 会话状态: ServiceContract ·SessionMode.Allowed - 指定当传入绑定支持会话时,协定也支持会话(默认值) ·SessionMode.Required - 指定协定需要会话绑定。如果绑定并未配置为支持会话,则将引发异常 ·SessionMode.NotAllowed - 指定协定永不支持启动会话的绑定 OperationContract ·IsInitiating - 获取或设置一个值,该值指示方法是否实现可在服务器上启动会话(如果存在会话)的操作。 ·IsTerminating - 获取或设置一个值,该值指示服务操作在发送答复消息(如果存在)后,是否会导致服务器关闭会话。 示例 1、服务 IHello.cs using System; using System.Collections.Generic; using System.Linq; using System.Text; using System.ServiceModel; namespace WCF.ServiceLib.SessionManagement { /**//// <summary> /// 演示会话状态的接口 /// </summary>NotAllowed /// <remarks> /// SessionMode - 获取或设置是否允许、不允许或要求会话 /// SessionMode.Allowed - 指定当传入绑定支持会话时,协定也支持会话(默认值) /// SessionMode.Required - 指定协定需要会话绑定。如果绑定并未配置为支持会话,则将引发异常 /// SessionMode.NotAllowed - 指定协定永不支持启动会话的绑定 /// </remarks> [ServiceContract(SessionMode = SessionMode.Required)] public interface IHello { /**//// <summary> /// 初始化Session /// </summary> /// <remarks> /// IsInitiating - 获取或设置一个值,该值指示方法是否实现可在服务器上启动会话(如果存在会话)的操作。 /// IsTerminating - 获取或设置一个值,该值指示服务操作在发送答复消息(如果存在)后,是否会导致服务器关闭会话。 /// </remarks> [OperationContract(IsInitiating = true, IsTerminating = false)] void StartSession(); /**//// <summary> /// 结束Session /// </summary> [OperationContract(IsInitiating = false, IsTerminating = true)] void StopSession(); /**//// <summary> /// 获取计数器结果 /// </summary> /// <returns></returns> [OperationContract(IsInitiating = false, IsTerminating = false)] int Counter(); /**//// <summary> /// 获取SessionId /// </summary> /// <returns></returns> [OperationContract(IsInitiating = false, IsTerminating = false)] string GetSessionId(); } } Hello.cs using System; using System.Collections.Generic; using System.Linq; using System.Text; using System.ServiceModel; namespace WCF.ServiceLib.SessionManagement { /**//// <summary> /// 演示会话状态的接口 /// </summary> /// <remarks> /// InstanceContextMode - 获取或设置指示新服务对象何时创建的值。 /// InstanceContextMode.PerSession - 为每个会话创建一个新的 System.ServiceModel.InstanceContext 对象。 /// InstanceContextMode 的默认值为 InstanceContextMode.PerSession /// </remarks> [ServiceBehavior(InstanceContextMode = InstanceContextMode.PerSession)] public class Hello : IHello { private int _counter; /**//// <summary> /// 初始化Session /// </summary> public void StartSession() { _counter = 0; } /**//// <summary> /// 结束Session /// </summary> public void StopSession() { _counter = 0; } /**//// <summary> /// 获取计数器结果 /// </summary> /// <returns></returns> public int Counter() { _counter++; return _counter; } /**//// <summary> /// 获取SessionId /// </summary> /// <returns></returns> public string GetSessionId() { return OperationContext.Current.SessionId; } } } 2、宿主 Hello.svc <%@ ServiceHost Language="C#" Debug="true" Service="WCF.ServiceLib.SessionManagement.Hello" %> Web.config <?xml version="1.0"?> <configuration> <system.serviceModel> <behaviors> <serviceBehaviors> <behavior name="SessionManagementBehavior"> <!--httpGetEnabled - 使用get方式提供服务--> <serviceMetadata httpGetEnabled="true" /> <serviceDebug includeExceptionDetailInFaults="true"/> </behavior> </serviceBehaviors> </behaviors> <services> <!--name - 提供服务的类名--> <!--behaviorConfiguration - 指定相关的行为配置--> <service name="WCF.ServiceLib.SessionManagement.Hello" behaviorConfiguration="SessionManagementBehavior"> <!--address - 服务地址--> <!--binding - 通信方式--> <!--contract - 服务契约--> <!--bindingConfiguration - 指定相关的绑定配置--> <endpoint address="" binding="wsHttpBinding" contract="WCF.ServiceLib.SessionManagement.IHello" bindingConfiguration="SessionManagementBindingConfiguration"/> </service> </services> <bindings> <wsHttpBinding> <!--wsHttpBinding 可提供 安全会话 和 可靠会话--> <!--receiveTimeout - 在传输引发异常之前可用于完成读取操作的时间间隔(此处可认为是Session过期时间)--> <binding name="SessionManagementBindingConfiguration" receiveTimeout="00:00:10"> <!--指示是否在通道终结点之间建立 WS-RM (WS-ReliableMessaging) 可靠会话。默认值为 false。--> <reliableSession enabled="true"/> <security> <!--此属性控制安全上下文令牌是否通过客户端与服务之间的 WS-SecureConversation 交换建立。将它设置为 true 要求远程方支持 WS-SecureConversation。--> <message establishSecurityContext="true"/> </security> </binding> </wsHttpBinding> </bindings> </system.serviceModel> </configuration> 3、客户端 Hello.aspx <%@ Page Language="C#" MasterPageFile="~/Site.master" AutoEventWireup="true" CodeFile="Hello.aspx.cs" Inherits="InstanceMode_Hello" Title="会话状态(Session)" %> <asp:Content ID="Content1" ContentPlaceHolderID="head" runat="Server"> </asp:Content> <asp:Content ID="Content2" ContentPlaceHolderID="ContentPlaceHolder1" runat="Server"> <asp:Button ID="btnStartSession" runat="server" Text="StartSession" OnClick="btnStartSession_Click" /> <asp:Button ID="btnCounter" runat="server" Text="Counter" OnClick="btnCounter_Click" /> <asp:Button ID="btnGetSessionId" runat="server" Text="GetSessionId" OnClick="btnGetSessionId_Click" /> <asp:Button ID="btnStopSession" runat="server" Text="StopSession" OnClick="btnStopSession_Click" /> </asp:Content> Hello.aspx.cs using System; using System.Collections; using System.Configuration; using System.Data; using System.Linq; using System.Web; using System.Web.Security; using System.Web.UI; using System.Web.UI.HtmlControls; using System.Web.UI.WebControls; using System.Web.UI.WebControls.WebParts; using System.Xml.Linq; public partial class InstanceMode_Hello : System.Web.UI.Page { SessionManagemenSvc.HelloClient _proxy = null; protected void Page_Load(object sender, EventArgs e) { if (Session["proxy"] == null) Session["proxy"] = new SessionManagemenSvc.HelloClient(); _proxy = Session["proxy"] as SessionManagemenSvc.HelloClient; } protected void btnStartSession_Click(object sender, EventArgs e) { _proxy.StartSession(); } protected void btnCounter_Click(object sender, EventArgs e) { Page.ClientScript.RegisterStartupScript( this.GetType(), "js", string.Format("alert('计数器:{0}')", _proxy.Counter()), true); } protected void btnGetSessionId_Click(object sender, EventArgs e) { Page.ClientScript.RegisterStartupScript( this.GetType(), "js", string.Format("alert('SessionId:{0}')", _proxy.GetSessionId()), true); } protected void btnStopSession_Click(object sender, EventArgs e) { _proxy.StopSession(); } } Web.config <?xml version="1.0"?> <configuration> <system.serviceModel> <client> <!--address - 服务地址--> <!--binding - 通信方式--> <!--contract - 服务契约--> <!--bindingConfiguration - 指定相关的绑定配置--> <endpoint address="http://localhost:3502/ServiceHost/SessionManagement/Hello.svc" binding="wsHttpBinding" contract="SessionManagemenSvc.IHello" bindingConfiguration="SessionManagementBindingConfiguration" /> </client> <bindings> <wsHttpBinding> <binding name="SessionManagementBindingConfiguration"> <!--指示是否在通道终结点之间建立 WS-RM (WS-ReliableMessaging) 可靠会话。默认值为 false。--> <reliableSession enabled="true"/> <security> <!--此属性控制安全上下文令牌是否通过客户端与服务之间的 WS-SecureConversation 交换建立。将它设置为 true 要求远程方支持 WS-SecureConversation。--> <message establishSecurityContext="true"/> </security> </binding> </wsHttpBinding> </bindings> </system.serviceModel> </configuration> 运行结果: 单击"btnStartSession"按钮,初始化Session 单击"btnCounter"按钮,Session级别的计数器累加 单击"btnGetSessionId"按钮,获取当前Session的SessionId 单击"btnStopSession"按钮,终止Session 注: Host中的wsHttpBinding配置的receiveTimeout属性为Session的过期时间
以上内容出自网络,并非原创
发表评论
-
Silverlight 从入门到精通
2009-12-31 21:12 1226Silverlight 是一种新的 Web 呈现 ... -
Silverlight 第一步 快速的掌握页面布局,做一个博客的布局实例
2010-02-12 21:34 1460如果你刚开始学习Silverlight 那么真为你高兴你可以绕 ... -
Silverlight 按钮类控件和选择控件 示例
2010-02-13 14:50 1496下面我们开始走一边Silverlight中的基础控件。 使用 ... -
Silverlight 信息显示与编辑控件 示例
2010-02-14 12:29 1678Silverlight 真是一个不错的开发平台,想到即将发布的 ... -
Silverlight 数据显示和布局控件 示例
2010-02-14 18:41 1902数据显示控件 DataGrid DataGrid 是最基础的数 ... -
Silverlight 属性样式、控件模板、视觉状态
2010-02-15 14:06 2517在使用Silverlight的样式的时候感觉非常好,以前在HT ... -
Silverlight Object 标签属性介绍、初始化参数的设置和获取、客户端系统信息获取
2010-02-15 19:02 1577HTML元素属性介绍 Silverlight 作为网页的一部 ... -
Silverlight 与HTML元素交互操作
2010-02-15 19:32 1356Silverlight 中的HtmlPage 和 HtmlE ... -
Silverlight 与javaScript互操作
2010-02-15 20:12 1464Silverlight 调用 javaScript ... -
Silverlight 中的WebClient 与 WebRequest 示例
2010-02-16 16:48 1890WebClient public partial clas ... -
Silverlight 客户端本地消息通讯
2010-02-17 13:22 1055在Silverlight 3 中添加了客户端不同应用程序之间的 ... -
Silverlight Isolated Storage 独立存储
2010-02-17 18:42 2180Silverlight 独立存储 好比Cookie一样,可以 ... -
Silverlight 程序库缓存与打开/保存文件对话框
2010-02-17 19:12 1920程序库缓存 我们都知道Xap是Silverlight 初始下 ... -
silverlight click 事件委托是 RoutedEventHandler
2008-12-01 09:46 1698cellBtn.Click += new RoutedEven ... -
silverlight 2 系统对话框
2008-12-01 09:47 906silverlight 2 系统对话框 Code< ... -
silverlight, 双击事件
2008-12-01 10:22 1165Silverlight 没有提供双 ... -
转帖-如何在不联网的情况下安装 Silverlight Tools
2009-01-05 13:54 1021首先,在安装之前,将你的系统和VS2008更新到最新的 SP1 ... -
Silverlight 开发 GIS Google Maps
2009-06-01 17:36 1705Silverlight 作为地理信息系统的开发平台,与多种图源 ... -
Silverlight Tools 安装失败 解决办法
2009-06-18 20:02 19011.Silverlight Tools 安装失败,可以尝试将注 ...
相关推荐
3. **实例化模式**: 为了实现双工通信,WCF服务通常使用会话式实例化模式(PerSession)。这样,服务和客户端之间可以维持一个持久的连接,服务可以通过回调接口调用客户端方法。 4. **Security**: 在实际应用中,...
在本示例中,我们将看到如何在Silverlight应用中使用ASP.NET的Session对象。通常,由于同源策略的限制,JavaScript或Silverlight直接访问服务器端的Session是不可能的。因此,我们需要通过WCF(Windows ...
#### 第二十三章:Silverlight中使用WCF示例 本章节提供了具体的示例代码,展示了如何在Silverlight应用程序中集成WCF服务,包括配置服务引用、处理响应数据等步骤。 #### 第二十四章:从Silverlight控件访问...
标题中的“Silverlight登录代码”指的是使用Microsoft Silverlight技术实现的用户登录功能的代码示例。Silverlight是一种已弃用的浏览器插件,主要用于创建丰富的交互式Web应用程序,尤其是在多媒体和图形方面。它...
例如,了解如何在ASP.NET页面中嵌入Silverlight控件,以及如何通过WCF服务或者JavaScript与Silverlight客户端进行数据交换。 总结而言,【影音娱乐】Silverlight打苍蝇游戏_yyfly(ASP.NET源码)不仅是一个有趣的...
在这个名为"ASP.NET-[影音娱乐]Silverlight星际竞技场游戏.zip"的压缩包中,我们主要探讨的是如何使用这两种技术构建一个星际竞技场游戏。 首先,ASP.NET是.NET Framework的一部分,它是一个用于构建动态网站、Web...
7. **数据持久化**:游戏可能保存玩家的最高分或其他成就,这需要使用ASP.NET的Session或Cookie来实现,或者通过服务器端的数据库存储。 在ASP.NET框架下,Silverlight应用程序可以与服务器进行通信,例如发送玩家...
**构建灵活且可重复使用的WCF服务** WCF(Windows Communication Foundation)是微软提供的一种用于构建分布式应用程序的服务框架,它支持多种通信协议和传输方式,为开发者提供了强大的灵活性。要构建一个灵活且可...
Silverlight是微软的富互联网应用技术,你将学习如何创建和编写Silverlight应用程序,以及如何使用各种控件。 实验十六:Silverlight技术应用二 这个实验要求你掌握XAML语言来布局和创建可视化元素,同时使用...
- **消息队列:**介绍了消息队列服务,以及如何在.NET应用程序中使用。 - **事务处理:**讲解了事务处理机制,以及如何实现可靠的事务操作。 - **安全服务:**分析了.NET Framework提供的安全服务,如加密、认证等。...
- 客户端可以通过各种网络开发工具如Flash、Silverlight或Java RIAs等访问Web Service。 - 这些工具无需额外安装即可使用HTTP协议获取数据。 - **监控与管理**: - LabVIEW提供了分布式系统管理器来监控Web ...
8. **页面间通信**:学习如何在多个页面之间传递数据,如使用Session、QueryStrings或ViewStates。 9. **错误处理和日志记录**:理解如何在应用中捕获和处理异常,以及如何记录运行日志。 这个示例是初学者接触.NET...
Silverlight................................................................................ 40 Mono ................................................................................................ 40 ...