Have any of you guys successfully implemented session management in CF using Remoting?
Regards, Bjorn Schultheiss Senior Flash Developer QDC Technologies From: [email protected] [mailto:[EMAIL PROTECTED] On Behalf Of Shane Farmer Sent: Thursday, 16 November 2006 8:28 PM To: [email protected] Subject: [cfaussie] Re: Flash Remoting From the Flash remoting server samples this might help you send an array through: /** * function: testArray, no paramaters * creates new Array object * updates text field "arrayInput" with value of Array object * then invokes the method, "testArray" in the Flash Remoting Service called "flashtestService" defined in the init function. * sending the value of the Array object to the service. */ function testArray() { flashArray= new Array(); flashArray[0]=messageInput.text; flashArray[1]=numInput.text; flashArray[2]=["kev","irina","steph"]; flashtestService.testArray(flashArray); } On 11/16/06, Brett Payne-Rhodes <[EMAIL PROTECTED]> wrote: Thats more like it! Share the cfaussie love! B) Steve Onnis wrote: > Here you go Dale > > > > Lots of love > > Steve J > > > > ------------------------------------------------------------------------ > > *From:* [email protected] [mailto:[EMAIL PROTECTED] *On > Behalf Of *Dale Fraser > *Sent:* Thursday, 16 November 2006 8:01 PM > *To:* [email protected] > *Subject:* [cfaussie] Re: Flash Remoting > > > > It's just Flash 8 -> CF7. > > > > I'm thinking it's simple, searching through lots of examples to find an > example. > > > > Regards > Dale Fraser > > > > http://dale.fraser.id.au > > ------------------------------------------------------------------------ > > *From:* [email protected] [mailto:[EMAIL PROTECTED] *On > Behalf Of *Shane Farmer > *Sent:* Thursday, 16 November 2006 7:41 PM > *To:* [email protected] > *Subject:* [cfaussie] Re: Flash Remoting > > > > Dale, > > > > Are you trying to connect CF7 and Flex through remoting or just a Flash > movie? While I know nothing about either I may know of someone that is a > bit of a Flash developer that may know. > > > > At least if it is clear what you are trying to do it may stop pointless > replies. > > > > Shane > > > > On 11/16/06, *Dale Fraser* <[EMAIL PROTECTED] > <mailto: [EMAIL PROTECTED]>> wrote: > > Can anyone point me to a simple example of Flash remoting to CF7. > > > > I want to pass CF an array and return an array. > > > > I could pass a string and return a string if this makes it much easier. > > Regards > Dale Fraser > > http://dale.fraser.id.au < http://dale.fraser.id.au/> > > > > > > > > > > > > > --~--~---------~--~----~------------~-------~--~----~ You received this message because you are subscribed to the Google Groups "cfaussie" group. To post to this group, send email to [email protected] To unsubscribe from this group, send email to [EMAIL PROTECTED] For more options, visit this group at http://groups.google.com/group/cfaussie?hl=en -~----------~----~----~----~------~----~------~--~---
