Re: SSL Connections To Oracle

2012-07-24 Thread Robert Nurse
://help.adobe.com/en_US/ColdFusion/9. 0/Admin/WS50260aa90e50c24b-32f8955c122c2720693-7fff.html Regards Russ Michaels On Jul 23, 2012 3:20 PM, Robert Nurse rnu...@gmail.com wrote: ~| Order the Adobe Coldfusion Anthology now

SSL Connections To Oracle

2012-07-23 Thread Robert Nurse
Hello All, Has anyone ever configured CF8 (Linux) datasources that used SSL connections to Oracle? That mandate is coming to our shop. Can anyone point me to or provide documentation on this? Thanks. ~| Order the Adobe

Re: ColdFusion 8 Scheduler Not Able to Run Tasks

2011-10-06 Thread Robert Nurse
On Wed, Oct 5, 2011 at 11:56 AM, Robert Nurse wrote: I'm running CF8 on a CentOS 4 box and I've just imported some scheduled jobs via Packaging Deploying.  I've updated the URL within each task and tested them manually in a browser.  However, when I attempt to run them via the Scheduler

Re: ColdFusion 8 Scheduler Not Able to Run Tasks

2011-10-06 Thread Robert Nurse
have you tried testing the URL's from the server itself. On Thu, Oct 6, 2011 at 11:56 AM, Robert Nurse rnu...@gmail.com wrote: Unfortunately, I don't have direct access to the server. However, I did try checking the Save output to a file checkbox and making a File entry. I then ran the job

ColdFusion 8 Scheduler Not Able to Run Tasks

2011-10-05 Thread Robert Nurse
Hi All, I'm running CF8 on a CentOS 4 box and I've just imported some scheduled jobs via Packaging Deploying. I've updated the URL within each task and tested them manually in a browser. However, when I attempt to run them via the Scheduler, I get errors and none of the listed possible

Re: Dynamically Added Form Fields Not Submitted

2011-09-23 Thread Robert Nurse
I've seen this behavior with malformed HTML were the form tags are between table and tr tags. Check to make sure your HTML is valid. -Dan Dan hit the nail on the head! I simply encompassed the table with the form rather than the form with the table. That did it! Thanks for all your input!

Re: Dynamically Added Form Fields Not Submitted

2011-09-23 Thread Robert Nurse
I've seen this behavior with malformed HTML were the form tags are between table and tr tags. Check to make sure your HTML is valid. -Dan html children table rows which are added to a table. The table is within a form. It works just fine in IE. But, no FireFox. Dan hit it right on the

Re: Dynamically Added Form Fields Not Submitted

2011-09-22 Thread Robert Nurse
Are you actually adding them as elements to the dom or just adding the html text to the table data? I've had this exact issue and gotten around by properly adding the children to the form. Hi, I've been adding them via DOM calls to table cells which are added to table rows which are added

Dynamically Added Form Fields Not Submitted

2011-09-14 Thread Robert Nurse
Hi All, I've written some Javascript that will dynamically add file type inputs to a form. Or, so I thought. They show up on the page just fine when the control is clicked. But, when I submit the form to the CF template, those form fields are absent from the form structure. The added

Serving Up LOB Content

2011-06-27 Thread Robert Nurse
Hi All, I've written an application where the user can store Office 2007 attachments in an Oracle table. When requesting the attachment, I have a CFM template (displayAttachment.cfm) that retrieves and serves up the attachment from the table. The app works fine except for a minor glitch.

Re: Serving Up LOB Content

2011-06-27 Thread Robert Nurse
You can use the Content-Disposition header: cfheader name=Content-Disposition value=inline; filename=#yourFileName# or cfheader name=Content-Disposition value=attachment; filename=#yourFileName# Thanks Dave! That worked! Here's the solution: cfcontent type=#myquery.mimetype#

8.0.1 Updater and Internet Access

2011-05-03 Thread Robert Nurse
Hi, Does anyone know if the 8.0.1 Updater for Linux tries to retrieve resources via the Internet? I would think it wouldn't seeing that some users may be behind firewalls that don't allow this. ~| Order the Adobe Coldfusion

Re: Verity and Asian languages

2011-02-08 Thread Robert Nurse
Hi All, I've got a verity collection that I load periodically. Some of the data contains Unicode (English) characters. When they're retrieved and displayed, I get ? and other odd characters. Would using language=unicode on the cfindex tag take care of this?

CFINDEX and Encoding

2011-02-08 Thread Robert Nurse
Hi All, I've got a verity collection that I load periodically. Some of the data contains Unicode (English) characters. When they're retrieved and displayed, I get ? and other odd characters. Would using language=unicode on the cfindex tag take care of this?

Importing/Exporting CF Server Settings

2010-12-15 Thread Robert Nurse
Hi All, We're going to be moving to new servers in a few months and I'd like to export our current CF settings (scheduled templates, data sources and verity collections) and import them into the new CF installations. I read something about .car files here. But, could someone point me to

CF8: Scheduled Jobs Not Running

2010-11-29 Thread Robert Nurse
Hi All, We're running CF8 on a Solaris box and none of our scheduled apps are running. Even when we run them from the Administrator. Each job has it's own log file and the logs show that the app isn't running. The CF files are owned by the same user that CF runs under and the template

Re: CF8: Scheduled Jobs Not Running

2010-11-29 Thread Robert Nurse
I also discovered just the other day that if you have any kind of url redirection (redirecting www.domain.com to domain.com for example) then scheduled tasks do not work. Russ Russ, The scheduled templates retrieve an RSS file via cfhttp ... tag. The versions of the templates in

Re: CF8: Scheduled Jobs Not Running

2010-11-29 Thread Robert Nurse
does the scheduler log show any attempt to run them ? Nope. The only log entries that exist are from when I ran the template from my browser manually. Creating a simple Hello World template and scheduling it worked however. I'm not sure why though.

Deleting Verity Collections

2010-07-06 Thread Robert Nurse
Hi, Is there a way of deleting a verity collection outside of the CF Administrator? I'm getting errors when I try to optimize, purge or delete a collection. Unable to optimize|purge|delete collection x. An error occurred while performing an operation in the Search Engine library. Error

Re: Deleting Verity Collections

2010-07-06 Thread Robert Nurse
Hi, Is there a way of deleting a verity collection outside of the CF Administrator? I'm getting errors when I try to optimize, purge or delete a collection. Unable to optimize|purge|delete collection x. An error occurred while performing an operation in the Search Engine

Re: Deleting Verity Collections

2010-07-06 Thread Robert Nurse
cfcollection tag. Not working. I'm getting the same error using the cfcollection that I'm getting in the CF Administrator. ~| Order the Adobe Coldfusion Anthology now!

Checking Existence of Verity Collections

2010-05-20 Thread Robert Nurse
Hi All, Is there a way to programmatically determine if a Verity collection exists? ~| Order the Adobe Coldfusion Anthology now!

Checking Existence of Verity Collections

2010-05-20 Thread Robert Nurse
Hi All, Is there a way to programmatically determine if a Verity collection exists? ~| Order the Adobe Coldfusion Anthology now!

Help With CF8 Regular Expressions

2010-05-03 Thread Robert Nurse
Hi All, I'm trying to come up with a regular expression for CF8 that finds links in text and inserts a call to a pop up window in the on click event. I came up with the following that works in Javascript: myStr.replace(/\s*a\s+([hH][rR][eE][fF])\s*=/g, 'a onclick=popwin(this.href); return

Re: Help With CF8 Regular Expressions

2010-05-03 Thread Robert Nurse
how about simplifying? replaceNoCase(myStr, 'a ', 'a onclick=popwin(this.ref); return false; ', 'all'); [note the training space in the test and the replacement] ~| Want to reach the ColdFusion community with something they

Re: Help With CF8 Regular Expressions

2010-05-03 Thread Robert Nurse
how about simplifying? replaceNoCase(myStr, 'a ', 'a onclick=popwin(this.ref); return false; ', 'all'); [note the training space in the test and the replacement] This doesn't work for: a href=somelocation.cfm Some Place/a My original regex took care of all white space before the a, and

Character Encoding Issues?

2009-12-07 Thread Robert Nurse
From a CF template, I'm performing an insert into an Oracle (10g) VARCHAR2 column. The characters I'm trying to insert contain #8212. After retrieving the column and displaying it in the browser, #8212 is replaced with an odd character. #8212 is not even in the DB! This leads me to believe

Handling Character Encodings

2009-12-01 Thread Robert Nurse
Hi All, I'm processing DB columns with text containing #8211; and #8212;. When this text is printed, I get funny characters instead. Is it possible to set the appropriate character set when printing this text without it affecting other sections of the page?

Re: Handling Character Encodings

2009-12-01 Thread Robert Nurse
Robert Nurse wrote: what do you mean by printing? what encoding is your page now? why not just store the chars instead of that NCR--its not usual practice to mix encodings. I'm grabbing data from an RSS feed and loading it in a DB. The description field contains the #8211; and #8212;. I

Re: Handling Character Encodings

2009-12-01 Thread Robert Nurse
I want to display (print) the description on subsequent CFM pages. Well, print and display are two different things. Do you mean that the characters look ok when displayed in a CF page and not when you print the same page from your browser? The characters look like glyphs when displayed in the

Re: Help With Accessing Web Services

2009-10-14 Thread Robert Nurse
Have you changed the JVM from the one shipped with CF8 If so, the java tools jar from the alternate JVM needs to be copied to CF for some webservice calls to work properly (as well as a few other things). mxAjax / CFAjax docs and other useful articles: http://www.bifrost.com.au/blog/ Thanks

Help With Accessing Web Services

2009-10-09 Thread Robert Nurse
Hi All, I'm using CFINVOKE to consume an enterprise web service. Now, I'm not well versed on web services. But, from reading the CF documentation on them, you're supposed to be able to use CFINVOKE... to access them. So, in my test page I have: cfinvoke

Re: Help With Accessing Web Services

2009-10-09 Thread Robert Nurse
My question is, why is CF trying to compile Java code if this web service is available to the enterprise? Whenever you invoke a web service, CF needs to create local classes to represent the remote objects exposed by the web service. This is how most web service clients work.

Re: Determining CF8's UNIX Account

2009-09-03 Thread Robert Nurse
file in the directory listing. Therefore, whatever account CF is running under, it is not seen as owner or part of the accessible group with write permissions. Wait a minute now, Robert Nurse is the OP. I think Rick was just chiming in with his config... Robert said CF has been starting

Determining CF8's UNIX Account

2009-09-02 Thread Robert Nurse
Hi All, Does anyone know how to determine the UNIX account under which CF8 is running? We're using CFFILE to upload files to the server. The code runs fine on the test server (of course). But, not production. I placed a cfabort right after the cffile action=upload... command so I could

Re: Determining CF8's UNIX Account

2009-09-02 Thread Robert Nurse
I thought the same thing about an exception being thrown. I tried a little experiment. One of the folders the application can write to has 777 access. The one having the problem has 775 access. When I attempted to upload to the former, there was no problem. That tells me that the account

Re: Determining CF8's UNIX Account

2009-09-02 Thread Robert Nurse
Oh, I checked what CFFILE reported. It said the file was not saved. This doesn't answer your question, but don't just abort, cfdump var=#cffile# too Rick -- Rick Root CFFM - Open Source Coldfusion File Manager http://www.opensourcecf.com/cffm

Re: Determining CF8's UNIX Account

2009-09-02 Thread Robert Nurse
We're running CF under SunOS. I'd have to check tomorrow to see if there is a start-up script. But, we've been starting it manually. I understand about permissions and umask and all somewhat. That's why I assumed it was some kind of permissions issue. One question though. The user

CF and Apache Issue

2009-07-15 Thread Robert Nurse
Good Morning All, We're having an issue, all of a sudden, with CF8 and Apache 2.2. Whenever index.cfm is requested, CF hangs. We took the code out of index.cfm and put it in new file and it works as expected. Even a completely empty index.cfm file hangs CF! What could possibly be the

Re: how to get alerts in coldfusion like javascript

2009-07-15 Thread Robert Nurse
Hi Frnds, Here is my problem... I have a search field Search button is an image,if i click on that button after text entered it is giving the result by going to corresponding action, but if don't give any text i have to get an alert how to achive this, if the search string neq to

Special Characters (�) Showing Up

2009-06-23 Thread Robert Nurse
Hi All, Does anyone know why these special characters would be showing up in output (�)? If you can't see it, it looks like a black diamond with a question mark at its center. The same character is even in the browser source. But, no such character is in our code.

Re: Permission Issues: Uploading Files

2009-05-15 Thread Robert Nurse
Thanks Tom. That's exactly what it was. I altered the umask for the account that CF run under (formerly 077) to 022, restarted the CF server and it worked! On Thursday 14 May 2009, Robert Nurse wrote: know. Bad, bad, bad using 777). When the file gets uploaded, however

Permission Issues: Uploading Files

2009-05-14 Thread Robert Nurse
Hi All, We're running an application on a SunOS box that uses CFFILE to allow users to upload image files: nameconflict=makeunique and mode=777 (yes, I know. Bad, bad, bad using 777). When the file gets uploaded, however, the permissions end up being 600! This makes it impossible for

Re: Help With Regular Expressions

2009-05-13 Thread Robert Nurse
I ended up using Replace to change ../geos/displayCountryData.cfm?countryCode=AS to ../geos/AS. Then I used REMatch(../geos/[A-Z]{2},...) to find all occurrences of this resulting pattern. I then processed each match in the array REMatch returned with Replace(DBText, REMatchArrayEntry,

Help With Regular Expressions

2009-05-12 Thread Robert Nurse
Hi All, I'm trying to find a way of using regular expressions to locate and replace text. My application reads in some text containing links from a DB: e.g. ../folderName/someCFMFile.cfm?code=AB. I want to change all occurrences of this to ../folderName/AB.html. Note that code can be any

Trouble With Verity

2009-02-06 Thread Robert Nurse
Hi All, I'm having some difficulty with Verity on our production server. We moved an application that uses collections from test to production. But, we're getting the following error when we run our searches: Error switching collection offline.:

Re: Function Argument Order

2008-09-12 Thread Robert Nurse
On Thu, Sep 11, 2008 at 11:15 AM, Robert Nurse [EMAIL PROTECTED] wrote: use named arguments. myfunc(arg1=string1,arg2=string2,arg4=false) -- Thanks! ~| Adobe® ColdFusion® 8 software 8 is the most important and dramatic

Function Argument Order

2008-09-11 Thread Robert Nurse
Hi All, I've got a function that takes four (4) arguments. Two of which are not required. They both have default values set up in their cfargument... tags. When I call the function without one/both of them, I get an error. I vaguely remember a way to make the call in such a way as to tell

Re: CFHTTP Post

2008-07-15 Thread Robert Nurse
I have seen similar problems repeatedly with SSL. I had to always load the certificate in the Java Key Store for it to work. You will have to contact the website to which you are attempting to connect and ask them to provide you with their public cert. Then, you will have to load the cert

Login Problems

2006-06-19 Thread Robert Nurse
a message saying the account is already on file. -- Power concedes nothing without a demand. It never did and it never will. -Frederick Douglass -- Robert Nurse http://www.bajansrealm.com AIM: BarbadosToNYC

Storing Files: Oracle and CF

2006-06-05 Thread Robert Nurse
-- Robert Nurse http://www.bajansrealm.com AIM: BarbadosToNYC ~| Message: http://www.houseoffusion.com/lists.cfm/link=i:4:242424 Archives: http://www.houseoffusion.com/cf_lists/threads.cfm/4

Oracle BLOBs and CF

2005-12-21 Thread Robert Nurse
stumped as to how to get the data from the CF variable into Oracle. The PL/SQL example on getting binary data into Oracle doesn't seem too nice as far as working with CF. Has anyone done this? -- Robert Nurse http://www.bajansrealm.com AIM: BarbadosToNYC

Re: Deleting Messages With CFPOP

2005-03-11 Thread Robert Nurse
AFAIK, all messages have an ID. The ID is a number assigned by CF to identify which message it is. They always start with #1, so you have to be careful, because if you delete the first message, they act like an array, (push pop) so now message #2 is #1, etc. -nathan strutz

Deleting Messages With CFPOP

2005-03-09 Thread Robert Nurse
. -- Liberalism is trust of the people, tempered by prudence; conservatism, distrust of the people, tempered by fear. -William Gladstone -- Robert Nurse http://www.bajansrealm.com AIM: BarbadosToNYC