RE: [flexcoders] CFlogin, SetCredentials and the RemoteObject

2005-05-27 Thread Peter Farland
What version of CF are you using Dave? From: flexcoders@yahoogroups.com [mailto:[EMAIL PROTECTED] On Behalf Of dave buhlerSent: Friday, May 27, 2005 10:36 AMTo: flexcoders@yahoogroups.comSubject: Re: [flexcoders] CFlogin, SetCredentials and the RemoteObject Thanks! On 5/27/05, Indy

Re: [flexcoders] CFlogin, SetCredentials and the RemoteObject

2005-05-27 Thread dave buhler
@yahoogroups.comSubject: Re: [flexcoders] CFlogin, SetCredentials and the RemoteObject Thanks! On 5/27/05, Indy Nagpal [EMAIL PROTECTED] wrote: Yes, I think that is the logic behind named objects.On 5/27/05, dave buhler [EMAIL PROTECTED] wrote:Interesting...So if I use the named remote objects

RE: [flexcoders] CFlogin, SetCredentials and the RemoteObject

2005-05-27 Thread Peter Farland
difficulties. From: flexcoders@yahoogroups.com [mailto:[EMAIL PROTECTED] On Behalf Of dave buhlerSent: Friday, May 27, 2005 3:03 PMTo: flexcoders@yahoogroups.comSubject: Re: [flexcoders] CFlogin, SetCredentials and the RemoteObject Hi Peter,MX 7 installed on JRun4Dave On 5/27/05, Peter Farland [EMAIL

Re: [flexcoders] CFlogin, SetCredentials and the RemoteObject

2005-05-27 Thread dave buhler
/Flash Remoting world)let me know if you are having any difficulties. From: flexcoders@yahoogroups.com [mailto:flexcoders@yahoogroups.com] On Behalf Of dave buhlerSent: Friday, May 27, 2005 3:03 PMTo: flexcoders@yahoogroups.comSubject: Re: [flexcoders] CFlogin, SetCredentials and the RemoteObject

Re: [flexcoders] CFlogin, SetCredentials and the RemoteObject

2005-05-26 Thread dave buhler
I was debating if I should have my login page exist within HTML or as a sep., stand alone MXML page. I mention it because I'm pretty sure the CFC method names and service names would be visible to a decompiler and thus, visible to any user who stumbles across the Flex Admin system or has just

Re: [flexcoders] CFlogin, SetCredentials and the RemoteObject

2005-05-26 Thread Indy Nagpal
Have you looked at creating named remoteobjects? That way even though the methods might be visible in the decompiler, but path to the actual cfc won't be. Hmm... regarding your swf file finally being part of cfm page... I've find myself more comfortable with standalone flex apps (that interact

Re: [flexcoders] CFlogin, SetCredentials and the RemoteObject

2005-05-26 Thread dave buhler
Interesting... So if I use the named remote objects in the flex-config file, the paths to the CFCs aren't visible? I should use a decompiler on my own app to see, but I had assumed the paths would be compiled. DaveOn 5/26/05, Indy Nagpal [EMAIL PROTECTED] wrote: Have you looked at creating

Re: [flexcoders] CFlogin, SetCredentials and the RemoteObject

2005-05-25 Thread Indy Nagpal
Hi Dave: I've never tried using RemoteObject with cflogin, but RemoteObject works very nicely with CF session variables, so it should be able to pass that information to your application. To get it to work with session variables, I was using CF and Flex on the same server, and had turned on

Re: [flexcoders] CFlogin, SetCredentials and the RemoteObject

2005-05-25 Thread dave buhler
Hi Indy, I understand setting up perhaps the username and password as a session variable. Can you show me an example of how you are passing over the username and password in the remote object? I can see adding it as something like the following on each request:

Re: [flexcoders] CFlogin, SetCredentials and the RemoteObject

2005-05-25 Thread Indy Nagpal
Hi Dave: Here is my setup, I don't know if this helps. I have a CF application where users need to login. Once they successfully plug in their username and password, their session is setup (I'm using jessionid). I have a cfc (with relevant functions for login/logout) that is used for

[flexcoders] CFlogin, SetCredentials and the RemoteObject

2005-05-22 Thread dave buhler
Does the RemoteObject permit the passing of a username and password to a CFLogin tag? I want to create an instance of NetConnection and include setCredentials(username,password) to pass over to my remote object for a valid user check on each request. If it's not supported in Flex, does anyone