Re: CFHTTP connection failure

2014-09-11 Thread Steve Milburn
A few questions... first can you show us some code? Second, are you sure it is SFTP and not FTPS? What happens if you try to use an SSH client like Putty? Are you able to connect? The SFTP server should be listening on port 22 - your telnet connection uses port 23 and your ftp connection uses

Re: CFHTTP connection failure

2014-09-11 Thread Scott Stewart
This is specific to our production environment, the exact same code works fine in our staging environment.. But a putty connection may be worth a shot. We did have to install the Java JCE extensions. But again it works in every other environment but production. On Sep 11, 2014 3:20 PM, Steve

Re: CFHTTP connection failure

2014-09-11 Thread Scott Stewart
We got this figured out.. Our apps need to be refreshed when changes are made to the settings ini file. Our production team didn't refresh.. DOH!! On Sep 11, 2014 3:30 PM, Scott Stewart webmas...@sstwebworks.com wrote: This is specific to our production environment, the exact same code

Re: CFHTTP Connection Failure on SSL

2011-09-06 Thread Dave Watts
We recently had an API call using a CFHTTP start giving a Connection Failure message. In talking with the other company I found out they updated their security certificate. All the comments I have seen in this list and on blogs etc. pertaining to this issue seem to relate to ColdFusion MX.

RE: CFHTTP Connection Failure on SSL

2011-09-06 Thread webmaster
just typing in the wrong set of params? On some of the other tutorisla that are similar I see no refernece to needed a password. -Original Message- From: Dave Watts [mailto:dwa...@figleaf.com] Sent: Tuesday, September 06, 2011 1:57 PM To: cf-talk Subject: Re: CFHTTP Connection Failure

Re: CFHTTP Connection Failure on SSL

2011-09-06 Thread Dave Watts
However it asks me for the cert password. Is this something I need to get from the owner of the cert or am I just typing in the wrong set of params? On some of the other tutorisla that are similar I see no refernece to needed a password. Do you mean the keystore password? The default

RE: CFHTTP Connection Failure on SSL

2011-09-06 Thread webmaster
, September 06, 2011 2:20 PM To: cf-talk Subject: Re: CFHTTP Connection Failure on SSL However it asks me for the cert password. Is this something I need to get from the owner of the cert or am I just typing in the wrong set of params? On some of the other tutorisla that are similar I see

Re: CFHTTP Connection Failure on SSL

2011-09-06 Thread Dave Watts
Ok that gave me the Certificate was added to the keystore message but after I restart ColdFusion and I attempt to CFHTTP to the URL I still get a connection failure message. Not sure what to even try next :( There can be all kinds of things that go wrong with certificates. Does the site use

RE: CFHTTP Connection Failure on SSL

2011-09-06 Thread webmaster
...@figleaf.com] Sent: Tuesday, September 06, 2011 2:28 PM To: cf-talk Subject: Re: CFHTTP Connection Failure on SSL Ok that gave me the Certificate was added to the keystore message but after I restart ColdFusion and I attempt to CFHTTP to the URL I still get a connection failure message

Re: CFHTTP Connection Failure on SSL

2011-09-06 Thread Dave Watts
Ok my next question would be how do I get the entire chain? Do I have to get it directly from them? So far I have just saved the Certificate from the browser. I was assuming this saved all of them but perhaps it only saves the root one? Your browser will have a screen where it shows you all

RE: CFHTTP Connection Failure on SSL

2011-09-06 Thread webmaster
Ok did that and the cfhttp worked one time. Now it tells me Connection Failure again. Any ideas? Seems like it should either work or it shouldn't. -Original Message- From: Dave Watts [mailto:dwa...@figleaf.com] Sent: Tuesday, September 06, 2011 2:39 PM To: cf-talk Subject: Re: CFHTTP

Re: CFHTTP Connection Failure on SSL

2011-09-06 Thread Dave Watts
Ok did that and the cfhttp worked one time. Now it tells me Connection Failure again. Any ideas? Seems like it should either work or it shouldn't. I don't really have any other ideas about what could cause the problem. If you stop and restart CF, does it work one time again? What JVM are you

RE: CFHTTP Connection Failure on SSL

2011-09-06 Thread webmaster
: Dave Watts [mailto:dwa...@figleaf.com] Sent: Tuesday, September 06, 2011 3:20 PM To: cf-talk Subject: Re: CFHTTP Connection Failure on SSL Ok did that and the cfhttp worked one time. Now it tells me Connection Failure again. Any ideas? Seems like it should either work or it shouldn't. I

Re: CFHTTP Connection Failure on SSL

2011-09-06 Thread Dave Watts
Nope I tried a restart of the service and it still says connection failure.  Says I am using JVM 1.6.0_14 What is the latest supported JVM? This is the latest 1.6 JVM: http://www.oracle.com/technetwork/java/javase/downloads/jdk-6u27-download-440405.html I don't know if it's supported, I'd

Re: CFHTTP Connection Failure on SSL

2011-09-06 Thread Pete Freitag
On Tue, Sep 6, 2011 at 3:27 PM, webmas...@pegweb.com wrote: Nope I tried a restart of the service and it still says connection failure. Says I am using JVM 1.6.0_14 What is the latest supported JVM? The latest *supported* JVM for CF 8 and CF 9 is 1.6.0_24 (see

RE: CFHTTP Connection Failure on SSL

2011-09-06 Thread webmaster
Does an updated KeyStore come with an updated JVM? -Original Message- From: Dave Watts [mailto:dwa...@figleaf.com] Sent: Tuesday, September 06, 2011 3:39 PM To: cf-talk Subject: Re: CFHTTP Connection Failure on SSL Nope I tried a restart of the service and it still says connection

RE: CFHTTP Connection Failure on SSL

2011-09-06 Thread webmaster
Yeah I'm not sure what to do next. After a reboot it works fine for about 5 min or so then goes back to Connection Failure. Makes no sense. :( -Original Message- From: Dave Watts [mailto:dwa...@figleaf.com] Sent: Tuesday, September 06, 2011 3:39 PM To: cf-talk Subject: Re: CFHTTP

Re: CFHTTP Connection Failure on SSL

2011-09-06 Thread Dave Watts
Does an updated KeyStore come with an updated JVM? Each JVM has its own keystore. So, if you switch to a newer JVM, you'll have to reimport certificates into that JVM keystore if you want them. Dave Watts, CTO, Fig Leaf Software http://www.figleaf.com/ http://training.figleaf.com/ Fig Leaf

RE: CFHTTP Connection Failure on SSL

2011-09-06 Thread webmaster
To: cf-talk Subject: Re: CFHTTP Connection Failure on SSL Does an updated KeyStore come with an updated JVM? Each JVM has its own keystore. So, if you switch to a newer JVM, you'll have to reimport certificates into that JVM keystore if you want them. Dave Watts, CTO, Fig Leaf Software http

Re: CFHTTP Connection Failure on SSL

2011-09-06 Thread Dave Watts
Ok thank you. My next step is to try to update the JVM and see what that does. Makes no sense why it works for a little bit after a reboot then starts Connection Failure again. Perhaps there's a problem in addition to the certificate problem. You may have solved one problem, just to encounter

RE: cfhttp Connection Failure

2010-04-23 Thread UXB Internet
http://www.cftagstore.com/tags/cfxhttp5.cfm Anybody here use the tag? I've just purchased it to use with a site we have in development that needed to selectively Spider individual member web sites and have been impressed with it. I was using the cfx_http that was produced by Follett

Re: cfhttp Connection Failure

2010-04-21 Thread John Drake
Would this Custom Tag work?: http://www.cftagstore.com/tags/cfxhttp5.cfm It says it does GZIP compression, and can speed things up by 64x. Anybody here use the tag? I did download the demo and was impressed. I didn't know if it worked with CF 9 - and btw, I would love to see a comparison of

Re: cfhttp Connection Failure

2010-04-20 Thread Claude Schnéegans
It is true that cfhttp can't handle compressed responses and if you are hitting a web server that is gzipping the HTTP response you will get a Connection Failure Again, if CF5 can receive the page with no problem, and CFMX cannot, the problem is not on the server side, it is with CFMX. The

RE: cfhttp Connection Failure

2010-04-20 Thread Mark A. Kruger
:=?ISO-8859-1?Q?Claude_Schn=E9egans schneeg...@interneti=71?= =?ISO-8859-1?Q?ue.com=3E?=] Sent: Tuesday, April 20, 2010 7:43 AM To: cf-talk Subject: Re: cfhttp Connection Failure It is true that cfhttp can't handle compressed responses and if you are hitting a web server that is gzipping the HTTP

Re: cfhttp Connection Failure

2010-04-20 Thread Sue Buck
Thanks for all the suggestions. Unfortunately my client is phasing out ColdFusion so upgrading is not an option. I've installed Wireshark and using cfhttpparam type=Header name=Accept-Encoding value=* cfhttpparam type=Header name=TE value=deflate;q=0 get the same headers as

RE: cfhttp Connection Failure

2010-04-20 Thread brad
#sec14.39 ~Brad Original Message Subject: Re: cfhttp Connection Failure From: Sue Buck sue.b...@avsi.co.uk Date: Tue, April 20, 2010 8:20 am To: cf-talk cf-talk@houseoffusion.com Thanks for all the suggestions. Unfortunately my client is phasing out ColdFusion so upgrading

Re: cfhttp Connection Failure

2010-04-20 Thread Claude Schnéegans
Your sure it's compressed responses and not something else? No, I,m not sure. The only thing I'm sure is that CFMX is doing the HTTP request differently and the way it does it causes it to fail. With CF 5 there is no problem. s it a secure URL? No, it is not.

Re: cfhttp Connection Failure

2010-04-20 Thread Dave Watts
Your sure it's compressed responses and not something else?  SSL for example? Is it a secure URL? No, it's definitely a compression issue. I'm seeing the same thing testing from CF 9 on my laptop. Dave Watts, CTO, Fig Leaf Software http://www.figleaf.com/ http://training.figleaf.com/ Fig

RE: cfhttp Connection Failure

2010-04-20 Thread brad
Your sure it's compressed responses and not something else? No, I,m not sure. I know how to find out. http://www.wireshark.org/ ~Brad ~| Want to reach the ColdFusion community with something they want? Let them know on

Re: cfhttp Connection Failure

2010-04-19 Thread Claude Schnéegans
cfhttp url=http://xmlfeed.laterooms.com/index.aspx?aid=1000rtype=4kword=cardiff; method=get/cfhttp but despite getting status code 200 OK the content is 'Connection Failure'. I had this problem too, with CF 7 and 8 and never been able to find a solution. It is such a problem for my

Re: cfhttp Connection Failure

2010-04-19 Thread Dave Watts
I am trying to run the following using CF6.1: cfhttp url=http://xmlfeed.laterooms.com/index.aspx?aid=1000rtype=4kword=cardiff; method=get/cfhttp but despite getting status code 200 OK the content is 'Connection Failure'. After looking at various threads and articles I've also tried these

Re: cfhttp Connection Failure

2010-04-19 Thread Wil Genovese
I use the Poster plug-in for FireFox and I get the expected results. When I run this from ColdFusion I get your connection failure. However when I did a cfdump of cfhttp - I noticed one thing. Set-Cookie ASP.NET_SessionId=dz1h2vqepah1efatrmjk1445; path=/; HttpOnly It looks like they are

Re: cfhttp Connection Failure

2010-04-19 Thread Dave Watts
Whenever you can get to something using your server's web browser, but can't get to it via CFHTTP, you can simply examine the HTTP requests and responses and see how they differ. Use a recorder of some sort (Wireshark, HttpWatch, etc) and see what's different, and change your CFHTTP

Re: cfhttp Connection Failure

2010-04-19 Thread Dave Watts
However when I did a cfdump of cfhttp - I noticed one thing. Set-Cookie ASP.NET_SessionId=dz1h2vqepah1efatrmjk1445; path=/; HttpOnly It looks like they are trying to set a cookie for authentication or at least to maintain a session.  This works great with a browser but not cfhttp.  I do

Re: cfhttp Connection Failure

2010-04-19 Thread Claude Schnéegans
It looks like they are trying to set a cookie for authentication or at least to maintain a session. If they check for a cookie and do not find it, they would return some error message, but not a 200 status and a connection failure in the same time. And if it works under CF 5 and not under CF

Re: cfhttp Connection Failure

2010-04-19 Thread James Holmes
Have you tried CF9? mxAjax / CFAjax docs and other useful articles: http://www.bifrost.com.au/blog/ On 20 April 2010 01:01, wrote: cfhttp url= http://xmlfeed.laterooms.com/index.aspx?aid=1000rtype=4kword=cardiff; method=get/cfhttp but despite getting status code 200 OK the content is

Re: cfhttp Connection Failure

2010-04-19 Thread Claude Schnéegans
Have you tried CF9? Actually no. ~| Want to reach the ColdFusion community with something they want? Let them know on the House of Fusion mailing lists Archive:

Re: cfhttp Connection Failure

2010-04-19 Thread Brad Wood
I'd like to second Dave Watts' comments. It is true that cfhttp can't handle compressed responses and if you are hitting a web server that is gzipping the HTTP response you will get a Connection Failure message even though that doesn't seem at all like the appropriate message for the

RE: CFHTTP Connection Failure

2009-11-19 Thread Mark Kruger
I would say to check the keystore and make sure the cert (and any intermediate certs) is installed. Mark A. Kruger, CFG, MCSE (402) 408-3733 ext 105 www.cfwebtools.com www.coldfusionmuse.com www.necfug.com -Original Message- From: Agha Mehdi [mailto:aghaime...@gmail.com] Sent:

Re: CFHTTP Connection Failure

2009-11-19 Thread Agha Mehdi
where do i check that? what do i need to check for? On Thu, Nov 19, 2009 at 11:12 AM, Mark Kruger mkru...@cfwebtools.comwrote: I would say to check the keystore and make sure the cert (and any intermediate certs) is installed. Mark A. Kruger, CFG, MCSE (402) 408-3733 ext 105

RE: CFHTTP Connection Failure

2009-11-19 Thread Mark Kruger
: Thursday, November 19, 2009 1:41 PM To: cf-talk Subject: Re: CFHTTP Connection Failure where do i check that? what do i need to check for? On Thu, Nov 19, 2009 at 11:12 AM, Mark Kruger mkru...@cfwebtools.comwrote: I would say to check the keystore and make sure the cert (and any intermediate certs

Re: CFHTTP Connection Failure

2009-11-19 Thread Agha Mehdi
/keystore -Mark Mark A. Kruger, CFG, MCSE (402) 408-3733 ext 105 www.cfwebtools.com www.coldfusionmuse.com www.necfug.com -Original Message- From: Agha Mehdi [mailto:aghaime...@gmail.com] Sent: Thursday, November 19, 2009 1:41 PM To: cf-talk Subject: Re: CFHTTP Connection

Re: CFHTTP Connection Failure

2009-11-19 Thread Dave Watts
the certs are already there. I compared the server working with the one not working. I actually failed to mention that they were all working fine until yesterday when three of them failed. I have them working with HTTP for now but I need to turn on HTTPS ASAP. I just got off the 3 hour long

Re: CFHTTP Connection Failure

2009-11-19 Thread Agha Mehdi
Hmmm. not sure what the intermediate cert is. Shouldn't it also affect the one server that can connect? All four of them have the exact same config and cacerts file On Thu, Nov 19, 2009 at 3:09 PM, Dave Watts dwa...@figleaf.com wrote: the certs are already there. I compared the server

Re: CFHTTP Connection Failure

2009-11-19 Thread Dave Watts
Hmmm. not sure what the intermediate cert is. Shouldn't it also affect the one server that can connect? All four of them have the exact same config and cacerts file All the servers would presumably require the intermediate certs. Are you absolutely sure they all have the exact same list of

Re: CFHTTP Connection Failure

2009-11-19 Thread Agha Mehdi
I used Keytool to inspect the cacerts from two servers and randomly checked lines and they all match. I can go back and check it again but why would 3 out of 4 work before 4:00 PM yesterday and keep failing since? On Thu, Nov 19, 2009 at 3:27 PM, Dave Watts dwa...@figleaf.com wrote: Hmmm.

Re: CFHTTP Connection Failure

2009-11-19 Thread Dave Watts
I used Keytool to inspect the cacerts from two servers and randomly checked lines and they all match. I can go back and check it again but why would 3 out of 4 work before 4:00 PM yesterday and keep failing since? I don't know. What happens if you attempt to browse those HTTPS URLs from the

Re: CFHTTP Connection Failure

2009-11-19 Thread Agha Mehdi
Works fine accessing the service from the browser on all 4 servers. I even have small .net app on the servers, which connects just fine to this webservice. On Thu, Nov 19, 2009 at 4:19 PM, Dave Watts dwa...@figleaf.com wrote: I used Keytool to inspect the cacerts from two servers and

RE: CFHTTP Connection Failure

2009-11-19 Thread Mark Kruger
up. -Mark Mark A. Kruger, CFG, MCSE (402) 408-3733 ext 105 www.cfwebtools.com www.coldfusionmuse.com www.necfug.com -Original Message- From: Agha Mehdi [mailto:aghaime...@gmail.com] Sent: Thursday, November 19, 2009 5:06 PM To: cf-talk Subject: Re: CFHTTP Connection Failure

Re: CFHTTP connection failure error

2008-11-30 Thread Jonathan Larson
I've had this issue before. The way I solved it was to not use CFHTTP. Since you are using a winbox, this method should work fine. cfobject action=Create name=objSrvHTTP class=MSXML2.ServerXMLHTTP cfset myURL = http://google.com; cfset temp = objSrvHTTP.open(GET,#myURL#) cfset temp =

RE: CFHTTP connection failure error

2008-11-26 Thread Jeff Langevin
Never seen that one before. But here's a shot in the dark. Any chance you're trying to connect to a secure url (https)? There is a known issue where cfhttp does not support certain implementations and therefore the certificate gets rejected. You could try using CFHTTP5 at the tag store.

Re: CFHTTP connection failure

2007-07-10 Thread exH
Looks like the code is returning connection failure in the content as the server says 200 OK They must be detecting session vars. HTTP/1.1 200 OK Connection: close Expires: Tue, 01 Jan 2002 00:00:00 GMT Date: Tue, 10 Jul 2007 11:23:45 GMT Server: Apache X-Powered-By: PHP/5.0.4 Pragma:

RE: CFHTTP Connection Failure

2007-04-30 Thread Will Swain
I had a similar issue a while back which was resolved by upgrading to cfmx 7.0.2 and importing the certificate. Are you running cfmx 7.0.2? Will -Original Message- From: Matthew Irwin [mailto:[EMAIL PROTECTED] Sent: 29 April 2007 14:04 To: CF-Talk Subject: Re: CFHTTP Connection

Re: CFHTTP Connection Failure

2007-04-29 Thread Matthew Irwin
Will I thought it just might work. I downloaded the certificate from the site and imported it. The way to do it for CFMX7 is on this link http://www.adobe.com/cfusion/knowledgebase/index.cfm?id=tn_19298 This however still has not resolved the problem. I do think you are on the right track

Re: CFHTTP Connection Failure

2007-04-28 Thread Matthew Irwin
I have uninstalled coldfusion and reinstalled it. But I still connection failure.can any one that has CF try it and see if they get a connection failure? They say that others are connecting using php. ~| ColdFusion MX7 by

Re: CFHTTP Connection Failure

2007-04-28 Thread Jason Troy
Matthew - I believe the problem may be the HTTPS call. You may need to add it to the keystore. I'll dig up a thread on this in a few minutes, or someone can post their bookmark. :) I tried your URL both HTTP and HTTPS and the HTTPS gives the connection failure, the non SSL one terminates the

Re: CFHTTP Connection Failure

2007-04-28 Thread Jason Troy
Here is the link - let us know if it doesn't help. http://www.coldfusionmuse.com/index.cfm/2005/1/29/keystore - Jason Matthew - I believe the problem may be the HTTPS call. You may need to add it to the keystore. I'll dig up a thread on this in a few minutes, or someone can post their

Re: CFHTTP Connection Failure

2007-04-27 Thread Robertson-Ravo, Neil (RX)
Interesting. Are you using a proxy to go to the internet? This e-mail is from Reed Exhibitions (Gateway House, 28 The Quadrant, Richmond, Surrey, TW9 1DN, United Kingdom), a division of Reed Business, Registered in England, Number 678540. It contains information which is confidential and may

Re: CFHTTP Connection Failure

2007-04-27 Thread Matthew Irwin
No ~| Upgrade to Adobe ColdFusion MX7 Experience Flex 2 MX7 integration create powerful cross-platform RIAs http://www.adobe.com/products/coldfusion/flex2/?sdid=RVJQ Archive:

Re: CFHTTP Connection Failure

2007-04-27 Thread Robertson-Ravo, Neil (RX)
: Fri Apr 27 20:27:13 2007 Subject: Re: CFHTTP Connection Failure No ~| Upgrade to Adobe ColdFusion MX7 Experience Flex 2 MX7 integration create powerful cross-platform RIAs http://www.adobe.com/products/coldfusion/flex2/?sdid

Re: CFHTTP Connection Failure

2007-04-27 Thread Matthew Irwin
We have restarted the CF Server Is there something else that I need to do? They have also informed me that they are doing a redirect. This all happend last night. ~| Macromedia ColdFusion MX7 Upgrade to MX7 experience

Re: CFHTTP Connection Failure

2007-04-27 Thread Robertson-Ravo, Neil (RX)
://www.reedexpo.com -Original Message- From: Matthew Irwin To: CF-Talk Sent: Fri Apr 27 20:43:50 2007 Subject: Re: CFHTTP Connection Failure We have restarted the CF Server Is there something else that I need to do? They have also informed me that they are doing a redirect. This all happend last night

RE: CFHTTP Connection Failure

2007-04-27 Thread Peterson, Chris
I bet you a buck it is because they enabled compression on their server. Add these insidde your cfhttp tag: cfhttpparam type=Header name=Accept-Encoding value=deflate;q=0 cfhttpparam type=Header name=TE value=deflate;q=0 Chris

Re: CFHTTP Connection Failure

2007-04-27 Thread Matthew Irwin
No they say that they did not do that. This is the url I'am trying to get to. https://elink2.unitedstationers.com/Interlink/InterlinkDirect.asp If you are have sucess it tells you acces denied. If you are not like Iam it tells you connection failure. Thanks

Re: CFHTTP Connection Failure

2007-04-27 Thread James Holmes
Java caches successful DNS lookups forever by default. Flushing DNS on the server doesn't help, but restarting CF should have, so something else is going on. Anyway, here's the Adobe article describing the Java/DNS situation. http://www.adobe.com/cfusion/knowledgebase/index.cfm?id=13115e61 On

RE: CFHTTP Connection Failure

2005-08-05 Thread Dave Watts
I'm going through old emails I hadn't read, sorry it's taken so long to respond. This looks like something I could really get some use out of to debug some of my CFHTTP requests. But is there a way to get it to see ones sent from the internal CFMX web server, the one that runs on port

Re: CFHTTP Connection Failure

2005-03-22 Thread Mary Jo Sminkey
This looks like something I could really get some use out of to debug some of my CFHTTP requests. But is there a way to get it to see ones sent from the internal CFMX web server, the one that runs on port 8500? Still trying to figure out how to do this, any ideas?? --- MJS

Re: CFHTTP Connection Failure

2005-03-21 Thread Mary Jo Sminkey
Check out Charles: http://www.xk72.com/charles/ This looks like something I could really get some use out of to debug some of my CFHTTP requests. But is there a way to get it to see ones sent from the internal CFMX web server, the one that runs on port 8500? --- Mary Jo

RE: CFHTTP Connection Failure

2005-03-20 Thread Ewok
: Dave Watts [mailto:[EMAIL PROTECTED] Sent: Sunday, March 20, 2005 5:01 PM To: CF-Talk Subject: RE: CFHTTP Connection Failure I'm having some trouble with cfhttp and its driving me insane. I've had a site up for a while that reads some dynamically generated xml via cfhttp and worked fine

RE: CFHTTP Connection Failure

2005-03-20 Thread Dave Watts
I'm having some trouble with cfhttp and its driving me insane. I've had a site up for a while that reads some dynamically generated xml via cfhttp and worked fine forever. I recently updated my router/firewall and now I get Connection Failure as the cfhttp.FileContent results. I don't

Re: CFHTTP Connection Failure

2005-03-16 Thread Bryan Stevenson
Hey Davewhat do you use for your proxy recordingI've been poking around and...wellthere are a few too many options for me to choose from ;-) Cheers Bryan Stevenson B.Comm. VP Director of E-Commerce Development Electric Edge Systems Group Inc. phone: 250.480.0642 fax: 250.480.1264

Re: CFHTTP Connection Failure

2005-03-16 Thread Bryan Stevenson
PROTECTED] To: CF-Talk cf-talk@houseoffusion.com Sent: Tuesday, March 15, 2005 4:14 PM Subject: RE: CFHTTP Connection Failure I'm hoping someone on list can spot something that is causing this issue (Connection Failure) ;-) ... A DUMP OF CFHTTP: struct Charset utf-8 ErrorDetail

RE: CFHTTP Connection Failure

2005-03-16 Thread Dave Watts
Dave I decided to go with PureTest from the folks at PureLoadI installed it on my laptop and setup my browser to use the HTTP recorder as the proxy. Then I tied running my CFM file (which resides on our office dev server) with the CFHTTP request in it to the remote page. I'm

RE: CFHTTP Connection Failure

2005-03-16 Thread Dave Watts
Hey Davewhat do you use for your proxy recordingI've been poking around and...wellthere are a few too many options for me to choose from ;-) Check out Charles: http://www.xk72.com/charles/ Dave Watts, CTO, Fig Leaf Software http://www.figleaf.com/ Fig Leaf Software provides the

Re: CFHTTP Connection Failure

2005-03-16 Thread Bryan Stevenson
You will need to compare the HTTP requests and responses, not just the requests. I thought that's what the HTTP recorder does?? ;-) Should the recorder by running on my laptop (dev machine) or on the dev server? I'm having trouible thinking this through today as cement walls are being sawed

RE: CFHTTP Connection Failure

2005-03-16 Thread Dave Watts
I thought that's what the HTTP recorder does?? ;-) You mentioned that you were seeing requests, but you didn't say you were seeing responses, so I assumed that you weren't for some reason. Should the recorder by running on my laptop (dev machine) or on the dev server? I'm having trouible

Re: CFHTTP Connection Failure

2005-03-16 Thread Bryan Stevenson
The original URL I was trying did redirectso I tried with the URL it redirects to (in browser and in code)...still no love :-( Perhaps it's also setting a cookie, in which case you would need to send that cookie along on the subsequent request. Thanks for the other info...I'll keep it

Re: CFHTTP Connection Failure

2005-03-16 Thread Bryan Stevenson
Hey Dave (and anybody else that wants to chime in), I'm not sure I'm testing this correctly...so here's what I'm up to: 1) Go straight to remote URL in my browser (and record request/response) 2) Test my CFM file (which has a CFHTTP request to the remote URL mention above) in my browser What

Re: CFHTTP Connection Failure

2005-03-16 Thread Bryan Stevenson
I've noticed that the request is made with HTTP/1.0 and the response is made using HTTP/1.1 Could that effect anything? w...it's grasping at straws time :-( Cheers Bryan Stevenson B.Comm. VP Director of E-Commerce Development Electric Edge Systems Group Inc. phone: 250.480.0642 fax:

SOLVED: Re: CFHTTP Connection Failure

2005-03-16 Thread Bryan Stevenson
Well...when in doubt...find an alternative to theshall we say sensitive built in CFHTTP tag ;-) I fired up CFX_HTTP5 and voila! everything is just fine (damn handy tag for $30). Well there's half a day of my life I'll never get back. Thanks for the help Dave Cheers Bryan Stevenson

RE: CFHTTP Connection Failure

2005-03-16 Thread Dave Watts
You mention the cookie...there does appear to be one being set.. extracted from header: private Set-Cookie: ASP.NET_SessionId=bifpcg2ritgn1v45o4y45ovo; I see my response above was a bit off... I works if I go to the final URL (the one pointed to by the re-direct) in my browserbut not

RE: CFHTTP Connection Failure

2005-03-15 Thread Dave Watts
I'm hoping someone on list can spot something that is causing this issue (Connection Failure) ;-) ... A DUMP OF CFHTTP: struct Charset utf-8 ErrorDetail [empty string] Filecontent Connection Failure Header HTTP/1.1 200 OK Date: Tue, 15 Mar 2005

Re: CFHTTP Connection Failure

2005-03-15 Thread Bryan Stevenson
It strikes me as odd that you'd get a connection failure message even though the server sent you a response, as indicated by the header. Have you tried using a recording proxy, or testing this from your server console using wget or a browser? hehe..me too ;-) I haven't tried using a

RE: CFHTTP Connection Failure

2004-09-30 Thread Dave Watts
For some reason all of our CFHTTP tags have been returning Connection Failure for the past couple of days.In the past week, we haven't changed any relevant code, we haven't changed any settings in the CF admin, and we haven't changed any settings or hardware on the servers. So I'm

Re: CFHTTP Connection Failure

2004-09-30 Thread Jim Campbell
Try: cfdump var=cfhttp.ErrorDetail That should reveal some more specific information on what's going wrong. - Jim nerd wrote: For some reason all of our CFHTTP tags have been returning Connection Failure for the past couple of days.In the past week, we haven't changed any relevant code,

RE: CFHTTP Connection Failure with MX

2003-02-06 Thread Houk, Gary
No, qualifying with charset didn't help. I can GET other pages from our internal servers, and from our extranet servers located outside of the building, but nothing from the WWW. I have the proxy and proxyport info listed. It works great on the cf5 server but not on the mx server. - Gary

RE: CFHTTP Connection Failure with MX - DISREGARDING PROXY TAGS?

2003-02-06 Thread Houk, Gary
- From: Houk, Gary Sent: Thursday, February 06, 2003 8:54 AM To: CF-Talk Subject: RE: CFHTTP Connection Failure with MX No, qualifying with charset didn't help. I can GET other pages from our internal servers, and from our extranet servers located outside of the building, but nothing from

RE: CFHTTP Connection Failure with MX

2003-02-06 Thread Dale Coyner
web servers were returning redirects instead of the pages themselves, so I enabled the redirect parameter in CFHTTP and it solved the issue for me. Dale Coyner Communicast, Inc. -Original Message- From: Houk, Gary Sent: Thursday, February 06, 2003 8:54 AM To: CF-Talk Subject: RE: CFHTTP

RE: CFHTTP Connection Failure with MX

2003-02-06 Thread Houk, Gary
TIA, - Gary -Original Message- From: Dale Coyner [mailto:[EMAIL PROTECTED]] Sent: Thursday, February 06, 2003 12:24 PM To: CF-Talk Subject: RE: CFHTTP Connection Failure with MX Gary, Have had similar experiences here with MX CFHTTP as well. To troubleshoot, I constructed a page where

RE: CFHTTP Connection Failure with MX

2003-02-06 Thread Debbie Dickerson
- From: Houk, Gary [mailto:[EMAIL PROTECTED]] Sent: Thursday, February 06, 2003 1:22 PM To: CF-Talk Subject: RE: CFHTTP Connection Failure with MX Dale, I just tried it and unfortunately, it didn't work. Any other suggestions? My current code is: cfhttp url=http://www.macromedia.com

RE: CFHTTP Connection Failure with MX

2003-02-06 Thread Adrocknaphobia Jones
Developer Johns Hopkins Bloomberg School of Public Health Distance Education Division -Original Message- From: Houk, Gary [mailto:[EMAIL PROTECTED]] Sent: Thursday, February 06, 2003 1:22 PM To: CF-Talk Subject: RE: CFHTTP Connection Failure with MX Dale, I just tried it and unfortunately

Re: CFHTTP Connection Failure with MX

2003-02-06 Thread Sean A Corfield
On Thursday, Feb 6, 2003, at 10:35 US/Pacific, Debbie Dickerson wrote: Can you try adding the following arguments to the JVM Arguments in your CF administrator (putting in the appropriate proxyHost and proxyPort values)? Stop and restart your cfmx server and test. -DproxySet=true

RE: cfhttp, Connection Failure: Status code unavailable

2003-01-22 Thread Tony Weeg
what kinda certificate are they using on the https end. ...tony Tony Weeg Senior Web Developer UnCertified Advanced ColdFusion Developer Information System Design Navtrak, Inc. Mobile workforce monitoring, mapping reporting www.navtrak.net 410.548.2337 -Original Message- From: Smith,

RE: cfhttp, Connection Failure: Status code unavailable

2003-01-22 Thread Craig Dudley
Ah my favorite subject is back ;-) I have several java classes that do this sort of thing but I've not tried them with https, hopefully they will still work. I'll dig one out and post you the code, so you'll need to go download the java sdk so you can compile it. -Original Message-

Re: cfhttp, Connection Failure: Status code unavailable

2003-01-22 Thread Sean A Corfield
Are you running this inside a cfloop? On Wednesday, Jan 22, 2003, at 06:44 US/Pacific, Smith, Matthew P -CONT(DYN) wrote: We just migrated our production server over to cfmx yesterday, and are running into a couple of issues regarding cfhttp. A call to a web service we are using for

RE: cfhttp Connection Failure

2002-08-08 Thread Robyn Follen
Not sure if this will do it, but check that you're passing in the entire URL of the page you're trying to pass to - e.g., http://www.mysite.com/page.cfm -Original Message- From: Jim Taylor [mailto:[EMAIL PROTECTED]] Sent: Thursday, August 08, 2002 3:57 PM To: CF-Talk Subject: cfhttp

RE: cfhttp Connection Failure

2002-08-08 Thread Jim Taylor
yep did that to It sits in a password protected area -Original Message- From: Robyn Follen [mailto:[EMAIL PROTECTED]] Sent: Thursday, August 08, 2002 12:50 PM To: CF-Talk Subject: RE: cfhttp Connection Failure Not sure if this will do it, but check that you're passing in the entire

Re: cfhttp Connection Failure

2002-08-08 Thread Jeff Garza
: cfhttp Connection Failure yep did that to It sits in a password protected area -Original Message- From: Robyn Follen [mailto:[EMAIL PROTECTED]] Sent: Thursday, August 08, 2002 12:50 PM To: CF-Talk Subject: RE: cfhttp Connection Failure Not sure if this will do it, but check that you're

RE: cfhttp Connection Failure

2002-08-08 Thread Jim Taylor
is the cfhttp password and username attributes a windows system un pw -Original Message- From: Jeff Garza [mailto:[EMAIL PROTECTED]] Sent: Thursday, August 08, 2002 1:17 PM To: CF-Talk Subject: Re: cfhttp Connection Failure If this is on IIS, make sure you have basic authentication

Re: cfhttp Connection Failure

2002-08-08 Thread Jeff Garza
: cfhttp Connection Failure is the cfhttp password and username attributes a windows system un pw -Original Message- From: Jeff Garza [mailto:[EMAIL PROTECTED]] Sent: Thursday, August 08, 2002 1:17 PM To: CF-Talk Subject: Re: cfhttp Connection Failure If this is on IIS, make sure you have

  1   2   >