Securing a remote CFC
Hello, I'm in the middle of a project that is using AJAX and remote CFC's to allow data from the client side to interact with the server. This is an add-on for an existing application and am having a...
View ArticleCFSELECT change order
I have a CFSELECT like following and I need sometime sort by MyCode and sometime sort by MyName like following code <cfif (isDefined("form.MyID") AND form.MyID EQ...
View ArticleCFSELECT add new record
I need to let user enter the new value does not exist in the list and add a new record for the user using CFSELECT.Does CFSELECT have the option to let user to enter a data not in the list? Your help...
View ArticleRe: Securing a remote CFC
You can set session variables when the user logs in and then check those in your CFC function, eg if session.userID EQ arguments.userID...
View Articlepass check box value to stored procedure
I have a check box on the form and want to pass it check or not to my cfstoredproc.I tried to use followign code I got invalid data error message, I tried to use cf_sql_bit, cf_sql_int, but I always...
View ArticleRe: pass check box value to stored procedure
iccsi, I think the problem you are experiencing is related to how ColdFusion stores boolean values. They are stored as true booleans, not as integer values. So you can't pass them directly to the...
View ArticleCF10 Server Issues Crashing Twice a Day
We have had a lot of issues with CF10 running on our server. We've gotten to the point that we've killed off our old VM Server and have replaced it with a new one. Everything was going okay but last...
View ArticleRe: ColdFusion 10, IIS 7.5, and custom 404 page
Thanks for the link. I did some fiddling and found a workaround using IIRF. I posted instructions on the stackoverflow page you posted. I think this is a bug that Adobe should address.
View ArticleCFPDFFORM fails to generate valid XML
I've been trying to figure out exactly why this tag has been consistently failing on one of my two production boxes for 3 weeks, with very limited success. On system one, it works fine, and generates...
View ArticleRe: CF10 Server Issues Crashing Twice a Day
verify the kernel tuning on the unix system you have running. That was a semaphore error, which is a tunable parameter on some unix systems. Good luck -- Charles
View ArticleRe: Coldfusion 9 syslog setup
On unix, there are syslog facilities provided by various tools, such as syslog or nsyslog. They listen on port a network port as well, but on the local host, a named pipe is provided for simplicity....
View ArticleRe: Coldfusion 9 syslog setup
Thanks, yes I am familar with syslog on unix. So I enabled that feature in the CF admin page. Where should I be seeing logs under /var/log? Is CF sending everything over a named pipe? I assume there is...
View ArticleRe: Coldfusion 9 syslog setup
I usually debug that kind of stuff with a *.* in the syslog.conf file and put that into a file like /var/log/all.log. Once I know which messages I want to keep I adjust accordingly. -- Charles
View ArticleRe: CF10 Server Issues Crashing Twice a Day
Hi Patrick, Which log are we looking at, perhaps ColdFusion10\cfusion\logs\coldfusion-error.log ? When CF10 starts are any errors logged? I have been finding the tomcat webserver connector log helpful...
View ArticleWeb service issues in migrating from ColdFusion 9 to 10
I'm troubleshooting a problem a client is having with their migration from CF9 to CF10. A webservice call that previously worked, no longer is working. When I call it from my CF10 server, I get this...
View ArticleRe: Web service issues in migrating from ColdFusion 9 to 10
I found the answer, and it turned out to be quite simple. After making the change to the default webservice version in CF Admin, I needed to restart the server. It now works, although I am curious as...
View ArticleCF10, FB 4.7, Apache on MAC
Hi All,I have couple days trying to configure this new MAC with FB 4.7 and ColdFusion 10.Alex was helping me to debug this issue but I still cannot figure this out, sorry no an expert in MAC or...
View ArticleRe: Configuring logging in ColdFusion 10
I eventually found this file: \cfusion\runtime\conf\logging.properties. By setting org.apache.catalina.core.ContainerBase.[Catalina].[localhost].level to WARN the plague of INFO errors has now gone....
View ArticleOrm get only the id from child object
I'm new to orm, and I'm making some tests. I've two simple object Artist and Art: Artist.cfc // identifier property name="ArtistID" fieldtype="id" generator="native"; // properties property...
View ArticleRe: CF10, FB 4.7, Apache on MAC
I found this article:http://coolestguyplanettech.com/downtown/install-and-configure-apache- mysql-php-and-phpmyadmin-osx-108-mountain-lionIt helps to understand that "OSX has historically had 2 web...
View Article