RE: Home Site+ and Windows 7

2010-05-24 Thread Sebastiaan GMC van Dijk
Hi Justin, Simple: I don't use the RDS-functions ;-) Haven't for quite some years. There are so many good SQL-editors out there (Built in editor in MS SQL 2005 Express, SQL-Yog) that I use those when I need to introspect a database. Sorry I cannot be of more help there. But the editor

RE: Leading zeros being removed

2010-05-24 Thread Andrew Scott
The Json needs to be wrapped in single or double quotes. So [{1:test},{2:200.0}] Should be [{1:'test'},{2:'00200.0'}] -Original Message- From: Chad Baloga [mailto:cbal...@gmail.com] Sent: Monday, 24 May 2010 5:30 AM To: cf-talk Subject: Re: Leading zeros being removed I want to

RE: CFGRID - Empty Response help

2010-05-24 Thread Scott Stewart
Emily, This line needs a set cf link = a href=AppExt.cfm?apprid= -Original Message- From: Emily McGill [mailto:cassadinec...@gmail.com] Sent: Friday, May 21, 2010 1:38 PM To: cf-talk Subject: CFGRID - Empty Response help Ok, I have read and read and read and I can't figure out

Re: Creating Facebook Notification type functionality

2010-05-24 Thread Paolo Broccardo
Hi all I would like to develop some event notification functionality similar to the Facebook Notifications functionality. Could anyone direct me to links relating to the architecture of such functionality or provide me with high level advice as to how to go about accomplishing this

Traffic Monitoring

2010-05-24 Thread Steve Keator
Hello Everyone, I'm working on some development involving CFHTTP requests to remote services and using CFHTTPPARAM's to set information to be passed in the header. I'm having trouble communicating my message, as the remote server is telling me that my parameters are not being sent. I'm

CF 9 How pass data in one grid to a query that populates another grid?

2010-05-24 Thread Joy Rose
I have a cfgrid from which a user would choose a data row. Based on the values in the selected row, I would run to a query to get detailed data that would display in another grid. In that new grid, I would want to be able to insert and also maybe edit a row. I haven't found any explanation

Re: Traffic Monitoring

2010-05-24 Thread Azadi Saryev
try WireShark: http://www.wireshark.org/ Azadi Saryev On 24/05/2010 21:34, Steve Keator wrote: Hello Everyone, I'm working on some development involving CFHTTP requests to remote services and using CFHTTPPARAM's to set information to be passed in the header. I'm having trouble

Re: Coldfusion 9 Windows vs Linux

2010-05-24 Thread Kris Sisk
As others have said the big difference is that Linux is case sensative. I have a friend who switched her web server over to Debian from Windows several years back. Her husband is a massive Linux geek and handled setting it up for her so she had no learning curve with the switch but she did a

Re: CF 9 How pass data in one grid to a query that populates another grid?

2010-05-24 Thread Won Lee
On Mon, May 24, 2010 at 9:52 AM, Joy Rose joycer...@gmail.com wrote: I have a cfgrid from which a user would choose a data row. Based on the values in the selected row, I would run to a query to get detailed data that would display in another grid. In that new grid, I would want to be

RE: Traffic Monitoring

2010-05-24 Thread Steve Keator
This was exactly what I was looking for. Thank you! -Original Message- From: Azadi Saryev [mailto:azadi.sar...@gmail.com] Sent: Monday, May 24, 2010 10:11 AM To: cf-talk Subject: Re: Traffic Monitoring try WireShark: http://www.wireshark.org/ Azadi Saryev On 24/05/2010 21:34,

RE: Home Site+ and Windows 7

2010-05-24 Thread Justin Scott
When I try to modify an existing table from SQL 2000, I get the message 'Saving changes is not permitted. The changes you have made require the table to be dropped and recreated. You have either made changes to a table that can't be created or enabled the option Prevent saving changes that

Re: Home Site+ and Windows 7

2010-05-24 Thread Jerry Barnes
Periodically, I'll download a bunch of editors to see if any match the features I like about Homesite +.None have been able to replace Homesite + though. Topystyle 4 is the only one to come remotely close. ~| Order the

CFC = Why isn't this working?

2010-05-24 Thread Matthew P. Smith
cfobject component=cfcs.qry name=variables.qry / cfset arguments.order_info_struct.order_key = variables.qry.qry_order_commit_1 ( app_user_id = arguments.order_info_struct.user.app_user_id, item_subtotal = arguments.order_info_struct.totals.item_subtotal,

Re: CFC = Why isn't this working?

2010-05-24 Thread Leigh
        SET NOCOUNT ON         SELECT    @orderKey = SCOPE_IDENTITY()         SET NOCOUNT OFF         SELECT @orderKey as orderKey     /cfquery     cfreturn qry_order_commit_1.orderKey /cffunction The SET NOCOUNT should be the very first statement. Try moving it before the

Re: CFC = Why isn't this working?

2010-05-24 Thread Leigh
qry_order_commit_1 Also, do not forget to VAR scope all function local variables, including query names. ~| Order the Adobe Coldfusion Anthology now!

Re: CF 8 Crash ColdFusion 8 Application Server service terminated with service-specific error 2 (0x2).

2010-05-24 Thread Developer MediaDoc
We JUST ran into this same error. The cause was we editted the max amount of RAM the JVM could use (via cf administratorJava and JVM - to 2048 MB -- our server has 4096 MB. (We did this a few weeks ago, and forgot about it. We just rebooted, and whack - the cf service would not start. We

Re: CF 8 Crash ColdFusion 8 Application Server service terminated with service-specific error 2 (0x2).

2010-05-24 Thread Dave Watts
We JUST ran into this same error. This is a very generic error. It simply means the service couldn't start. This can be caused by any number of things, including allocating too much memory (as in your case). Dave Watts, CTO, Fig Leaf Software http://www.figleaf.com/

CF + Android + A-GPS Coordinates

2010-05-24 Thread Arsalan Tariq Keen
Dear Experts, Is it possible that my cf-application, when viewed from an Android based mobile client device, can pick up coordinates from the A-GPS featured in most Android based smart phones? The idea is bit vague, but certainly I would appreciate the input of the experienced ones!

Re: CF + Android + A-GPS Coordinates

2010-05-24 Thread Wil Genovese
I would expect that your Android App would be able to send out the GPS coords in the request to your server. Then you should be able to use that for whatever you need in your CF app. Wil Genovese One man with courage makes a majority. -Andrew Jackson A fine is a tax for doing wrong. A tax

Re: CF + Android + A-GPS Coordinates

2010-05-24 Thread Dave Watts
Is it possible that my cf-application, when viewed from an Android based mobile client device, can pick up coordinates from the A-GPS featured in most Android based smart phones? Yes, this is certainly possible, as the Google search web app does this in Android. However, I don't really know