Re: CF10 Flash Remoting
Does it produce same result with and without ending forward slash?
View ArticleRe: CF10 Flash Remoting
yes...if I put the servername rather than localhost I get an empty page back - i.e. <html><head></head><body></body></html>
View ArticleRe: We need cold fusion support and have cold fusion 9 owned by Adobe.
Depends on what type of support you are looking for. Many specific questions can be asked here on these forums, you just need to be specific. For licensing and installation help, there are phone...
View ArticleRe: jqGrid Server side
Something to think about, I have found that jsStringFormat misformats strings that contain single quotes and this breaks the json parsing that jquery uses (it's improper json so that is...
View ArticleRe: jqGrid Server side
Oh, I just remembered, jqGrid (maybe jquery) also has issues with embedded nulls within string data. Here is the actual code my jsStringFormat wrapper uses: <cfreturn...
View ArticleHow to back up the settings of ColdFusion 10 Admin
Hi all. We are a county government organization that needs to keep all of its application and server configuration settings backed up in the event of a disaster (flood, earthquake, terrorist act,...
View ArticleserializeJSON is converting ints to floats
CF10 update 11 Win7 x64 I'm running into a problem that I just noticed with serializeJSON()... ints are being converted to floats. Here's the code: <cfset r = { "x": 0, "y": 1}>...
View ArticleRe: CF10 Flash Remoting
Tha's the point. If you get a blank page back with no errors - that means Remoting is installed, up, and running.
View Articlepass coldfusion data to jQuery DatePicker using jQuery.get()
I use following jQuery code to pass json data from ColdFusion using jQuery.get() to datepicker.I tested the server side and it returns data without error.I got 'I am here' and 'Data Loaded:" message...
View ArticleRe: serializeJSON is converting ints to floats
Also found out that a simple addition operation creates a float: <cfset r["z"] = 1 + 2> will output 3.0 Workaround: <cfset r.x = javaCast("int", Val("1"))><cfset r.y = javaCast("int",...
View ArticleRe: ColdFusion 10, IIS 7.5, and custom 404 page
Thank you for sharing. Just tested with same IIS role services in both (Server 2003/2008) and then installed CF 10. Still not able to repro it. If possible, can you test the same like if you can...
View ArticleRe: Upgrade ColdFusion MX 6.1 to 10
Hi Please mark this post as correct if it answer your question. ThanksVJ
View ArticleRe: How to back up the settings of ColdFusion 10 Admin
Hi Andy Create an Archive Package is a Enterprise feature and you are running ColdFusion 10 Standard On Enterprise, you get the option in CF 10 Administrator To create : - After creation of the...
View ArticleDefine an RDS Server in CF Report Builder
When I try to create a Report Query in Report Builder, I have to configure an RDS Server. No matter what I enter for the host name I receive the error "A connection to the RDS Server could not be...
View ArticleRe: CF10 Flash Remoting
Hi Phil, In ColdFusion10\config\wsconfig\1\uriworkermap.properties file /cfformgateway/* = cfusion/CFFormGateway/* = cfusion/flex2gateway/* = cfusion/flex2gateway = cfusion/cffileservlet/* =...
View ArticleRe: CF 10 continues to crash on Windows 2008 R2 64 bit
Charlie - <<note that one of the many things that CF10 update 11 addressed was an issue related to when CF was processing 404s for IIS>> Are we all crazy? From the bug base for the 404...
View ArticleRe: ArrayFindNoCase
I am seeing the same thing. Shame that this post has over 200 views, but no one has an answer. I am guessing "no" because every example I have Googled has only one dimension. Looks like creating a...
View ArticleRe: pass coldfusion data to jQuery DatePicker using jQuery.get()
First off all, when you declare a local variable in a function, use "var" scope. This will prevent problem in the future when your app gets bigger and somewhere you use the same variable names. Now,...
View ArticleRe: pass coldfusion data to jQuery DatePicker using jQuery.get()
Thanks for the message and help,I have my jQuery.get() in jQuery(document).ready function.MyDate is the field return from cffunction in myData.MyData returns MyNumber and MyDate.I see jQuery web site...
View ArticleRe: pass coldfusion data to jQuery DatePicker using jQuery.get()
I created brand new files for cfm and cfc files.I am confused now, in these new files, I do not get 'I am here start'jQuery creates Datepicker, but it seems that the myButton.Click does not trigger...
View Article