RE: How can it be done ?

2003-10-28 Thread Tangorre, Michael
pass the ID in the url. -Original Message- From: Chris [mailto:[EMAIL PROTECTED] Sent: Tuesday, October 28, 2003 9:52 AM To: CF-Talk Subject: How can it be done ? Good afternoon everyone, I have a small quetion, may be one of you skilled guys can help me out. I have a login page, when

Re: How can it be done ?

2003-10-28 Thread Chris
Good idea, though after the installation, there is a reboot, page is gone. - Original Message - From: Tangorre, Michael To: CF-Talk Sent: Tuesday, October 28, 2003 3:50 PM Subject: RE: How can it be done ? pass the ID in the url. -Original Message- From: Chris [mailto

RE: How can it be done ?

2003-10-28 Thread d.a.collie
or use session vars and pass the cfid and cftoken (or jsessionid) in the url and the user can't muck about with the userid -Original Message- From: Tangorre, Michael [mailto:[EMAIL PROTECTED] Sent: 28 October 2003 14:51 To: CF-Talk Subject: RE: How can it be done ? pass the ID

RE: How can it be done ?

2003-10-28 Thread John Stanley
can you store the users ip address and associate it with the id? -Original Message- From: Chris [mailto:[EMAIL PROTECTED] Sent: Tuesday, October 28, 2003 9:56 AM To: CF-Talk Subject: Re: How can it be done ? Good idea, though after the installation, there is a reboot, page is gone

Re: How can it be done ?

2003-10-28 Thread Bruce Sorge
So why not have them log in again and pass the ID in the URL string? - Original Message - From: Chris To: CF-Talk Sent: Tuesday, October 28, 2003 8:56 AM Subject: Re: How can it be done ? Good idea, though after the installation, there is a reboot, page is gone. - Original

RE: How can it be done ?

2003-10-28 Thread Kennerly, Rick H CIV
:[EMAIL PROTECTED] Sent: Tuesday, 28 October, 2003 10:59 To: CF-Talk Subject: RE: How can it be done ? can you store the users ip address and associate it with the id? -Original Message- From: Chris [mailto:[EMAIL PROTECTED] Sent: Tuesday, October 28, 2003 9:56 AM To: CF-Talk Subject: Re

Re: How can it be done ?

2003-10-28 Thread Chris
: John Stanley To: CF-Talk Sent: Tuesday, October 28, 2003 3:58 PM Subject: RE: How can it be done ? can you store the users ip address and associate it with the id? -Original Message- From: Chris [mailto:[EMAIL PROTECTED] Sent: Tuesday, October 28, 2003 9:56 AM To: CF-Talk Subject: Re: How

RE: How can it be done ?

2003-10-28 Thread Robertson-Ravo, Neil (RX)
hmmmtricky especially since there is a reboot...if cookies are a no go, then I am not sure how you will keep state etc? you could write a file with the userid to the hard drive (as you are allowing a download). but even that will require a user to accept the download. _ From:

Re: How can it be done ?

2003-10-28 Thread Chris
, October 28, 2003 4:08 PM Subject: RE: How can it be done ? hmmmtricky especially since there is a reboot...if cookies are a no go, then I am not sure how you will keep state etc? you could write a file with the userid to the hard drive (as you are allowing a download). but even

RE: How can it be done ?

2003-10-28 Thread Ricky Fritzsching
I do agree with Neil, but another option before CFMX would be to write the information into the registry by using the cfregistry tag. Just another option for you. _ From: Robertson-Ravo, Neil (RX) [mailto:[EMAIL PROTECTED] Sent: Tuesday, October 28, 2003 9:09 AM To: CF-Talk hmmmtricky

Re: How can it be done ?

2003-10-28 Thread Chris
Thanks Ricky, I think that writing to the registry will be the best solution for this. - Original Message - From: Ricky Fritzsching To: CF-Talk Sent: Tuesday, October 28, 2003 4:27 PM Subject: RE: How can it be done ? I do agree with Neil, but another option before CFMX would

Re: How can it be done ?

2003-10-28 Thread Nick de Voil
I think that writing to the registry will be the best solution for this. cfregistry writes to the server's registry, not the client's. Nick [Todays Threads] [This Message] [Subscription] [Fast Unsubscribe] [User Settings]

Re: How can it be done ?

2003-10-28 Thread Chris
Oops, that is out of the question then... - Original Message - From: Nick de Voil To: CF-Talk Sent: Tuesday, October 28, 2003 4:34 PM Subject: Re: How can it be done ? I think that writing to the registry will be the best solution for this. cfregistry writes to the server's registry

RE: How can it be done ?

2003-10-28 Thread John Stanley
what about having the program write to a text file on the client machine, then when the user comes back up, read from that text file. -Original Message- From: Nick de Voil [mailto:[EMAIL PROTECTED] Sent: Tuesday, October 28, 2003 10:34 AM To: CF-Talk Subject: Re: How can it be done ? I

Re: How can it be done ?

2003-10-28 Thread Chris
Writing to a text file is another download, can only be one download (to keep it simple for the user) - Original Message - From: John Stanley To: CF-Talk Sent: Tuesday, October 28, 2003 4:37 PM Subject: RE: How can it be done ? what about having the program write to a text file

RE: How can it be done ?

2003-10-28 Thread Greg Luce
. Wouldn't this be best? Greg -Original Message- From: Chris [mailto:[EMAIL PROTECTED] Sent: Tuesday, October 28, 2003 11:46 AM To: CF-Talk Subject: Re: How can it be done ? Oops, that is out of the question then... - Original Message - From: Nick de Voil To: CF-Talk Sent

Re: How can it be done ?

2003-10-28 Thread Chris
for individual websites. Wouldn't this be best? Greg -Original Message- From: Chris [mailto:[EMAIL PROTECTED] Sent: Tuesday, October 28, 2003 11:46 AM To: CF-Talk Subject: Re: How can it be done ? Oops, that is out of the question then... - Original Message - From: Nick de Voil

RE: How can it be done ?

2003-10-28 Thread Tangorre, Michael
If a cookie is not set, and you can not use the IP, I can not think of another way.. -Original Message- From: Robertson-Ravo, Neil (RX) [mailto:[EMAIL PROTECTED] Sent: Tuesday, October 28, 2003 10:09 AM To: CF-Talk Subject: RE: How can it be done ? hmmmtricky especially since

RE: How can it be done ?

2003-10-28 Thread John Stanley
-Original Message- From: Chris [mailto:[EMAIL PROTECTED] Sent: Tuesday, October 28, 2003 10:50 AM To: CF-Talk Subject: Re: How can it be done ? Writing to a text file is another download, can only be one download (to keep it simple for the user) - Original Message - From

RE: How can it be done ?

2003-10-28 Thread John Stanley
could the first download place a copy of the text file that is looked for when the user logs back in? -Original Message- From: Chris [mailto:[EMAIL PROTECTED] Sent: Tuesday, October 28, 2003 10:50 AM To: CF-Talk Subject: Re: How can it be done ? Writing to a text file is another download

RE: How can it be done ?

2003-10-28 Thread Robertson-Ravo, Neil (RX)
: How can it be done ? Writing to a text file is another download, can only be one download (to keep it simple for the user) - Original Message - From: John Stanley To: CF-Talk Sent: Tuesday, October 28, 2003 4:37 PM Subject: RE: How can it be done ? what about having the program write

Re: How can it be done ?

2003-10-28 Thread Chris
, October 28, 2003 4:52 PM Subject: RE: How can it be done ? could the first download place a copy of the text file that is looked for when the user logs back in? -Original Message- From: Chris [mailto:[EMAIL PROTECTED] Sent: Tuesday, October 28, 2003 10:50 AM To: CF-Talk Subject: Re: How can

Re: How can it be done ?

2003-10-28 Thread Chris
To: CF-Talk Subject: Re: How can it be done ? Writing to a text file is another download, can only be one download (to keep it simple for the user) - Original Message - From: John Stanley To: CF-Talk Sent: Tuesday, October 28, 2003 4:37 PM Subject: RE: How can it be done ? what

RE: How can it be done ?

2003-10-28 Thread Jeff Beer
If they have to login, just associate the login with the provided ID. When the login occurs, retrieve the appropriate ID. -Original Message- From: Chris [mailto:[EMAIL PROTECTED] Sent: Tuesday, October 28, 2003 9:52 AM To: CF-Talk Subject: How can it be done ? Good afternoon

RE: How can it be done ?

2003-10-28 Thread DURETTE, STEVEN J (AIT)
- From: Chris [mailto:[EMAIL PROTECTED] Sent: Tuesday, October 28, 2003 10:58 AM To: CF-Talk Subject: Re: How can it be done ? Will keep working on this, and will post what I've done I also think it is one way street with a roadblock in the begining on this, although any ideas are welcome. Chris

RE: How can it be done ?

2003-10-28 Thread Tangorre, Michael
, you have their ID and they are at the URL you need them to be at!!! :-) -Original Message- From: Chris [mailto:[EMAIL PROTECTED] Sent: Tuesday, October 28, 2003 10:56 AM To: CF-Talk Subject: Re: How can it be done ? Can be done, although snall problem then : The ID comes from

Re: How can it be done ?

2003-10-28 Thread Chris
To: CF-Talk Sent: Tuesday, October 28, 2003 4:58 PM Subject: RE: How can it be done ? If they have to login, just associate the login with the provided ID. When the login occurs, retrieve the appropriate ID. -Original Message- From: Chris [mailto:[EMAIL PROTECTED] Sent: Tuesday, October

Re: How can it be done ?

2003-10-28 Thread Chris
startpage. Can that be done ? - Original Message - From: Tangorre, Michael To: CF-Talk Sent: Tuesday, October 28, 2003 5:27 PM Subject: RE: How can it be done ? How about on the page that presents the download you givea popup window in German (or another non English language... the intent here

RE: How can it be done ?

2003-10-28 Thread Tangorre, Michael
... -Original Message- From: Chris [mailto:[EMAIL PROTECTED] Sent: Tuesday, October 28, 2003 11:32 AM To: CF-Talk Subject: Re: How can it be done ? Good ideas, though cannot be done. The login occurs, the id is being retrieved, download started, reboot occurs and immediately (without login) a html

RE: How can it be done ?

2003-10-28 Thread Tangorre, Michael
, October 28, 2003 11:35 AM To: CF-Talk Subject: Re: How can it be done ? Thanks Michael, That opens up a new perspective. Now, one thing that the page being called after reboot is started automatically. I would have to put it in the Startup Page of their browser, copy the old one first, start up

Re: How can it be done ?

2003-10-28 Thread Chris
hmmm I believe this dead end, I will keep you guys updated on this. - Original Message - From: Tangorre, Michael To: CF-Talk Sent: Tuesday, October 28, 2003 5:45 PM Subject: RE: How can it be done ? No way... you can ASK them to set their homepage by clicking ok when the setHomePage

RE: How can it be done ?

2003-10-28 Thread Jeff Beer
! Jeff -Original Message- From: Tangorre, Michael [mailto:[EMAIL PROTECTED] Sent: Tuesday, October 28, 2003 11:36 AM To: CF-Talk Subject: RE: How can it be done ? You are talking about setting client's system level parameters to launch their browser and open a specific page

RE: How can it be done ?

2003-10-28 Thread Adam Reynolds
Just email them the link they should run. Keeps it simple -Original Message- From: Chris [mailto:[EMAIL PROTECTED] Sent: 28 October 2003 16:52 To: CF-Talk Subject: Re: How can it be done ? hmmm I believe this dead end, I will keep you guys updated on this. - Original Message

RE: How can it be done ?

2003-10-28 Thread Heald, Tim
: How can it be done ? Thanks Ricky, I think that writing to the registry will be the best solution for this. - Original Message - From: Ricky Fritzsching To: CF-Talk Sent: Tuesday, October 28, 2003 4:27 PM Subject: RE: How can it be done ? I do agree with Neil, but another option

Re: How can it be done ?

2003-10-28 Thread Ken Wilson
1) login occurs 2) id retrieved 3) write html page to disk on server with id field populated 4) generate fresh zip file containing the users customized html page and any other files needed 5) begin download 6) reboot occurs 7) load html page that was generated and included in zip Chris wrote: