[AOLSERVER] Form Posting

2001-08-23 Thread Patrick Spence
I am looking for some easy way (i.e. a tcl routine not a C routine or module) to post form data into a URL without passing it on the URL line itself... instead of redirecting to say http://www.foo.com/bar?msg1=hellomsg2=bye I would like to do something like this: add_form_value storagevariable

Re: [AOLSERVER] Form Posting

2001-08-23 Thread Scott Goodwin
Funny you should mention that. I'm adding the ns_httpspost command to https.tcl this weekend. I'll also be adding the ns_httppost to http.tcl. /s. I am looking for some easy way (i.e. a tcl routine not a C routine or module) to post form data into a URL without passing it on the URL line

Re: [AOLSERVER] Form Posting

2001-08-23 Thread Jerry Asher
Where do you want the output of the POST request to go? A) Back to your tcl script or B) direct to the user's browser? Where do you want to make this POST request to? C) To any arbitrary webserver or D) to your webserver only? A) C) = use util_httppost from the OpenACS toolkit B) C) =

Re: [AOLSERVER] Form Posting

2001-08-23 Thread Patrick Spence
PROTECTED] Sent: Thursday, August 23, 2001 10:52 AM Subject: Re: [AOLSERVER] Form Posting Where do you want the output of the POST request to go? A) Back to your tcl script or B) direct to the user's browser? Where do you want to make this POST request to? C) To any arbitrary webserver or D

Re: [AOLSERVER] Form Posting

2001-08-23 Thread Patrick Spence
- From: Mark Hubbard [EMAIL PROTECTED] To: [EMAIL PROTECTED] Sent: Thursday, August 23, 2001 11:17 AM Subject: Re: [AOLSERVER] Form Posting You could also try setting a cookie containing the information before (or maybe during) the redirect. That way you wouldn't need a form submission

Re: [AOLSERVER] Form Posting

2001-08-23 Thread Dossy
You mean, like this: form method=post input type=hidden name=msg1 value=hello input type=hidden name=msg2 value=bye input type=submit value=Go /form ? -- Dossy On 2001.08.23, Patrick Spence [EMAIL PROTECTED] wrote: I am looking for some easy way (i.e. a tcl routine not a C

Re: [AOLSERVER] Form Posting

2001-08-23 Thread Mark Hubbard
AM Subject: Re: [AOLSERVER] Form Posting At 11:02 AM 8/23/01, you wrote: I want to be able to redirect the user to another url on my site, and send information to the tcl script residing at that url (register_proc) using form data.. without the URL including the content of what I am sending

Re: [AOLSERVER] Form Posting

2001-08-23 Thread Scott Laplante
: [AOLSERVER] Form Posting Part of what I am trying to work around is cookies not setting on a redirect... as one part of what I am doing is where I am authenticating the user and setting a sessionid cookie as part of my user tracking and security... if I use a standard redirect the cookie vapors

Re: [AOLSERVER] Form Posting

2001-08-23 Thread Patrick Spence
- Original Message - From: Scott Laplante [EMAIL PROTECTED] To: [EMAIL PROTECTED] Sent: Thursday, August 23, 2001 1:57 PM Subject: Re: [AOLSERVER] Form Posting 1. what you describe is exactly what we're doing, in a filter, to ensure a sessionId on every request. I am using