`
terryfeng
  • 浏览: 504061 次
  • 性别: Icon_minigender_1
  • 来自: 北京
社区版块
存档分类
最新评论

WCF 及 Silverlight 中使用 Session

阅读更多

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有效化

  1. [ServiceContract(SessionMode
    SessionMode=SessionMode.Required)]  
  2. public interface ICalculator  
  3. {  
  4. [OperationContract(IsOneWay=true)]  
  5. void Adds(double x);  
  6. [OperationContract]  
  7. double GetResult();  
  8. }

(2)ServiceBehavior 里面利用参数InstanceContextMode设定到底使用哪一种Session方式

  1. [ServiceBehavior(InstanceContextMode
    InstanceContextMode=InstanceContextMode.PerCall)]  
  2. public class CalculatorService:ICalculator  
  3. {  }

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与WCF之间的双工通信

    3. **实例化模式**: 为了实现双工通信,WCF服务通常使用会话式实例化模式(PerSession)。这样,服务和客户端之间可以维持一个持久的连接,服务可以通过回调接口调用客户端方法。 4. **Security**: 在实际应用中,...

    基于 Silverlight +ASP.Net实现的Sessions参数访问程序例子代码

    在本示例中,我们将看到如何在Silverlight应用中使用ASP.NET的Session对象。通常,由于同源策略的限制,JavaScript或Silverlight直接访问服务器端的Session是不可能的。因此,我们需要通过WCF(Windows ...

    Silverlight初学者的入门课程

    #### 第二十三章:Silverlight中使用WCF示例 本章节提供了具体的示例代码,展示了如何在Silverlight应用程序中集成WCF服务,包括配置服务引用、处理响应数据等步骤。 #### 第二十四章:从Silverlight控件访问...

    silverlight登陆代码

    标题中的“Silverlight登录代码”指的是使用Microsoft Silverlight技术实现的用户登录功能的代码示例。Silverlight是一种已弃用的浏览器插件,主要用于创建丰富的交互式Web应用程序,尤其是在多媒体和图形方面。它...

    [影音娱乐]Silverlight打苍蝇游戏_yyfly(ASP.NET源码).rar

    例如,了解如何在ASP.NET页面中嵌入Silverlight控件,以及如何通过WCF服务或者JavaScript与Silverlight客户端进行数据交换。 总结而言,【影音娱乐】Silverlight打苍蝇游戏_yyfly(ASP.NET源码)不仅是一个有趣的...

    ASP.NET-[影音娱乐]Silverlight星际竞技场游戏.zip

    在这个名为"ASP.NET-[影音娱乐]Silverlight星际竞技场游戏.zip"的压缩包中,我们主要探讨的是如何使用这两种技术构建一个星际竞技场游戏。 首先,ASP.NET是.NET Framework的一部分,它是一个用于构建动态网站、Web...

    Silverlight系列之打地鼠源码

    7. **数据持久化**:游戏可能保存玩家的最高分或其他成就,这需要使用ASP.NET的Session或Cookie来实现,或者通过服务器端的数据库存储。 在ASP.NET框架下,Silverlight应用程序可以与服务器进行通信,例如发送玩家...

    如何构建灵活且可重复使用的WCF服务

    **构建灵活且可重复使用的WCF服务** WCF(Windows Communication Foundation)是微软提供的一种用于构建分布式应用程序的服务框架,它支持多种通信协议和传输方式,为开发者提供了强大的灵活性。要构建一个灵活且可...

    ASPNET程序设计实验题目

    Silverlight是微软的富互联网应用技术,你将学习如何创建和编写Silverlight应用程序,以及如何使用各种控件。 实验十六:Silverlight技术应用二 这个实验要求你掌握XAML语言来布局和创建可视化元素,同时使用...

    VB 2010 高清PDF教程

    - **消息队列:**介绍了消息队列服务,以及如何在.NET应用程序中使用。 - **事务处理:**讲解了事务处理机制,以及如何实现可靠的事务操作。 - **安全服务:**分析了.NET Framework提供的安全服务,如加密、认证等。...

    LabVIEW中的Web Service和网络功能.pdf

    - 客户端可以通过各种网络开发工具如Flash、Silverlight或Java RIAs等访问Web Service。 - 这些工具无需额外安装即可使用HTTP协议获取数据。 - **监控与管理**: - LabVIEW提供了分布式系统管理器来监控Web ...

    .net 3.5 +sql server 2005 小型论坛 示例

    8. **页面间通信**:学习如何在多个页面之间传递数据,如使用Session、QueryStrings或ViewStates。 9. **错误处理和日志记录**:理解如何在应用中捕获和处理异常,以及如何记录运行日志。 这个示例是初学者接触.NET...

    源码 Dr.Bob’s Delphi Prism XE Development Essentials June 2011

    Silverlight................................................................................ 40 Mono ................................................................................................ 40 ...

Global site tag (gtag.js) - Google Analytics