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: Finding the CFINCLUDE path

2006-11-06 Thread Jason Troy
I've always just used output the template path: cfoutputtemplate=##/cfoutputcfabort where ##=what is being passed to your include file. Its a simple and quick way to see what was going on and get rolling again. Ben is also right as to how to also find the information. Anyone here has some

Re: Using CFHTTP to login

2006-11-03 Thread Jason Troy
misunderstood the intended functionality. Jason Troy ~| Introducing the Fusion Authority Quarterly Update. 80 pages of hard-hitting, up-to-date ColdFusion information by your peers, delivered to your door four times a year. http

Re: listgetat issue...

2005-11-16 Thread Jason Troy
Obviously, if you need to preserve the URL Encoded format, just re-encode the output: urlencodedformat(listgetat(urlDecode(session.search_keywords), 1, )) urlencodedformat(listgetat(urlDecode(session.search_keywords), 2, )) listgetat(urlDecode(session.search_keywords), 1, )

Re: Testing File Upload

2005-10-10 Thread Jason Troy
I would suggest cfif len(trim(form.formFieldName)) some browsers will append a space to the value submitted. cfif len(form.formFieldName) gt 0 ~| Discover CFTicket - The leading ColdFusion Help Desk and Trouble Ticket

cfhtp post bug?

2005-09-30 Thread Jason Troy
I have an application that does some backend processing. It will do an cfhttp post (with form fields) to another app and wait for the response before confirming the transaction was successful. At times, these transactions can take a long time to finish (GT 5 minutes). (don't go there with just

Re: Problem with Client Management

2005-09-22 Thread Jason Troy
You should be able to do the following IF either CFID or CFToken is defined, but not both: cfheader statuscode=302 statustext=Object Temporarily Moved cfheader name=location value=http://www.myexampleapp.com; cfabort This should redirect your user back to your home page while allowing the