RE: More fun with regular expressions

2004-06-29 Thread Pascal Peters
I repeat: "^[[:alnum:]]*([a-z][0-9]|[0-9][a-z])[[:alnum:]]*$" > -Original Message- > From: Charlie Griefer [mailto:[EMAIL PROTECTED] > Sent: woensdag 30 juni 2004 3:37 > To: CF-Talk > Subject: RE: More fun with regular expressions > > ...but that won't ensure at least one alpha and one

RE: Debugging CFMX

2004-06-29 Thread Barney Boisvert
I'm utterly perplexed as to how you could possibly have three log entries, unless your server cycled between each one. Did you try shortening the timeout lengths?  That way request will just error out, rather than waiting around and putting pressure on CF.  Since they only need to be aquired a sin

RE: Debugging CFMX

2004-06-29 Thread Brook Davies
Well, I restarted the service to 'test' the new code (after testing under no load on the dev server) and the requests again started stacking up and I could not get the server to start without adding conditional code to only allow my IP through... The new code looks like this:   struct

RE: Debugging CFMX

2004-06-29 Thread Barney Boisvert
You are "mostly" correct.  I missed the inner isDefined() with all the wrapping, so you're right about that.  However, since the variable you're checking isn't the last variable initialized and/or the check isn't within a CFLOCK, you can potentially get request that proceed past the initialization,

RE: Debugging CFMX

2004-06-29 Thread Brook Davies
Ahh, I think I just figured it out! The flag, is based on an application var that is locked when being created, so the check can't run until that lock finishes which makes it safe. lol  Thx Brook [Todays Threads] [This Message] [Subscription] [Fast Unsubscribe] [User Settings] [Donatio

RE: Debugging CFMX

2004-06-29 Thread Brook Davies
Barney, I'm just re-reading this now and about to implement some of your suggestions. I though that this did the same thing, because the isdefined is checked inside the lock also? What am I missing? (attributes.refreshnow)>         isdefined("appl

Re: Notifying Server of Client Side Events

2004-06-29 Thread stylo stylo
I think Brent's rpc library is overkill these days (ns4?) but maybe you need it. Pengoworks also has an api using an iframe. For new browsers, you can also just load scripts dynamically except in Safari (annoyingly won't act on them), or use httpRequest in Moz/IE Win/Safari. Apple developer has a g

Re: dynamic path in cfc

2004-06-29 Thread Paul Kenney
Perfectly legal.  Go for it. On Tue, 29 Jun 2004 23:19:19 -0400, Ben Densmore <[EMAIL PROTECTED]> wrote: > > If I create an instance of a cfc using createObject() can I use an application variable in the path that points to the cfc or does the path have to be hard coded? > > > > Thanks, > Ben

RE: dynamic path in cfc

2004-06-29 Thread Barney Boisvert
You can use a variable to create objects.  You can't, however, use a variable in the type attribute of CFARGUMENT or the returntype attribute of CFFUNCTION. Cheers, barneyb > -Original Message- > From: Ben Densmore [mailto:[EMAIL PROTECTED] > Sent: Tuesday, June 29, 2004 8:19 PM > To: C

dynamic path in cfc

2004-06-29 Thread Ben Densmore
If I create an instance of a cfc using createObject() can I use an application variable in the path that points to the cfc or does the path have to be hard coded? Thanks, Ben [Todays Threads] [This Message] [Subscription] [Fast Unsubscribe] [User Settings] [Donations and Support]

Re: More fun with regular expressions

2004-06-29 Thread Dick Applebaum
You might be able to do it in one regexp but 2 will be a lot less effort & a lot easier to understand 6 months from now. Dick On Jun 29, 2004, at 6:37 PM, Charlie Griefer wrote: > ...but that won't ensure at least one alpha and one numeric... > >  A will pass (should fail) >  12345 will pas

Re: Create Links Symlinks with CFMX/Java

2004-06-29 Thread Dick Applebaum
Nothing happened So I added a File Exists test (entire code below) Then tried "escaping" the & BTW, CFContent could not resolve a manually created symlink --- interesting Dick #Application.Tracks[URL.TID]["Location"]# "")) /> #FilePath# #FileType#     file=#FileP

Re: Blackstone @ CF-FUN '04

2004-06-29 Thread Joe Rinehart
John, Just plugging in the ethernet cable is dangerous :) I'm not suggesting creating any client-side code providing any type of description of the database.  Basically, I'm just suggesting that CFFORM be combined, slightly, with CFINSERT/CFUPDATE so that on post the CFFORM tag would realize it's

Re: Blackstone @ CF-FUN '04

2004-06-29 Thread Joe Rinehart
John, Just plugging in the ethernet cable is dangerous :) I'm not suggesting creating any client-side code providing any type of description of the database.  Basically, I'm just suggesting that CFFORM be combined, slightly, with CFINSERT/CFUPDATE so that on post the CFFORM tag would realize it's

RE: More fun with regular expressions

2004-06-29 Thread Charlie Griefer
...but that won't ensure at least one alpha and one numeric... A will pass (should fail) 12345 will pass (should fail) Maybe it should just be two separate regex calls?  One to check for an alpha and a number...and another to check for no non-alphanumerics (?) Charlie -Original Message-

Re: Blackstone @ CF-FUN '04

2004-06-29 Thread Frank Mamone
Is this an original feature of common web development platforms? Is something like this already available in .NET, J2EE, Websphere etc? -F   - Original Message -   From: Samuel R. Neff   To: CF-Talk   Sent: Monday, June 28, 2004 12:14 PM   Subject: RE: Blackstone @ CF-FUN '04   What he

RE: J2EE SessionID with CFMX6.1 and Applets

2004-06-29 Thread Steven Erat
The session data exists only in memory on the server side and the client applet has no knowledge of them and no way to directly access them on the server.  You could have a cfm page configured to serialize the session parameters and the applet could periodically connect back to the server to this s

Re: Create Links Symlinks with CFMX/Java

2004-06-29 Thread Jordan Michaels
Interesting. Mind if I ask what went wrong? Was it passing an incorrect path or was the path not being interpreted correctly? Warm regards, Jordan Dick Applebaum wrote: > I actually tried "escaping" the ampersand with: > > 2 ampersands > \& > > neither works. > > Dick > On Jun 29, 2004, at 5:32

Re: Create Links Symlinks with CFMX/Java

2004-06-29 Thread Dick Applebaum
I am on the Mac -- but I want the app to run on windows, too. I will need to do some reading & fillding to try the Java suggestions, but I will. IF I can find/access the file with Java, then I guess I will need to read it into a variable so I can serve it with cfcontent. I'd rather just cfcont

Re: Create Links Symlinks with CFMX/Java

2004-06-29 Thread Dick Applebaum
I actually tried "escaping" the ampersand with: 2 ampersands \& neither works. Dick On Jun 29, 2004, at 5:32 PM, Jordan Michaels wrote: > Would it be possible for you to do a Replace function on the path > before >  you pass it on to the tag? Just replace the one ampersand with two of >  them

J2EE SessionID with CFMX6.1 and Applets

2004-06-29 Thread Dr ML
Hi everyone! I am having a problem and hopefully someone here can give me a hand. I have an appication running in J2EE, CFMX 6.1. When the user logs in to the system, a series of session values are set. On one of the pages, a java applet runs that uploads a file. I need to share the user's SESSION

Re: More fun with regular expressions

2004-06-29 Thread Dick Applebaum
ReFindNoCase("[^A-Z0-9]", yourSource) HTH Dick On Jun 29, 2004, at 1:40 PM, Charlie Griefer wrote: > Hey regexp gurus... > >  I'm trying to formulate an _expression_ that checks a string for at > least one >  alpha and at least one numeric character, but -no- non-alphanumeric >  characters. >

RE: Notifying Server of Client Side Events

2004-06-29 Thread Jim Davis
Here's an old article I wrote with a simple mechanism to do that: http://www.depressedpress.com/DepressedPress/Content/ColdFusion/Essays/GIFAs Pipe/Index.cfm Should be just what you need. Jim Davis From: Nick Baker [mailto:[EMAIL PROTECTED] Sent: Tuesday, June 29, 2004 11:20 AM To: CF-Talk Sub

Re: Blackstone @ CF-FUN '04

2004-06-29 Thread Dick Applebaum
Thanks Brandon I tried RealBASIC years ago and it still carried many of the disadvantages that are inherent in the BASIC language. A quick google shows me that they have just added SQL query support to the latest release. Prolly a step backwards for what I want to do> Dick On Jun 29, 2004, a

Re: Blackstone @ CF-FUN '04

2004-06-29 Thread Dick Applebaum
On Jun 29, 2004, at 1:58 PM, Jochem van Dieten wrote: > >  > app in the "ultimate" way -- having the ability to get the results I >  > need, can outweigh how "elegantly" the program was written. >  > >  > I have nothing against learning other languages -- if I have a need. > >  All we are saying i

Re: Blackstone @ CF-FUN '04

2004-06-29 Thread Dick Applebaum
On Jun 29, 2004, at 2:11 PM, Ben Forta wrote: > Correct, CF runs on top of a J2EE server (whether integrated or not), > and >  that does not change. Gateways allow for all sorts of events (perhaps > not >  HTTP originated events) to trigger ColdFusion processing, and > gateways allow >  CF to r

Re: Create Links Symlinks with CFMX/Java

2004-06-29 Thread Jordan Michaels
Would it be possible for you to do a Replace function on the path before you pass it on to the tag? Just replace the one ampersand with two of them and CF should interpret it correctly. Just an idea... -- Warm regards, Jordan Michaels Vivio Technologies http://www.viviotech.net/ [EMAIL PROTECT

RE: Create Links Symlinks with CFMX/Java

2004-06-29 Thread Barney Boisvert
Can you create a java.io.File object with the path, and get any attributes (like it's size)?  What does getCanonicalPath() return? You on windows, or your Mac?  If you're on windows, you could manually conver the directories to the progra~1 style, and then use that. Cheers, barneyb > -Origin

Re: Create Links Symlinks with CFMX/Java

2004-06-29 Thread Dick Applebaum
On Jun 29, 2004, at 12:56 PM, Mark Drew wrote: > I am not sure if this would work (as I am not sure what precicely you >  are trying to achieve) but would CF mappings help in this case? I don't think mappings are the answer. Here's an example of the specific problem -- I want to serve an .mp3 (

Re: How does CF generated Java bytecode compare with Native Java ytecode

2004-06-29 Thread Dick Applebaum
On Jun 29, 2004, at 12:01 PM, Samuel Neff wrote: >  The advantage of CF is you can use CF for most things and when you > have >  something that is processor intensive you can use Java, either a > class in >  the classpath, javabean, ejb, or even a jsp page (I like to use jsp > pages >  since it

Re: Blackstone @ CF-FUN '04

2004-06-29 Thread Dick Applebaum
You can use Jetty's Servlet Container -- Jetty also has a Web Server, but I am not sure that you need that if you aren't responding to HTTP events. Others have suggested that you could a desktop Flash application to provide the GUI and initiate events similar to web service calls. This is prob

Re: E-mail Marketing/Tracking Software

2004-06-29 Thread Matthew Fusfield
DRK7 included a sample app called InTouch. I don't know that it includes the tracking features you want, but might be a good starting point for writing your own. Regards, Matt - Original Message - From: Butch Zaccheo <[EMAIL PROTECTED]> Date: Tue, 29 Jun 2004 14:55:38 -0700 Subject: E-ma

RE: Debugging CFMX

2004-06-29 Thread Brook Davies
Thanks for the feedback regarding locking from Barney and also how to debug running threads from Steve. I'm gonna try these tonight! Brook [Todays Threads] [This Message] [Subscription] [Fast Unsubscribe] [User Settings] [Donations and Support]

Re: E-mail Marketing/Tracking Software

2004-06-29 Thread Jordan Michaels
There are interesting things in the marketing world - although I personally know very little about it (not being a marketing major or anything). First off, there is such a thing called "Push marketing" and another thing called "Pull Marketing". The kind of marketing where you see a message that say

Re: Duplicate inserts

2004-06-29 Thread Joshua OConnor-Rose
Thanks 2 birds with one stone and unfortunately a troll hides behind them what a headache ok so theres this wintertree spell checking script on this site that I'm working on. it requires the onsubmitbt() script that changes the action of the form and then submits the form. this script is run on e

RE: E-mail Marketing/Tracking Software

2004-06-29 Thread Burns, John D
Won't be very successfuly if it is written.  Outlook now won't load images by default unless the user specifically asks for it and that would be the only way to track how many have been opened.  This is a great thing to be able to do, but, thanks to SPAMmers, we have lost some of that ability.  Goo

E-mail Marketing/Tracking Software

2004-06-29 Thread Butch Zaccheo
I¹m looking for pre-written application to start a permission based e-mail campaign. Is there anything that already exists written in coldfusion? I need to be able to track email after it¹s been sent (has e-mail been opened, how many times viewed, etc.). Any suggestions would be much appreciated..

RE: Blackstone @ CF-FUN '04

2004-06-29 Thread Burns, John D
This sounds like it could be dangerous though.  If there was some sort of code generated on the client side that could pass directly to some kind of "auto-input" to a database, it seems like someone could spoof the client and do some damage to your server or something.  I wouldn't like putting any

RE: Blackstone @ CF-FUN '04

2004-06-29 Thread Ben Forta
Correct, CF runs on top of a J2EE server (whether integrated or not), and that does not change. Gateways allow for all sorts of events (perhaps not HTTP originated events) to trigger ColdFusion processing, and gateways allow CF to return data to "clients" other than the web browser. The underlying

RE: Debugging CFMX

2004-06-29 Thread Barney Boisvert
Your lock will still cause every request that comes in before the first request finishes to recreate all the application-scope CFCs, because the conditional is _outside_ the CFLOCK tag.  In other words, request 1 will come in, do the conditional, do the lock, do the initialization.  Request 2 will

Re: Blackstone @ CF-FUN '04

2004-06-29 Thread Jochem van Dieten
Dick Applebaum wrote: > On Jun 29, 2004, at 12:00 PM, Adrocknaphobia wrote: >> >> The one that had to install >> a webserver to work, wouldn't even make it to my top 5. > > But, from what Ben is demoing, it looks as if you don't need a web > server or a browser. It looks like you can replace th

RE: Debugging CFMX

2004-06-29 Thread Steven Erat
Everyone can stop rubbing their eyes now... Michael's email parser stripped out the example included at the end of my previous message.   But you get the point.   _   From: Steven Erat [mailto:[EMAIL PROTECTED] Sent: Tuesday, June 29, 2004 4:31 PM To: CF-Talk Subject: RE: Debugging CFMX Br

Re: DSNless Connection

2004-06-29 Thread Jochem van Dieten
cfhelp wrote: > Here is the full problem. > > For the last few months I have had nothing but problems with CFMX Timing out > connection to Access Databases or JRUN Shutting Down. I decided to move all > the Access Database Websites to a separate server to see if I could isolate > the problem but n

RE: Debugging CFMX

2004-06-29 Thread Brook Davies
Thanks for the feedback Barneyb, I appreciate it. I'm having massive trouble getting this app to start-up under load. I have already de-selected the save class files option because there were LOTS of class files, and I think this helped a bit. There is definitely something fishy going on, but I

RE: More fun with regular expressions

2004-06-29 Thread Pascal Peters
The difficulty is at least one of each. I think this should do it "^[[:alnum:]]*([a-z][0-9]|[0-9][a-z])[[:alnum:]]*$" Not tested Pascal > -Original Message- > From: Charlie Griefer [mailto:[EMAIL PROTECTED] > Sent: dinsdag 29 juni 2004 22:40 > To: CF-Talk > Subject: More fun with regu

More fun with regular expressions

2004-06-29 Thread Charlie Griefer
Hey regexp gurus... I'm trying to formulate an _expression_ that checks a string for at least one alpha and at least one numeric character, but -no- non-alphanumeric characters. Getting the alphanumeric combo I seem to have been able to do...but adding the 'no non-alphanumerics' into the _express

RE: Debugging CFMX

2004-06-29 Thread Steven Erat
Brook, You could generate a thread dump shortly after starting or some other point in time.  A thread dump will show all the ColdFusion requests that came in via the webserver connector, shown as having a prefix of "jrpp-xx".   http://www.macromedia.com/support/coldfusion/ts/documents/tn18339

RE: Debugging CFMX

2004-06-29 Thread Barney Boisvert
Do you have a lot of application variables/CFC instances that you're setting up on the first reqeust to the application?  Make sure that you're locking them correctly, effectively single threading requests until the first request has finished initializing everything.  That's has the side effect of

RE: Create Links Symlinks with CFMX/Java

2004-06-29 Thread Perez, Percy
I remember CYGWIN from redhat included "ln".  You can use it to create links.  I think it worked for files as well as directories. Percy   _   From: Mark Drew [mailto:[EMAIL PROTECTED] Sent: Tuesday, June 29, 2004 3:56 PM To: CF-Talk Subject: Re: Create Links Symlinks with CFMX/Java I am

RE: No default zero

2004-06-29 Thread Pascal Peters
If I understand correctly, you want to replace empty form fields by zero? form["ACRES_" & i] = Val(form["ACRES_" & i]); form["AMT_" & i] = Val(form["AMT_" & i]); amtInsurance = form["ACRES_" & i] * form["AMT_" & i]; Pascal > -Original Message- > From: Jillian Carroll [mailto:[EMAIL PROTE

Re: Blackstone @ CF-FUN '04

2004-06-29 Thread Dave Carabetta
On Tue, 29 Jun 2004 15:31:14 -0400, Tom Jordahl <[EMAIL PROTECTED]> wrote: > > Macromedia Central was designed around "occasionally connected computing". > Things like DB queries would be refreshed when the computer was connected; > otherwise the cached data is used. > > Check it out. > Tom, ha

RE: Blackstone @ CF-FUN '04

2004-06-29 Thread Samuel Neff
That wasn't it at all... it was that CF can respond to events other than HTTP events.  You still need a J2EE server to host the CFMX server. Sam -- Blog:  http://www.rewindlife.com Chart: http://www.blinex.com/products/charting -

Re: Create Links Symlinks with CFMX/Java

2004-06-29 Thread Mark Drew
I am not sure if this would work (as I am not sure what precicely you are trying to achieve) but would CF mappings help in this case? On Tue, 29 Jun 2004 13:55:58 -0400, Dave Watts <[EMAIL PROTECTED]> wrote: > > > Can these file/directory names contain characters like &, smart quotes > > -- any t

No default zero

2004-06-29 Thread Jillian Carroll
I've been playing with this for a while.  I don't want zero's to be visible in these form fields, I just want them to be blank until/unless a value is entered. The problem is that I get an error when the calculation is done (for amtInsurance) on the fields that are 'blank'. "Form.ACRES_#i#"=va

Re: Blackstone @ CF-FUN '04

2004-06-29 Thread Dick Applebaum
On Jun 29, 2004, at 11:10 AM, Dave Watts wrote: > > Well, here's the dilemma(s) >  > >  > I want to write apps that: >  > >  > -- run on Mac, 'Nix, windows desktops >  > >  > ... >  > >  > So what are the tools available? >  > >  > Java >  > JSP >  > _javascript_ >  > C >  > Perl >  > Other cross-

Re: Blackstone @ CF-FUN '04

2004-06-29 Thread Rick Root
Dick Applebaum wrote: > > But, from what Ben is demoing, it looks as if you don't need a web > server or a browser. Sure, if user interaction is not required. - Rick [Todays Threads] [This Message] [Subscription] [Fast Unsubscribe] [User Settings] [Donations and Support]

Debugging CFMX

2004-06-29 Thread Brook Davies
My CFMX server has tons of trouble starting up under load. Is there a debugging method I can use to see exactly what each thread is doing when trying to start up or someother way I can find the problem? Brook [Todays Threads] [This Message] [Subscription] [Fast Unsubscribe] [User Settin

Re: Blackstone @ CF-FUN '04

2004-06-29 Thread Dick Applebaum
On Jun 29, 2004, at 12:00 PM, Adrocknaphobia wrote: > I'd learn Java or VB. Writing a desktop application in CF seems like a >  work-around. >  From an IT manager's perspective, I have 10 proposals on my desk to >  develop a new desktop app for my company. There are other perspectives than an IT

RE: Duplicate inserts

2004-06-29 Thread Pascal Peters
Form.fieldnames can have duplicate entries if you have a group of checkboxes or a multiple select. I haven't examined the code closely and I have no idea what is in the form, but it could be an explanation. > -Original Message- > From: Joshua OConnor-Rose [mailto:[EMAIL PROTECTED] > Sent

Re: Duplicate inserts

2004-06-29 Thread Claude Schneegans
>>The problem was that he was doing a JS submit in the onsubmit of the form. This would submit the form twice. I confirm, also had this problem a few week ago... Pretty hard to trace. -- ___ REUSE CODE! Use custom tags; See http://www.contentbox.com/claude/cust

RE: Blackstone @ CF-FUN '04

2004-06-29 Thread Tom Jordahl
Macromedia Central was designed around "occasionally connected computing". Things like DB queries would be refreshed when the computer was connected; otherwise the cached data is used. Check it out. -- Tom Jordahl Macromedia Server Development -Original Message- From: Perez, Percy [mailt

Re: Blackstone @ CF-FUN '04

2004-06-29 Thread Brandon Harper
Dick, You might want to check out REALbasic, it seems to have most all of what you are looking for: http://www.realsoftware.com/ I've never used it myself, but one of my friends at IBM uses it to write cross platform utilities. Hopefully that's of some help. - Brandon --

Re: Duplicate inserts

2004-06-29 Thread George Abraham
Pascal's right. I had the same problem and I kept looking at the action page, thinking that was to blame. But the problem was a double submit on the form page. George [Todays Threads] [This Message] [Subscription] [Fast Unsubscribe] [User Settings] [Donations and Support]

RE: How does CF generated Java bytecode compare with Native Java ytecode

2004-06-29 Thread Samuel Neff
It really depends on what you're doing.  For the vast majority of cases,the performance different in cf vs java is not significant, but in some cases it is.  I re-wrote one snippet of code from cfml to jsp and reduced processing time from ~20 seconds to under 100 milliseconds.  This particular snip

Re: cfMail senior moment - including grouped query results

2004-06-29 Thread Ray Champagne
I have no answer, but is one of the partners related to the Jason Voorhees? Ray At 02:54 PM 6/29/2004, you wrote: >Sorry to burden the list with my stupid question, but my brain is >withholding CF knowledge from me today. > >I'm trying to send a single message to a single address that contains a

Re: Blackstone @ CF-FUN '04

2004-06-29 Thread Adrocknaphobia
I'd learn Java or VB. Writing a desktop application in CF seems like a work-around. >From an IT manager's perspective, I have 10 proposals on my desk to develop a new desktop app for my company. The one that had to install a webserver to work, wouldn't even make it to my top 5. From my perpective t

cfMail senior moment - including grouped query results

2004-06-29 Thread Nathan C. Smith
Sorry to burden the list with my stupid question, but my brain is withholding CF knowledge from me today. I'm trying to send a single message to a single address that contains a "grouped Query". I want to send a list of items grouped by individual.  When I use inside  the tags I get an error.

Re: regex in studio/dreamweaver

2004-06-29 Thread Ben Doom
On the other hand, before I get the caffeine flow going, I can't spell "caffeiene".  :-) Glad it worked for you. --Ben Deanna Schneider wrote: > *sigh* See, even without caffeine you are better at this than I am. I hadn't > thought of doing that. *g* > > - Original Message - > Fro

Re: CFGRAPH issues?

2004-06-29 Thread Ray Champagne
In 5.0 (their debut, I believe), I just heard that there were a lot of bugs.  If that is the consensus, then I would be thrilled. I don't remember where or when I saw that, since it was so long ago. Ray At 02:46 PM 6/29/2004, you wrote: >I've only used CFCHART with CFMX, but I've never had any

Re: CFGRAPH issues?

2004-06-29 Thread Jordan Michaels
I've only used CFCHART with CFMX, but I've never had any problems with it at all. What kind of problems were users saying that they were having? I found them easy-to-use and extremely useful. Users seem like them a lot too. -- Warm regards, Jordan Michaels Vivio Technologies http://www.viviote

Re: regex in studio/dreamweaver

2004-06-29 Thread Deanna Schneider
Same error in studio - bad _expression_ format or internal error. Maybe it's just reboot time (or install that homesite disk sitting on my desk over there that I haven't gotten to yet). - Original Message - From: "Pascal Peters" > Did you try ]*>(.*) > > [Todays Threads] [This Messag

Re: CFGRAPH issues?

2004-06-29 Thread Ray Champagne
anybody? Ray At 10:24 AM 6/29/2004, you wrote: >I am re-deploying a CF based app that was written in CF in 2001, which >extensively uses KavaChart for graphs of emissions from a trash burning >plant.  The charts do not get that complicated, usually just bar and line >graphs as a value extende

Re: regex in studio/dreamweaver

2004-06-29 Thread Deanna Schneider
*sigh* See, even without caffeine you are better at this than I am. I hadn't thought of doing that. *g* - Original Message - From: "Ben Doom" > If I were just trying to remove all beginning and end span tags, I'd use > something like > > ]*> > > and replace it with the empty string.

RE: How does CF generated Java bytecode compare with Native Java ytecode

2004-06-29 Thread Barney Boisvert
I don't think so.  That was my original point: who cares how efficient CF's generated Java is? If you're very concerned about performance, you might consider switching to another platform, but I'm pretty confident that you can get good enough performance out of CF if you handle your DB interaction

RE: Duplicate inserts

2004-06-29 Thread Joshua OConnor-Rose
I don't think thats it. I'm not mapped to the server where the database is. When I refresh I don't get the same error. -Joshua O'Connor-Rose -All is Good --- Barney Boisvert <[EMAIL PROTECTED]> wrote: > The "locked by admin" error is because you've got > the table open in design > view in the Acc

RE: verity error help

2004-06-29 Thread Steven Erat
Hi Doug, This seems to be a somewhat common Verity error, outside of ColdFusion even: http://www.google.com/search?q=%22Error+%23+-2%22++Error+E3-0005 &num=100&hl=en&lr=&ie=UTF-8&c2coff=1&safe=off&filter=0 Maybe you could try my custom tag CF_MKVDK to generate a verity mkvdk log file.  The l

RE: Blackstone @ CF-FUN '04

2004-06-29 Thread Dave Watts
> Well, here's the dilemma(s) > > I want to write apps that: > > -- run on Mac, 'Nix, windows desktops > > ... > > So what are the tools available? > > Java > JSP > _javascript_ > C > Perl > Other cross-platform scripting languages > PHP > CFML Off the top of my head, I might suggest Director or

Re: Share the ASP session

2004-06-29 Thread Asim Manzur
ok here I am so far. #cfhttp.responseHeader.Location# #cfhttp.header# #cfhttp.statuscode# #cfhttp.FileContent# the url is basically the link of the ASP file which is checking that the use is logged in or not. It always return to the redirect location. Infact if I put the URL

RE: Duplicate inserts

2004-06-29 Thread Pascal Peters
A colleague of mine had that problem. The problem was that he was doing a JS submit in the onsubmit of the form. This would submit the form twice. Pascal > -Original Message- > From: Joshua OConnor-Rose [mailto:[EMAIL PROTECTED] > Sent: dinsdag 29 juni 2004 19:08 > To: CF-Talk > Subject:

RE: How does CF generated Java bytecode compare with Native Java ytecode

2004-06-29 Thread Calvin Ward
ahhh, but is it a significant difference? -Original Message- From:  Barney Boisvert Date:  6/29/04 12:44 pm To:  CF-Talk Subj:  RE: How does CF generated Java bytecode compare with Native Java  ytecode I don't know by how much, but it'll definitely be slower than a comparable Servlet, an

RE: Create Links Symlinks with CFMX/Java

2004-06-29 Thread Dave Watts
> Can these file/directory names contain characters like &, smart quotes > -- any thing that could be found in song titles, etc. Almost anything: http://msdn.microsoft.com/library/default.asp?url=""> /naming_a_file.asp http://blogs.msdn.com/brian_dewey/archive/2004/01/19/60263.aspx > If so, can

Re: Blackstone @ CF-FUN '04

2004-06-29 Thread Dick Applebaum
On Jun 29, 2004, at 6:49 AM, Dave Watts wrote: > > >  So are you playing devil's advocate or do you really believe CF >  > > would be good to use for desktop apps??  :-) >  > >  > No, I am serious ... Dave Watts pointed out that "If all you have is >  > a hammer, everything looks like a nail" >  >

RE: Duplicate inserts

2004-06-29 Thread Barney Boisvert
The "locked by admin" error is because you've got the table open in design view in the Access program, so it won't allow anyone to change it. Cheers, barneyb > -Original Message- > From: Joshua OConnor-Rose [mailto:[EMAIL PROTECTED] > Sent: Tuesday, June 29, 2004 10:34 AM > To: CF-Talk >

Re: Create Links Symlinks with CFMX/Java

2004-06-29 Thread Dick Applebaum
On Jun 29, 2004, at 10:27 AM, Dave Watts wrote: > > BTW, doesn't windows provide a "Alias" or pseudo-file capability -- >  > like those little things on the desktop that represent an > application >  > contained elsewhere in the file system. > >  Those are called shortcuts, and they're not really

Re: Duplicate inserts

2004-06-29 Thread Joshua OConnor-Rose
I do have the code  (some things to note) -I claim no credit for this code -I did check debuging and the inserts only list once in the debugging code -The database is access (and unfortunately won't be changed) Oh and while I'm here anybody come up with any solutions around. [Microsoft][ODBC M

RE: Create Links Symlinks with CFMX/Java

2004-06-29 Thread Dave Watts
> BTW, doesn't windows provide a "Alias" or pseudo-file capability -- > like those little things on the desktop that represent an application > contained elsewhere in the file system. Those are called shortcuts, and they're not really the same as a symbolic link. They're simply files that contai

Re: Duplicate inserts

2004-06-29 Thread mavinson
got code? Joshua OConnor-Rose <[EMAIL PROTECTED]> 06/29/2004 01:07 PM Please respond to cf-talk To: CF-Talk <[EMAIL PROTECTED]> cc: Subject:Duplicate inserts I'm having an issue with duplicate records being created on a single insert (at least on the debugg

verity error help

2004-06-29 Thread Doug James
We are using RedHat AS2.1 and we have just migrated to 6.1MX. I received a note from a user that they got a verity error message. "An error occurred while performing an operation in the Search Engine native library. ...CFIndexTagException: Error # -2 Error E3-0005 ...Attach: /opt/coldfusionmx/v

Re: Duplicate inserts

2004-06-29 Thread brobborb
show the code!   - Original Message -   From: Joshua OConnor-Rose   To: CF-Talk   Sent: Tuesday, June 29, 2004 12:07 PM   Subject: Duplicate inserts   I'm having an issue with duplicate records being   created on a single insert (at least on the debugging   side)   does anybody kno

Duplicate inserts

2004-06-29 Thread Joshua OConnor-Rose
I'm having an issue with duplicate records being created on a single insert (at least on the debugging side) does anybody know of any issues regarding this. Its not the first time I've seen it. I thought I posted this before but it didn't come up on a search. -Joshua O'Connor-Rose -all is Good

Re: Create Links Symlinks with CFMX/Java

2004-06-29 Thread Dick Applebaum
kind of a long story ... I have lots of files buried in the file structure of the OS (Mac OS X). They consist of audio tracks, images and movies. All of these (and the file structure) are maintained by Apple-supplied iLife programs (iTunes, iPhoto, iMovie, etc.) The file names/directory names

Re: first time array

2004-06-29 Thread Joe Rinehart
Frank, Yep, you're going down the right track - that'd pretty much copy elements out of someCollection into your books structure. An example pulling the "books" from a database:   SELECT isbn, author, title   FROM books                      -joe [Todays Threads] [This Message

Re: Image details

2004-06-29 Thread Claude Schneegans
>>This tag looks perfect. It IS  ;-) -- ___ REUSE CODE! Use custom tags; See http://www.contentbox.com/claude/customtags/tagstore.cfm (Please send any spam to this address: [EMAIL PROTECTED]) Thanks. [Todays Threads] [This Message] [Subscription] [Fast U

Re: first time array

2004-06-29 Thread Tim Laureska
Thanks Joe... I wouldn't mind seeing some code samples of an array of structures... that would be a great help >-Original Message- >From: Joe Rinehart [mailto:[EMAIL PROTECTED] >Sent: Tuesday, June 29, 2004 03:54 PM >To: 'CF-Talk' >Subject: Re: first time array > >Tim, > >Arrays and stru

Re: Blackstone @ CF-FUN '04

2004-06-29 Thread Joe Rinehart
Cool, I'll take a look, thanks. - Original Message - From: Massimo Foti <[EMAIL PROTECTED]> Date: Tue, 29 Jun 2004 18:35:31 +0200 Subject: Re: Blackstone @ CF-FUN '04 To: CF-Talk <[EMAIL PROTECTED]> > Of course, there's probably a DW wizard out there to do it already, > but if I hit alt-

RE: DSNless Connection

2004-06-29 Thread cfhelp
Windows 2003 Ships with MDAC 2.8 Rick Eidson Partner & CTO ArcRiver Technology, LLC ASP, PHP, PERL, Cold Fusion Hosting Kansas City http://www.arcriver.com/ Kansas City Musicians http://www.1sourceentertainment.com/ -Original Message- From: Joe Eugene [mailto:[EMAIL PROTECTED]

RE: How does CF generated Java bytecode compare with Native Java bytecode

2004-06-29 Thread Barney Boisvert
Absolutely.  As long as you've got a server running the CF app, and you're connected to the internet.  And since it's a single server running the app, you have to deal with lots of extra headaches that don't manifest themselves if you're all client-side.  For example, user preferences client side c

RE: How does CF generated Java bytecode compare with Native Java ytecode

2004-06-29 Thread Barney Boisvert
I don't know by how much, but it'll definitely be slower than a comparable Servlet, and likely slower than a comparable JSP page.  The actual time difference would greatly depend on the specific setup you're using.  Nothing against the language, that's just the tradeoff you make for the extra nicet

RE: Raymond's Blog for Bluedragon

2004-06-29 Thread Barney Boisvert
But without fairly tight integration into the system (as FarCry does), it's not very useful for dynamic pages such as blog entries.  Not to say that integrating it would be difficult, but I'd imagine that switching to ints over UUIDs would be a simpler task, and make installation and setup easier (

Re: regex in studio/dreamweaver

2004-06-29 Thread Damien McKenna
On Jun 29, 2004, at 9:53 AM, Deanna Schneider wrote: > (.*) Maybe: (.*) .. and just use \2 instead of \1 to access the string you want. -- Damien McKenna - Web Developer - [EMAIL PROTECTED] The Limu Company - http://www.thelimucompany.com/ - 407-804-1014 "Nothing endures but change." - Heraclit

  1   2   3   >