Killing registry keys

2008-07-01 Thread Smith, Daron [PA]
Somewhere along the line my client variable storage got switched from DB to registry. I've switched it back to database but I have a registry key that's so large that regedit does not appear to be able to open it. Is there a way to clean out the registry key for client variables (other than

JRUN.exe

2008-06-25 Thread Smith, Daron [PA]
We are having an issue with Jrun.exe consuming over well over 50% of CPU. If we restart the CF application server it goes back down to almost nothing. We are running CF MX 7 . Is there any logging that would help us nail down if this is code related. We have had numerous hardware related

.Net Session variables

2008-01-10 Thread Smith, Daron [PA]
Can CF 8 share .NET session variables out of the box w/o a 3rd party product like blue dragon? Thanks, Daron Smith PSEA E-mail Firewall annotation on Thu Jan 10 2008 07:49:49 - NOTICE: Only the individual sender is

Reg ex question

2007-08-28 Thread Smith, Daron [PA]
I want to do a reg ex replace to remove all special text characters from an XML feed, Ive been doing cfset Desc = Replace(Desc, '##160;', , ALL ) but I keep finding more characters to replace so my list is getting longer, can I do some sort of regex find and replace any string that starts with an

OT-Image Maps

2007-01-31 Thread Smith, Daron [PA]
Hello, This is OT but I'm sure someone on this list knows the answer. I'd like to show an image map without the image. In other words just a border of the mapped regions on a white background. Is this possible? Or is there a way to draw an image with the screen cordinates? Thanks, Daron Smith

Datasource time-out issue

2007-01-24 Thread Smith, Daron [PA]
We use the native drivers to access an AS/400 db2 database. When the 400 goes down which is very rare the CF connection doesn't timeout and eventually CF service stops responding. Is there code I can put in the application.cfc or somewhere else to check to see if the DSN is working and abort if

Resetting a CF Web service cache

2006-11-09 Thread Smith, Daron [PA]
It seems that CF caches web service WSDL definitions, that is if I make a change to the underlying web service code (in .Net) CF seems to try to submit according to the old wsdl. If I restart the CF application service it submits according to the new wsdl. Is there a way to force a refresh

Web services...

2006-11-05 Thread Smith, Daron [PA]
Can anyone get cf to call this web service? http://www.psealocals.org/ourcode/helloworld.asmx?wsdl It just returns the hello world. I constantly get cannot generate stub errors The specific message is Name: http://www.psealocals.org/ourcode/helloworld.asmx?WSDL. WSDL:

Unhashing a password with Coldfusion

2006-10-25 Thread Smith, Daron [PA]
Anyone have any experience in unhashing a Dotnetnuke password with CF. We need to authenticate a CF app with a DotNetNuke database. The passwords are stored in a hashed format. There is also a password salt field, which I'm assuming is a key to dehash the password field. Any help would be

Timeouts and Database Connections

2006-09-29 Thread Smith, Daron [PA]
I recently had CF lock up a bunch of times because a main table used on the website was locked for a delete operation and waiting for a user confirmation response. I have the overall timeout setting in the cfadmin set to 30 seconds however queries against this table were eventually causing CF to

Time-out error on connection to DB2 400

2006-09-25 Thread Smith, Daron [PA]
Anyone else use the built-in driver to access DB2 on the AS/400 (I-series)? I'm trying to connect and I keep getting time-out errors. I can telnet from the server to the 400 machine, but when I enter the same connection info into the datasource setting I get a timeout error. Any thoughts?

Overiding the Timout setting in CF Administrator

2006-08-31 Thread Smith, Daron [PA]
Is there a way to override the timeout setting in the CF administrator? I want the setting there for almost all requests, except my page that indexes my website. Any thoughts? Thanks, Daron Smith PSEA E-mail Firewall annotation on Thu Aug 31 2006 14:50:27

Sessions and web services

2006-08-09 Thread Smith, Daron [PA]
Below is code that I've written to try to determine if a cold fusion session variable exists. I've read that you can access session variables via web services. But whenever I call the CFC below via web service it returns 0 regardless of whether or not the session variable does exist. Can I use

CFMX 7 ODBC Service

2006-08-02 Thread Smith, Daron [PA]
We are having lots of trouble with the CF ODBC service locking up. Reading about it on the Adobe site they say that it's not really necessary. But if I stop it, my ODBC queries do not work. What do you use for database access if you disable that service? Daron Smith PSEA PSEA E-mail Firewall

Sharing Sessions between a .Net machine and a CF machine

2006-07-31 Thread Smith, Daron [PA]
We have a .Net app (DotNetNuke) running on one machine and a CF app on another. We would like to share login info(sessions) across the servers. I've been thinking a web service would work but I'm not really sure of where to start. Has anyone shared sessions between a .Net app and a CF one? If

Including the contents of a webpage in an email with cfmail

2006-05-02 Thread Smith, Daron [PA]
Is it possible to include the actual HTML from a CF web page in a cfmail? We have a web content management system and it would be great if our messages used the exact same stylesheets as our web pages and it would make the process for end users much easier as they only need to learn one process

JRUN errors

2006-04-24 Thread Smith, Daron [PA]
After installing the CF MX 7.01 updater I seem to be getting JRUN closed connection errors. I don't see anything on Macromedia about issues with JRUN and 7.01. Any suggestions on causes of Jrun errors? Thanks, Daron Smith PSEA IT PSEA E-mail Firewall annotation on Mon Apr 24 2006 11:54:46

Retaining form data in flash forms

2006-03-31 Thread Smith, Daron [PA]
Is there a setting for flash forms that will allow them to retain form data on a refresh the way HTML forms do? Thanks, Daron Smith PSEA E-mail Firewall made the following annotations on Fri Mar 31 2006 13:16:11- NOTICE: Only

CFMAIL and performance

2006-03-13 Thread Smith, Daron [PA]
Does anyone know the performance limitations of CFMAIL. I have a neat mail app that we'd like to use to send a message to anywhere between 6 and 50 thousand recipients. I'm sure the 6k list would be OK but I'm not sure about the 50k list. Anyone have experience using CFMAIL for high volume

CF MX 7 and DB2 connection timeout

2006-03-03 Thread Smith, Daron [PA]
We recently moved our web site to a CF MX7 box. Ever since we occasionally get the following error Error Executing Database Query.[Macromedia][SequeLink JDBC Driver][ODBC Socket][IBM][iSeries Access ODBC Driver]Communication link failure. comm rc=10054 - CWBCO1047 - The iSeries server application

Flash forms checkbox question

2006-02-08 Thread Smith, Daron [PA]
I have a flash form with checkboxes, I need the value of the check box to be 1 or 0, Flash forms return true or false. I know that the form scope is stored as a structure, so I should be able to reset all True values in the form structure to 1 and likewise with false. I'm not sure exactly how to

Calling DB2/400 stored procedures with CF

2006-01-31 Thread Smith, Daron [PA]
Anyone have any experience calling stored procedures with CF? I can get the procedure to run, but I'm running into snags passing parameters. Thanks, Daron Smith PSEA ~| Message:

Javascript Scrolling news ticker

2005-11-30 Thread Smith, Daron [PA]
Anyone know of a good Javascript horizontal scrolling script that I could use for a news ticker? Thank you, Daron Smith PSEA ~| Logware (www.logware.us): a new and convenient web-based time tracking application. Start tracking

Pros/Cons Session vs Client scope

2005-11-23 Thread Smith, Daron [PA]
Does anyone have thoughts on pros/cons of client vs Session scope? I currently use client scope primarily but if cookies are disabled it blows up. Any thoughts on switching? Other topic anyone have suggestions for a good horizontal Javascript or DHTML news ticker? Thank you and Happy

Putting files with Dreamweaver MX 8

2005-10-20 Thread Smith, Daron [PA]
Has anyone experienced a problem with Dreamweaver MX 8 not putting the files, even when it says that it has? I save and put the files using a mapped network drive and look at the files on my server and the file size/created times have not changed. If I make large text changes the new file will

Any reason client.LastVisit wouldn't exist in CFMX7

2005-07-27 Thread Smith, Daron [PA]
I've initalized client variables in the application.cfc. Is there any other reason client variables wouldn't exist? ~| Find out how CFTicket can increase your company's customer support efficiency by 100%

Debugging in CFMX7

2005-06-30 Thread Smith, Daron [PA]
It seems that in CFMX7 especially, using functions, when there is an error, I get the standard IIS 'HTTP 500 - Internal server error page' rather than a CF error page. Is there a setting or something else that will allow me to see what's causing the errors? Thanks, Daron Smith

CFINSERT Question

2005-06-23 Thread Smith, Daron [PA]
I have a form and I want to use CFINSERT, but it's not putting the values in the values statement of the SQL. Below is what I get: insert into CONFREG (CNTX,MEALS2,FEES2,CTTX,C2NB,BOST,COTX,AXXT,MEALS3,CZNB,CYNB,CWTX,C3NB,M EALS4,MEALS6,MEALS5) values (?,?,?,?,?,?,?,?,?,?,?,?,?,?,?,?) Any Ideas

Flash Forms Question

2005-06-22 Thread Smith, Daron [PA]
I'm working on an app with flash forms in it. I need a way to specify a value for a checkbox. In an HTML or CF Form you can specify any value for a check box, it appears that flash checkboxes are only true or false. Is there a way to specify a value or can I use the bind attribute and a hidden

Slightly OT: Dreamweaver Error

2005-05-25 Thread Smith, Daron [PA]
When loading dreamweaver I get the following error: While executing onLoad in RestoreDebugButton.htm, the following JavaScript error ( s) occurred : In file RestoreDebugButton: ReferenceError: restoreLiveDebugButton is not defined When saving a file a get the following error: While executing

FW: ListFind not working properly

2003-09-19 Thread Smith, Daron [PA]
I'm not sure what I'm doing wrong with this list function. I have a variable with a list in it, I want to take an action when the variable is equal to the query row variable. I can get it to work with listcontains but that will return more values than I want. I can also get it to recognize

CFFTP not working

2002-12-06 Thread Smith, Daron [PA]
We recently upgraded to CFMX from 5 and CFFTP is no longer working the same way as it did before. I use form submission to select the file, then use cfftp to do the upload. This worked fine with 5 but now it seems like it is not recognizing the local file on my machine (The client). It works

query of query question

2002-09-17 Thread Smith, Daron [PA]
I'm querying a search resultset and getting an error. It must be some kind of syntax thing but I don't see it. Does anyone see a problem with this query. The first query returns the following: CUSTOM1 CUSTOM2 KEY RECORDSSEARCHED SCORE SUMMARY April 2002

RE: query of query question MORE INFO

2002-09-17 Thread Smith, Daron [PA]
Single quote returns the same thing, April 2000 is not a number (meant to include in original msg, double quotes was just a WAG). The original query is a cfsearch resultset so . I'm using CF5 so does the assumptions thing with MX still apply? Is there a way that I can tell it to assume that

OT Question about Flash and GIS

2002-08-20 Thread Smith, Daron [PA]
I know this is off-topic, but does anyone know if I can feed GIS info into flash and create images in flash from the GIS coordinates? Does anyone know where I could ask this question? Thanks, Daron J. Smith Web Developer PSEA [EMAIL PROTECTED] 717-255-7141 1-800-944-PSEA (7732) x 7141 Please

Slightly OT-Jumping from frames to No Frames

2002-06-10 Thread Smith, Daron [PA]
I have an app that uses frames, at a point in the processing, I would like to offer a link to a homepage, at that point I would want the link to open in the same window, but with no frames. Is this possible? I know I can do a new window, but that's not really what I would want to do. Thanks

Dynamically Selecting Option with CFSELECT

2002-05-16 Thread Smith, Daron [PA]
Is there a way to select dynamically an option with cfselect? I know how to do it with a regular select, but I wanted the functionality of cfselect but need to specify an option as selected based upon a query value. Is this possible? Thanks, Daron J. Smith Web Developer PSEA [EMAIL PROTECTED]

Joining Verity Search Results and Query

2002-05-13 Thread Smith, Daron [PA]
I'm attempting to join a verity search result and a query into one query, for some reason when I dump the joined query to cfdump I get wrong information in the columns. For example I get score for the identifier from my database query and for lastedit date I get title. Individually both queries

Conditional Query loop

2002-05-10 Thread Smith, Daron [PA]
Is it possible to loop over a query until a condition is met? Specifically, I am returning search results, if a certain category exists i want to display a title, if no records for that category exist I do not want to display the title. However I only want to display the title one time if the

ISP Blocking Session or cookie variables

2002-04-24 Thread Smith, Daron [PA]
Is it possible that an cable ISP is blocking session variables or cookies? I have a user who can't logon to our members only site, our browser detector says that his cookies are enabled, and he actually completes the logon (his information is in our log database) yet he gets returned to the logon

Dynamic Pages and Search Engines

2002-04-22 Thread Smith, Daron [PA]
I've read through the archives and Ben Forta's article on friendly URL's and I don't think anything addresses this issue. I could be wrong though. I'm working on a new site that's essentially all database driven, a typical url is category.cfm?ID=4 . If I want the contents of this page to be

Regular Expression Question

2002-04-19 Thread Smith, Daron [PA]
If I want to do a regular expression replace to remove several (but not all HTML tags) what is the syntax that I should use. I want the expresion to find, for example, the 'font and end at the '' tag regardless of what is in the middle. I've tried this cfset

Forcing Query Refresh (Sometimes)

2002-03-28 Thread Smith, Daron [PA]
I want to cache a query for 99% of the time. However, when users update the data, I want to allow them an option to refresh the query and set that query as the newly cached one. I can't use the cachedwithin attribute, or at least not as I know of it, but I really could benefit from caching,

Testing Software

2002-03-25 Thread Smith, Daron [PA]
Does anyone know of any software like vmware that will allow for Mac emulation. From what I understand vmware does not, but does anyone know of another that does? Thanks, Daron J. Smith Web Developer PSEA [EMAIL PROTECTED] 717-255-7141 1-800-944-PSEA (7732) x 7141 Please note new email

Page not refreshing

2002-03-14 Thread Smith, Daron [PA]
I have a message board that uses a meta refresh attribute to relocate a user to the main page after a post has been completed. However, for some reason IE will not refresh the page on the first time a user posts it returns the standard 'page cannot be displayed or dns error'. However if you hit

enctype and IIS error

2002-03-05 Thread Smith, Daron [PA]
We have a bulletin board that uses cffile to upload attachments. In order for CFFILE to work the enctype attribute of the form tag needs to be included, but for some reason when this attribute is included on most (not all though) machines it generates a page not found error. Is there a way to

including external files

2002-02-25 Thread Smith, Daron [PA]
Is there any way to include external files using cfinclude? I have a content editor on an internal server, and I want to be able to view the finished product as it would appear on the external web server. Rather than constantly synchronizing both servers, I would like to just use cfinclude.

Suppressing CFID CFTOKEN

2002-02-15 Thread Smith, Daron [PA]
I have CFID and CFTOKEN showing up in the url string of my url's occasionally. This occurs selectively, one time it will occur and another time it will not. Is there a way to suppress this information? I would like the URL's to appear 'clean'. The problem occurs on the same page but is not

Verity Question

2001-12-18 Thread Smith, Daron [PA]
I don't know which is better in this situation. I am working on a new site that will be almost exclusively database driven. I need to associate three fields with the collection. CFINDEX only allows 2 custom1 and custom2. Is there any way using verity I can keep a third with the collection?

Cf passing form values as url params

2001-12-18 Thread Smith, Daron [PA]
Has anyone ever seen CF pass form fields as url parameters? I have this happening on a test box, and I don't know what the cause is. Is it a security setting? Thanks for your help, Daron J. Smith Web Developer PSEA [EMAIL PROTECTED] 717-255-7141 1-800-944-PSEA (7732) x 7141 Please note new

Retrieving Calendar Data From Exchange via CFLDAP

2001-12-06 Thread Smith, Daron [PA]
Does anyone know if you can retrieve calendar data from exchange with CFLDAP? We have a public folder with a calendar in it and I would like to retrieve the data for a web page. I have used CFLDAP for querying our address book, but I am only able to get attributes for the folder not the events

RE: Weird problem with CF-Talk on newsgroups

2001-12-06 Thread Smith, Daron [PA]
I can't even get to it from Outlook Express -Original Message- From: Dimo Michailov [mailto:[EMAIL PROTECTED]] Sent: Thursday, December 06, 2001 11:05 AM To: CF-Talk Subject: Weird problem with CF-Talk on newsgroups Has anyne tried to use the news.fuseware.com newsserver to access

RE: CF Forums Discussion Forums - Where can I find the source?

2001-12-06 Thread Smith, Daron [PA]
We bought cfforum 2000. I don't know if this is what you want or not, but the url for the company is www.cfcode.com. I just checked it, its working Daron Smith -Original Message- From: BILLY CRAVENS [mailto:[EMAIL PROTECTED]] Sent: Thursday, December 06, 2001 2:25 PM To: CF-Talk

Slightly OT - Forcing Style Sheets

2001-12-06 Thread Smith, Daron [PA]
I am working on a project that I am using an inline editor called ewebedit. The basic out of the box functionality of the product is like word, which is fine. When the data is retrieved from the database though, I would like to force the browser to use my style sheet which I specify in the

CF-Talk Digest

2001-12-05 Thread Smith, Daron [PA]
For some reason I have stopped getting the digest has the digest been discontinued? Daron J. Smith Web Developer PSEA [EMAIL PROTECTED] 717-255-7141 1-800-944-PSEA (7732) x 7141 FAQ: http://www.thenetprofits.co.uk/coldfusion/faq Archives:

Creating Stored procedures on AS400

2001-10-29 Thread Smith, Daron [PA]
Forgive me if this is OT but I noticed there were some people using stored procs with the 400. I use 400 data and SQL Server, Most of my calls to the SQL Server are in stored procs, I would like to do the same with our AS400 which runs DB2. Could anyone point me to a stored procedure example

Session Timeout

2001-10-18 Thread Smith, Daron [PA]
I'm sure someone can answer this question for me. I have my session timeout attribute in my application.cfm page set to timeout after 5 minutes. This should kill session variables then if no activity occurs within 5 minutes. This seems to work fine for IE but when I open a page in netscape and

CF and mapped drives

2001-08-08 Thread Smith, Daron [PA]
Has anyone ever used a mapped drive with a CF tag like CFFILE? I have a server that I need to connect to, to publish files, and the server admin doesn't want to allow FTP access. Any ideas? Daron J. Smith Web Developer PSEA [EMAIL PROTECTED] 717-255-7141 1-800-944-PSEA (7732) x 7141 FAQ: