Re: Is it not possible to set session variables in a cfc method?

2009-05-01 Thread Lance S
I think you mentioned you are using ajax, correct. Ajax is processing with out knowledge of the application space. To get around this I created a cfc that all my cfc calls go through and the top of the cfc looks like cfcomponent extends=mxAjax.core.cf.mxAjax output=false

Re: Is it not possible to set session variables in a cfc method?

2009-05-01 Thread Rick Faircloth
Sounds like a good idea, Lance. I'll have to read up on the extends functionality...haven't used that, yet. Thanks! Rick On Fri, May 1, 2009 at 3:51 PM, Lance S cfprogram...@yahoo.com wrote: I think you mentioned you are using ajax, correct. Ajax is processing with out knowledge of the

Re: Is it not possible to set session variables in a cfc method?

2009-05-01 Thread Scott Stroz
As long as the AJAX requests are being made to a file under the web root - and how could they not? - then there is no need to duplicate the cfapplication tag in your 'remote' CFC On Friday, May 1, 2009, Lance S cfprogram...@yahoo.com wrote: I think you mentioned you are using ajax, correct.  

Re: Is it not possible to set session variables in a cfc method?

2009-05-01 Thread Rick Faircloth
Perhaps Lance's suggestion assumes my CFC's are outside the webroot? They're all under the same application.cfc in this app. On Fri, May 1, 2009 at 5:46 PM, Scott Stroz boyz...@gmail.com wrote: As long as the AJAX requests are being made to a file under the web root - and how could they not?

Re: Is it not possible to set session variables in a cfc method?

2009-05-01 Thread Scott Stroz
if your CFCs are outside the web root, you would not be able to access them via AJAX On Friday, May 1, 2009, Rick Faircloth r...@whitestonemedia.com wrote: Perhaps Lance's suggestion assumes my CFC's are outside the webroot? They're all under the same application.cfc in this app. On Fri,

Is it not possible to set session variables in a cfc method?

2009-04-29 Thread Rick Faircloth
I'm trying to create a preview setup via cf, jquery, and ajax for a form. Before I get too deep into all this code, let me just ask this: Can I set session variables in the cfc method to the values of the form variables and use those back on the calling page? I'm doing it this way to prevent

Re: Is it not possible to set session variables in a cfc method?

2009-04-29 Thread Barney Boisvert
To answer your core question, yes, you can set session variables inside CFCs and they'll be set just as effectively as setting them anywhere else. I didn't quite follow what you're doing, but it sounds like you probably have a race condition somewhere. Logging is often the best way to find

Re: Is it not possible to set session variables in a cfc method?

2009-04-29 Thread Ian Skinner
Rick Faircloth wrote: Thoughts? Suggestions? Thanks, Rick For ANY CFML code to share application and|or session state data they must share the same Application name, usually set with a cfapplicaiton name=... OR this.name= line in either Application.cfm or Application.cfc files. When

Re: Is it not possible to set session variables in a cfc method?

2009-04-29 Thread Rick Faircloth
Thanks for the reply, Barney... While it could be a race condition, I think it's more likely that it has to do with how the content is being returned to the calling page. The calling page isn't refreshing, it's just having the content *added* to the page via jquery. I'm not sure about that

Re: Is it not possible to set session variables in a cfc method?

2009-04-29 Thread Ian Skinner
Rick Faircloth wrote: The calling page isn't refreshing, it's just having the content *added* to the page via jquery. JQuery is *NEVER* going to have access to read or write ColdFusion session data. ColdFusion session data is on the server and JQuery is on the client and they do not share

Re: Is it not possible to set session variables in a cfc method?

2009-04-29 Thread Maureen
Write a Coldfusion function that sets a structure equal to session variables and and pass that structure back to qQuery. Then the client has access to the session data. On Wed, Apr 29, 2009 at 1:41 PM, Ian Skinner h...@ilsweb.com wrote: Rick Faircloth wrote: The calling page isn't

RE: Is it not possible to set session variables in a cfc method?

2009-04-29 Thread Josh Nathanson
: Is it not possible to set session variables in a cfc method? I'm trying to create a preview setup via cf, jquery, and ajax for a form. Before I get too deep into all this code, let me just ask this: Can I set session variables in the cfc method to the values of the form variables and use those

Re: Is it not possible to set session variables in a cfc method?

2009-04-29 Thread Rick Faircloth
Thanks for the insight, Ian, but that's not a problem here. I have the components under the webroot. Rick On Wed, Apr 29, 2009 at 4:26 PM, Ian Skinner h...@ilsweb.com wrote: Rick Faircloth wrote: Thoughts? Suggestions? Thanks, Rick For ANY CFML code to share application and|or

Re: Is it not possible to set session variables in a cfc method?

2009-04-29 Thread Rick Faircloth
- From: Rick Faircloth [mailto:r...@whitestonemedia.com] Sent: Wednesday, April 29, 2009 1:14 PM To: cf-talk Subject: Is it not possible to set session variables in a cfc method? I'm trying to create a preview setup via cf, jquery, and ajax for a form. Before I get too deep into all

Re: Is it not possible to set session variables in a cfc method?

2009-04-29 Thread Rick Faircloth
Good idea, but the data in this case is going back as part of a cfsavecontent tag, instead of back through jquery the normal way I do it, with json. However, perhaps I could run the cfsavecontent, etc. code and then run another cfreturn. I'll give that a try. Thanks, Maureen. Rick On Wed,