Do Adobe developers watch these forums?
I'm somewhat new and occasional to Cold Fusion, so I'm not familiar with the support process. The cfgrid tag appears to be broken, and I wonder how one might get Adobe to fix it.
View ArticleRe: I need my services available from...well... everywhere
You know, I had my own "RC" object which was a RequestContext, but it only contained a copy of the FORM, URL and CGI scopes. It is stored in the REQUEST scope because it change son a per-request...
View ArticleRe: I need my services available from...well... everywhere
I wasn't suggesting putting your objects into RC, just any variable values that the service objects may need to do their jobs. Frameworks typically do what you are doing - combine the URL and Form...
View ArticleRe: Do Adobe developers watch these forums?
A few of the Adobe staff respond to messages occasionally, but this forum is by and large users helping other users. If you have a specific bug that you've identified, you should report it in the bug...
View ArticleRe: Database locking
Carl Von Stetten wrote: 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 Imagine I am...
View ArticleRe: I need my services available from...well... everywhere
OK. I found the Reference Manual for FW/1, and I'll give that a read through. I think I get what you mean by DI (specifically DI/1 'framework' calling itself a framework). My framework current DOES...
View ArticleConfiguring CF10 to use X-forwarded-for instead of remote_addr
I am using an AWS instance behind a load balancer with NAT. It has its advantages, but one of its disadvantages is the remote_addr coming through is the remote_addr of the ELB....
View ArticleRe: Database locking
Movak,I see your point about the possibility of sessions dropping off like fruitflies, once used. The problem is that such fine-grained interaction between application servers and databases is...
View ArticleRe: Configuring CF10 to use X-forwarded-for instead of remote_addr
Never mind, I figured it out. c:\coldfusion10\cfusion\runtime\conf\server.xml Added <Valve className="org.apache.catalina.valves.RemoteIpValve" protocolHeader="X-Forwarded-Proto"...
View ArticleRe: I need my services available from...well... everywhere
Well, FW/1 was a good read, but as odd as it sounds, everything was making sense until they got to the point about views and layouts. I have not been able to determine what the difference between them...
View ArticleRe: I need my services available from...well... everywhere
I'm still wrapping my head around the concepts, but I think the difference between views and layouts is that layouts are sort of like document templates that are common to the entire application (or to...
View ArticleRe: I need my services available from...well... everywhere
Oh, so views and layouts together would compromise what before might have been taken care of, procedurally, by a Templating engine. That makes sense, and would answer why layouts "cascade" upwards....
View ArticleRe: binary data in a form field gets changed
Seems I was very unclear in post #6... Sorry about that. What you see there is the data we receive, not what we send...And it is not about the file upload.Altough we do also accept file uploads, this...
View ArticleRe: binary data in a form field gets changed
I made one more observation which is interesting:After examining the differences more closely in a hex-editor I installed for that, i noticed that the difference is that all null-bytes (Hex 00) are...
View ArticleRe: I need my services available from...well... everywhere
Aegis Kleais wrote: I need my services available from...well... everywhereThen store them in the application scope. Unless I am missing something.
View ArticleRe: binary data in a form field gets changed
DonPedroElBuenoI wrote: I made one more observation which is interesting:After examining the differences more closely in a hex-editor I installed for that, i noticed that the difference is that all...
View ArticleRe: binary data in a form field gets changed
Thanks, but I tried that before.And I tried both, by setting UTF-8 in the administrator as well as the way you suggest in your post #3 <cfset setEncoding("form", "UTF-8")> in the cfm.It actually...
View ArticleRe: I need my services available from...well... everywhere
Hey BKBK! I was told that in OOP, I should not have my objects be aware of anything not directly passed in to it. Sure I could make application.DataSource, but my issue is that I have multiple objects...
View ArticleRe: binary data in a form field gets changed
Sorry to hear. I wonder whether the problem results from the change from SunOS to Suse Linux, rather than the change from ColdFusion 9 to ColdFusion 10. By the time we apply encoding, it may be too...
View ArticleCF10 RESTful web services under IIS web root
I've tried setting up RESTful web services in ColdFusion10 and found that it only works uder the CF web root, but not IIS web root. Does anyone have a solution for having this set up under the IIS web...
View Article