RE: OT: Macs, Netscape, and table cell heights, oh my

2002-09-19 Thread Gilbert Midonnet
netscape is famous for not conforming to its own specs. In the same way that you build the rows in your inner table I create a new table, and based on the content for that cell, I build up one or more rows of stuff, close out the table. Each of those tables has a seperate b/g color (using

RE: Variables Collection loop

2002-09-19 Thread Raymond Camden
You can only use Variables as a structure in CFMX. Also, your code would be a bit better w/o the evaluate: cfloop item=key collection=#variables# (note - you also forgot the # signs for collection) cfoutput #key# cfif isSimpleValue(variables[key])#variables[key]#/cfifbr

cfinput

2002-09-19 Thread Nick Varner
Can you mix cfinputs with regular inputs? I am losing data and that seems like the only possible reason. I don't lose data all the time but when I do it drops information after the first space. __ This list and all House of

RE: cfinput

2002-09-19 Thread Douglas McKenzie
Yes you can. Check that your cfinputs are acceptable though: CF only accepts TEXT, RADIO, CHECKBOX, PASSWORD. For everything else, use input. specs are for cf4.5 - might have changed with 5 or MX. -Original Message- From: Nick Varner [mailto:[EMAIL PROTECTED]] Sent: 19 September 2002

RE: cfinput

2002-09-19 Thread Bryan Love
the only thing unique about CF inputs is that they cause the CF Server to generate JavaScript that is used for validation and such... Otherwise they end up the same as any other HTML input +---+ Bryan Love Macromedia Certified Professional

Re: Jsp Vs Cfm (CFMX) -- Test Code

2002-09-19 Thread Joe Eugene
I dont think ... Java's Bytecode is the same as C# MSIL.. They dont perform the same... I think C#'s MSIL or compiled code is closer to machine code and it performs better than bytecode.. Here are some docs.. http://www.c-sharpcorner.com/Tutorials/CSTutorial1AN.asp#Getting%20Started%2

Re: OT : SQL Server Bulk Copy

2002-09-19 Thread Joe Eugene
You can use SQL Server DTS to write the file and you can also execute the DTS using xp_cmdshell extended stored procedure. Joe From: S. Isaac Dealey [EMAIL PROTECTED] Reply-To: [EMAIL PROTECTED] To: CF-Talk [EMAIL PROTECTED] Subject: OT : SQL Server Bulk Copy Date: Thu, 19 Sep 2002 14:59:58

Urgent: Need help with a CFFILE error

2002-09-19 Thread Mitko Gerensky-Greene
Hello, I am uploading an application which was built by the previous team and now I have to resolve some issues... Here is the page: http://webapps1.hud.gov/pih/pha/plans/approved/approved_plans.cfm When there, select a state from the drop down menu and then it takes you to:

Re: Urgent: Need help with a CFFILE error

2002-09-19 Thread Jeff Garza
CFFILE action=read takes a absolute path for it's file attribute. You are sending it a URL. Jeff - Original Message - From: Mitko Gerensky-Greene [EMAIL PROTECTED] To: CF-Talk [EMAIL PROTECTED] Sent: Thursday, September 19, 2002 2:59 PM Subject: Urgent: Need help with a CFFILE error

RE: Urgent: Need help with a CFFILE error

2002-09-19 Thread Dan Haley
Does CFFILE work with URLs? I thought it was only with file system paths. I think the period is just a grammatically correct error message putting the period inside the quote mark ... -Original Message- From: Mitko Gerensky-Greene [mailto:[EMAIL PROTECTED]] Sent: Thursday, September 19,

Regular Expression cfform validation

2002-09-19 Thread Bryan F. Hogan
I want to make sure that no special characters are entered into my form before submitting. What is the syntax for the regular expression to put within the pattern attribute of the form tag. cfinput type=text name=name required=yes validate=regular_expression pattern=pattern message=No special

Re: Urgent: Need help with a CFFILE error

2002-09-19 Thread Brook
The path should be the path on your hardrive not a URL. This: c:\myfiles\myfile.txt not : http:\\mysite.com\myfile.txt At 04:59 PM 19/09/02 -0500, you wrote: Hello, I am uploading an application which was built by the previous team and now I have to resolve some issues... Here is the

RE: OT: Macs, Netscape, and table cell heights, oh my

2002-09-19 Thread Scott Weikert
At 05:29 PM 9/19/2002 -0400, you wrote: netscape is famous for not conforming to its own specs. In the same way that you build the rows in your inner table you can pass the information to use in the transparant.gif img src=trans.gif width=1 height=#whateverVariable# alt= Can't do that. I'm

RE: Jsp Vs Cfm (CFMX) -- Test Code

2002-09-19 Thread Alex Hubner
Hi, I've read an interview with Geoffrey Greene about CFMX for J2EE and found this: Q: How are CFML page compiled in this version? How are page requests handled at runtime? A: Page compilation is the same in all versions of ColdFusion MX. The first time a page is requested, it is compiled into

Re: Urgent: Need help with a CFFILE error

2002-09-19 Thread Mitko Gerensky-Greene
OK, thanks. I DO need to read files from another server. What can I use then? Thanks, Mitko -- Original Message -- From: Jeff Garza [EMAIL PROTECTED] Reply-To: [EMAIL PROTECTED] Date: Thu, 19 Sep 2002 15:02:27 -0700 CFFILE action=read takes a absolute

RE: Good CFX Tag to do bulk mailing

2002-09-19 Thread Pete Freitag
And i will revise my claim ;) Any application that can do 5000 Messages a minute You can do that with ActivMail, but it takes a little tweaking. We have a client that is sending nearly 4000 emails per minute with just one physical SMTP server (he is using virtual SMTP servers to increase

RE: Variables Collection loop

2002-09-19 Thread Ken Brocx
Works perfectly, thanks Raymond! -Original Message- From: Raymond Camden [mailto:[EMAIL PROTECTED]] Sent: Thursday, September 19, 2002 2:32 PM To: CF-Talk Subject: RE: Variables Collection loop You can only use Variables as a structure in CFMX. Also, your code would be a bit better

RE: Urgent: Need help with a CFFILE error

2002-09-19 Thread Tim Do
map a drive? -Original Message- From: Mitko Gerensky-Greene [mailto:[EMAIL PROTECTED]] Sent: Thursday, September 19, 2002 3:09 PM To: CF-Talk Subject: Re: Urgent: Need help with a CFFILE error OK, thanks. I DO need to read files from another server. What can I use then? Thanks, Mitko

RE: Urgent: Need help with a CFFILE error

2002-09-19 Thread Brook
Don't map a drive, use a UNC path \\servername\share\ A mapped drive will not be connected until you log ina UNC path will always be available. You just need to set the share permissions on the folder (do not set them to everyone..sharesniffer), and make sure the account CF is running

RE: Urgent: Need help with a CFFILE error

2002-09-19 Thread Bryan Love
if you must use a URL then use CFHTTP The content of the file will be in cfhttp.filecontent after the call. +---+ Bryan Love Macromedia Certified Professional Internet Application Developer Database Analyst TeleCommunication Systems [EMAIL

export list of datasources

2002-09-19 Thread charlie griefer
hey all... upgrading our CF tonite. is there a way to export the list of data sources and import to the new machine, or do we have to rekey all by hand? thx, charlie __ Structure your ColdFusion code with Fusebox. Get the

RE: export list of datasources

2002-09-19 Thread Fitch, Tyler
Charlie, If you're using CF5+ - make an archive from the cfadmin - it'll grab all your datasources and cfx tags etc... Good luck, t ** Tyler M. Fitch Certified Advanced ColdFusion 5 Developer http://isitedesign.com

Re: export list of datasources

2002-09-19 Thread charlie griefer
I probably should have been much more specific sorry :| upgrading CF 4.5 to CF 5 thx, charlie Fitch, Tyler writes: Charlie, If you're using CF5+ - make an archive from the cfadmin - it'll grab all your datasources and cfx tags etc... Good luck, t

Re: Jsp Vs Cfm (CFMX) -- Test Code

2002-09-19 Thread Sean A Corfield
On Thursday, September 19, 2002, at 03:07 , Alex Hubner wrote: Does anybody noticed performance differences (such as Joe's looping code) between CFMX for J2EE and stand-alone CFMX Servers? This is a factor of whichever JVM you are using - on Mac OS X, CFMX uses the built-in Apple 1.3.1 JVM

Re: OT: Best JAVA Book...

2002-09-19 Thread Sean A Corfield
On Thursday, September 19, 2002, at 01:25 , Ken Brocx wrote: Hi, I’d like some advice on a good JAVA book. I know CF and ASP, but JAVA is new to me. Thinking In Java by Bruce Eckel is pretty good. I learned Java originally from Sun's own Java Language Tutorial and the other official Java

RE: ArcIMS and Cold Fusion

2002-09-19 Thread Whiterod, David (PLNSA)
Paul, have several intranet sites deployed w/cf5 2 w/cfmx. How do yoou find ArcIMS (4?) with CFMX? There has been a great deal of discussion of the ESRI ArcIMS forum about CFMX not working with ArcIMS - any comments/experiences you would like to share? cf is supposed to be ESRI's web

Re: OT: Best JAVA Book...

2002-09-19 Thread Joe Eugene
The Complete Reference Java 2 by Herbert Schildt Patrick Naughton.. These guys we on on original Java development team and the book is a good foundation... http://www.amazon.com/exec/obidos/tg/detail/-/0072224207/qid=1032481635/sr=1 -1/ref=sr_1_1/104-1985810-9341535?v=glances=books If you are

Re: export list of datasources

2002-09-19 Thread Sean Daniels
On Thursday, September 19, 2002, at 06:56 PM, Fitch, Tyler wrote: If you're using CF5+ - make an archive from the cfadmin - it'll grab all your datasources and cfx tags etc... I've been looking for this functionality in MX; how exactly to you do this?

RE: OT: Macs, Netscape, and table cell heights, oh my

2002-09-19 Thread Kevin Graeme
Unfortunately, there isn't a solution that makes it work. As I said, the height attribute has been deprecated. In HTML 4, they cut it out for the TD and TR tags, and in HTML 4.01 they have now deprecated it for the TABLE tag. The only solution is to redesign to not require it. Just so you don't

Re: OT: Best JAVA Book...

2002-09-19 Thread Sean A Corfield
On Thursday, September 19, 2002, at 05:31 , Joe Eugene wrote: The Complete Reference Java 2 by Herbert Schildt Patrick Naughton.. No, please don't ever buy books by Herbert Schildt! He's terrible! His books are full of misinformation and errors... His C++ books are the absolute pits! Check

Re: OT: Best JAVA Book...

2002-09-19 Thread Sean A Corfield
On Thursday, September 19, 2002, at 04:18 , Sean A Corfield wrote: On Thursday, September 19, 2002, at 01:25 , Ken Brocx wrote: Hi, IǃÙd like some advice on a good JAVA book. I know CF and ASP, but JAVA is new to me. Thinking In Java by Bruce Eckel is pretty good. Also check out:

CFM Resources

2002-09-19 Thread Michael T. Tangorre
Does anyone know if cfm-resources.com has plans to upgrade from CF 5 to MX? Their hosting is very reasonable but I would really like CF MX. Thanks, Mike __ This list and all House of Fusion resources hosted by CFHosting.com.

RE: OT: Best JAVA Book...

2002-09-19 Thread Joe Eugene
No, please don't ever buy books by Herbert Schildt! He's terrible! His books are full of misinformation and errors... His C++ books are the absolute pits! Huh.. this is new Info.. Well.. Patrick Naughton and Herbert Schildt were one of the first(1999 or so) authors of Java.. and they are

RE: Jsp Vs Cfm (CFMX) -- Test Code

2002-09-19 Thread Joe Eugene
You are going to see the BIG performance difference every where CF code in involved... Again we are comparing Strongly Typed Robust Language(Java) to ColdFusion(scripting language)... J2EE complaint and peformance should be taken out from the docs since we are not really seeing the any

RE: Jsp Vs Cfm (CFMX) -- Test Code

2002-09-19 Thread Joe Eugene
I've seen this kind of thing countless times when doing load testing. I'm not able to share load testing results for clients, due to NDAs out the wazoo. NDAs? dont you have a any personal code you have tested? We are not asking for your Work Code... Joe -Original Message- From:

Possible to send out mail for CFerror..?

2002-09-19 Thread han peng
Hi all.. is it possible to configure CFError to send out a mail to administrator automatically.. when user hits an error.? i tried putting cfmail inside CFerror codes... but unsuccessful please advice.. han __ This

Re: Possible to send out mail for CFerror..?

2002-09-19 Thread Critter
-BEGIN PGP SIGNED MESSAGE- Hash: SHA1 oi han!! you could create a page that using javascript will post the error information to an action page, then cfmail that off but I would advise against that. what if it gets caught in some crazy loop, error after error? why not just

RE: Possible to send out mail for CFerror..?

2002-09-19 Thread Matthew Walker
Use something like cferror type=Exception TEMPLATE=error.cfm EXCEPTION=Any and then put cfmail in that template. Be careful not to write code that could cause an error in here though or you could bring down the server. -Original Message- From: han peng [mailto:[EMAIL PROTECTED]] Sent:

Re[2]: Possible to send out mail for CFerror..?

2002-09-19 Thread Critter
-BEGIN PGP SIGNED MESSAGE- Hash: SHA1 oi Matthew!! I don't believe it is possible for CFML code to be placed in an error template, except the error variables. - -- Critz Macromedia Certified Advanced ColdFusion Developer CFX_BotMaster Network=Efnet Channel=ColdFusion -

RE: Re[2]: Possible to send out mail for CFerror..?

2002-09-19 Thread Matthew Walker
Sure is possible. If cferror type=REQUEST then no, but if cferror type=EXCEPTION then yes. -Original Message- From: Critter [mailto:[EMAIL PROTECTED]] Sent: Friday, 20 September 2002 3:42 p.m. To: CF-Talk Subject: Re[2]: Possible to send out mail for CFerror..? -BEGIN PGP

Re: Re[2]: ArcIMS and Cold Fusion

2002-09-19 Thread Paul Hastings
Ok I realize now I meant to ask if anyone has used RouteMap IMS in CF? All I can find on the site is about ASP right now thats a US only product. if we do routing we need to have arcview internet mapserver running someplace talk to thatso no idea. though one of the old team allaire

RE: OT: Best JAVA Book...

2002-09-19 Thread Stacy Young
TIJ and it's free! http://www.mindview.net/Books/TIJ/ -Original Message- From: Sean A Corfield [mailto:[EMAIL PROTECTED]] Sent: Thursday, September 19, 2002 7:18 PM To: CF-Talk Subject: Re: OT: Best JAVA Book... On Thursday, September 19, 2002, at 01:25 , Ken Brocx wrote: Hi, I'Äôd

Re[4]: Possible to send out mail for CFerror..?

2002-09-19 Thread Critter
-BEGIN PGP SIGNED MESSAGE- Hash: SHA1 oi Matthew!! ah. ta - -- Critz Macromedia Certified Advanced ColdFusion Developer CFX_BotMaster Network=Efnet Channel=ColdFusion -BEGIN PGP SIGNATURE- Version: PGP 7.1.1 iQA/AwUBPYqdJRY2uDCuicZ0EQK0XwCdFJWb+JIJQiw5vdKrjLfhxexDbQcAoPLY

RE: OT: Best JAVA Book...

2002-09-19 Thread Dan Haley
I've really liked reading the first few chapters of Thinking in Java and Thinking in C++, but with no background in these languages didn't know if they were any good. I'm glad to see you recommend the Java book. His books can be found online at www.bruceeckel.com http://www.bruceeckel.com ,

Re: ArcIMS and Cold Fusion

2002-09-19 Thread Paul Hastings
How do yoou find ArcIMS (4?) with CFMX? so far ok but i keep breaking my own intranet site, so i can't test that issue w/AXL yet. i guess its because we keep swapping java servlets (jrun3, jrun4, tomcat 4, tomcat 4.x, etc.) have mutiple virtual servers. CFMX not working with ArcIMS - any

Re: ArcIMS and Cold Fusion

2002-09-19 Thread Paul Hastings
As an alternative to arcIMS you might take a look at AutoDesk's MapGuide product: being a dyed-in-the-wool esri shop, bah humbug ;-) autodesk was never a GIS company. drafting then design s/w was their forte they back-stabbed esri... bah humbug indeed.

Why Use Flash Remoting?

2002-09-19 Thread Rick Faircloth
Since request for info can be sent via URL link to an action page where a query is made based upon the URL embedded variables, then returned to the requested page where desired information is displayed... why use Flash Remoting and have to learn a new scripting language? Why not just make

RE: ArcIMS and Cold Fusion

2002-09-19 Thread Whiterod, David (PLNSA)
AutoDesk ??? CAD aint no GIS! In a word - topology __ Get the mailserver that powers this list at http://www.coolfusion.com FAQ: http://www.thenetprofits.co.uk/coldfusion/faq Archives:

RE: ArcIMS and Cold Fusion

2002-09-19 Thread Whiterod, David (PLNSA)
Paul, these days unix is like the relative who doesn't wash much that nobody talks about This is getting a bit OT but I have just come back from the Australian ESRI user conference. Ewen Cameron (ArcObject lead developer) states that ESRI are in the process of sepating out the non-user

Re: ArcIMS and Cold Fusion

2002-09-19 Thread Paul Hastings
This is getting a bit OT but I have just come back from the Australian ESRI more like preaching to the heathens.but yes we should take this off list. __ This list and all House of Fusion resources hosted by CFHosting.com.

OT Generating a data/Enterprise Manager

2002-09-19 Thread Paul Giesenhagen
Hey Folks! I am wanting to export a table and all the data in it into a SQL script that can be ran to import the data into another database. I can script the table creation, and dump the data to a file, but how can I combine the two together so I can run a 'script' and have it create the

RE: OT: Best JAVA Book...

2002-09-19 Thread Joe Eugene
I browsed through it.. Good Book.. it looks like it covers a lot of topics in Java.. Joe -Original Message- From: Dan Haley [mailto:[EMAIL PROTECTED]] Sent: Thursday, September 19, 2002 8:59 PM To: CF-Talk Subject: RE: OT: Best JAVA Book... I've really liked reading the first

<    1   2   3