Submitting form with file and CFGRID - Exception in The submitted cfgrid form field is corrupt

2014-10-22 Thread Chad Baloga
I have a form with a file upload and a CFGRID. When submitted the following error occurs: Exception in The submitted cfgrid form field is corrupt This works with CF10 Update 13. When we upgraded to Update 14 this error started occurring.

Re: Creating a PDF document with signature

2013-04-26 Thread Chad Baloga
Are there any other ways to merge two PDFs w/forms without having to use cfpdf action=merge ? ~| Order the Adobe Coldfusion Anthology now! http://www.amazon.com/Adobe-Coldfusion-Anthology/dp/1430272155/?tag=houseoffusion

Re: Creating a PDF document with signature

2013-04-25 Thread Chad Baloga
So now I am having an issue with digitally signing in Adobe Reader. I can sign it if I open the document with Acrobat. I already enabled usage rights in Acrobat on the documents and saved them. After I use cfpdfform to populate the form, I have: cfpdf action=write source=#commFileSpec#

Re: Creating a PDF document with signature

2013-04-24 Thread Chad Baloga
I am creating a PDF document on the fly and need to know how to place a digital signature block on the document. Is this possible using cfdocument/cfpdf? Anyone ever use iText directly to manipulate PDFs in CF10? I can merge a PDF document with a dig signature, but cannot insert the

Re: Creating a PDF document with signature

2013-04-24 Thread Chad Baloga
I don't think you can use iText to manipulate LC Designer forms. PDFs that you create with Designer are not the same as regular PDFs - they're a different format called XFA. Right, I could not even merge a LiveCycle generated PDF with the PDF which I was generating with cfdocument. I had

Re: Creating a PDF document with signature

2013-04-24 Thread Chad Baloga
Why not create the PDF in LC Designer, and make the person's name a form field that you can easily manipulate from CF using CFPDFFORM? Hmm.. how about all of the other data on the PDF which comes from the database? The data can't appear as form fields on the PDF.

Re: Creating a PDF document with signature

2013-04-24 Thread Chad Baloga
Form fields don't have to look like form fields, or be editable by the user. I'll give it a try. Thanks ~| Order the Adobe Coldfusion Anthology now!

Re: Creating a PDF document with signature

2013-04-24 Thread Chad Baloga
Form fields don't have to look like form fields, or be editable by the user. Got it working! Created the PDF form in LiveCycle, then add data in with cfpdfform. Then run cfpdf on it to flatten it after data was added while still maintaining the signature fields. Then merged with

Creating a PDF document with signature

2013-04-22 Thread Chad Baloga
I am creating a PDF document on the fly and need to know how to place a digital signature block on the document. Is this possible using cfdocument/cfpdf? ~| Order the Adobe Coldfusion Anthology now!

Re: Creating a PDF document with signature

2013-04-22 Thread Chad Baloga
I might not have made it clear enough: you'll have to create the form with the digital signature field in LC Designer. You can then merge the form with your other generated document using CF. OK. That is what I was just about to try. Thanks

Re: Creating a PDF document with signature

2013-04-22 Thread Chad Baloga
I might not have made it clear enough: you'll have to create the form with the digital signature field in LC Designer. You can then merge the form with your other generated document using CF. I have installed LiveCycle designer. Do I just use the signature field? The signature will be

Re: Creating a PDF document with signature

2013-04-22 Thread Chad Baloga
I have installed LiveCycle designer. Do I just use the signature field? The signature will be from a CAC card. Yes, that's it. OK. It seems I need to change some security setting on the form since it says You cannot save data typed in this form. I'll have to play with it. This is

Re: Creating a PDF document with signature

2013-04-22 Thread Chad Baloga
If this document was originally created in Acrobat, and you open it in Reader, you will see this message by default. If you want Reader users to save data, you'll need to use Reader Extensions to Reader-enable the form. You can do this from within Acrobat (not LC Designer). All that

Creating DOC file with image using CFCONTENT

2013-04-04 Thread Chad Baloga
I am trying to create a word document with images. I have all the of the HTML in a cfsavecontent, then I use that variable to write the document, then open it with cfcontent. I have done this successfully in the past but now I have a document with an image. How can I get it to use an image

jQuery appendTo in IE7/8

2013-03-19 Thread Chad Baloga
I have a function which moves a DIV from one window to the parent window. It works find in Firefox and Chrome but not in IE7/8 (seems like the appendTo fails). Any suggestions... function appendCmtDiv(div,no) { // ** Now we need to change the ID on the comment we are putting over and

ZingChart issue w/ Double Quotes

2013-03-05 Thread Chad Baloga
So I call a CFC to get my ZingChart data, then I put that data in as the graph data attribute… var randomNum = Math.random(); // Call to CFC to get data $.getJSON (cfoutput#application.path.cfcScriptPath/cfoutputcfcs/database/dashboard/dashboar.cfc?randomNum= + randomNum +

Re: ZingChart issue w/ Double Quotes

2013-03-05 Thread Chad Baloga
I have also tried using a dataurl to the CFC. Double quotes still getting replaced with \ ... zingchart.render({ width: cfoutput#variables.chartWidth#/cfoutput, height: cfoutput#variables.chartHeight#/cfoutput, container: 'zingchart4', dataurl:

Re: ZingChart issue w/ Double Quotes

2013-03-05 Thread Chad Baloga
Are you perhaps re-JSONing JSON? I noticed you did not pass returnformat=json to your CFC. How are you handling that? My cffunction tag is: cffunction name=get_allLRrespByMonth access=remote returntype=any returnformat=json Then in my function after my query... cfsavecontent

Re: ZingChart issue w/ Double Quotes

2013-03-05 Thread Chad Baloga
Same result if I use a $.get and a returnformat=plain from the CFC Are you perhaps re-JSONing JSON? I noticed you did not pass returnformat=json to your CFC. How are you handling that? ~| Order the Adobe Coldfusion Anthology

Issue with updated Oracle drivers - ojdbc6.jar

2013-02-25 Thread Chad Baloga
Recently we had to add ojdbc6.jar to our CF10 lib folder since the Oracle drivers (version 8) shipped with CF10 did not meet STIG requirements. We have run into an issue where we get PLS-00306: wrong number or types of arguments in call to... to all of our procedure calls now. Had anyone

CF Dashboards

2013-01-24 Thread Chad Baloga
Does anyone know of any ColdFusion or JS/jQuery dashboard plugins/code packages out there? ~| Order the Adobe Coldfusion Anthology now! http://www.amazon.com/Adobe-Coldfusion-Anthology/dp/1430272155/?tag=houseoffusion Archive:

Default date in cfinput type=datefield

2012-12-17 Thread Chad Baloga
I am wiping out a cfinput type=datefield and when that happens, the selected date in the calendar still defaults to the value of the input when the page loaded. Is there any way to change that default to a different date??

Re: Default date in cfinput type=datefield

2012-12-17 Thread Chad Baloga
: http://www.austin-williams.com/blog Twitter: http://www.twitter.com/austin_williams -Original Message- From: Chad Baloga [mailto:cbal...@gmail.com] Sent: Monday, December 17, 2012 11:21 AM To: cf-talk Subject: Default date in cfinput type=datefield I am wiping out a cfinput

Re: Default date in cfinput type=datefield

2012-12-17 Thread Chad Baloga
Twitter: http://www.twitter.com/austin_williams -Original Message- From: Chad Baloga [mailto:cbal...@gmail.com] Sent: Monday, December 17, 2012 11:21 AM To: cf-talk Subject: Default date in cfinput type=datefield I am wiping out a cfinput type=datefield and when

Re: $.get URL length CF10/Tomcat

2012-12-17 Thread Chad Baloga
Yep... that is what I ended up doing Shouldn't you switch to $.post if your URL is getting too long? ~| Order the Adobe Coldfusion Anthology now!

60sec timeout CF10

2012-12-12 Thread Chad Baloga
We are having issues with requests timing out after 60sec. We are running CF10 in IIS 7.5. I have checked all the timeout settings in IIS and set them to 600sec. I have changed the Tomcat connector in server.xml to 6 as well. Are there any other areas to check in CF10. We have not had

Re: 60sec timeout CF10

2012-12-12 Thread Chad Baloga
the Administrator setting. http://help.adobe.com/en_US/ColdFusion/9. 0/CFMLRef/WSc3ff6d0ea77859461172e0811cbec22c24-7d68.html -- Regards, Andrew Scott WebSite: http://www.andyscott.id.au/ Google+: http://plus.google.com/113032480415921517411 On Wed, Dec 12, 2012 at 10:11 PM, Chad

$.get URL length CF10/Tomcat

2012-11-21 Thread Chad Baloga
We have run into a problem with CF10 where we throw a 500 error when the URL string to a CFC call is too long. Does anyone know what setting needs changed?? isapi_redirect.log error is: jk_isapi_plugin.c (1920): error while getting the url We are running CF10 w/ IIS 7.5

CFCONTENT ClientAbortException: java.net.SocketException w/ CF10

2012-11-19 Thread Chad Baloga
We upgraded to CF10 over the weekend and now we are getting errors on large cfontent file downnloads. The users say the download finishes fine for them and they do not see any errors. Error Message: The cause of this output exception was that: ClientAbortException: java.net.SocketException:

Reading a ColdFusion session with a JSP App

2012-10-11 Thread Chad Baloga
Anyone know how or if you can read Coldfusion session variables from a JSP Deployed app if you pass the jsessionId to the JSP app? ~| Order the Adobe Coldfusion Anthology now!

Re: Reading a ColdFusion session with a JSP App

2012-10-11 Thread Chad Baloga
CF10 is deployed in the boxed Tomcat and the JSP app is deployed in a seperate Tomcat install on that server. So it sounds like I'll have to go with option #2. Thanks If they're both deployed in the same container, and you're using J2EE sessions (which it appears you are), they'll share

Re: Reading a ColdFusion session with a JSP App

2012-10-11 Thread Chad Baloga
Any suggestions on how to expose the variable values? We are a https secure site with PKI. Thanks CF10 is deployed in the boxed Tomcat and the JSP app is deployed in a seperate Tomcat install on that server. So it sounds like I'll have to go with option #2. Thanks If they're

CF10 Update Errors

2012-10-05 Thread Chad Baloga
Does anyone else keep getting the below message when trying to update CF10 from the administrator?: Error occurred while installing the update: Failed Signature verification ~| Order the Adobe Coldfusion Anthology now!

Re: CF10 Update Errors

2012-10-05 Thread Chad Baloga
On Oct 5, 2012, at 11:20 AM, Chad Baloga wrote: Does anyone else keep getting the below message when trying to update CF10 from the administrator?: Error occurred while installing the update: Failed Signature verification

Query of Queries Error

2012-09-26 Thread Chad Baloga
I am try to run a query of queries to order a query I create on the fly. On DEV I do not get an error. On PROD I am getting: The system has attempted to use an undefined value, which usually indicates a programming error, either in your code or some system code. Null Pointers are another

Re: Query of Queries Error

2012-09-26 Thread Chad Baloga
Yes it is, I have been playing with it and dumping results to see what data may be causing the error try to dump query docQry chk if it is returning any row. ~| Order the Adobe Coldfusion Anthology now!

Re: Query of Queries Error

2012-09-26 Thread Chad Baloga
I figured it out. The last column had some NULL values which I guess it didn't like even though other columns have NULLs and it's fine (Sounds like a bug). I defaulted the NULL ones to N/A so it works now. Also had to declare all my columns as VARCHARs in my QueryNew set statement. try to

Slowness with SOLR Indexing

2012-09-20 Thread Chad Baloga
What file types are everyone indexing? I have just setup SOLR (CF901) with a few of our projects and the initial indexing is taking forever, and in most cases it just spins. I got a few heap errors but modified some SOLR settings. Currently I am trying to index .doc, .docx, .xls, .xlsx,

ISAPI Filters w/ IIS, CF9 and Tomcat

2012-07-16 Thread Chad Baloga
We currently have a CF9/IIS7.5 setup. We are trying to introduce a JSP application and needed to install Tomcat to run it (It's on port 8080). We need both CF and the JSP app to work on the same HTTPS (443) site. I tried adding a ISAPI Redirect in IIS but that just makes the entire site run

Re: ISAPI Filters w/ IIS, CF9 and Tomcat

2012-07-16 Thread Chad Baloga
Hey Dave, What would be the easiest way to deploy the app on JRun? Thanks Chad On Mon, Jul 16, 2012 at 11:23 AM, Dave Watts dwa...@figleaf.com wrote: We currently have a CF9/IIS7.5 setup. We are trying to introduce a JSP application and needed to install Tomcat to run it (It's on port

CF10 Tomcat case sensitivity

2012-05-31 Thread Chad Baloga
Does anyone know how to turn off the file case sensitivity on CF10/Tomcat? That is the first thing I noticed today after installing some of my images which has different cases did not show up. EX: It is saying that Image.jpg is not the same as image.jpg, and a red X appears.

Re: CF10 Tomcat case sensitivity

2012-05-31 Thread Chad Baloga
Found out how.. look for context.xml under {drive}\ColdFusion10\cfusion\runtime\conf Change the context tag to look like: Context AllowLinking=true caseSensitive=true Restart the CF service ~| Order the Adobe Coldfusion

Re: How big is your CF JVM?

2012-05-01 Thread Chad Baloga
Quick poll... How much memory have you allocated to CF on your production servers? We are running Win 2008 R2, CF 9.0.1x Enterprise, w/ 3GB of RAM allocated to the CF/JVM How say you? Our production has 8GB of RAM allocated

CF9 ODBC Service standalone install

2012-05-01 Thread Chad Baloga
I must have unchecked to install the ODBC service when I installed CF last week. Are there any standalone installs out there for it? ~| Order the Adobe Coldfusion Anthology now!

Re: CF9 ODBC Service standalone install

2012-05-01 Thread Chad Baloga
I must have unchecked to install the ODBC service when I installed CF last week. Are there any standalone installs out there for it? Nevermind. Found how... http://helpx.adobe.com/coldfusion/kb/coldfusion-odbc-services-corrupt-or.html

XML Security

2012-04-05 Thread Chad Baloga
I was presented with some questions regarding XML and was wondering if there are any setting in Coldfusion to disable any of these or I do not need to worry about it since we do not use any XML in our code: 1. How application employs methods for XML schema validation. 2. How application

Re: Blank page with no HTML tags

2012-03-13 Thread Chad Baloga
Tried all suggestions... still see: html head/head body/body /html In my firebug info when the page is blank ~| Order the Adobe Coldfusion Anthology now!

Re: Blank page with no HTML tags

2012-03-13 Thread Chad Baloga
If I view source, it is empty, but when I choose edit select all, the cursor appears which may be the space that the requester is picking up? If you see the view source for the same you would not find anything. Believe that is how FireBug works. Thx rgds, Pradeep Viswanathan R

Re: Blank page with no HTML tags

2012-03-13 Thread Chad Baloga
I am trying to place my cfheader/cfcontent tags inside a function now instead of on a cfm page. Does anyone know if this will work and prompt for a file download? This does not happen for me... if you can post the code, we can try ? Thx rgds, Pradeep Viswanathan R

Re: Blank page with no HTML tags

2012-03-13 Thread Chad Baloga
Came across something but I don't know if it works until I get the other party on the phone for testing.. will provide an update shortly Is there a way a can create a blank page without the browser automatically adding: In my case with Explorer, this is what I get: !DOCTYPE HTML PUBLIC

Blank page with no HTML tags

2012-03-09 Thread Chad Baloga
Is there a way a can create a blank page without the browser automatically adding: html head/head body/body /html My page is a page with a bunch of cfheaders and does not return anything, but the requester says he see a carriage return being sent back to him. I created just an empty cfm

Re: Blank page with no HTML tags

2012-03-09 Thread Chad Baloga
Thanks for the ideas.. I'll give them a try ~| Order the Adobe Coldfusion Anthology now! http://www.amazon.com/Adobe-Coldfusion-Anthology/dp/1430272155/?tag=houseoffusion Archive:

Reading a certain range of a file

2012-03-07 Thread Chad Baloga
Does anyone know how I can read a certain byte range of a file. I am basically trying to read 1-500 bytes, 501-1000 bytes, etc then output each chunk with cfcontent. I have the cfheader code written for the content length but just need to figure out how to read a certain range of the file.

Re: Reading a certain range of a file

2012-03-07 Thread Chad Baloga
I think I was able to get it to work using cffile readbinary. Then converting that to a string to get a specified range. Then I converted the substring back to a binary/base64 to be outputted with cfcontent. ~| Order the

Re: Reading a certain range of a file

2012-03-07 Thread Chad Baloga
And CF9 added fileSeek - if you need to start from some other position than 0. Can you used a range like 500-999 with fileSeek? ~| Order the Adobe Coldfusion Anthology now!

Re: Reading a certain range of a file

2012-03-07 Thread Chad Baloga
I think I was able to get it to work using cffile readbinary. Then converting that to a string to get a specified range. Then I converted the substring back to a binary/base64 to be outputted with cfcontent. Turns out this method only worked with text files. Need it to work with a

Re: Reading a certain range of a file

2012-03-07 Thread Chad Baloga
I think I was able to get it to work using cffile readbinary. Then converting that to a string to get a specified range. Then I converted the substring back to a binary/base64 to be outputted with cfcontent. Turns out this method only worked with text files. Need it to work

Running Scheduled Tasks

2012-03-05 Thread Chad Baloga
We have a new server that I am trying to run scheduled tasks on. Problem is, the server does not have internet access out and it is an SSL site. So I cannot browse by IP because I get the SSL error that the host names do not match. I am able to add the IP/URL to the hosts file and browse to

Remove all CF comments

2012-02-28 Thread Chad Baloga
Are there any programs out there that will remove all CF comments from your code?? ~| Order the Adobe Coldfusion Anthology now! http://www.amazon.com/Adobe-Coldfusion-Anthology/dp/1430272155/?tag=houseoffusion Archive:

Input are becoming disabled in IE

2012-02-06 Thread Chad Baloga
I am trying to troubleshoot why my text input fields are suddenly becoming disabled. I run something on the page and all inputs become disabled throughout the system until I refresh the browser. There are no JS errors or anything to indicate errors. I have the following on the page to

Re: cfheader Content-Range

2012-01-12 Thread Chad Baloga
I have come up with a solution but it is not working 100%. It seems like the Content-Range header is not working. I return the correct Content-Length, but it always starts at the beginning of the file. See code below... !--- If range is specified, then change some header info --- cfif

Re: cfheader Content-Range

2012-01-12 Thread Chad Baloga
CF isn't going to know anything about your range headers. It's just going to serve the file. If you wanted to serve part of the file, you'd have to read it into memory and serve the slice that you want to serve. Using cffile read? Is 1 character considered to be a byte?

cfheader Content-Range

2012-01-04 Thread Chad Baloga
Does anyone know how to get Content-Range returned as a header response when the request has Range: bytes=in it? I added cfheader name=Accept-Ranges value=bytes but do not get the Content-Range back. ~| Order the Adobe

DoD CAC with IIS 7.5

2011-10-18 Thread Chad Baloga
Does anyone know to setup DoD CAC/ECA with IIS 7.5? We have been using Apache now for years and are required to move to IIS now. Thanks ~| Order the Adobe Coldfusion Anthology now!

CFFTP with form browsed file

2011-09-13 Thread Chad Baloga
Does anyone know if it is possible to upload a file browsed by a user using CFFTP instead of CFFILE upload? We are trying to find a solution which will upload files faster than using CFFILE upload. Any ideas? ~| Order the

Re: CFFTP with form browsed file

2011-09-13 Thread Chad Baloga
uploaders or something out there that does what you need, try www.asfusion.com On Tue, Sep 13, 2011 at 4:13 PM, Chad Baloga cbal...@gmail.com wrote: Does anyone know if it is possible to upload a file browsed by a user using CFFTP instead of CFFILE upload?  We are trying to find

Re: CFFILE in CFWINDOW

2011-09-13 Thread Chad Baloga
Have you tried cffileupload? I wrote some code a few weeks ago that has a cffileupload in a cfwindow On Sep 13, 2011 6:33 PM, Scott Spurlock spurlock.sc...@yahoo.com wrote: In CF8, I'm trying to upload multiple files via a CFFORM in a CFWINDOW. I've googled enough to know it can't be done with

Cheap CF9 Hosting

2011-07-31 Thread Chad Baloga
I am looking for a cheap place to host a site with CF9. This is just a site I am making for my family. Has anyone has any problems with http://hostek.com? Thanks ~| Order the Adobe Coldfusion Anthology now!

CF9 ODBC Error

2011-04-25 Thread Chad Baloga
I tried connection to create a CF ODBC datasource connection today on a Windows 2008 Server machine and got the following error: HError accessing available odbc datasources. - Cannot open HKEY_LOCAL_MACHINESOFTWAREODBCODBC.INIODBC Data Sources: Windows error 2 occurred.The system cannot find

Re: CF9 ODBC Error

2011-04-25 Thread Chad Baloga
Figured out that I needed to make a 64bit DSN to initialize something on the server. I used firebug to manually enter my 32bit DSN, submit and get: Connection verification failed for data source: merlinFoxPro java.sql.SQLException: [Macromedia][SequeLink JDBC Driver][ODBC Socket]internal

Re: java.lang.OutOfMemoryError: Java heap space

2011-03-28 Thread Chad Baloga
Can you make the max any higher? We finally resolved our issue with that when we upgraded to Win Server 2k8, 8gb ram, and CF9. I was able to set the max to 4gb. ~| Order the Adobe Coldfusion Anthology now!

Re: DoD CAC authentication

2011-03-28 Thread Chad Baloga
One way... CFSET usersCert = GetPageContext().getRequest().getAttribute(javax.servlet.request.X509Certificate)/ CFSET usersEmail = usersCert[1].getSubjectAlternativeNames() / ~| Order the Adobe Coldfusion Anthology now!

Adding more than 1 row in CFGRID

2011-03-24 Thread Chad Baloga
I am having a problem with CFGRID where I get Multiple row insert is not supported when a user clicks the insert row button more than once. Is there a way to disable the Add Row button after it is clicked, or does anyone know how to get CFGRID to insert more than 1 row at a time? Thanks

Issue with new CF Update

2011-02-11 Thread Chad Baloga
I installed the CF901 (APSB11-04) hotfix on our development and now we are having problems when trying to access different applications in the same browser at the same time. Each application wants to use its own CFID and CFTOKEN, but when you log into one app which is app name X, then try to

Purging the JRun service

2011-01-04 Thread Chad Baloga
When we run CFCONTENT with big file downloads the JRun service keeps growing in size and stays at that size. Does anyone know how to run a garbage collection or anything else to purge all of that temp data that seems to be hogging up memory. I am trying to find a way to do it without

Installing CF9

2010-12-17 Thread Chad Baloga
We are upgrading our web servers with new 64bit Win2k8 Machines. We only run 1 instance of Coldfusion. Is it best to stay with the standard install or install CF with the multi instance install. We have no plans to have multiple instances but was wondering if there were any advantages.

Re: CF9 Not Restarting after Java Update

2010-12-15 Thread Chad Baloga
That would be a very good example why you test everything you can before migrating to production. One question I will have to ask though, is this update replacing the JVM installed in the ColdFusion directory or have you pushed the config changes to point to the new JVM? Also it would be worth

CF9 Not Restarting after Java Update

2010-12-14 Thread Chad Baloga
This morning I installed Java 1.6 update 22. Before I even changed any jvm.config settings, I tried to restart the CF9 service and it would not restart. After uninstalling the Java update, the CF service would start again. I am running Win 2k3 w/ CF901. Anyone else experience this?

Re: CF9 Not Restarting after Java Update

2010-12-14 Thread Chad Baloga
I see a few errors: Error: no `server' JVM at `C:/Java/jre6\bin\server\jvm.dll'. (after I installed the update, and changed the jvm.config file) coldfusion could not be started because it is already running. Error occurred during initialization of VM Could not reserve enough space for object

Re: CF9 Not Restarting after Java Update

2010-12-14 Thread Chad Baloga
I was able to get the first error to go away by installed the full Java SDK on my local machine. I will have to try that first thing tomorrow AM on the production box. ~| Order the Adobe Coldfusion Anthology now!

Re: CF9 Not Restarting after Java Update

2010-12-14 Thread Chad Baloga
Any explanations why just the JRE install worked on our DEV machine? On that machine we are running Win2k3 64bit, w/ a multi instance install of CF9. Installed the JRE, changed the jvm config file, and restarted the service with no errors. Is it getting some of the files from the Jrun

Re: CF9 Not Restarting after Java Update

2010-12-14 Thread Chad Baloga
If you go to the JVM shown in the CF Administrator, does it have a server DLL? This is on dev with CF9 multi instance: Server Product ColdFusion Version 9,0,1,274733 Edition Enterprise Serial Number *** Operating SystemWindows 2003 OS Version

Alternative to CFCONTENT

2010-10-29 Thread Chad Baloga
We are serving files from a file server to users using cfcontent/cfheader. When we upgraded to CF9, we started getting the java heap space errors when users would try to download files larger than 250mb. We have the min and max heap space settings on 1024mb. Are there any other alternatives

Saving files locally

2010-09-15 Thread Chad Baloga
Does anyone know how to save a file to a users local machine? I am writing some code to export data to various file types and I have an input where a user can specify where they want the file to save to. Thanks ~| Order the

Re: Saving files locally

2010-09-15 Thread Chad Baloga
Ok, thanks Ray. Is it possible to use cfheader/cfcontent in my cffunction to prompt the user with the file download box? I tried it but nothing seems to happen. Thanks ~| Order the Adobe Coldfusion Anthology now!

Re: Saving files locally

2010-09-15 Thread Chad Baloga
What I am doing is calling a jQuery function which then uses a CFC method to create my file. I am returning a message of how many files were created and zipped up. I then want to present the user with the File Download box to download the newly created file. It seems the cffunction does not

Re: Saving files locally

2010-09-15 Thread Chad Baloga
I was able to get it to work by just using... window.location.href = 'test.zip' But still curious about how to get it to work with the function call ~| Order the Adobe Coldfusion Anthology now!

Bind to a CFINPUT from a CFGRID

2010-07-29 Thread Chad Baloga
I can't seem to figure out how to bind a selected column value in a CFGRID to a text box later on the page. Any ideas? Thanks ~| Order the Adobe Coldfusion Anthology now!

CFSTOREDPROD question

2010-07-16 Thread Chad Baloga
Does anyone know if CFSTOREDPROC closes a cursor automatically if a store proc is called with one? ~| Order the Adobe Coldfusion Anthology now!

Oracle Stored Procedure Help

2010-07-13 Thread Chad Baloga
I have never used stored procedures before but have been working on some code where they might be helpful to use with CFSTOREPROC instead of CFQUERY since I am dealing with a ton of records. Can anyone provide an example of a simple stored procedure which will return a set of data with more

Re: Oracle Stored Procedure Help

2010-07-13 Thread Chad Baloga
I can't seem to get cfprocresult to dump anything (it's undefined). The proc runs and returns data but for some reason it doesn't put the record set in it. Any ideas? I'm not completely clear if you're asking about how to write the proc or how to call the proc. You call the proc via

Re: Oracle Stored Procedure Help

2010-07-13 Thread Chad Baloga
Oracle 10g We'll really need to know which DB you're using. -- WSS4CF - WS-Security framework for CF http://wss4cf.riaforge.org/ On 14 July 2010 08:23, Chad Baloga cbal...@gmail.com wrote: I can't seem to get cfprocresult to dump anything (it's undefined).  The proc runs

Re: Oracle Stored Procedure Help

2010-07-13 Thread Chad Baloga
your result as a ref cursor in the PL/SQL? -- WSS4CF - WS-Security framework for CF http://wss4cf.riaforge.org/ On 14 July 2010 08:31, Chad Baloga cbal...@gmail.com wrote: ~| Order the Adobe Coldfusion Anthology now! http

Re: Oracle Stored Procedure Help

2010-07-13 Thread Chad Baloga
My error is: Error(2,1): PLS-00410: duplicate fields in RECORD,TABLE or argument list are not permitted when I have... create or replace PROCEDURE GETALL_SP ( v_a OUT table.a%TYPE, v_b OUT NOCOPY table.b%TYPE, v_c OUT NOCOPY table.c%TYPE, Cursor_table sys_refcursor ) IS

Leading zeros being removed

2010-05-23 Thread Chad Baloga
Has anyone figured out how not to have an array value with leading zeros not remove the zeros? I have an array from a query which I am getting from a Jquery $.getJSON but it it removing some zeros from strings where I want the the leading zeros. Thanks

Re: Leading zeros being removed

2010-05-23 Thread Chad Baloga
I want to return the array like [{1:test},{2:00200}]. The actually array return is [{1:test},{2:200.0}]. I am just returning an array from a cfc. ~| Order the Adobe Coldfusion Anthology now!

CFgrid default save and cancel buttons

2010-05-19 Thread Chad Baloga
Does anyone know how to change the default save and cancel buttons in an editable cfgrid (html format)? ~| Order the Adobe Coldfusion Anthology now!

Cfdebug and CFCs with $.get

2010-05-17 Thread Chad Baloga
I am using some jQuery $.get's with CFCs and my returns are including the cf debug info. Does anyone know how to turn it off for just the CFCs? I tried putting cfsetting tags on some of the pages but that is not working. ~|

cfgridcolumn bgcolor

2010-05-17 Thread Chad Baloga
I am displaying a cfgrid from a bind and need certain rows to be a certain color. I am trying: bgColor=(C1 EQ K?red:black) but doesn't seem to work. ~| Order the Adobe Coldfusion Anthology now!

Change CFSELECT SELECTED value

2010-05-06 Thread Chad Baloga
I am trying to figure out how to make a selected value in a cfselect change based on other fields changing on the form. I have the cfselect binded to a function to load when the page loads, but need to change my selected value in that cfselect to change dynamically. Any ideas?

  1   2   >