Standard Method of receiving XML

2005-03-23 Thread John Stanley
All, I'm writing an XML interface that receives data from outside users. In my code, I am using GetHttpRequestData to get to the Content header. Now in my testing, I am using CFHTTP to post the requested page and everything is perfect. I can parse and utilize the content header just

Re: Standard Method of receiving XML

2005-03-23 Thread Barney Boisvert
You can't capture the CFHTTP requests unless your sniffer is running on your server, because they never actually leave the server. As for getting your XML out of the header, Just do a search for the first and first =, take the lower non-zero one, and start reading from there. cheers, barneyb

RE: Standard Method of receiving XML

2005-03-23 Thread John Stanley
Barney, Thanks for your help. John -Original Message- From: Barney Boisvert [mailto:[EMAIL PROTECTED] Sent: Wednesday, March 23, 2005 11:40 AM To: CF-Talk Subject: Re: Standard Method of receiving XML You can't capture the CFHTTP requests unless your sniffer is running on your