Re: cfc error

2005-04-05 Thread Scott Barnes
cfset var qLF = cfset dsn=it cfset un=that cfset pw=this cfquery name=qLF datasource=#dsn# username=#un# password=#pw# SELECT * FROM patterns ORDER BY parentID DESC /cfquery cfreturn qLF Heh, hi Taco btw. umm, be careful and remember that if you use cfset dsn= instead of cfset var

Re: cfc error

2005-04-05 Thread dave
it did work on 1 of the 4 and the only thing different i did was add space between, I will go try others again Thanks :) From: Scott Barnes [EMAIL PROTECTED] Sent: Tuesday, April 05, 2005 2:37 AM To: CF-Talk cf-talk@houseoffusion.com Subject: Re: cfc

Anyone creating and reading Excel or Word docs using XML?

2005-04-05 Thread Nathan Drury
Hi Just wondering if anyone on the list is using CF and XML to create and / or read Excel or Word docs. We have apps using Excel and Word server-side to create and read Excel files and create Word files. We know this is not recommened but the app is almost 3 years old and using Excel and Word

Re: CFMX7 clustering and load balance

2005-04-05 Thread Sana Ullah
Hi Thanks Adam for your help. I have another problem now. I have two instances cfusion2 + cfusion3 on one machine, when i test cluster it always point to cfusion2... I have loose IPaddress:JCP port in jrunserver.store file of IIS6 connector. I added IPaddress:JCP port reboot the machine, after

var groups

2005-04-05 Thread Kerry
hey, just a thought while I am var ing about 20 variables for a large function: Anyone know if MM have looked at/dismissed the idea of multiple vars i.e. var filepath,filename,extension as String; var linesread,lineswritten,timeout as Int; ?

Re: var groups

2005-04-05 Thread Paul Hastings
Kerry wrote: hey, just a thought while I am var ing about 20 variables for a large function: Anyone know if MM have looked at/dismissed the idea of multiple vars i.e. var filepath,filename,extension as String; var linesread,lineswritten,timeout as Int; no idea but it's cheap enough to

RE: var groups

2005-04-05 Thread Kerry
thats partly true, except that I like to have all my vars declared and initialised to a type at the top of the function. so this: var fileStuff=structNew(); var lineStuff=structNew(); fileStuff.filePath=; fileStuff.fileName=; fileStuff.extension=; linestuff.linesread = 0;

Re: WebServices

2005-04-05 Thread Michael Traher
bit of a stab in the dark here, but I notice a number of different capitalisation in the mypalauth name. Mypalauth MyPalAuth mypalauth while CF is not case sensitive - java is. just a thought.. On Apr 4, 2005 3:17 AM, David Brown [EMAIL PROTECTED] wrote: Thanks for the reply Dave, I

Re: search engines

2005-04-05 Thread Marty Johll
For more information, here's a slashdot article: http://slashdot.org/article.pl?sid=05/03/31/196220tid=217 On Apr 4, 2005 4:26 PM, Rick Faircloth [EMAIL PROTECTED] wrote: Good to knowthanks for the heads up, Dave! Rick -Original Message- From: dave [mailto:[EMAIL PROTECTED]

Bugzilla

2005-04-05 Thread Phill B
There is a new article on the Macromedia site titled How to Bulletproof Your Web Application. It mentioned an app built in perl named Bugzilla that is used for bug tracking. Has anyone used it or know of something similar that is written in CF? I want to get some thing like this in place so any

Re: search engines

2005-04-05 Thread Marty Johll
Oh, and one other where Google punished an internal (Adwords) unit for doing serving up different content to the bot vs user: http://www.eweek.com/article2/0,1759,1774677,00.asp?kc=EWRSS03119TX1K594 Marty On Apr 5, 2005 8:39 AM, Marty Johll [EMAIL PROTECTED] wrote: For more information,

Renaming a GIF - CFFILE

2005-04-05 Thread Robertson-Ravo, Neil (RX)
Anyone seen the following error/oddity.. All Files upload OK, and FileExists() confirms that CF can see them, but it always gives a tag validation error when trying to rename the GIF files. I have tried uploading GIF and JPG versions of the same file, and the JPG will rename, but the GIF won't.

RE: Bugzilla

2005-04-05 Thread Robertson-Ravo, Neil (RX)
Bugzilla has been around since I can remember - maybe even years !? ...it is Netscape/Mozilla's bug tracking tool - it is huge and complicated - way too much for the average joe. - and a bitch to get it working on Windows. Have a look at Ray Camdens Lighthouse bug tool or search out cfticket

Re: var groups

2005-04-05 Thread S . Isaac Dealey
hey, just a thought while I am var ing about 20 variables for a large function: Anyone know if MM have looked at/dismissed the idea of multiple vars i.e. var filepath,filename,extension as String; var linesread,lineswritten,timeout as Int; ? Seems to me like that would be against the

RE: Bugzilla

2005-04-05 Thread David Manriquez
Don't know if this could help http://www.cfdev.com/codereview is cheap and you can create your own rules. David Manriquez Desarrollador de Sistemas [EMAIL PROTECTED] (+56-2) 43 00 155 -Mensaje original- De: Phill B [mailto:[EMAIL PROTECTED] Enviado el: Martes, 05 de Abril

RE: var groups

2005-04-05 Thread Kerry
I can just dump that structure good point var local = declare(filepath,filename,extension,string); interesting idea -Original Message- From: S.Isaac Dealey [mailto:[EMAIL PROTECTED] Sent: 05 April 2005 17:52 To: CF-Talk Subject: Re: var groups hey, just a thought while I am var

RE: What are optimal GC/JVM settings?

2005-04-05 Thread Jacob
I could have sworn that I read this on MM site. Maybe I read it wrong. I have to check. Maybe I was increasing everything that had to do with JVM settings to stop the out of memory errors when I went from CF 5 to MX Anyways, I dropped it back to 128 on 3 servers over night and it looks like I

Re: Bugzilla

2005-04-05 Thread Neculai Macarie
There is a new article on the Macromedia site titled How to Bulletproof Your Web Application. It mentioned an app built in perl named Bugzilla that is used for bug tracking. Has anyone used it or know of something similar that is written in CF? I want to get some thing like this in place so

RE: search engines

2005-04-05 Thread Rick Faircloth
Hi, Marty...thanks for the article reference... I can see how techniques using unrelated keywords/phrases would be discouraged and even banned, but I wonder what Google's, et al, response would be to using legitimate keywords/phrases with techniques like white text over a white image. The

OT:SQL prob

2005-04-05 Thread Dave Francis
SQL Server 7. cfquery name=q1 datasource=newStuff SELECT r.eventID, d.title FROM Events r, EventDescription d WHERE d.eventID = r.eventID /cfquery This query only returns rows from Events table that have eventID present in EventDescription table. I need to return ALL rows

RE: SQL prob

2005-04-05 Thread Michael T. Tangorre
From: Dave Francis [mailto:[EMAIL PROTECTED] SELECT r.eventID, d.title FROM Events r, EventDescription d WHERE d.eventID = r.eventID SELECT r.eventID, d.title FROM Events r LEFT JOIN EventDescription d ON (r.eventID = d.eventID) HTH, Mike

Re: OT:SQL prob

2005-04-05 Thread Ewen Cartwright
SELECT r.eventID, d.title FROM Events r LEFT JOIN EventDescription d ON d.eventID = r.eventID On Apr 5, 2005 3:17 PM, Dave Francis [EMAIL PROTECTED] wrote: SQL Server 7. cfquery name=q1 datasource=newStuff SELECT r.eventID, d.title FROM Events r, EventDescription d WHERE d.eventID =

(OT) RE: search engines

2005-04-05 Thread Rick Faircloth
The article points out some legitimate uses of cloaking that Google allows, but which violate their own rules. I like the idea that was proposed in the article that Google modify their guidelines and allow some controversial techniques. I don't like the permission idea...that could slow things

RE: SQL prob

2005-04-05 Thread Robertson-Ravo, Neil (RX)
You are using an INNER JOIN - you need to use a LEFT JOIN I believe. SELECT r.eventID, d.title FROM Events r LEFT JOIN EventDescription d ON WHERE d.eventID = r.eventID -Original Message- From: Dave Francis [mailto:[EMAIL PROTECTED] Sent: 05 April 2005 15:18 To: CF-Talk Subject:

RE: SQL prob

2005-04-05 Thread David Manriquez
Another way SELECT r.eventID, d.title FROM Events r,EventDescription d WHERE d.eventID *= r.eventID David Manriquez Desarrollador de Sistemas [EMAIL PROTECTED] (+56-2) 43 00 155 -Mensaje original- De: Robertson-Ravo, Neil (RX) [mailto:[EMAIL PROTECTED]

RE: Bugzilla

2005-04-05 Thread Damien McKenna
Another vote for Mantis. Its easy to install, easy to use and purdy powerful. The forthcoming v1.0 release will add a lot of the flexibility that most people need regarding custom fields and modifying the main issues lister. -- Damien McKenna - Web Developer - [EMAIL PROTECTED] The Limu

RE: SQL prob

2005-04-05 Thread Robertson-Ravo, Neil (RX)
This is the OLD way to perform a join - it should be avoided. -Original Message- From: David Manriquez [mailto:[EMAIL PROTECTED] Sent: 05 April 2005 15:48 To: CF-Talk Subject: RE: SQL prob Another way SELECT r.eventID, d.title FROM Events r,EventDescription d WHERE d.eventID *=

Re: Bugzilla

2005-04-05 Thread Phill B
Thanks every one! On Apr 5, 2005 10:41 AM, Damien McKenna [EMAIL PROTECTED] wrote: Another vote for Mantis. Its easy to install, easy to use and purdy powerful. The forthcoming v1.0 release will add a lot of the flexibility that most people need regarding custom fields and modifying the

RE: Generating BarCodes in CF

2005-04-05 Thread Ali Awan
Thanks for the links, but as I mentioned in my email these are in the category of... There are some off-the-shelf cfapps that generate barcodes but not in that format They don't support the 2D (PDF417) format that I'm looking for. Thanks anyway, Ali -Original Message- From: CFDEV

RE: Generating BarCodes in CF

2005-04-05 Thread Burns, John D
Is that format available in a font? If so, you could install the font on the server and generate PDF docs with the bar code in that font. John Burns Certified Advanced ColdFusion MX Developer Wyle Laboratories, Inc. | Web Developer -Original Message- From: Ali Awan [mailto:[EMAIL

RE: SQL prob

2005-04-05 Thread Matt Osbun
Why? Not a challenge, but a question. Using *= or (+) always seemed, at least to me, quicker, easier, and easier to read afterward. Now, I admit that I mostly got into the habit because, until fairly recently, I was stuck on an Oracle platform that was too old to use INNER JOIN/LEFT JOIN, but

RE: SQL prob

2005-04-05 Thread Robertson-Ravo, Neil (RX)
Why - because it is deprecated. -Original Message- From: Matt Osbun [mailto:[EMAIL PROTECTED] Sent: 05 April 2005 16:18 To: CF-Talk Subject: RE: SQL prob Why? Not a challenge, but a question. Using *= or (+) always seemed, at least to me, quicker, easier, and easier to read

RE: SQL prob

2005-04-05 Thread Robertson-Ravo, Neil (RX)
I should add - deprecated in SQL Server... -Original Message- From: Robertson-Ravo, Neil (RX) [mailto:[EMAIL PROTECTED] Sent: 05 April 2005 16:17 To: CF-Talk Subject: RE: SQL prob Why - because it is deprecated. -Original Message- From: Matt Osbun [mailto:[EMAIL PROTECTED]

RE: Bugzilla

2005-04-05 Thread RADEMAKERS Tanguy
steve delray's bugtracker: http://www.delraysteve.com/index.cfm?fuseaction=main.tools ray camden's lighthouse: http://www.camdenfamily.com/morpheus/downloads/bugtracker.zip both written in CF... haven't tried either, but just FYI /t -Original Message- From: Phill B [mailto:[EMAIL

RE: SQL prob

2005-04-05 Thread Robertson-Ravo, Neil (RX)
I should add - deprecated in SQL Server. -Original Message- From: Robertson-Ravo, Neil (RX) [mailto:[EMAIL PROTECTED] Sent: 05 April 2005 16:17 To: CF-Talk Subject: RE: SQL prob Why - because it is deprecated. -Original Message- From: Matt Osbun [mailto:[EMAIL PROTECTED]

application scope and CFMX(JRun) clusters

2005-04-05 Thread Douglas Knudsen
Ok, we have some apps that store CFC instances in the application scope. We just set up a CFMX cluster in our production environment. For those of you also doing this, how do you update your application scopes? For example, an instance of foo.cfc is stored in application.foo. If I update the

Re: SQL prob

2005-04-05 Thread Joe Rinehart
Hey Matt, From a semantic (easier / easier to read standpoint), using the (currently) standard JOIN sytax seperates your query nicely. When you use it, the FROM clause becomes where all your relations are defined, and the WHERE clause simply becomes filtering on everything you've JOINed

RE: SQL prob

2005-04-05 Thread David Manriquez
I'm still using it cause a Microsoft Certified SQL professional show me the tracing and performance of LEFT/RIGHT/OUTHER/INNER JOIN and *=/=/=*/*=* and the last one is better and faster. David Manriquez Desarrollador de Sistemas [EMAIL PROTECTED] (+56-2) 43 00 155

RE: SQL prob

2005-04-05 Thread Michael T. Tangorre
From: David Manriquez [mailto:[EMAIL PROTECTED] I'm still using it cause a Microsoft Certified SQL professional show me the tracing and performance of LEFT/RIGHT/OUTHER/INNER JOIN and *=/=/=*/*=* and the last one is better and faster. A lot more goes into it than that... Indexes, keys,

Re: SQL prob

2005-04-05 Thread G
Indeed. Plus I was always under the impression that all other things being equal, explicity stating your joins would be faster. Seems to make sense logically too. From: David Manriquez [mailto:[EMAIL PROTECTED] I'm still using it cause a Microsoft Certified SQL professional show me the

RE: SQL prob

2005-04-05 Thread Dave Watts
Why? Not a challenge, but a question. Using *= or (+) always seemed, at least to me, quicker, easier, and easier to read afterward. Now, I admit that I mostly got into the habit because, until fairly recently, I was stuck on an Oracle platform that was too old to use INNER JOIN/LEFT

RE: Generating BarCodes in CF

2005-04-05 Thread Ali Awan
John, Yes, it is available in a font. The font is called PDF417, I believe. This sounds like the direction I may want to go in. Can you elaborate on how I could do that? We have ActivePDF installed on our server, could I do it using that? However, we can't just take plain text and apply the

Re: SQL prob

2005-04-05 Thread Joe Rinehart
I don't think one test can be seen as proof of either way being better or faster - there's a lot more that goes into DB performance than JOIN vs. =. Indexes, constraints, what mood your OS is in, etc. True story: a company I worked for had to fire a Microsoft Certified Professional (actually, an

Re: SQL prob

2005-04-05 Thread Joe Rinehart
I don't think one test can be seen as proof of either way being better or faster - there's a lot more that goes into DB performance than JOIN vs. =. Indexes, constraints, what mood your OS is in, etc. True story: a company I worked for had to fire a Microsoft Certified Professional (actually, an

RE: Generating BarCodes in CF

2005-04-05 Thread Ali Awan
John, Yes, it is available in a font. The font is called PDF417, I believe. This sounds like the direction I may want to go in. Can you elaborate on how I could do that? We have ActivePDF installed on our server, could I do it using that? However, we can't just take plain text and

Re: SQL prob

2005-04-05 Thread Joe Rinehart
Also, instead of running the queries (not a very valid test unless you do each way many times under similar conditions), try looking at estimated execution plans, etc. You'll probably notice that in a lot of cases the optimizer (in SQL server, at least) will create the same execution plan for

Re: Create Excel file??

2005-04-05 Thread Rob
I have used POI with great success - http://jakarta.apache.org/poi/ - to read and write excel files. I've also used http://jexcelapi.sourceforge.net/ on a couple of cf projects and it worked well too. Both are pure java and allow you to create binary versions xls files Cheers On Apr 4, 2005 7:57

RE: SQL prob

2005-04-05 Thread Ken Ferguson
Once again, someone pops in with this reason for doing something. It troubles me that this manner of thinking is so prevalent, as it most certainly means it's come about from actual experiences dealing with people. I don't feel that this sort of because-you-might-not-be-smart-enough type of

RE: SQL prob

2005-04-05 Thread Michael T. Tangorre
From: Ken Ferguson [mailto:[EMAIL PROTECTED] Does this bother anyone else, or is it just me? It could easily be just me; I've had it up to here with people in general this morning. If it is, maybe I should just hit the power button and take the rest of the day. Click that button...

CF app as EAR/WAR file

2005-04-05 Thread Bryan Stevenson
Hey All, I've been asked to give a CF talk to a group of mainly Java folks. My Java skills are fairly new (mostly using Java packages like iText via CFCs). One thing this crowd will be VERY interested in is deploying a CF app on J2EE servers (so enhancing productivity through rapid dev in CF

RE: SQL prob

2005-04-05 Thread Dave Watts
Once again, someone pops in with this reason for doing something. It troubles me that this manner of thinking is so prevalent, as it most certainly means it's come about from actual experiences dealing with people. I don't feel that this sort of because-you-might-not-be-smart-enough

RE: SQL prob

2005-04-05 Thread Matt Osbun
Can't say I really took it as a You-Might-Not-Be-Smart-Enough sort of thing. And even if it was, it really wouldn't bother me much. For one, generally speaking, I'm pretty careful about my table joins. For two, specifically speaking, I can point to a couple instances where I've annoyed the heck

RE: SQL prob

2005-04-05 Thread COLLIE David
For two, specifically speaking, I can point to a couple instances where I've annoyed the heck out of a DBA by forgetting to join a couple of million+ record tables before running the query. I can think of a million ways a dba's annoyed me :) sorry, I'll get back to work -- dc

RE: Generating BarCodes in CF

2005-04-05 Thread Burns, John D
If you can install the font on your PC and open word and write some text in that font to get the result you want, then you can do it on the server. Perhaps the reason you were seeing wingdings when you viewed their formula output is because you don't have the required fonts installed? If there

Re: SQL prob

2005-04-05 Thread Joe Rinehart
I don't feel that this sort of because-you-might-not-be-smart-enough type of argument is a good reason to do anything one way or another. I don't think that Dave was saying people shouldn't use *= because they might not be smart enough. I think that good developers like Dave recognize

RE: Generating BarCodes in CF

2005-04-05 Thread Burns, John D
If you can install the font on your PC and open word and write some text in that font to get the result you want, then you can do it on the server. Perhaps the reason you were seeing wingdings when you viewed their formula output is because you don't have the required fonts installed? If there

RE: CF app as EAR/WAR file

2005-04-05 Thread Dave Watts
What I'm unclear on: 1) When you choose the EAR/WAR file option during CF install... -Is that to package up an exisiting app? or create a CF instance that you can create your app in and then package up? It's to package an existing application. 2) How is the EAR/WAR file deployed on the

Re: application scope and CFMX(JRun) clusters

2005-04-05 Thread Brian Kotek
I don't think there is any way except to write a script (or use something like Apache ANT) that you can run that will automatically refresh the application-scoped CFCs after you update the code. On Apr 5, 2005 11:29 AM, Douglas Knudsen [EMAIL PROTECTED] wrote: Ok, we have some apps that

RE: Generating BarCodes in CF

2005-04-05 Thread Andy Ousterhout
Sorry to join in late. I use CF_BarCode: Company : fusionZONE, Inc. Application : barcodeZONE Version : 1.0 Build Date: 03/18/2004 Developer : Kevin Maloy Copyright (c) 2004 fusionZONE, Inc.

Re: CF app as EAR/WAR file

2005-04-05 Thread Rob
If I could ride the coat tails of this question... what license do you need when you ear/war up a cf project to sell (someone just asked me).. On Apr 5, 2005 9:42 AM, Bryan Stevenson [EMAIL PROTECTED] wrote: Hey All, I've been asked to give a CF talk to a group of mainly Java folks. My Java

RE: Generating BarCodes in CF

2005-04-05 Thread Ali Awan
John, I do indeed have the font(s) installed in Word. And yes, I can type certain characters and it will display in somewhat of a barcode font. However, I do know, from however much research I have done this far, is that a series of binary strings are necessary to display the barcode correctly.

RE: CF app as EAR/WAR file

2005-04-05 Thread Dave Watts
If I could ride the coat tails of this question... what license do you need when you ear/war up a cf project to sell (someone just asked me).. You will need a CFMX Enterprise license to deploy an EAR/WAR. You can enter the license number when creating the EAR/WAR, or after deploying it.

Help with NAT and DSN setups in CF Admin

2005-04-05 Thread Alex Sherwood
Greetings. Our IIS 6/CF server is on a 10 dot network, and mapped to an external IP via our firewall appliance. When trying to set up a DSN to our MS SQL Server, I keep getting a connection refused error message. I am using the server name (UNC name) and the correct username/password. The SQL

RE: Generating BarCodes in CF

2005-04-05 Thread Ali Awan
Thanks Andy, But you are too late,j/k :P Somebody already suggested that. And that is actually one of the first places I looked before posting to CF-Talk. Unfortunately, FusionZone is limited in the Barcoding Symbologies that they encode. I'm looking for an app that converts to the 2D

Re: application scope and CFMX(JRun) clusters

2005-04-05 Thread Sean Corfield
On Apr 5, 2005 8:29 AM, Douglas Knudsen [EMAIL PROTECTED] wrote: Ok, we have some apps that store CFC instances in the application scope. We just set up a CFMX cluster in our production environment. For those of you also doing this, how do you update your application scopes? For example, an

Re: CF app as EAR/WAR file

2005-04-05 Thread Dave Carabetta
On Apr 5, 2005 1:17 PM, Rob [EMAIL PROTECTED] wrote: If I could ride the coat tails of this question... what license do you need when you ear/war up a cf project to sell (someone just asked me).. Enterprise, because EAR/WAR deployment only works when deploying into full J2EE servers, of

RE: Help with NAT and DSN setups in CF Admin

2005-04-05 Thread Connie DeCinko
Make sure you have the correct port open. -Original Message- From: Alex Sherwood [mailto:[EMAIL PROTECTED] Sent: Tuesday, April 05, 2005 10:30 AM To: CF-Talk Subject: Help with NAT and DSN setups in CF Admin Greetings. Our IIS 6/CF server is on a 10 dot network, and mapped to an

RE: Generating BarCodes in CF

2005-04-05 Thread Ali Awan
FYI incase anyone is wondering. Here is what I mean by 2D barcodes. I have attached the gif of what one looks like. If you have ever shipped a UPS package where you generated the package slip on their website or via EBay, then you have probably seen this. -Original Message- From:

RE: Generating BarCodes in CF

2005-04-05 Thread Ali Awan
It didn't make it I guess we can't send images on here Well the image is the first thing you see if you go to this page: http://grandzebu.net/informatique/codbar-en/pdf417.htm Ali -Original Message- From: Ali Awan [mailto:[EMAIL PROTECTED] Sent: Tuesday, April 05, 2005 10:35 AM

RE: Generating BarCodes in CF

2005-04-05 Thread Burns, John D
Well, since it's more than just a font, your problem does sound like it requires the specialized program. I'm not sure where to send you from here. Just search for a program that you can run from your desktop (perhaps command-line based) and get that working and then it's easy to move it over to

Re: Help with NAT and DSN setups in CF Admin

2005-04-05 Thread Alex Sherwood
For the time being, all ports on both boxes are open. If the port weren't open on the SQL server's network, then the local system DSN wouldn't be able to connect either, but it does! -- Alex Connie DeCinko wrote: Make sure you have the correct port open. -Original Message- From:

RE: Generating BarCodes in CF

2005-04-05 Thread Burns, John D
Ali, Do a search in google for pdf217 command-line and you'll get a bunch of results for software programs and stuff like that. Something should be out there for you. John Burns Certified Advanced ColdFusion MX Developer Wyle Laboratories, Inc. | Web Developer -Original Message-

Re: CF app as EAR/WAR file

2005-04-05 Thread Rob
What I mean to ask is, does the receiver of the ear/war need to buy CF too, or is there a distribute license or something? From what you posted I get the impression that anyone who wants to run the ear/war I made with CF needs to have a CF license too - yes? On Apr 5, 2005 10:36 AM, Dave Watts

Re: Renaming a GIF - CFFILE

2005-04-05 Thread Jared Rypka-Hauer - CMG, LLC
First off, without code examples everyone will be guessing and guessing and nobody will be able to really provide specific help. There's really not much help I can give without code exmples. CFFILE's options when using the action=rename attribute are pretty simple and straightforward... I could

Re: SQL prob

2005-04-05 Thread Jochem van Dieten
Matt Osbun wrote: Why? Not a challenge, but a question. Using *= or (+) always seemed, at least to me, quicker, easier, and easier to read afterward. Now, I admit that I mostly got into the habit because, until fairly recently, I was stuck on an Oracle platform that was too old to use

RE: Generating BarCodes in CF

2005-04-05 Thread Ali Awan
John, Firstly, thanks for taking the time to discuss this issue. Yeah, Google has been my friend for many years. Even as I posted this question on CF-Talk, I had downloaded and evaluated a couple of off-the-shelf solutions for generating the BarCodes that I needed. I can even invoke one of them

Re: CF app as EAR/WAR file

2005-04-05 Thread Sean Corfield
On Apr 5, 2005 9:42 AM, Bryan Stevenson [EMAIL PROTECTED] wrote: One thing this crowd will be VERY interested in is deploying a CF app on J2EE servers (so enhancing productivity through rapid dev in CF and deploying as Java). I demo'd this at Fusebox 2004 so I can walk you through it

RE: Generating BarCodes in CF

2005-04-05 Thread Burns, John D
Well, Word automation is basically unsupported by Microsoft so you might have trouble finding a good solution. Someone posted on here earlier today about an XML solution for generating Word docs. You may want to look at that. John Burns Certified Advanced ColdFusion MX Developer Wyle

Re: CF app as EAR/WAR file

2005-04-05 Thread Dave Carabetta
On Apr 5, 2005 1:42 PM, Rob [EMAIL PROTECTED] wrote: What I mean to ask is, does the receiver of the ear/war need to buy CF too, or is there a distribute license or something? From what you posted I get the impression that anyone who wants to run the ear/war I made with CF needs to have a CF

RE: Help with NAT and DSN setups in CF Admin

2005-04-05 Thread Dave Watts
Our IIS 6/CF server is on a 10 dot network, and mapped to an external IP via our firewall appliance. When trying to set up a DSN to our MS SQL Server, I keep getting a connection refused error message. I am using the server name (UNC name) and the correct username/password. The SQL

RE: CF app as EAR/WAR file

2005-04-05 Thread Dave Watts
It depends on the J2EE server. For JRun, you must manually explode the WAR into a server instance. I've deployed other WARs to JRun without exploding them first. Flex works nicely this way, actually. Are you sure you need to do this with CF? You can do J2EE packaging on *any* edition,

Re: Running exe file from browser

2005-04-05 Thread Tim Claremont
Still no luck after playing with it further. To better explain... I am trying to create a Click here to start application button on my web site. The objective is to run the application at the following address: g:\shared\applications\Programs\PC.exe Note that the G drive is a SHARED network

RE: CF app as EAR/WAR file

2005-04-05 Thread Dave Watts
What I mean to ask is, does the receiver of the ear/war need to buy CF too, or is there a distribute license or something? From what you posted I get the impression that anyone who wants to run the ear/war I made with CF needs to have a CF license too - yes? The receiver of the EAR/WAR

RE: SQL prob

2005-04-05 Thread Gaulin, Mark
There's a good reason to use the new style of joins: because they are more powerful. Here is an example of a query that, to my knowledge, can't be done with *= syntax: select * from t1 left outer join t2 on (t1.id = t2.id and t1.rating t2.max_rating) This is

RE: SQL prob

2005-04-05 Thread Robertson-Ravo, Neil (RX)
I would ask him to give it back - this syntax is deprecated and could well be removed at any stage from SQL Server . David Manriquez [SMTP:[EMAIL PROTECTED] -Original Message- From: David Manriquez To: CF-Talk Sent: 05/04/2005 16:28 Subject: RE: SQL prob I'm still using it cause a

Re: CF app as EAR/WAR file

2005-04-05 Thread Rob
Rob asked about licensing. When you create the J2EE package (the EAR/WAR file), you can optionally enter a serial number for a new Enterprise Edition of CFMX (you need to buy the license from Macromedia). If you do that, the deployed application will be a fully-licensed, fully-functional copy

Re: Renaming a GIF - CFFILE

2005-04-05 Thread JediHomer
The file could be locked? Try performing a Copy, then a delete on the original.. It may give the call enough time to release the lock? HTH On Apr 5, 2005 2:43 PM, Robertson-Ravo, Neil (RX) [EMAIL PROTECTED] wrote: Anyone seen the following error/oddity.. All Files upload OK, and

RE: Running exe file from browser

2005-04-05 Thread Ian Skinner
First: Does the server have permissions to read and execute that share? By default the CF service user would probably not. It would have to be given the appropriate permissions just is any other user. Second: When this runs, it is going to run from the server's point of view. Not the user

Re: CF app as EAR/WAR file

2005-04-05 Thread Rob
The receiver of the EAR/WAR needs to have a CFMX Enterprise license to be able to deploy the EAR/WAR on a production server. If you are creating an EAR/WAR for deployment on another server, and you have a valid license number for that server, you can enter it when you create the EAR/WAR.

RE: CF app as EAR/WAR file

2005-04-05 Thread Dave Watts
I told the guy who asked me to call MM himself to get the skinny, but now I am curious. As usual I am a bit slow, and a confused mind says no so is this accurate... 1. I buy CF EE, write an app, make a war 2. I want to sell it to Joe Blow 3. Joe Blow likes the app, and wants to buy it

RE: SQL prob - a reason other than style

2005-04-05 Thread Gaulin, Mark
There's a good reason to use the new style of joins: because they are more powerful. Here is an example of a query that, to my knowledge, can't be done with *= syntax: select * from t1 left outer join t2 on (t1.id = t2.id and t1.rating t2.max_rating) This is

OT: JavaScript clock problem w/ Firefox

2005-04-05 Thread Rebecca Wells
I have a clock javascript that works fine in IE 6.0, but does not display correctly in Firefox 1.0.2 or Netscape 7.0. Can anyone tell me what's up here? I've tried googling for tips, but didn't come up with anything. Here is the script: In the head section: script type=text/javascript function

Mystified about select box

2005-04-05 Thread Richard Colman
I am mystified about this one: Part A: billable=#billable# cfif billable is Yesprint yes/cfif cfif billable is Noprint no/cfif (billable is always yes or no) Part B: select name=clusterbillable option Value=Yes cfif billable is Yesselected/cfif Yes option Value=No cfif

RE: CF app as EAR/WAR file

2005-04-05 Thread Dave Watts
Holy Cow, this reminds me of that monty python the meaning of life scene when the Catholic teacher is explaining how to hang your coat... It's quite simple, you must put your coat on the lower hook before you collect your note after you go to the masters game unless your brother will

RE: Generating BarCodes in CF

2005-04-05 Thread Ali Awan
John, Oh well. Thanks for the tip though, I'll look into that. Ali -Original Message- From: Burns, John D [mailto:[EMAIL PROTECTED] Sent: Tuesday, April 05, 2005 10:57 AM To: CF-Talk Subject: RE: Generating BarCodes in CF Well, Word automation is basically unsupported by Microsoft so

Re: CF app as EAR/WAR file

2005-04-05 Thread Sean Corfield
On Apr 5, 2005 10:36 AM, Dave Watts [EMAIL PROTECTED] wrote: You will need a CFMX Enterprise license to deploy an EAR/WAR. You can enter the license number when creating the EAR/WAR, or after deploying it. Otherwise it will be Developer Edition. -- Sean A Corfield -- http://corfield.org/ Team

RE: Mystified about select box

2005-04-05 Thread Andy Mcshane
shot in the dark, do you not have to close the option tag i.e. option Value=Yes cfif billable is Yesselected/cfifYes/option From: Richard Colman [mailto:[EMAIL PROTECTED] Sent: Tue 05/04/2005 19:44 To: CF-Talk Subject: Mystified about select box I am

Re: OT: JavaScript clock problem w/ Firefox

2005-04-05 Thread Ray Champagne
I've had issues with getYear() after creating a js date before in FireFox. It would display 2005 in IE, but in FF it displays 105. I had to use getFullYear() for it to display correctly. I don't have time to look into the getMinutes and getSeconds, etc, but I would be willing to bet a cold

RE: JavaScript clock problem w/ Firefox

2005-04-05 Thread Connie DeCinko
Here is the code I use and it displays correctly in IE and FireFox. == !-- Begin var timerID = null; var timerRunning = false; function stopclock (){ if(timerRunning) clearTimeout(timerID); timerRunning = false; } function showtime () { var now = new Date(); var hours =

Re: CF app as EAR/WAR file

2005-04-05 Thread Sean Corfield
On Apr 5, 2005 10:42 AM, Rob [EMAIL PROTECTED] wrote: What I mean to ask is, does the receiver of the ear/war need to buy CF too, or is there a distribute license or something? Without a license, they end up with Developer Edition. A full Enterprise license purchase is required otherwise. I

  1   2   >