fedex tracking cfc

2013-07-09 Thread Tim Do
Can anybody point me in the right direction to get some implementation instruction using fedex's wsdl? They only have samples for vb.net, php, c# etc... Why is it so painful to find anything related to coldfusion and fedex implementation. I have an account number, identifier (meter) and an

CFQUERY immediately throws blank CF error and HTTP 500 code when more than 50 records will be returned (CF6)

2013-07-09 Thread Chris Johnson
Really odd issue we've been having.. We have a scheduled task that hits another database server to get a full list of employees. It then runs through the user accounts for this specific app and adds or updates accounts as needed. We weren't aware that it had been broken, so we don't know

Re: CFQUERY immediately throws blank CF error and HTTP 500 code when more than 50 records will be returned (CF6)

2013-07-09 Thread Russ Michaels
Has anyone updated the java version by any chance Russ Michaels www.michaels.me.uk On 9 Jul 2013 23:11, Chris Johnson ejohn...@directalliance.com wrote: Really odd issue we've been having.. We have a scheduled task that hits another database server to get a full list of employees. It then

This query was working in CF8 and now it will not work in CF9 on my server

2013-07-09 Thread Terry Troxel
Error Executing Database Query. [Macromedia][SequeLink JDBC Driver][ODBC Socket][Microsoft][ODBC Microsoft Access Driver] Syntax error in INSERT INTO statement.The error occurred in *C:\Inetpub\wwwroot\it-werks\LIBERTREE\index.cfm: line 7* 5 : cfquery name=addcat

Re: This query was working in CF8 and now it will not work in CF9 on my server

2013-07-09 Thread Scott Stewart
What's the *7 and the * at the end? On Jul 9, 2013 7:59 PM, Terry Troxel terry.tro...@gmail.com wrote: Error Executing Database Query. [Macromedia][SequeLink JDBC Driver][ODBC Socket][Microsoft][ODBC Microsoft Access Driver] Syntax error in INSERT INTO statement.The error occurred in

Re: This query was working in CF8 and now it will not work in CF9 on my server

2013-07-09 Thread Scott Stewart
Nevermind... Damn text wrap on the phone. On Jul 9, 2013 8:04 PM, Scott Stewart webmas...@sstwebworks.com wrote: What's the *7 and the * at the end? On Jul 9, 2013 7:59 PM, Terry Troxel terry.tro...@gmail.com wrote: Error Executing Database Query. [Macromedia][SequeLink JDBC Driver][ODBC

Re: This query was working in CF8 and now it will not work in CF9 on my server

2013-07-09 Thread Scott Stewart
A couple of things though Desc is a SQL reserved word. You may need to express the field name as [desc]. Second please wrap those variables in cfqueryparam tags. On Jul 9, 2013 8:05 PM, Scott Stewart webmas...@sstwebworks.com wrote: Nevermind... Damn text wrap on the phone. On Jul 9, 2013

Memory consumption issue in CF 9

2013-07-09 Thread Ben Conner
Hi, I have a CF 9 server, version 9,0,0,251028 running on top of Java vsn 1.6.0_38. Recently I've started having significant out-of-memory conditions that cause the JVM to crash. I have Fusion Reactor running on this machine and have taken snapshots of the appropriate screens. Running a

Re: This query was working in CF8 and now it will not work in CF9 on my server

2013-07-09 Thread Terry Troxel
That was it changed to desc1. Thank you very much. Terry On Tue, Jul 9, 2013 at 5:08 PM, Scott Stewart webmas...@sstwebworks.comwrote: A couple of things though Desc is a SQL reserved word. You may need to express the field name as [desc]. Second please wrap those variables in

RE: Memory consumption issue in CF 9

2013-07-09 Thread Brook Davies
You need to look at the threads that were running when your memory started to spike. Or look under the slow pages in fusion reactor and then look and see what they are doing, what queries are executing (seems like a pretty high number of JDBC requests per second) and how long they are taking. Or