Re: CFHTTP Question

2011-03-22 Thread Donnie Carvajal
Were CARs available in CF5? If so and the servers' configs are supposed to be the same, id go that route first. Maybe a setting was just missed somewhere in the cf admin. .:.:.:.:.:.:.:.:.:.:.:.:.:. Bobby Hartsfield http://acoderslife.com http://cf4em.com Unfortunately, the last server is

Re: CFHTTP Question

2011-03-21 Thread Dave Watts
I recently moved an app to a new server and for some reason, when I run a CFHTTP post request to a page on the new server, the form fields are being interpreted as one field and the value of the field is a query string.  The file that is running the CFHTTP is on a differnt server.  For

Re: CFHTTP Question

2011-03-21 Thread Donnie Carvajal
Is the space and colon between FirstName and John a typo? Because if not, that's your problem right there, it should be FirstName=JohnMiddleName=JamesLastName=Smith. Dave Watts, CTO, Fig Leaf Software http://www.figleaf.com/ http://training.figleaf.com/ Fig Leaf Software is a

Re: CFHTTP Question

2011-03-21 Thread Russ Michaels
Are you sure the form hasn't somehow changed method from POST to GET ? On Mon, Mar 21, 2011 at 8:53 PM, Donnie Carvajal donnie.carva...@transformyx.com wrote: Is the space and colon between FirstName and John a typo? Because if not, that's your problem right there, it should be

Re: CFHTTP Question

2011-03-21 Thread Dave Watts
Are you sure the form hasn't somehow changed method from POST to GET ? That's the way the data normally looks like when you do a POST with the default MIME type application/x-www-urlencoded. Dave Watts, CTO, Fig Leaf Software http://www.figleaf.com/ http://training.figleaf.com/ Fig Leaf

Re: CFHTTP Question

2011-03-21 Thread Donnie Carvajal
Are you sure the form hasn't somehow changed method from POST to GET ? On Mon, Mar 21, 2011 at 8:53 PM, Donnie Carvajal donnie.carva...@transformyx.com wrote: The code hasn't been touched in 4 years, besides, if the CFHTTP method was set to Get, Form Variables wouldn't be available in the

Re: CFHTTP Question

2011-03-21 Thread Dave Watts
Yes, it's a typo.  I was tying to reproduce what debug shows which is a variable name : value, in this case the value is JohnMiddleName=JamesLastName=Smith.  These values are being passed via 3 separate httpparams with type of formfield.  I've tested the action page on another server and

Re: CFHTTP Question

2011-03-21 Thread Donnie Carvajal
There are two things I can think of off the top of my head, that you might do. First, you might just take a shot in the dark and play with encoding. You can specify the appropriate encoding for your form post from CFHTTP using the CHARSET attribute. Second, you might want to compare a

Re: CFHTTP Question

2011-03-21 Thread Dave Watts
Thanks Dave.  This code hasn't changed in 4 years and it only started misparsing the form data when the action page was moved to another server, so this seems like there is an issue with the Coldfusion service on the server. I have the same action page on several different servers.  I can

Re: CFHTTP Question

2011-03-21 Thread Donnie Carvajal
If it is a charset issue, do you know how to configure CF for the correct charset. I have clients that are hitting this page by posting straight to it. It would be much easier to change my server since it is on my network. Thanks.

Re: CFHTTP Question

2011-03-21 Thread Dave Watts
If it is a charset issue, do you know how to configure CF for the correct charset.  I have clients that are hitting this page by posting straight to it.  It would be much easier to change my server since it is on my network. Well, it's not a matter of having a correct character set - it's

RE: CFHTTP Question

2011-03-21 Thread Bobby Hartsfield
: Donnie Carvajal [mailto:donnie.carva...@transformyx.com] Sent: Monday, March 21, 2011 5:48 PM To: cf-talk Subject: Re: CFHTTP Question If it is a charset issue, do you know how to configure CF for the correct charset. I have clients that are hitting this page by posting straight to it. It would

Re: CFHTTP Question [spamtrap bayes][spamtrap heur]

2011-03-21 Thread Paul Hastings
On 3/22/2011 5:03 AM, Dave Watts wrote: Well, it's not a matter of having a correct character set - it's rather a matter of both sides agreeing which one to use. If you're in the case of a cf5 server, it only understands latin-1 (ISO-8859-1).

Re: cfhttp QUESTION

2006-11-12 Thread Denny Valliant
On 11/8/06, Robert Harrison [EMAIL PROTECTED] wrote: Now I'm canning the EXCEL COM object and using CFHTTP to parse a comma delimited format. This works fine when the data is perfect. But when this data is missing a column from a row and doen't have the right number of columns it says wrong

RE: cfhttp QUESTION

2006-11-09 Thread Ben Nadel
Why does your data file not have the right number of columns? Is that our of your control? .. Ben Nadel Certified Advanced ColdFusion MX7 Developer www.bennadel.com Need ColdFusion Help? www.bennadel.com/ask-ben/ -Original Message- From: Robert Harrison

RE: cfhttp QUESTION

2006-11-09 Thread Gaulin, Mark
expect in the input). This will turn empty list elements in !, which you then has to test for. Mark -Original Message- From: Ben Nadel [mailto:[EMAIL PROTECTED] Sent: Thursday, November 09, 2006 9:04 AM To: CF-Talk Subject: RE: cfhttp QUESTION Why does your data file not have

RE: cfhttp QUESTION (ISSUE SOLVED)

2006-11-09 Thread Robert Harrison
Thanks for the input everyone. I solved the problem by adjusting the Excel template. I added an automunber column as the last column in the template and hid it. That ensured every record had the same number of elements now matter what the user entered. This now allows users to users to download

RE: cfhttp question.

2006-03-24 Thread Andy Matthews
:39 PM To: CF-Talk Subject: RE: cfhttp question. I've been messing around with cfhttp to grab content locally to get the dynamic content and write it to a static page. What I've been trying to do is to find out if there is a way to get cfhttp to save the page without parsing the actual cfm

RE: cfhttp question.

2006-03-23 Thread Dave Watts
I've been messing around with cfhttp to grab content locally to get the dynamic content and write it to a static page. What I've been trying to do is to find out if there is a way to get cfhttp to save the page without parsing the actual cfm code.. Basicly, the page includes a simple

Re: cfhttp question.

2006-03-23 Thread Jim Wright
So I'm guessing that you want to make the parts of your page static to reduce the load? You could do something like this by including the non parsed code through a variablesomething like... cfset nonparsed = cfoutput##dateformat(now())##/cfoutput cfinclude template=header.cfm

RE: CFHttp Question

2004-11-11 Thread John Stanley
Also, if this version can be determined can it be changed? -Original Message- From: John Stanley Sent: Thursday, November 11, 2004 2:47 PM To: '[EMAIL PROTECTED]' Subject:CFHttp Question I am using CFHttp to send xml.

RE: CFHTTP Question!

2003-10-21 Thread Mark A. Kruger - CFG
Sorry If you question is can I read ASP sessions the answer is no.You cannot get sessions in Cold Fusion without the cfapplication tag (sessionmanagement=YES).so... if you are trying to pass a session variable to CF from an ASP page it will have to be done using post or get (url or form or

Re: CFHTTP Question!

2003-10-20 Thread Jochem van Dieten
ColdFusion Programmer wrote: Date : Mon, 20 Oct 2003 15:20:34 GMT Server : Microsoft-IIS/5.0 Content-Length : 4431 Content-Type : text/html Explanation : Access Denied Connection : close Status_Code : 401 WWW-Authenticate : NTLM Http_Version : HTTP/1.1 Does anybody have any ideas?

Re: CFHTTP Question!

2003-10-20 Thread Jochem van Dieten
ColdFusion Programmer wrote: so what are you suggesting? How do I use HTTP authentication mechanism? I doubt that is implemented in cfhttp. Jochem [Todays Threads] [This Message] [Subscription] [Fast Unsubscribe] [User Settings]

RE: CFHTTP Question!

2003-10-20 Thread Mark A. Kruger - CFG
It's look for domain based authentication (not clear text obviously) - meaning you are NOT going to be able to use CFHTTP to get this page. -Mark -Original Message- From: ColdFusion Programmer [mailto:[EMAIL PROTECTED] Sent: Monday, October 20, 2003 10:58 AM To: CF-Talk Subject: Re:CFHTTP

RE: CFHTTP Question!

2003-10-20 Thread Dave Watts
so what are you suggesting? How do I use HTTP authentication mechanism? As Jochem stated, you can't do this with CFHTTP alone. You will need to use an NTLM proxy if you can. This would sit between CF and the target server, somewhere. Dave Watts, CTO, Fig Leaf Software http://www.figleaf.com/

RE: CFHTTP Question!

2003-10-20 Thread Mark A. Kruger - CFG
ooh Dave - how does that work? Sounds interesting. -Mark -Original Message- From: Dave Watts [mailto:[EMAIL PROTECTED] Sent: Monday, October 20, 2003 1:27 PM To: CF-Talk Subject: RE: CFHTTP Question! so what are you suggesting? How do I use HTTP authentication mechanism

RE: CFHTTP Question!

2003-10-17 Thread Andre Mohamed
Allan, What is the URL you need to type into a browser in order to run menu.asp? That is the URL you need to specify for using CFHTTP. (Remember when using CFHTTP it is the ColdFusion server running the request so the URL needs to be from the perspective of what the ColdFusion server can

RE: CFHTTP Question!

2003-10-17 Thread Bryan F. Hogan
Most likely there are directory permissions setup on this folder and that you are logged into your network with an account that has permission to view this directory. Which is why you are able to browse the file. However CFHTTP can not because it is making a request like I would be if I where to

Re: CFHTTP Question!

2003-10-17 Thread Stephen Moretti
As a side thought If that menu.asp is actually just a bunch of html with no asp code in there, the you could just use cfinclude to drag it into your cf code. Or you could bin that asp junk altogether and.~joking~ ;o) Andre Mohamed wrote: Allan, What is the URL you need to type

RE: CFHTTP Question!

2003-10-17 Thread Andre Mohamed
If you are actually on the ColdFusion server can you browse to that same URL? Andr -Original Message- From: ColdFusion Programmer [mailto:[EMAIL PROTECTED] Sent: 17 October 2003 16:55 To: CF-Talk Subject: Re:CFHTTP Question! When I browse the asp file in the browse, it displays

RE: CFHTTP question

2002-09-24 Thread Bryan Love
Text parsing is somewhat of a lost art. It's easy to do, but difficult to do well. Your question is too general for me to provide a detailed answer. If you want to provide a sample of the data you want to parse perhaps I can be of some help... +---+

RE: CFHTTP question

2002-09-24 Thread John Gedeon
Bryan below is the snapshot of the data i have. I want to get the artist name and song name in this case it is Castlevania, Dracula New Class and Vampire Killer John tr td background=http://www.streamingsoundtracks.com/images/bg_name.gif; width=22% nowrapVisitors: a

RE: CFHTTP question

2002-09-24 Thread Bryan Love
Paine, The American Crisis Let's Roll - Todd Beamer, Flight 93 -Original Message- From: John Gedeon [mailto:[EMAIL PROTECTED]] Sent: Tuesday, September 24, 2002 10:20 AM To: CF-Talk Subject: RE: CFHTTP question Bryan below is the snapshot of the data i have. I want to get

RE: CFHTTP question

2002-09-24 Thread John Gedeon
: CFHTTP question Bryan below is the snapshot of the data i have. I want to get the artist name and song name in this case it is Castlevania, Dracula New Class and Vampire Killer John tr td background=http://www.streamingsoundtracks.com/images/bg_name.gif; width=22% nowrapVisitors

Re: CFHTTP question

2002-06-25 Thread Dick Applebaum
CFHTTP, esentially simulates a browser with a program (your program). So, if you can communicate with both sites with a browser, then you can do it with a CF program using CFHTTP. To solve your particular problem, you could write a stub program for each of the target sites (one in Perl and

RE: CFHTTP question

2002-06-25 Thread Peter Dray
If you're running MX maybe you could write a web service on each machine that would allow you to do what you want. I'm not sure CFHTTP is the thing you need. I could be wrong tho, it's been known to happen! Pete -Original Message- From: Yager, Brian T Contractor/NCCIM [mailto:[EMAIL

RE: CFHTTP question

2002-05-26 Thread Philip Arnold - ASP
I'm using the cfhttp tag to log into a site remotly and walk around after being logged , the problem comes out when I meet a link (that I need to call trough cfhttp too) like this: a href=javascript:cf_http_hook_fullpath('http://skillport.nywir

RE: cfhttp question

2001-12-13 Thread Steven Dworman
http://devex.allaire.com/developer/gallery/info.cfm?id=CA3471D5-2830-11D4-AA 9700508B94F380method=full -Original Message- From: Fisichella [mailto:[EMAIL PROTECTED]] Sent: Thursday, December 13, 2001 9:36 AM To: CF-Talk Subject: cfhttp question Hi, I'm using cfhttp to grab quotes from

RE: cfhttp question

2001-12-13 Thread Mark Stewart
Try a couple things: 1. urlencode your url variables 2. try using the chr() function for the ^ character Mark -Original Message- From: Fisichella [mailto:[EMAIL PROTECTED]] Sent: Thursday, December 13, 2001 9:36 AM To: CF-Talk Subject: cfhttp question Hi, I'm using cfhttp to grab

Re: cfhttp question

2001-12-13 Thread Fisichella
Thanks a lot Steve. Thanks. - Original Message - From: Steven Dworman [EMAIL PROTECTED] To: CF-Talk [EMAIL PROTECTED] Sent: Thursday, December 13, 2001 9:37 PM Subject: RE: cfhttp question http://devex.allaire.com/developer/gallery/info.cfm?id=CA3471D5-2830-11D4-AA

RE: cfhttp question

2001-12-13 Thread Steven Dworman
You bet -Original Message- From: Fisichella [mailto:[EMAIL PROTECTED]] Sent: Thursday, December 13, 2001 9:59 AM To: CF-Talk Subject: Re: cfhttp question Thanks a lot Steve. Thanks. - Original Message - From: Steven Dworman [EMAIL PROTECTED] To: CF-Talk [EMAIL PROTECTED] Sent

RE: CFHTTP question

2000-12-24 Thread Dave Watts
An Allaire consultant told us that our DNS was screwed up and that it was our problem. Seems like you must be using our internal DNS server, as well ;-) So we found out if you use the actual IP address instead of the domain name, it usually worked. In addition, we found the changing the

RE: CFHTTP question

2000-12-22 Thread misty . d . woodward
and that is where it is not working. -Original Message- From: ddewey [mailto:[EMAIL PROTECTED]] Sent: Friday, December 22, 2000 10:06 AM To: misty.d.woodward Cc: ddewey Subject: RE: CFHTTP question I've found from my experience with CFHTTP, that it is very particular. Are you GETing

RE: CFHTTP question

2000-12-22 Thread Tobe Goldfinger
- From: ddewey [mailto:[EMAIL PROTECTED]] Sent: Friday, December 22, 2000 10:06 AM To: misty.d.woodward Cc: ddewey Subject: RE: CFHTTP question I've found from my experience with CFHTTP, that it is very particular. Are you GETing or POSTing. Have you tried urlencoding() the actual URL that you're

Re: CFHTTP question

2000-12-22 Thread Eric Dawson
I have had problems with cfhttp. In one case it was my routing table on the server, and in another I was running a release candidate of W2K, the installation of the final release W2K server cleared up my remaining problems. If it helpful I can give you some server space for the interim to

RE: CFHTTP question

2000-12-22 Thread Dave Watts
I have been searching through the allaire boards and it seems either any posts relating to using the CFHTTP questions either don't get answered or get a beat around the bush kind of answer. I have a huge project that is using the CFHTTP tag immensely only problem is i get the famous

Re: CFHTTP question

2000-12-22 Thread eisensmi
An Allaire consultant told us that our DNS was screwed up and that it was our problem. Seems like you must be using our internal DNS server, as well ;-) So we found out if you use the actual IP address instead of the domain name, it usually worked. In addition, we found the changing the slashes

Re: CFHTTP question

2000-09-03 Thread Bud
On 9/3/00, [EMAIL PROTECTED] penned: Is there a way to actually extract information from URL's, like only the information you want, instead of the other stuff that you don't want? If you view the source of the page you want, then say there is a section that always changes dynamically and that

RE: CFHTTP Question regarding Amazon : Was no title

2000-08-10 Thread Philip Arnold - ASP
Any wrong with this? cfhttp url=3D"http://www.amazon.com" method=3D"get" 1) the flat domain isn't a real page, it's an effective push page to; http://www.amazon.com/exec/obidos/subst/home/home.html/102-9560880-3392941 or something similar 2) you didn't put a subject line on the email so most

Re: CFHTTP Question

2000-08-07 Thread David E. Crawford
This is a multi-part message in MIME format. --=_NextPart_000_0607_01C00095.813B5410 Content-Type: text/plain; charset="Windows-1252" Content-Transfer-Encoding: quoted-printable CFHTTP QuestionYou have to specify the PORT as an attribute for CFHTTP = as opposed to placing it

Re: CFHTTP Question

2000-08-07 Thread Randy Adkins
That was it. Thanks, I just overlooked that one. Man, if it was a snake I would be DEAD!! It happens to us all at one time or another. - Original Message - From: "David E. Crawford" [EMAIL PROTECTED] To: [EMAIL PROTECTED] Sent: Monday, August 07, 2000 1:32 PM Subject: