Re: Cold Fusion MX Adminstrator Error

2005-10-12 Thread HOFLee _
java.lang.NoClassDefFoundError at javax.crypto.Cipher.getInstance([DashoPro-V1.2-120198]) Google is your friend ;-) http://www.macromedia.com/cfusion/knowledgebase/index.cfm?id=98b88caapss=rss_coldfusion_98b88caa ~| Find

How to use CFMX connection pool?

2005-10-07 Thread HOFLee _
I have a need to create a JAVA CFX tag that needs database access. I would rather use the existing CFMX connection pool than create my own. Any pointers available. Apologies if this is the wrong spot for this question. (I found this post in the Java section). Is it possible to use the

Re: executing multiple queries

2005-10-07 Thread HOFLee _
Hmm... wonder what this does? cfset url.parameter='1; drop table orders;' cfquery name=qryname datasource=somedsn Select * from items where itemId=#url.parameter# /cfquery Makes a dba very unhappy (unless they were smart enough to use cfqueryparam ;-)

Re: How Do I Get The Results of This Query Into a Cookie?

2005-10-07 Thread HOFLee _
The results of the query (I thought) return a simple integer, but I get the following error message: Complex object types cannot be converted to simple values. I think it would return a resultset that should be captured by cfprocresult as a query object.

Re: Error Message

2005-10-06 Thread HOFLee _
I haven't really done a ping command before. How would one go about this? At a command prompt type ping (host name or ip address) c:\ ping www.equinoxgroup.co.nz http://support.microsoft.com/default.aspx?scid=kb;en-us;300986sd=tech#XSLTH4153121122120121120120

Re: Invalid method signature: e/Variable;)Ljava/lang/Object;

2005-10-06 Thread HOFLee _
Did you see this ? http://groups.google.com/group/macromedia.coldfusion.cfml_general_discussion/browse_thread/thread/141919b886eab6c1/2331bff1c8e68e5c ~| Logware (www.logware.us): a new and convenient web-based time tracking

Re: Error on Installation

2005-10-06 Thread HOFLee _
See the link at the end of this thread http://www.sitepoint.com/forums/showthread.php?s=5ba7553f949c95389c37edad4c95a74ep=2207002#post2207002 ~| Logware (www.logware.us): a new and convenient web-based time tracking application.

Re: The form data has expired, Please reload this page in your browser.

2005-10-06 Thread HOFLee _
I am having the same problem. Hopefully someone can shed some light on this. ~| Find out how CFTicket can increase your company's customer support efficiency by 100% http://www.houseoffusion.com/banners/view.cfm?bannerid=49

Re: CF Studio Updater for MX 6.1

2005-09-23 Thread HOFLee _
I'm trying to locate the updater for CF Studio 5. I've started using CF MX 6.1 both at home and here at work but all I can find for updaters is MX 7. Anyone got the URL for the link to the 6.0/6.1 updater(s)? Thanks. Do you mean these? From MX6.1 home page

Re: post-upload file validation

2005-09-23 Thread HOFLee _
I am assuming that cffile's 'accept' attribute does the same file-extension checking. It must use something other than file extension checking. I tried it with an Excel file renamed Book1.txt and a cffile with the accept value of text/plain and CF threw an error: The MIME type of the

Re: loop list

2005-09-22 Thread HOFLee _
Yes, that is not the best set-up. Assuming both lists contained the same number of items, maybe something like this? cfloop from=1 to=#listLen(GetArticle.articleLinks)# index=i cfset myLink = listGetAt(GetArticle.articleLinks,i) cfset myLinkText =

Re: ListQualify problem

2005-09-19 Thread HOFLee _
BUT when i put the MovementList in the following query I get the following error. For some reason the list becomes qualified with double quotes. Here is the error CF automatically escapes single quotes (ie. converts one single quote to two). Either use the PreserveSingleQuotes() function

Re: Win 2003

2005-09-19 Thread HOFLee _
Can any one advise quickly if CF 5 and CF MX 6 will run on Win 2003 Server Did you see this technote? http://www.macromedia.com/cfusion/knowledgebase/index.cfm?id=tn_18689 ~| Logware (www.logware.us): a new and convenient

Re: OT: ColdFusion + ASP without IIS?

2005-09-18 Thread HOFLee _
For ASP.NET check out mono. Do you know if mono works on windows? ~| Find out how CFTicket can increase your company's customer support efficiency by 100% http://www.houseoffusion.com/banners/view.cfm?bannerid=49 Message:

Re: OT: ColdFusion + ASP without IIS?

2005-09-18 Thread HOFLee _
why not just run IIS? IIS doesn't run on XP Home afaik. In order to install IIS I would have to upgrade that machine. It isn't worth it for something I am only playing around with. ~| Logware (www.logware.us): a new and

Re: OT: ColdFusion + ASP without IIS?

2005-09-18 Thread HOFLee _
I hate that... MS did the same thing with Win2K... In the ad copy on their site (specifically the version comparison no less) they said to help support web developers who work on their home machines, we're including a FULL, UNALTERED copy of IIS in Win2K Pro... So I installed it... and found the

OT: ColdFusion + ASP without IIS?

2005-09-17 Thread HOFLee _
I have ColdFusion (development version/built in webserver) installed on my local windows computer. I also want to run simple asp/asp.net scripts, but I don't want to install IIS. Is this possible? Maybe using Apache, with some add in module, instead of the built in server? TIA for any

Re: OT: ColdFusion + ASP without IIS?

2005-09-17 Thread HOFLee _
There used to be some alternative engine for ASP, but I have no idea if it is still around. I think you are totally out of luck as far as . net goes, though I could be wrong. Thanks for the reply. Yes, I did see a few references to ASP alternatives, but nothing solid. I just saw something

Re: OT: ColdFusion + ASP without IIS?

2005-09-17 Thread HOFLee _
If you want to run ASP 3, probably the best alternative for apache is Chilisoft ASP. For ASP.NET check out mono. Thanks! I hadn't heard about mono. I'm off to download, setup and configure! ~| Logware (www.logware.us): a new

Re: Create Excel file

2005-09-14 Thread HOFLee _
Is this what you are referring to? http://jakarta.apache.org/poi/ Yes, that is POI. It is very good, but not quite as simple to use initially as the html technique. *As far as I know*, using the XML schema is the only way to create multiple sheets with basic HTML. Other than that, as I said

Re: Create Excel file

2005-09-13 Thread HOFLee _
You mean using just plain html/xml/cfoutput? If I remember correctly, you can use XML schema for excel to create separate sheets. There are also other options like POI, COM, etc. if you are not limited to basic html/cf. Is there a way to create an Excel spreadsheet with multiple tabs using

Re: Estimated Freight

2005-08-10 Thread HOFLee _
To be honest, I can't remember exactly if I had to give a CC #. I don't *think* I did, but it was a while back. Hm, I went through it very quickly, but it seemed like they required you to set up an account, which required a credit card number. This seemed like a crazy requirement just to

Re: Estimated Freight

2005-08-10 Thread HOFLee _
I doubt you do but please correct me if I'm wrong on this. I would be happy to be proven wrong, but from what I can see it is required. So much for using the UPS api... ~| Find out how CFTicket can increase your company's

Re: Get Java Version

2005-08-10 Thread HOFLee _
Is it possible to get the servers JVM Version Did you try ..? cfset sys = createObject(java, java.lang.System) cfoutput#sys.getProperty(java.version)#/cfoutput ~| Logware (www.logware.us): a new and convenient web-based

Re: Estimated Freight

2005-08-09 Thread HOFLee _
First thing ya need to do is register with UPS, then obtain a developer's key. It's kinda goofy but doesn't take too long. Will, can you get a developer's key without all the hassle of creating an account, giving a credit card number, etc... ?

Re: Help with determining page count in a document

2005-07-26 Thread HOFLee _
I remembered that there used to be a site call CFCOMET but the site seems to be gone. Try http://cfregex.com/cfcomet/ ~| Find out how CFTicket can increase your company's customer support efficiency by 100%

Re: Blackberry calendar integration

2005-07-26 Thread HOFLee _
There used to be a site - CFCOMET which was good for COM resources and CF but it is gone now - I think Michael has it set up somewhere though - I cant remember the link! In case you're still interested, try http://cfregex.com/cfcomet/

CFSCRIPT and loop index values in variables

2005-07-23 Thread HOFLee _
Or another way is form[typeid_ i] ~| Logware (www.logware.us): a new and convenient web-based time tracking application. Start tracking and documenting hours spent on a project or with a client with Logware today. Try it for

Re: Query object contained within a Query object

2005-07-22 Thread HOFLee _
Claude Schneegans The result would be the same, but the sub-query would not have to be copied into the main query, and there would be a difference on performance. I would think that the sub-queries would not be copied into the main query. In java, objects like structures are passed by

RE: Query object contained within a Query object

2005-07-22 Thread HOFLee _
I suspect it has more to do with the fact that people have specific expectations about what's in a query object than anything else. People have a two-dimensional mental model of what a recordset is, and nesting one recordset within another would break that model. You may very well be right.

Re: Query object contained within a Query object

2005-07-21 Thread HOFLee _
Thank you both for your responses. Personnally, I'd be more interested in hearing why this would be a *good* idea? Primarily because query objects can be used with the cfoutput/cfloop tags which IMO provide a simpler and cleaner method for accessing the related information than structures or

Re: Query object contained within a Query object

2005-07-21 Thread HOFLee _
I think my biggest problem with doing this is, the performance cost of query objects. Aside from file handling query objects seem to be one of the worst performing objects in coldfusion. Adam H Yes, I would expect query objects to be more expensive than an arrays. Any stats/links or

Re: Query object contained within a Query object

2005-07-21 Thread HOFLee _
Claude Schneegans That is the question. One can sure use loops on queries inside loops on queries, but do we need to store them inside each others ? For the purposes of my question ... yes ;-)While I am aware of most of the alternatives, I'm more interested in understanding the pratical reasons