- 浏览: 802510 次
- 性别:
- 来自: 上海
文章分类
- 全部博客 (360)
- Java (101)
- JPA/Hibernate (10)
- Spring (14)
- Flex/BlazeDS (37)
- Database (30)
- Lucene/Solr/Nutch (0)
- Maven/Ant (25)
- CXF/WebService (3)
- RPC/RMI/SOAP/WSDL (1)
- REST (6)
- TDD/BDD/JUnit (1)
- Servlet/JSP (2)
- AI/MachineLearning (3)
- Resource (1)
- 字符编码 (2)
- OOA/OOPS/UML (5)
- DesignPattern (8)
- 算法与数据结构 (11)
- Web&App Server (13)
- 并发&异步&无阻塞 (7)
- Entertainment (4)
- JavaScript/ExtJS (45)
- CodeStyle&Quality (1)
- svn/git/perforce (8)
- JSON (2)
- JavaScriptTesting (4)
- Others (6)
- RegularExpression (2)
- Linux/Windows (12)
- Protocal (2)
- Celebrities (1)
- Interview (1)
- 计算机语言 (1)
- English (2)
- Eclipse (5)
- TimeZone/时区 (1)
- Finance (1)
- 信息安全 (1)
- JMS/MQ (2)
- XSD/XML/DTD (3)
- Android (4)
- 投资 (3)
- Distribution (3)
- Excel (1)
最新评论
-
qdujunjie:
如果把m换成具体的数字,比如4或者5,会让读者更明白
m阶B树中“阶”的含义 -
java-admin:
不错,加油,多写点文章
关于Extjs的mixins和plugin -
xiehuaidong880827:
你好,我用sencha cmd打包完本地工程后,把app.js ...
ExtJS使用Sencha Cmd合并javascript文件为一个文件 -
KIWIFLY:
lwpan 写道inverse = "true&qu ...
Hibernate中什么时候使用inverse=true -
luedipiaofeng:
good
消除IE stop running this script弹出框
使用了BlazeDS后,可以从FlexContext中获取一系列与httpRequest,httpResponse相关的对象,包括FlexClient,FlexSession.
一个FlexSession可以包含一个或多个FlexClient,这个很好理解,浏览器打开两个Tab,并且没有手动新建一个Session,那么两个Tab对应两个FlexClient,server端则只对应一个FlexSession.
一个FlexClient也可以包含一个或多个FlexSession,如果Flex程序里使用了两种channel,比如RTMP-channel和HTTP-based channel那么一个FlexClient会对应两个Session
FlexClient:
用户每打开一个页面加载一次swf就会产生一个新的clientId,一份swf文件跟一个FlexClient是一一对应的。如果你的浏览器开了2个Tab,每个Tab里面访问同样的Flex应用程序,那么有两个不同的clientId,同时需要注意的是,你刷新了一个Tab,导致重新加载了一次swf文件,那么会产生一个新的clientId.另外当FlexSession过期后,如果你没有刷新页面重新加载swf,那么clientId是不变的。
FlexSession:
FlexSession是一个比HttpSession概念更宽泛的Object,FlexClient根据Channel的不同可以创建出不同的Session,基于Servlet的的HttpSession和基于NIO的RTMPSession,如果你的Flex程序使用了两种channel,那么FlexSession对应的是两个Session:HttpSession和RTMPSession,为了方便,你可以使用FlexContext.getFlexClient().getFlexSessions()来操作该FlexClient对应的Sessions.
对与只基于Servlet的HttpRequest的HttpSession来说,FlexSession和HttpSession两者的SessionId是一致的.
Are you out of luck when you use NIO-based channels/endpoints? Not really. You still have access to FlexClient object on the server, and FlexClient object has a list of sessions it is associated with. For example, if your Flex application uses a Servlet-based channel (let’s call this my-amf in short) and a NIO-based channel (my-rtmp in short), FlexClient will have 2 sessions in its list of sessions: One Servlet-based session (i.e. HttpFlexSession) for my-amf and one NIO-based session (i.e. RTMPFlexSession) for my-rtmp. Whenever you set an attribute on RTMPFlexSession, you can access the HttpFlexSession and set it there too. This way, not only all sessions associated with Flex client get the attribute, but a JSP in the same page would get the attribute in its HttpSession.
One important point. If you don’t care about sharing session data outside Flex (with a JSP for example), it’s good to know that FlexClient (the object that represents the SWF on the server) also has get/set/remove attribute methods. By setting/retrieving attributes on the FlexClient, you avoid the complexities of dealing with multiple sessions.
Reference URL:
http://livedocs.adobe.com/livecycle/8.2/programLC/programmer/lcds/help.html?content=lcconnections_2.html
http://meteatamel.wordpress.com/2010/05/21/a-little-session-talk/
FlexClient, MessageClient, and FlexSession objects
The FlexClient object
Every Flex application, written in MXML or ActionScript, is eventually compiled into a SWF file. When the SWF file connects to the LiveCycle Data Services ES server, a flex.messaging.client.FlexClient object is created to represent that SWF file on the server. SWF files and FlexClient instances have a one-to-one mapping. In this mapping, every FlexClient instance has a unique identifier named id, which the LiveCycle Data Services ES server generates. An ActionScript singleton class, mx.messaging.FlexClient, is also created for the Flex application to access its unique FlexClient id.
The MessageClient object
If a Flex application contains a Consumer component (flex.messaging.Consumer), the server creates a corresponding flex.messaging.MessageClient instance that represents the subscription state of the Consumer component. Every MessageClient has a unique identifier named clientId. The LiveCycle Data Services ES server can automatically generate the clientId value, but the Flex application can also set the value in the Consumer.clientId property before calling the Consumer.subscribe() method.
The FlexSession object
A FlexSession object represents the connection between the Flex application and the LiveCycle Data Services ES server. Its life cycle depends on the underlying protocol, which is determined by the channels and endpoints used on the client and server, respectively.
If you use an RTMP channel in the Flex application, the FlexSession on the LiveCycle Data Services ES server is scoped to the underlying RTMP connection from the single SWF file. The server is immediately notified when the underlying SWF file is disconnected because RTMP provides a duplex socket connection between the SWF file and the LiveCycle Data Services ES server. RTMP connections are created for individual SWF files, so when the connection is closed, the associated FlexSession is invalidated.
If an HTTP-based channel, such as AMFChannel or HTTPChannel, is used in the Flex application, the FlexSession on the LiveCycle Data Services ES server is scoped to the browser and wraps an HTTP session. If the HTTP-based channel connects to a servlet-based endpoint, the underlying HTTP session is a J2EE HttpSession object. If the channel connects to an NIO-based endpoint, the underlying HTTP session supports the FlexSession API, but it is disjointed from the application server HttpSession object.
The relationship between FlexClient, MessageClient, and FlexSession classes
A FlexClient object can have one or more FlexSession instances associated with it depending on the channels that the Flex application uses. For example, if the Flex application uses one HTTPChannel, one FlexSession represents the HTTP session created for that HTTPChannel on the LiveCycle Data Services ES server. If the Flex application uses an HTTPChannel and an RTMPChannel, two FlexSessions are created; one represents the HTTP session and the other represents the RTMP session.
A FlexSession can also have one or more FlexClients associated with it. For example, when a SWF file that uses an HTTPChannel is opened in two tabs, two FlexClient instances are created in the LiveCycle Data Services ES server (one for each SWF file), but there is only one FlexSession because two tabs share the same underlying HTTP session.
In terms of hierarchy, FlexClient and FlexSession are peers whereas there is a parent-child relationship between FlexClient/FlexSession and MessageClient. A MessageClient is created for every Consumer component in the Flex application. A Consumer must be contained in a single SWF file and it must subscribe over a single channel. Therefore, each MessageClient is associated with exactly one FlexClient and one FlexSession.
If either the FlexClient or the FlexSession is invalidated on the server, it invalidates the MessageClient. This behavior matches the behavior on the client. If you close the SWF file, the client subscription state is invalidated. If you disconnect the channel or it loses connectivity, the Consumer component is unsubscribed.
Event listeners for FlexClient, MessageClient, and FlexSession
The LiveCycle Data Services ES server provides the following set of event listener interfaces that allow you to execute custom business logic as FlexClient, FlexSession, and MessageClient instances are created and destroyed and as their state changes:
Event listener
Description
FlexClientListener
FlexClientListener supports listening for life cycle events for FlexClient instances.
FlexClientAttributeListener
FlexClientAttributeListener supports notification when attributes are added, replaced, or removed from FlexClient instances.
FlexClientBindingListener
FlexClientBindingListener supports notification when the implementing class is bound or unbound as an attribute to a FlexClient instance.
FlexSessionListener
FlexSessionListener supports listening for life cycle events for FlexSession instances.
FlexSessionAttributeListener
FlexSessionAttributeListener supports notification when attributes are added, replaced, or removed from FlexSession instances.
FlexSessionBindingListener
FlexSessionBindingListener supports notification when the implementing class is bound or unbound as an attribute to a FlexSession instance.
MessageClientListener
MessageClientListener supports listening for life cycle events for MessageClient instances representing Consumer subscriptions.
For more information about these classes, see the Javadoc API documentation.
Log categories for FlexClient, MessageClient, and FlexSession classes
The following server-side log categories can be used to track creation, destruction, and other relevant information for FlexClient, MessageClient, and FlexSession:
■Client.FlexClient
■Client.MessageClient
■Endpoint.FlexSession
一个FlexSession可以包含一个或多个FlexClient,这个很好理解,浏览器打开两个Tab,并且没有手动新建一个Session,那么两个Tab对应两个FlexClient,server端则只对应一个FlexSession.
一个FlexClient也可以包含一个或多个FlexSession,如果Flex程序里使用了两种channel,比如RTMP-channel和HTTP-based channel那么一个FlexClient会对应两个Session
FlexClient:
用户每打开一个页面加载一次swf就会产生一个新的clientId,一份swf文件跟一个FlexClient是一一对应的。如果你的浏览器开了2个Tab,每个Tab里面访问同样的Flex应用程序,那么有两个不同的clientId,同时需要注意的是,你刷新了一个Tab,导致重新加载了一次swf文件,那么会产生一个新的clientId.另外当FlexSession过期后,如果你没有刷新页面重新加载swf,那么clientId是不变的。
FlexSession:
FlexSession是一个比HttpSession概念更宽泛的Object,FlexClient根据Channel的不同可以创建出不同的Session,基于Servlet的的HttpSession和基于NIO的RTMPSession,如果你的Flex程序使用了两种channel,那么FlexSession对应的是两个Session:HttpSession和RTMPSession,为了方便,你可以使用FlexContext.getFlexClient().getFlexSessions()来操作该FlexClient对应的Sessions.
对与只基于Servlet的HttpRequest的HttpSession来说,FlexSession和HttpSession两者的SessionId是一致的.
Are you out of luck when you use NIO-based channels/endpoints? Not really. You still have access to FlexClient object on the server, and FlexClient object has a list of sessions it is associated with. For example, if your Flex application uses a Servlet-based channel (let’s call this my-amf in short) and a NIO-based channel (my-rtmp in short), FlexClient will have 2 sessions in its list of sessions: One Servlet-based session (i.e. HttpFlexSession) for my-amf and one NIO-based session (i.e. RTMPFlexSession) for my-rtmp. Whenever you set an attribute on RTMPFlexSession, you can access the HttpFlexSession and set it there too. This way, not only all sessions associated with Flex client get the attribute, but a JSP in the same page would get the attribute in its HttpSession.
One important point. If you don’t care about sharing session data outside Flex (with a JSP for example), it’s good to know that FlexClient (the object that represents the SWF on the server) also has get/set/remove attribute methods. By setting/retrieving attributes on the FlexClient, you avoid the complexities of dealing with multiple sessions.
Reference URL:
http://livedocs.adobe.com/livecycle/8.2/programLC/programmer/lcds/help.html?content=lcconnections_2.html
http://meteatamel.wordpress.com/2010/05/21/a-little-session-talk/
FlexClient, MessageClient, and FlexSession objects
The FlexClient object
Every Flex application, written in MXML or ActionScript, is eventually compiled into a SWF file. When the SWF file connects to the LiveCycle Data Services ES server, a flex.messaging.client.FlexClient object is created to represent that SWF file on the server. SWF files and FlexClient instances have a one-to-one mapping. In this mapping, every FlexClient instance has a unique identifier named id, which the LiveCycle Data Services ES server generates. An ActionScript singleton class, mx.messaging.FlexClient, is also created for the Flex application to access its unique FlexClient id.
The MessageClient object
If a Flex application contains a Consumer component (flex.messaging.Consumer), the server creates a corresponding flex.messaging.MessageClient instance that represents the subscription state of the Consumer component. Every MessageClient has a unique identifier named clientId. The LiveCycle Data Services ES server can automatically generate the clientId value, but the Flex application can also set the value in the Consumer.clientId property before calling the Consumer.subscribe() method.
The FlexSession object
A FlexSession object represents the connection between the Flex application and the LiveCycle Data Services ES server. Its life cycle depends on the underlying protocol, which is determined by the channels and endpoints used on the client and server, respectively.
If you use an RTMP channel in the Flex application, the FlexSession on the LiveCycle Data Services ES server is scoped to the underlying RTMP connection from the single SWF file. The server is immediately notified when the underlying SWF file is disconnected because RTMP provides a duplex socket connection between the SWF file and the LiveCycle Data Services ES server. RTMP connections are created for individual SWF files, so when the connection is closed, the associated FlexSession is invalidated.
If an HTTP-based channel, such as AMFChannel or HTTPChannel, is used in the Flex application, the FlexSession on the LiveCycle Data Services ES server is scoped to the browser and wraps an HTTP session. If the HTTP-based channel connects to a servlet-based endpoint, the underlying HTTP session is a J2EE HttpSession object. If the channel connects to an NIO-based endpoint, the underlying HTTP session supports the FlexSession API, but it is disjointed from the application server HttpSession object.
The relationship between FlexClient, MessageClient, and FlexSession classes
A FlexClient object can have one or more FlexSession instances associated with it depending on the channels that the Flex application uses. For example, if the Flex application uses one HTTPChannel, one FlexSession represents the HTTP session created for that HTTPChannel on the LiveCycle Data Services ES server. If the Flex application uses an HTTPChannel and an RTMPChannel, two FlexSessions are created; one represents the HTTP session and the other represents the RTMP session.
A FlexSession can also have one or more FlexClients associated with it. For example, when a SWF file that uses an HTTPChannel is opened in two tabs, two FlexClient instances are created in the LiveCycle Data Services ES server (one for each SWF file), but there is only one FlexSession because two tabs share the same underlying HTTP session.
In terms of hierarchy, FlexClient and FlexSession are peers whereas there is a parent-child relationship between FlexClient/FlexSession and MessageClient. A MessageClient is created for every Consumer component in the Flex application. A Consumer must be contained in a single SWF file and it must subscribe over a single channel. Therefore, each MessageClient is associated with exactly one FlexClient and one FlexSession.
If either the FlexClient or the FlexSession is invalidated on the server, it invalidates the MessageClient. This behavior matches the behavior on the client. If you close the SWF file, the client subscription state is invalidated. If you disconnect the channel or it loses connectivity, the Consumer component is unsubscribed.
Event listeners for FlexClient, MessageClient, and FlexSession
The LiveCycle Data Services ES server provides the following set of event listener interfaces that allow you to execute custom business logic as FlexClient, FlexSession, and MessageClient instances are created and destroyed and as their state changes:
Event listener
Description
FlexClientListener
FlexClientListener supports listening for life cycle events for FlexClient instances.
FlexClientAttributeListener
FlexClientAttributeListener supports notification when attributes are added, replaced, or removed from FlexClient instances.
FlexClientBindingListener
FlexClientBindingListener supports notification when the implementing class is bound or unbound as an attribute to a FlexClient instance.
FlexSessionListener
FlexSessionListener supports listening for life cycle events for FlexSession instances.
FlexSessionAttributeListener
FlexSessionAttributeListener supports notification when attributes are added, replaced, or removed from FlexSession instances.
FlexSessionBindingListener
FlexSessionBindingListener supports notification when the implementing class is bound or unbound as an attribute to a FlexSession instance.
MessageClientListener
MessageClientListener supports listening for life cycle events for MessageClient instances representing Consumer subscriptions.
For more information about these classes, see the Javadoc API documentation.
Log categories for FlexClient, MessageClient, and FlexSession classes
The following server-side log categories can be used to track creation, destruction, and other relevant information for FlexClient, MessageClient, and FlexSession:
■Client.FlexClient
■Client.MessageClient
■Endpoint.FlexSession
发表评论
-
Panel高度为0但里面的组件依旧显示
2013-04-24 14:34 1117解决办法: 把Panel中的内容组件用<s:Scroll ... -
约束布局constraint layout
2013-03-01 14:02 1850约束布局constraint layout要点: 1)只有支持 ... -
根据屏幕分辨率动态调整组件大小
2013-02-22 17:34 1550将代码写在组件的preInitialize事件监听器里面 简化 ... -
设置Flex组件的尺寸大小
2013-02-21 16:17 1574深红色部分标明了需注意的地方 另外要注意组件和容器的生命周 ... -
Flex minWidth minHeight
2013-02-04 16:17 1560minWidth 这个值并不是给组件自己用的,而是给组件的父容 ... -
ActionScript遍历绑定(BindProperty,BindSetter,ChangeWatcher)
2013-02-01 10:11 2493注意: 为防止内存益处,记得调用watcherInstance ... -
Flex程序适应不同屏幕尺寸和分辨率(滚动条)
2013-01-31 15:02 9860FlashBuilder编译后自动生成的xx.html里面定义 ... -
防止RemoteObject批处理AMF消息
2013-01-14 17:01 1310问题描述: 如果你在短时内调用同一个java对象上的两个方法, ... -
自动检测http和https的RemoteObject
2013-01-13 10:30 1812package { import util.Bro ... -
flex浏览器相关辅组类
2012-12-06 13:39 1282package util { import flash. ... -
Flex可变参数带来的问题
2012-12-06 13:34 1524当你在flex的方法中用了可变参数后,你会发现这些参数传到ja ... -
flex如何通过类名称实例化对象
2012-11-30 13:52 2765Getting the class from an objec ... -
flexlib的treeGrid用法
2012-11-30 13:46 1321为了使用treeGrid,通常你需要定义自己的DataDesc ... -
自定义flex tree的DataDescriptor
2012-11-30 13:42 1439public class EnvironmentDataDes ... -
关于Boolean类型在flex与java中间传递的问题
2012-11-30 13:38 1283/** *为简化,只列举两个字段 */ publi ... -
给Flex的Tree赋值方式(XML和ArrayCollection)
2012-11-30 09:33 40571)方式一,mxml内嵌xml数据赋值方式,Embedded ... -
Custom Alert
2012-11-26 19:21 0<?xml version="1.0&qu ... -
Flex服务端分页
2012-11-14 17:00 1084Structure: model event ... -
Flex可携带数据的Aler组件(DataCarriableAlert)
2012-11-14 16:52 1362package component.alert { ... -
映射flex类到java内部类
2012-11-14 16:05 1209java端 public class Person{ p ...
相关推荐
这些方法通过调用`FlexContext.getFlexSession()`获取当前的FlexSession对象,然后通过`setAttribute`和`getAttribute`方法设置或获取会话属性。 ```java public class GetSeesion { public void setSession...
- **会话对象**:介绍FlexClient、MessageClient和FlexSession等会话管理对象的使用方法。 - **FlexContext类**:阐述如何利用FlexContext类管理和获取会话属性。 - **会话生命周期**:描述会话的创建、维护和销毁...
标题中的“Flex、Spring整合:Spring BlazeDS Integration”指的是在Java后端使用Spring框架与前端Flex应用程序进行集成的一种技术方案。BlazeDS是Adobe提供的一个开源项目,它为富互联网应用(RIA)提供了数据推送...
通过这种方式集成Spring,Flex应用程序可以轻松地利用Spring容器中的bean,例如通过`FlexContext.getMessageBroker()`获取`MessageBroker`实例,进而调用Spring的服务。这不仅简化了Flex与服务器端数据交互的复杂性...
FlexContext.getServletConfig().getServletContext() ); String beanName = getSource(); try { log.info("Lookup bean from Spring ApplicationContext: " + beanName); return appContext.getBean(bean...
FlexContext.getServletConfig().getServletContext() ); String beanName = getSource(); try { log.info("Lookup bean from Spring ApplicationContext: " + beanName); return appContext.getBean...