Re: CF10 / SQL Server Windows Authentication

2014-02-13 Thread Anthony Doherty
Thanks I'm going to go down with a SQL user and not use the windows authentication. It wasn't my choice to use more this is what I was given. Thanks for your help Sent from my iPhone On 11 Feb 2014, at 22:50, Russ Michaels r...@michaels.me.uk wrote: I would also point out that if you

Re: Possible time out

2014-02-13 Thread Matthew Williams
Is the form re-submitting each time you check a box? I bet it's the post parameter limit thing. The behavior you're describing (white screen) is exactly what happens when you hit that post param limit. Cutter did a great blog post on it

Re: Possible time out - Not

2014-02-13 Thread Rob Voyle
Hi Matthew and Anthony It was the post param limit issue There were lots of hidden input variables associated with the check box. Bummer just getting a white screen without any error message. Thanks Rob On 13 Feb 2014 at 9:11, Matthew Williams wrote: Is the form re-submitting each time

Upgrading CF9 Hotfixes

2014-02-13 Thread Richard White
Hi, I am having a lot of problems trying to upgrade hot fixes. I currently have 9.01 installed. I have downloaded 9.01 hot fix as described here: http://helpx.adobe.com/coldfusion/kb/security-hotfix-coldfusion-8-8.html. However, after applying the changes the CF Admin stops working and just

Possible to optimise CFHTTP Response Time?

2014-02-13 Thread Craig Brown
I have an API running on my server where I can receive an average ping response to the host server of 1ms yet when I make a CFHTTP request to the host server it takes anywhere from 300-500ms to return a response. Anyone have any ideas what might be causing this latency, and how I could

Re: Possible to optimise CFHTTP Response Time?

2014-02-13 Thread Russ Michaels
a cfhttp is not the same as a ping a ping simply sends a packet to the server and gets a response. cfhttp is requesting a page from the server, that request goes to the web server, then to cf, the page has to execute and then return all data back to your server, so the time taken depends on how

Re: Possible to optimise CFHTTP Response Time?

2014-02-13 Thread Craig Brown
a cfhttp is not the same as a ping a ping simply sends a packet to the server and gets a response. cfhttp is requesting a page from the server, that request goes to the web server, then to cf, the page has to execute and then return all data back to your server, so the time taken depends on how

Re: Upgrading CF9 Hotfixes

2014-02-13 Thread Donnie Bachan (Gmail)
Hi Richard, Are you renaming any existing jar files or removing them completely? I have run into issues when the old hotfix files are just renamed, you should remove them from the folder completely (i.e. the ones in the UPDATES folder). Ensure that you have them backed up in another location

Re: Upgrading CF9 Hotfixes

2014-02-13 Thread Russ Michaels
also, make double sure you are installing the right hotfixes. Most times when I have seen this issue it is because the wrong hotfixes were installed (9.0 instead of 9.0.1) On Thu, Feb 13, 2014 at 3:27 PM, Donnie Bachan (Gmail) donnie.bac...@gmail.com wrote: Hi Richard, Are you renaming

Re: Possible to optimise CFHTTP Response Time?

2014-02-13 Thread Russ Michaels
if it is the page you are calling which is taking the time then no, because it is not the request which is the cause. A suggested you need to check how long the page you are requesting takes to execute before blaming the connection. On Thu, Feb 13, 2014 at 3:22 PM, Craig Brown

Re: Possible time out

2014-02-13 Thread Steve 'Cutter' Blades
I don't know if it was a great blog post... (Thanks Matt) ;) Steve 'Cutter' Blades Adobe Community Professional Adobe Certified Expert Advanced Macromedia ColdFusion MX 7 Developer http://cutterscrossing.com Co-Author Learning Ext JS 3.2 Packt Publishing 2010

Re: Upgrading CF9 Hotfixes

2014-02-13 Thread Steve 'Cutter' Blades
Some of those updates in CF 9 were pretty tricky. I would checkout the cfUpdater project for RIAForge. It can handle a lot of that craziness for you. http://cfupdater.riaforge.org/ Steve 'Cutter' Blades Adobe Community Professional Adobe Certified Expert Advanced Macromedia ColdFusion MX 7

Re: Possible time out

2014-02-13 Thread Cameron Childress
On Thu, Feb 13, 2014 at 11:08 AM, Steve 'Cutter' Blades wrote: I don't know if it was a great blog post... (Thanks Matt) ;) I am JUST dealing with the postparam problem with a client (yes that client) and came across this post from you about 10 minutes ago in my searching. It's a real tough

Re: Possible to optimise CFHTTP Response Time?

2014-02-13 Thread Dave Watts
I have an API running on my server where I can receive an average ping response to the host server of 1ms yet when I make a CFHTTP request to the host server it takes anywhere from 300-500ms to return a response. Anyone have any ideas what might be causing this latency, and how I could

Re: Upgrading CF9 Hotfixes

2014-02-13 Thread Richard White
Thanks all. Yes I am installing the correct hot fixes and not renaming the jar files. I will try the cfupdater. Thanks again Richard Hi, I am having a lot of problems trying to upgrade hot fixes. I currently have 9.01 installed. I have downloaded 9.01 hot fix as described here:

Re: Upgrading CF9 Hotfixes

2014-02-13 Thread Richard White
Just to double check, is it OK to install 9.02 update instead of all the 9.01 hot fixes. I am sure 9.02 will contain all the fixes but just wanted to make sure thanks Richard Some of those updates in CF 9 were pretty tricky. I would checkout the cfUpdater project for RIAForge. It can

Re: Upgrading CF9 Hotfixes

2014-02-13 Thread Carl Von Stetten
9.02 is not an update - it is a full install (see Charlie Arehart's blog entry for an excellent explanation http://www.carehart.org/blog/client/index.cfm/2013/8/19/understanding_ColdFusion_9.0.2_a_FAQ). As such, it cannot be installed over the top of 9.0 or 9.0.1. -Carl V. On 2/13/2014 9:19

Re: Possible time out

2014-02-13 Thread Matthew Williams
I find that it bites me every time I do a CF9 install (for instance, after rebuilding my dev laptop). So it happened in the last month or so to me, which is the only reason I even remember the cause ;). Though WHY there's no error output to the screen is highly annoying. -- Matthew Williams