Skip to main content
Participant
August 29, 2007
Question

(Please help) ColdFusion Client Scope into JSP

  • August 29, 2007
  • 1 reply
  • 309 views
Hi,

I have a requirement where i need to access the Data from Client Scope in Coldfusion in a JSP. I don't see the data in Session, Request and application scope of JSP.

Can anybody help me in how do i access the information which is declared in Client scope in Coldfusion inside the JSP?
This topic has been closed for replies.

1 reply

Inspiring
August 30, 2007
I have no experience with it but from http://spike.oli.tudelft.nl/jochemd/index.cfm?PageID=11 the following code snippet may point you in a usefull direction.

<cflock name="serviceFactory" type="exclusive" timeout="10">
<cfscript>
factory = CreateObject("java", "coldfusion.server.ServiceFactory");
c_scopeservice = factory.clientscopeservice;
</cfscript>
<cfdump var="#c_scopeservice#">
</cflock>