Re: binary data in a form field gets changed
"This worked perfectly on the old installation": What I meant is, that the data in the form field (i.e. binary data mixed with plain text) was in the variable requestContent as it was sent by the...
View ArticleRe: binary data in a form field gets changed
Umhum, I see. What might likely have changed between the 2 installations is the encoding. If so, then the following should help: <cfif isDefined("form.fieldt")> <cfset setEncoding("form",...
View ArticleI am having Issues with ISAPI_Rewite and Coldfusion
Hi i have a website and a hosting package with HOSTEK.com which also gives me the option to use the ISAPI_rewrite. I am new to this and the issue i am having is that i have a .htaccess file with the...
View ArticleRe: coldfusion 10 users logs off automatically from the tool after first...
arnabpal81 wrote: coldfusion 10 users logs off automatically from the tool after first activity everyday when they log inI have understood this as, when users log in everyday, after the first activity,...
View ArticleRe: coldfusion 10 users logs off automatically from the tool after first...
You are right within a ColdFusion application, user's sessions are being closed when we submit any request and redirect to the login page first time when we login everyday. And then after we login...
View ArticleMy little templating snafu
CF10/Win7Prox64 I have a TemplatingService object. It has it's processTemplate() function called and is passed 1 argument, a Request object which holds information about the request. The first thing...
View ArticleRe: CF10 Enabled Metrics Logging but getting nulls instead
anyone found a solution to this problem ?
View ArticleDatabase locking
I am working on a system that signs customers up for workshops. Some of these workshops have limited capacity. The issue comes in that customers could run the same code simultaneously. Two customers...
View ArticleRe: Database locking
I would also go for a database lock. I see no problem with sequential queries. After all, you will be locking tables, not database sessions. Also, lock will be the first instruction you send to the...
View ArticleRe: binary data in a form field gets changed
Thanks for that, but unfortunately, it didn't make it work.With the <cfset setEncoding("form", "UTF-8")>, the result was exactly the same as before. Btw the encoding on the old and on the new...
View ArticleRe: Database locking
> I would also go for a database lock. I see no problem with sequential queries. After all, you will be locking tables, not database sessions.The problem is that table locks are associated with...
View ArticleRe: binary data in a form field gets changed
What do you mean by show us your from? The data content? Is there a way I can dump the contents of the form to a file (or anywhere else I can read it)?Below is just an example from the documentation......
View ArticleRe: ColdFusion applets on Java 7.51 clients
Hi. This was an issue for us on MX7 and i worked out an easy fix for it which should not change much.1) You need to extract the folders (using something like 7-zip).2) Open up the META-INF folder and...
View ArticleRe: binary data in a form field gets changed
Ah, I had assumed the form is on your site. Your answer suggests otherwise. In any case, it seems there are at least 2 form fields coming in, a binary (file) and plain text. You could just treat the...
View ArticleRe: Database locking
Movak wrote: The problem is that there seems to be no way to ensure that all sequential queries will go through the same connection as the driver controls the connection and not the calling program.......
View ArticleRe: Database locking
BKBK, I think the OP stated that his application is "run on multiple servers updating the same database", so the Maintain Connections setting won't help him -Carl V.
View ArticleRe: Database locking
Maintain connections might work, along with table locking, if there was a gaurantee that sequential calls from the same user session go to the same database connection and queries from other user...
View ArticleI need my services available from...well... everywhere
So I have these Service Objects that are instantiated during onApplicationStart(). During the onRequestStart(), I make a pointer in the variables scope to each, so they can just be called by their...
View ArticleRe: I need my services available from...well... everywhere
An alternative to the variables scope might be to use the request scope. I think this is the pattern frameworks like ColdBox and FW/1 use (I could be wrong about that). I know that they both make use...
View Article