Starting JRun and CFMX for J2EE at boot on Mac OS X

2003-01-11 Thread Dick Applebaum
A question was asked in an earlier thread - How to start JRun and CFMX for J2EE at boot on Mac OS X. I just posted a procedure at the O'Reilly site: http://www.oreillynet.com/cs/user/view/cs_msg/13216 The Tomcat install outlined at the O'Reilly site:

Re: CDATA Insert problem

2003-01-11 Thread Jesse Houwing
Webmaster wrote: Hi, Can anyone explain how this happened? I use Client vars and it looks like CF got confused and try to insert a duplicate record into the CDATA table. Has anyone else seen this? [Microsoft][ODBC SQL Server Driver][SQL Server] Cannot insert duplicate key row in object 'CDATA'

URL Scope

2003-01-11 Thread Yves Arsenault
Hello, I was just wondering (because I have never come across any such information) if there is a limit to the number of URL variables one can pass to another CF template. TIA, Yves Arsenault Carrefour Infotech 5, Acadian Dr. Charlottetown, PEI C1C 1M2 [EMAIL PROTECTED] (902)368-1895 ext.242

Re: URL Scope

2003-01-11 Thread Dick Applebaum
AFAIK, the official limit (total size of the URL) is 2k. However, many browsers web servers will handle more. Best to use post method, which is theoretically unlimited. Also, as a personal preference, I hate to see/copy/paste/read/click long URLs -- yeech! Dick On Saturday, January 11,

Re: URL Scope

2003-01-11 Thread Jann VanOver
On 1/11/03 4:35 PM, Dick Applebaum [EMAIL PROTECTED] wrote: AFAIK, the official limit (total size of the URL) is 2k. However, many browsers web servers will handle more. Best to use post method, which is theoretically unlimited. Also, as a personal preference, I hate to

OT: Is there an IIS5/MSFTP guru in the house?

2003-01-11 Thread Lee Fuller
Have what will amount to, most likely, a REALLY silly question. But need to talk to someone who's dealt with MSFTP service on IIS5. Can someone email me off-list? lee @prime dna. Net (sorry.. spam/collector killing) TTAIA ~|

Design Pattern Question

2003-01-11 Thread Cutter (CF_Talk)
Has anyone here taken a detailed look at the CFMX (semi) OOP design pattern put forth at http://www.benorama.com? Is anyone here using it? Formed some opinions? Have anything to add (or subtract)? Know who put this together in the first place? As one of my former commanders used to ask

RE: Design Pattern Question

2003-01-11 Thread Peter Bagnato
I think that this is a very healthy design methodology for CF. Ben Forta has been harping for ages about the importance of separating the display, application, and data layers from the CF applications. The methodology outlined in that page presents this to the CF environment. It actually

RE: URL Scope

2003-01-11 Thread Tony Weeg
yves, i ran into that issue, when i was sending color variations, in hex to various pages for lines of reports, i simply store them in client variables and now hardly even have to use url variables, storing client vars in a db, and referencing them through cfid calls to match the values in the

RE: URL Scope

2003-01-11 Thread Yves Arsenault
Thanks! I had never come across any limit. I don't think I've ever seen the question posted either. The list (that's all you people of course) is an awesome resource!! :-) Give yourselves a round of applause!! Yves Arsenault Carrefour Infotech 5, Acadian Dr. Charlottetown, PEI C1C 1M2 [EMAIL

Re: URL Scope

2003-01-11 Thread Yves Arsenault
Cool, thanks. The reason I posted was this: I have a form which is created dynamically, I want to fill the form with all of the information that the user has correctly filled in if any errors occur. The form basically contains attributes for files that have been submitted to the admin. The admin

RE: Detecting Flash for use in CFGraph

2003-01-11 Thread Robert Bailey
Here ya go http://www.xs4all.nl/~ppk/js/flash.html Robert Bailey [EMAIL PROTECTED] Famous for nothing! http://www.tinetics.com -Original Message- From: Antony Sideropoulos [mailto:[EMAIL PROTECTED]] Sent: Saturday, January 11, 2003 8:16 PM To: CF-Talk Subject: Detecting Flash

RE: How do I pick out part of the string?

2003-01-11 Thread Robert Bailey
Is announcements.cfm going to change? Or just looking for it in the path? You can use Find() and FindNoCase() Not sure what you are trying to do. Will the string change? Will it be a different document every time? Like maybe /cfdocs/lifemoves/html/blah.cfm? Robert Bailey [EMAIL PROTECTED]

Re: How do I pick out part of the string?

2003-01-11 Thread Marius Milosav
listLast (/cfdocs/lifemoves/html/announcements.cfm , /) Marius Milosav www.scorpiosoft.com It's not about technology, it's about people. Virtual Company (VICO) Application Demo www.scorpiosoft.com/vicodemo/login.cfm - Original Message - From: Rick Faircloth [EMAIL PROTECTED] To: CF-Talk

Re: CDATA Insert problem

2003-01-11 Thread cf-talk
I should have been more clear... They had configured the CFMX Administrator to delete inactive records after 3 days. When we looked at the CDATA and CGLOBAL tables there were records going back to June of 2001! The site is an extranet site, not a public web server... and no, they're not THAT

Re: CDATA Insert problem

2003-01-11 Thread Kwang Suh
Yeah, I've had the same problem as well. We ended up creating a SQL Server job that nuked old records instead. - Original Message - From: [EMAIL PROTECTED] To: CF-Talk [EMAIL PROTECTED] Sent: Saturday, January 11, 2003 10:10 PM Subject: Re: CDATA Insert problem I should have been more

RE: How do I pick out part of the string?

2003-01-11 Thread Larry Juncker
ListLast(string,/) -Original Message- From: Rick Faircloth [mailto:[EMAIL PROTECTED]] Sent: Saturday, January 11, 2003 10:32 PM To: CF-Talk Subject: How do I pick out part of the string? Hi, all. How do I pick out announcements.cfm from this string:

RE: How do I pick out part of the string?

2003-01-11 Thread Rick Faircloth
Hi, Robert. Yes, the string I'm looking for will change. I'm setting up a stats log for page hits and wanted to display just the page name, such as announcements.cfm or index.cfm instead of the entire path. So it does need to be dynamic... I'd be asking CF to find the string after the last /

Re: CDATA Insert problem

2003-01-11 Thread cf-talk
You might want to check your CDATA and CGLOBAL tables and make sure you don't have a ton of records in there. It has been my experience that the CDATA and CGLOBAL tables DO NOT get purged like they're supposed to. For example, if you tell the CF Administrator to clear records older than 3 days

RE: How do I pick out part of the string?

2003-01-11 Thread Robert Bailey
Then you can use listLast (/cfdocs/lifemoves/html/announcements.cfm , /) and will get the last one, as Marius said before, lol. Sorry, just one to ask more questions then jump, was not sure if you were looking at where it started in the string or just wanted the value. My bad :) Robert Bailey

RE: How do I pick out part of the string?

2003-01-11 Thread Rick Faircloth
Thanks, Marius (and Larry and Robert) I knew it would be something simple like that, but I just wasn't able to hit upon it, even though I did search through some documentation on string functions. Guess it's just too late at night to be doing this... Rick -Original Message- From:

RE: How do I pick out part of the string?

2003-01-11 Thread Robert Bailey
Just put the variable where /cfdocs/lifemoves/html/announcements.cfm is, without the quotes BTW Robert Bailey [EMAIL PROTECTED] Famous for nothing! http://www.tinetics.com -Original Message- From: Robert Bailey [mailto:[EMAIL PROTECTED]] Sent: Saturday, January 11, 2003 8:50 PM

RE: Unix database syntactically similar to SQL Server?

2003-01-11 Thread Dave Watts
It all comes down to the complexity of the SQL -- specifically how much server-specific stuff you need to do. Obscure (or obsfucated) functions (e.g. MySQL password hash function), crazy things like code pages and collation orders, queries with linked servers, etc. All that stuff will

RE: How do I pick out part of the string?

2003-01-11 Thread S . Isaac Dealey
Hey Rick -- If you're looking to get the file name from a file path string, I'd use getfilefrompath() instead of listlast() -- getfilefrompath() works independant of the path delimiter, which may sometimes not be / it may be \ -- you could also add \ to the delimiters of listlast, but I also

Client variable problems on MX

2003-01-11 Thread Josh Trefethen
I have a server running CFMX that seems to give out a new client variables on each click...never keeping state. Anyone seen this? -- Josh Trefethen .:[ Exciteworks, Inc ]::[ http://exciteworks.com ]:. .::[ cf hosting on linux ]::[ consulting ]::[ expertise ]::.

Re: CDATA Insert problem

2003-01-11 Thread Webmaster
Hi Guys, The records are being deleted as scheduled. I installed the fix for this. Take a look at http://www.macromedia.com/v1/Handlers/index.cfm?ID=22730Method=Full This fixed that problem for me. However, I still get the CDATA insert failure about once every two weeks. I am using the long