Ask a Question related to Coldfusion Database Access, Design and Development.
-
bhm_cfuser #1
CF MX 6.1 on JRun 4 J2EE
I am running Apache Web Server with JRun 4.0 J2EE server
I have setup my database connections on JRun
I am trying to stream PDF files directly to the browser without having to use
cffile. I found this code:
<cfscript>
context = getPageContext();
context.setFlushOutput(false);
response = context.getResponse().getResponse();
out = response.getOutputStream();
response.setContentType("application/pdf");
response.setContentLength(arrayLen(getPdf.trp_pdf) );
out.write(getPdf.trp_pdf);
out.flush();
out.close();
</cfscript>
The problem is that when I run this only 64000 bytes are returned.
If I setup the Datasource through ColdFusion, then there is an option to
change the Blob Buffer, however, I have searched and searched and don't seem to
be able to find a way to get rid of the buffer limit when the datasource comes
from JRun.
Does anyone know of how to eliminate this buffer limit?
Thanks for your help.
bhm_cfuser Guest
-
Add J2EE Archive
I'm not exactly sure whats going on but when I try to create a .WAR archive of my cf instance via cfmx7 admin (enterprise manager) it is not... -
J2EE IDE?
1. Can Flex be used as the IDE for J2EE programming? 2. If not, what IDE do you recommend? Regards, Sam Swenson -
j2ee woes
Hi, I recently converted from CFMX7 standalone to j2ee for the practice. Everything installed fine but I'm having problems with CFCs. I can view the... -
CFMX 7 and a J2ee App
In the instance that we have CFMX deployed we also have a web application using a specific context root (/myapp). Previously with CFMX 6.1 CFMX... -
Coldfusion + .NET or J2EE
Since I have been reading the forums here I have often seen people post that Coldfusions new selling point is that it is a complement to .NET or... -
sdupre #2
Re: CF MX 6.1 on JRun 4 J2EE
We never published the hotfix but it's available as bug 56421. It was
hard-coded inside the code to 64000.
Call support and get the hf56421_611.jar and place it in /jrun4/servers/lib.
Stephen Dupre
Macromedia QA
sdupre Guest



Reply With Quote

