>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 serv
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).
~~~
From: 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 wou
> 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
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.
> 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.
> 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 com
> 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 John&MiddleName=James&LastName=Smith. These values are being passed via 3
> separate httpparams with
> type of formfield. I've tested the "action" page on another serv
>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
> 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 Softw
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
> >
> Is the space and colon between FirstName and John a typo? Because if
> not, that's your problem right there, it should be
> FirstName=John&MiddleName=James&LastName=Smith.
>
> Dave Watts, CTO, Fig Leaf Software
> http://www.figleaf.com/
> http://training.figleaf.com/
>
> Fig Leaf Software is a
> 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
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 example,
Thanks. I don't expect to get any results back... I just wasn't sure if
*anything* would be returned automatically by CF.
-Original Message-
From: Ian Skinner [mailto:[EMAIL PROTECTED]
Sent: Tuesday, October 02, 2007 4:09 PM
To: CF-Talk
Subject: Re: Another cfhttp question...
> Can I use cfhttp with the method="PUT" to push data to another server?
Yes. Since CF 7 at least - maybe earlier - the CFHTTP tag supports all HTTP
verbs, including PUT and DELETE.
> Should I expect to receive any returned response?
You should receive the appropriate HTTP response header. You w
Can I use cfhttp with the method="PUT" to push data to another server?
Should I expect to receive any returned response?
Thanks again, Che
A) Why yes, yes you can.
B) Depends on what the other server does with the request and whether it
returns any responses.
~~
Can I use cfhttp with the method="PUT" to push data to another server?
Should I expect to receive any returned response?
Thanks again, Che
~|
Check out the new features and enhancements in the
latest product release - download t
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 wro
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 an
e "!" is something special that you
don't 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-Ta
:[EMAIL PROTECTED]
Sent: Wednesday, November 08, 2006 3:31 PM
To: CF-Talk
Subject: cfhttp QUESTION
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'
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 number of rows and craps out.
Here's a perfect data set..
If they're on the same server why not just cfinclude the form?
-Original Message-
From: Dave Watts [mailto:[EMAIL PROTECTED]
Sent: Thursday, March 23, 2006 3:39 PM
To: CF-Talk
Subject: RE: cfhttp question.
> I've been messing around with cfhttp to grab content locally
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...
#nonparsed#
If you cfhttp'd the above file, and then saved it again with a .cfm
extension, the "n
> 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 sim
Hello,
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 cfm
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. Is there a way to see what version of XML is
being sent when I use a cfhttpparam tag of type xml and just send some xml
like this?
something here
John Stanley
Web Application Developer
http://www.activeaero.com
734-547-7277
~~~
Sorry If you question is "can I read ASP sessions" the answer is no. You cannot get "sessions" in Cold Fusion
without the 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 possibl
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 authenticat
> 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/
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:
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]
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 an
ress since it is on the same server. Also, in
>general better to use IP addresses to avoid domain name resolution
>issues though you loose the obvious benefits.)
>
>André
>
>-Original Message-
>From: Allan Clarke [mailto:[EMAIL PROTECTED]
>Sent: 17 October 2003 16:01
gt; -Original Message-
> From: Allan Clarke [mailto:[EMAIL PROTECTED]
> Sent: 17 October 2003 16:01
> To: CF-Talk
> Subject: CFHTTP Question!
>
>
> Hello everybody,
>
> I'm trying to call a .asp file from my coldfusion page
> using cfhttp and I keep getting
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 cl
[mailto:[EMAIL PROTECTED]
Sent: 17 October 2003 16:01
To: CF-Talk
Subject: CFHTTP Question!
Hello everybody,
I'm trying to call a .asp file from my coldfusion page
using cfhttp and I keep getting errors. Both files are
on the same server, just different folders under the
site webroot.
This s
Hello everybody,
I'm trying to call a .asp file from my coldfusion page
using cfhttp and I keep getting errors. Both files are
on the same server, just different folders under the
site webroot.
This should explain it:
The ColdFusion file is in
C:\Inetpub\wwwroot\myProject\pages\folder1\searchrepo
Hi,
Can I get Following things using CFHTTP tag:
Total WebPage Size
Visible Text Size
Size of HTML Tags
Largest Image Size
Size of All Images
Ketan Patel
G3 Technology Group, LLC
Graphics III Advertising, Inc.
http://www.instantposition.com
[Todays Threads]
[This Message]
[Subscription]
- 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 wa
be in my day, that my child may have
peace'..."
- Thomas 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:
that my child may have
>peace'..."
> - Thomas Paine, The American Crisis
>
>"Let's Roll"
> - Todd Beamer, Flight 93
>
>
>
>-Original Message-
>From: John Gedeon [mailto:[EMAIL PROTECTED]]
>Sent: Tuesday, September 24, 200
.."
- Thomas Paine, The American Crisis
"Let's Roll"
- Todd Beamer, Flight 93
-Original Message-
From: John Gedeon [mailto:[EMAIL PROTECTED]]
Sent: Tuesday, September 24, 2002 9:52 AM
To: CF-Talk
Subject: CFHTTP question
I have a cfhttp get call to
I have a cfhttp get call to get another text webpage. I get the file fine
but I want to parse out the useful data from that page that i get and I am
not sure what the easiest way is. the data i am looking for is dynamic and
can be one to many words. but it always starts at the same spot. whats
[mailto:[EMAIL PROTECTED]]
Sent: 25 June 2002 16:34
To: CF-Talk
Subject: CFHTTP question
I have not used this tag at all. But in an effort to get CF used where I
work,
I told them I could do what I'm about to ask. Please tell me if this can be
done.
There are two seperate systems in differe
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 one
I have not used this tag at all. But in an effort to get CF used where I work,
I told them I could do what I'm about to ask. Please tell me if this can be
done.
There are two seperate systems in different states. On is an ASP/SQL Server and
the other Perl/Oracle (Unix). There is a firewall in
> 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:
> http://skillport.nywir
> ed.org/_SkillSoft_od_cgi/odisapi.dll?cmd=SummaryFrame&template=
> SummaryCF.tpl&objn
Hi all friends:
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:
http://skillport.nywired.org/_SkillS
oft_od_cgi/odisapi.dll?cmd=SummaryFrame&template=SummaryCF.tpl
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: &
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/galler
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
http://devex.allaire.com/developer/gallery/info.cfm?id=CA3471D5-2830-11D4-AA
9700508B94F380&method=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 gr
Hi,
I'm using cfhttp to grab quotes from yahoo finances. The code is like
below :
http://finance.yahoo.com/d/quotes.csv?s=^DJI&f=sl1d1t1c1ohgv&e
=.csv" method="GET" resolveurl="true">
#cfhttp.filecontent#
The mime-type:
#cfhttp.mimetype#
The Status Code:
#cfhttp.statuscode#
The Raw Header:
#
> Hello all! Currently I'm using CFHTTP to call a header
> externally. However if the page that I'm calling returns a 404
> (or some other error) how can I determine this? Or is everyone
> going to tell me to use CFX_HTTP? Granted that this is an
> external clients server, I'm hoping I don't h
I believe 4.51+ has more ability to read headers of CFHTTP.. Lets see...
Ah, not sure what version this showed up in, but the help for CFHTTP in
studio says:
CFHTTP.ResponseHeader(http_hd_key) - so this looks like a struct of the
headers
CFHTTP.Header - the raw header text
CFHTTP.StatusCode - th
Gregory
Just parse CFHTTP.FileContent for 404...
HTH
Dick
At 11:45 AM -0800 2/6/01, Gregory Harris wrote:
>Hello all! Currently I'm using CFHTTP to call a header externally.
>However if the page that I'm calling returns a 404 (or some other
>error) how can I determine this? Or is everyone
-BEGIN PGP SIGNED MESSAGE-
Hash: SHA1
Hi Greg,
I'm not to sure what you're trying to do but I'll take a wack at it.
It sounds like you're getting an error when you do a CFHTTP and the
server in question returns a 404. Can you just check the contents of
the cfhttp.filecontent variable to
Hello all! Currently I'm using CFHTTP to call a header externally. However if the
page that I'm calling returns a 404 (or some other error) how can I determine this?
Or is everyone going to tell me to use CFX_HTTP? Granted that this is an external
clients server, I'm hoping I don't have to
> 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
(/) to (\) also helped. Until you can get
Allaire to admit it is not your DNS server, you are basically screwed.
Date sent: Fri, 22 Dec 2000 09:43:12 -0600
From: [EMAIL PROTECTED]
Subject:CFHTTP question
Send reply to: [EMAIL PROTECTED]
To
> 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
AIL PROTECTED]>
Subject: CFHTTP question
Date: Fri, 22 Dec 2000 09:43:12 -0600
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
-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
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 GETi
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
"Connection F
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
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?
Kevin
--
Archives: http://www.mail-archive.com/cf-talk@houseoffusion.com/
T
I need to login to a supplier page to retrieve parts information using
CFHHTP. The problem is it uses Cookies for login.
Has anyone come across this and found a way to do it?
Frank Mamone
--
Archives: http://www.mail-ar
> Any wrong with this?
>
> 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 people on t
ute for CFHTTP =
: as opposed to placing it directly in the URL.
:
: DC
:
: - Original Message -=20
: From: Randy Adkins=20
: To: [EMAIL PROTECTED]=20
: Sent: Monday, August 07, 2000 17:29
: Subject: CFHTTP Question
:
:
: I am using an example straight out of the Advanced book of
placing it directly in the URL.
DC
- Original Message -=20
From: Randy Adkins=20
To: [EMAIL PROTECTED]=20
Sent: Monday, August 07, 2000 17:29
Subject: CFHTTP Question
I am using an example straight out of the Advanced book of CF.=20
I want to do a CFHTTP POST and post data to
I am using an example straight out of the Advanced book of CF.
I want to do a CFHTTP POST and post data to a form.
However using the exmaple shown below, I get a HTTP 404 Error.
Both files reside in the same directory. I have checked and re-checked
the spelling of the files.
Any idea whats wrong
75 matches
Mail list logo