RE: Post form data in (to) CF

2000-09-26 Thread Zachary Bedell
-BEGIN PGP SIGNED MESSAGE- Hash: SHA1 One thing that immediately jumps out at me is your POST line. HTTP spec doesn't include the entire URL in the POST, only the path info. So this: POST http://xyz.xyz.com/1.cfm HTTP/1.0 should actually be: POST /1.cfm HTTP/1.0 Host: xyz.xyz.com

RE: Post form data in (to) CF

2000-09-26 Thread Benji Spencer
One thing that immediately jumps out at me is your POST line. HTTP spec doesn't include the entire URL in the POST, only the path info. So this: POST http://xyz.xyz.com/1.cfm HTTP/1.0 should actually be: POST /1.cfm HTTP/1.0 Host: xyz.xyz.com do you know of a resource for something

Re: Post form data in (to) CF

2000-09-26 Thread Howie Hamlin
Are you URL Encoding the posted data? I don't think so if your content length is 18 (it should be 22). Your posted data should look something like: date_id=2000%2D09%2D21 HTH, Howie Hamlin - inFusion Project Manager On-Line Data Solutions, Inc. www.CoolFusion.com 631-737-4668 x101 inFusion

Re: Post form data in (to) CF

2000-09-26 Thread JustinMacCarthy
Have you tried removing the scope? Are you posting to cf using perl or the other way around? ~Justin MacCarthy - Original Message - From: "Benji Spencer" [EMAIL PROTECTED] To: "CF-Talk" [EMAIL PROTECTED] Sent: Tuesday, September 26, 2000 3:26 PM Subject: Post form data in (to) CF I

Re: Post form data in (to) CF

2000-09-26 Thread JustinMacCarthy
Howie has a free windows based tool @ http://www.coolfusion.com/http.htm V. handy .. Justin MacCarthy do you know of a resource for something like this? I would like to verify my GET requests also There's no Content-Type header in your

Re: Post form data in (to) CF

2000-09-26 Thread Benji Spencer
Have you tried removing the scope? Are you posting to cf using perl or the other way around? actually neither. the perl test I did was just to show that what I was doing worked..however I wasn't doing eveything I needed. I am making a direct HTTP request to the web server. benji --- Benji

RE: Post form data in (to) CF

2000-09-26 Thread Zachary Bedell
-BEGIN PGP SIGNED MESSAGE- Hash: SHA1 One thing that immediately jumps out at me is your POST line. HTTP spec doesn't include the entire URL in the POST, only the path info. So this: POST http://xyz.xyz.com/1.cfm HTTP/1.0 should actually be: POST /1.cfm HTTP/1.0 Host: