Re: cfsilent tag

2004-09-28 Thread dave
wouldnt this need to go before the reg html body code? -- Original Message -- From: Mike Kear <[EMAIL PROTECTED]> Reply-To: [EMAIL PROTECTED] Date:  Wed, 29 Sep 2004 15:44:33 +1000 >I have changed my dreamweaver default template so it looks like this >whe

Re: cfsilent tag

2004-09-28 Thread Barney Boisvert
You have to use it with proper nesting in relation to other CF tags. It operates like any other tag with a body; if you open a tag within the body, you have to close it within the body, and if you open a tag outside the body, you have to close it outside the body. cheers, barneyb On Wed, 29 Sep

Re: cfsilent tag

2004-09-28 Thread dave
do u need to do it around each indiv cf tags? i just tried it on a processing page and it took a big stinky dookie -- Original Message -- From: Barney Boisvert <[EMAIL PROTECTED]> Reply-To: [EMAIL PROTECTED] Date:  Tue, 28 Sep 2004 22:42:35 -0700 >I usually

Re: cfsilent tag

2004-09-28 Thread Mike Kear
I have changed my dreamweaver default template so it looks like this whenever I call a new page: [code] "http://www.w3.org/TR/xhtml1/DTD/xhtml1-strict.dtd"> #request.sitename# "1">#request.pagetitle# [/code] This sets up by default the most common page layout I use, and  the end

Re: cfsilent tag

2004-09-28 Thread Barney Boisvert
I usually set up my files like this: processing stuff . display stuff . Of course, I'm a Fuseboxer, so in general, I usually only have processing or display code in any given file, but there are situations where you have both. Unlike using CFSETTING CFOUTPUTONLY="true", y

Re: cfsilent tag

2004-09-28 Thread dave
so actually we should be putting it between most or all of out cfm code, especially if it is at the top of the page? -- Original Message -- From: Mike Kear <[EMAIL PROTECTED]> Reply-To: [EMAIL PROTECTED] Date:  Wed, 29 Sep 2004 15:20:27 +1000 >If you do a d

Re: cfsilent tag

2004-09-28 Thread Charlie Griefer
just to chime in...it also reduces bandwidth usage since the file sizes are smaller.  on a busy site that does add up to a few bucks saved in bandwidth costs. On Wed, 29 Sep 2004 15:20:27 +1000, Mike Kear <[EMAIL PROTECTED]> wrote: > If you do a decent job of using and > enablecfoutputonly="yes"

Re: cfsilent tag

2004-09-28 Thread Mike Kear
If you do a decent job of using and enablecfoutputonly="yes"> tags, you can get quite a large CFM template containing lots of processing, and have only the lines of HTML left in the finished output page. Why care about white space? I dont suppose it's the most important part of anyone's develop

Re: cfsilent tag

2004-09-28 Thread Barney Boisvert
Anything in the body of the tag will be removed from the generated content of the page.  My most common use is to surround blocks of processing so that they don't generate any content.  if you want a good example of NOT doing that, hit view source on the CF admin pages. Hundreds of lines of whites

cfsilent tag

2004-09-28 Thread dave
how exactly is this tag used? [Todays Threads] [This Message] [Subscription] [Fast Unsubscribe] [User Settings] [Donations and Support]

RE: Verify an email address from a query

2004-09-28 Thread Ewok
[EMAIL PROTECTED] [EMAIL PROTECTED] [EMAIL PROTECTED] [EMAIL PROTECTED] These are all invalid (as they should be) according to the function. What do you mean a “+” is a valid character?    _   From: Jochem van Dieten [mailto:[EMAIL PROTECTED] Sent: Tuesday, September 28, 2004 6:21 PM To:

Re: Best Windows FTP Server with Text Based Config File?

2004-09-28 Thread Kym Kovan
Hi Jon, Howie said: >This one is very good: > >http://www.serv-u.com/ and it is, we used it on our production boxes and it was nice to configure as it had a CF custom tag to drive it! :-)  We had trouble however with some ftp clients not talking well to it and it couldn't handle multiple connecti

RE: Content depending on a month schedule

2004-09-28 Thread Ian Skinner
The only way to do this would be with a coupon database and fairly strong user login validation.  So that you know Jill smith of Sacramento, ca has printed out coupon zyx123 this month. Anything you try to do behind the scenes will most likely be easily circumvented, most likely by clearing thei

Re: CF Application Design

2004-09-28 Thread Sean Corfield
On Tue, 28 Sep 2004 15:14:55 -0400, Dan O'Keefe <[EMAIL PROTECTED]> wrote: > What would your requirement ID signify. Something to identify a specific requirement in the original business requirements document. Like I say, we don't formally track at that level but the point is that we *could*. > I

RE: CFMX Admin?

2004-09-28 Thread Matthew Walker
this was discussed a while back: http://www.mail-archive.com/cgi-bin/htsearch?config=cf-talk_houseoffusion_co m om&restrict=&exclude=&words=admin+l10n> &restrict=&exclude=&words=admin+l10n   _   From: Adkins, Randy [mailto:[EMAIL PROTECTED] Sent: Wednesday, 29 September 2004 7:02 a.m. To: C

Re: CFMX Admin?

2004-09-28 Thread Barney Boisvert
You need to copy the files from %CF_ROOT%/wwwroot/CFIDE into whereever you copied it to when you first installed CFMX.  It's right there in the release docs.  Better option for next time is to use an Alias/VirtualMapping or a symlink to put the administrator wherever you need it, rather than actual

Re: losing form on cflocation

2004-09-28 Thread Howie Hamlin
A cflocation is simply a redirect for the browser and so, yes, all form vars are lost.  What you can do is save all of the posted data to session variables, do the redirect and then use the session vars in your template. HTH, -- Howie Hamlin - inFusion Project Manager On-Line Data Solutions, Inc

CFMX Admin?

2004-09-28 Thread Adkins, Randy
We updated our CFMX 6.1 server with the updater and now our Admin page will not load properly. The left panel (menu) displays the following error: The tag you are trying to use cannot be found within any tag libraries you have imported. Unknown tag: admin:l10n.   ColdFusion cannot determine how

RE: Content depending on a month schedule

2004-09-28 Thread Ian Skinner
Good point. Then how would I encode the coupon so that the business offering the coupon knows the coupon has been used once already? Or am I getting way too detailed and just put a expiration date on the coupon itself and just let them print what they want? That's probably what you want to do, p

RE: Content depending on a month schedule

2004-09-28 Thread Matthew Walker
When I've seen these things before you can simply print whatever you want -- in fact the one I saw most recently explicitly stated you could use it repeatedly. It's a business decision depending on the type of product you're selling.   _   From: [EMAIL PROTECTED] [EMAIL PROTECTED] [mailto:[E

Re: Content depending on a month schedule

2004-09-28 Thread pperry
>If I click to print something, a wizard pops up and asks me how >many copies I want to print. Good point. Then how would i encode the coupon so that the business offering the coupon knows the coupon has been used once already? Or am i getting way too detailed and just put a expiration date on th

Re: Content depending on a month schedule

2004-09-28 Thread Jochem van Dieten
Phillip Perry wrote: > > What I'm trying to do is make a coupon page where if the user clicks on a > link to print the coupon out, the user cannot print out that coupon again > for 1 month. If I click to print something, a wizard pops up and asks me how many copies I want to print. Jochem [Tod

Re: Verify an email address from a query

2004-09-28 Thread Jochem van Dieten
Ewok wrote: > This regex has always worked great for me. Just drop it in your own function > like so and voila�.. > > if(REFindNocase("^[_a-z0-9-]+(\.[_a-z0-9-]+)*@ A "+" is a valid character in the localpart. Jochem [Todays Threads] [This Message] [Subscription] [Fast Unsubscribe] [

Re: is a reply-to not from your domain considered spoofing?

2004-09-28 Thread Jochem van Dieten
dan martin wrote: > > If I send legit emails from a legit email account on my mailserver with a reply-to that is to a legit email on another domain, is that considered spoofing by the spam filters or is it accepted practice? It is acceptable as long as you have the consent of the owner of the r

Re: Content depending on a month schedule

2004-09-28 Thread pperry
That definately helps but i'm using Access instead of Oracle. The only part thats unknown to me is the "ADD_MONTHS(TRUNC(SYSDATE),-1) AND TRUNC(SYSDATE)" part. Anyone know if there is an Access/CF equivilant? >This would probably be better done in a DB than solely using CF, even >if you could only

Re: Content depending on a month schedule

2004-09-28 Thread Greg Morphis
This would probably be better done in a DB than solely using CF, even if you could only use CF.. why? Do people log in to the site? if so that would be easiest.. you would just store the Date, couponID, and who downloaded it.. Then you could query off that table to see when they last downloaded it.

Content depending on a month schedule

2004-09-28 Thread Phillip Perry
Hi, What I'm trying to do is make a coupon page where if the user clicks on a link to print the coupon out, the user cannot print out that coupon again for 1 month. This is so people don't print coupon after coupon after coupon. I know how to do links but what kind of command do I give CF to tell

RE: ms to no longer supporting msjvm

2004-09-28 Thread Vince Bonfanti
Do DataDirect's JDBC drivers provide better integration and performance with Oracle 10g than Oracle's own JDBC drivers? Will Oracle's own ADO.NET drivers provide better integration and performance with Oracle 10g than Oracle's JDBC drivers? Will Oracle's own ADO.NET drivers provide better integra

RE: Mailing List Software

2004-09-28 Thread dave
i been using this on one site and they love it http://www.macromedia.com/software/drk/productinfo/product_overview/volume7/coldfusion.html#intouch -- Original Message -- From: [EMAIL PROTECTED] (Michael Dinowitz) Reply-To: [EMAIL PROTECTED] Date:  Tue, 28 Se

Re: 2 Queries into one?

2004-09-28 Thread Michael Traher
You could probably join to the import_cap_status table a second time in the first query giving it the correlation name of c2 (ON c2.ssn = b.ssn) and then add something like AND NOT ((c2.branch = 0001) AND (c2.phase=2)) - Original Message - From: Kelly Matthews <[EMAIL PROTECTED]> Date: T

RE: ms to no longer supporting msjvm

2004-09-28 Thread Dave Watts
> Is ADO.NET going to provide better integration and > performance with Oracle 10g then Oracle's own JDBC > drivers? No, probably not. If you're going to drink the KoolAid, you have to drink it straight. That is, you have to use SQL Server too! Dave Watts, CTO, Fig Leaf Software http://www.figl

Re: is a reply-to not from your domain considered spoofing?

2004-09-28 Thread Bryan Stevenson
I'm not entirely sure on that...but you could setup an account from your domain that is forwarded to the client's domain if it does cause spam filters to flip out ;-) Bryan Stevenson B.Comm. VP & Director of E-Commerce Development Electric Edge Systems Group Inc. phone: 250.480.0642 fax: 250.480.1

RE: ms to no longer supporting msjvm

2004-09-28 Thread Vince Bonfanti
If you're using Oracle, then the whole Microsoft integration argument doesn't apply at all, and I wouldn't try make that argument. I know there are people who don't subscribe to the integration argument (or, rather, who see more value in non-integrated solutions). That's fine, I've never claimed th

is a reply-to not from your domain considered spoofing?

2004-09-28 Thread dan martin
Hi, If I send legit emails from a legit email account on my mailserver with a reply-to that is to a legit email on another domain, is that considered spoofing by the spam filters or is it accepted practice? (the purpose is to have replies go to the clients' in-house support personnel rather than

RE: Mailing List Software

2004-09-28 Thread Michael Dinowitz
Totally hand rolled based on mail server ideals. A message comes in, it's parsed, stored in a DB, sent out to subscribers and then indexed (sending out is more important). anti-spam, subscriber only access and all are built in as well, but no admin UIs. It's not a polished give away product. It cou

Re: 2 Queries into one?

2004-09-28 Thread Qasim Rasheed
Why don't you simply do this SELECT    ssn FROM  Import_Cap_Status WHERE (Branch = 0001) AND (phase=2) \ AND ssn in ( SELECT    DISTINCT  b.ssn FROM faLoans a INNER JOIN abIdentity b ON a.IdentityID = b.ID INNER JOIN Import_Cap_Status c ON b.SSN = c.SSN WHERE (c.Branch = 0001) AND (

Re: Display multiple columns

2004-09-28 Thread Donna French
i think the easycfm.com tutorials are going to help lots - i'll post more late today or tomorrow... thank you! - Original Message - From: Tony Weeg <[EMAIL PROTECTED]> Date: Tue, 28 Sep 2004 17:02:05 -0400 Subject: Re: Display multiple columns To: CF-Talk <[EMAIL PROTECTED]> but you coul

Re: ms to no longer supporting msjvm

2004-09-28 Thread Adrocknaphobia
> further discussion. Do you really think a JDBC driver from DataDirect is > going to provide better integration and performance with SQL Server 2005 > than ADO.NET? Is ADO.NET going to provide better integration and performance with Oracle 10g then Oracle's own JDBC drivers? Not to knock BD's .N

Re: Display multiple columns

2004-09-28 Thread Tony Weeg
but you could figure out the split by dividing the queryName.recordCount and if its not even (or even if it is) rounding that up to get the missing one in the second column like... round(queryName.recordCount/2) so if you had a 53 record set, you would you get 27, and then you would have a

Re: Hot-fixes

2004-09-28 Thread Andrew Dixon
As far as I understand it, the updater includes all hotfixes and security patches up-to when it was released, so I would guess so. Andrew. - Original Message - From: Plunkett, Matt <[EMAIL PROTECTED]> Date: Tue, 28 Sep 2004 15:47:03 -0400 Subject: RE: Hot-fixes To: CF-Talk <[EMAIL PROTECT

Re: Display multiple columns

2004-09-28 Thread Charlie Griefer
http://tutorial140.easycfm.com/ http://tutorial141.easycfm.com/ On Tue, 28 Sep 2004 15:44:25 -0500, Donna French <[EMAIL PROTECTED]> wrote: > 1-25 in first > 26-50 in second > > but... > > results for columns are from a query and the # of results will change > constantly so it can't be setup for

RE: Session swapping

2004-09-28 Thread Burns, John D
Well, I have some additional info... Right now, we have 2 different sites having the problem.  1 site is not using cookies but is using client variables which are stored in a database and then the CFID and CFTOKEN variables are just passed in the URL.  If I change the setting in the CF Administrat

Re: Display multiple columns

2004-09-28 Thread Donna French
1-25 in first 26-50 in second but... results for columns are from a query and the # of results will change constantly so it can't be setup for show rows 1-x, etc. - Original Message - From: Tony Weeg <[EMAIL PROTECTED]> Date: Tue, 28 Sep 2004 16:37:27 -0400 Subject: Re: Display multiple

Re: Randomising a query

2004-09-28 Thread Tony Weeg
thats more than id like to have on a cfm template. why not put that logic on the data layer? tw On Tue, 28 Sep 2004 13:23:52 -0700, Nathan Strutz <[EMAIL PROTECTED]> wrote: > There's a UDF for that... > > http://www.cflib.org/udf.cfm/QueryRandomRows > > It works AFTER you've gotten your query

Re: Display multiple columns

2004-09-28 Thread Tony Weeg
1-25 in first column? and 26-50 in the second column? or 1 - 2 3 - 4 5 - 6 like that, alternating? tony On Tue, 28 Sep 2004 15:30:15 -0500, Donna French <[EMAIL PROTECTED]> wrote: > yes - basicly > > > - Original Message - > From: Tony Weeg <[EMAIL PROTECTED]> > Date: Tue, 28 Sep 20

Re: ms to no longer supporting msjvm

2004-09-28 Thread Nathan Strutz
Vince Bonfanti wrote: [...] > further discussion. Do you really think a JDBC driver from DataDirect is > going to provide better integration and performance with SQL Server 2005 > than ADO.NET? As good as an argument as this is, take a look at Samba. In benchmarked tests, Samba has beaten Window

Re: Display multiple columns

2004-09-28 Thread Donna French
yes - basicly - Original Message - From: Tony Weeg <[EMAIL PROTECTED]> Date: Tue, 28 Sep 2004 16:23:29 -0400 Subject: Re: Display multiple columns To: CF-Talk <[EMAIL PROTECTED]> so what you are asking is to have, for example, a 50 row output divided into two columns of 25? tw On Tue, 2

Re: 2 Queries into one?

2004-09-28 Thread Tony Weeg
do all of that logic within a cfloop block. using the first query as the query="" attribute, and then for each iteration, you can either perform other tasks or choose to show/not show that row. but, i would imagine you could probably use a join of some sort here, rather than all that cf logic that

Re: Randomising a query

2004-09-28 Thread Nathan Strutz
There's a UDF for that... http://www.cflib.org/udf.cfm/QueryRandomRows It works AFTER you've gotten your query recordset from the database. -nathan strutz http://www.dopefly.com/ James Smith wrote: > Is there any way to randomise a query result set?  I was thinking of > adding... > > SELECT r

Re: Display multiple columns

2004-09-28 Thread Tony Weeg
so what you are asking is to have, for example, a 50 row output divided into two columns of 25? tw On Tue, 28 Sep 2004 15:18:36 -0500, Donna French <[EMAIL PROTECTED]> wrote: > I want to display multiple columns of output - how do I do this? > > In the past I borrowed code from here and there to

Display multiple columns

2004-09-28 Thread Donna French
I want to display multiple columns of output - how do I do this? In the past I borrowed code from here and there to get it working but I'd really like to get a handle on how it works this time around and learn from it rather than just being in a mad rush to get it up & running. Any help greatly a

2 Queries into one?

2004-09-28 Thread Kelly Matthews
I have 2 queries wondering if I can accomplish this in 1. Query 1: CREATE PROCEDURE [dbo].[fa_addonqueue_inout] @date2 datetime=null, @today datetime=null AS SELECT    DISTINCT  b.id, b.qnum, b.firstname, b.lastname, b.ssn, c.phase, c.disbursed_date FROM faLoans a INNER JOIN abIde

Mailing List Software

2004-09-28 Thread Don
This question is a bit off CF-TALK.  It's really for the site owner.  What software is being used for the forums and mailing lists?  Modification to the free MM forums software, Fusetalk, or ...? TIA. [Todays Threads] [This Message] [Subscription] [Fast Unsubscribe] [User Settings] [Dona

Turn this into 1 query?

2004-09-28 Thread Kelly Matthews
I have 2 queries wondering if I can accomplish this in 1. Query 1: CREATE PROCEDURE [dbo].[fa_addonqueue_inout] @date2 datetime=null, @today datetime=null AS SELECT    DISTINCT  b.id, b.qnum, b.firstname, b.lastname, b.ssn, c.phase, c.disbursed_date FROM faLoans a INNER JOIN abIde

Turn this into 1 query?

2004-09-28 Thread Kelly Matthews
I have 2 queries wondering if I can accomplish this in 1. Query 1: CREATE PROCEDURE [dbo].[fa_addonqueue_inout] @date2 datetime=null, @today datetime=null AS SELECT    DISTINCT  b.id, b.qnum, b.firstname, b.lastname, b.ssn, c.phase, c.disbursed_date FROM faLoans a INNER JOIN abIde

Re: Stupid evaluate() question

2004-09-28 Thread Barney Boisvert
Assuming it's in the variables scope: variables[ListGetAt(my.DefaultValue,my.LoopCounter)] If you're in a CFC method (which I suspect), that won't work, because you can't explicitly reference the local variables scope. cheers, barneyb On Tue, 28 Sep 2004 12:58:48 -0700, Matt Robertson <[EMAIL P

Re: Stupid evaluate() question

2004-09-28 Thread Matt Robertson
Thanks all.  Worked marvelously and I felt silly for asking, but just couldn't think it thru this morning. If I could pester the list for one more (rtfm I know, but the docs I found were sparse),    list="#my.Fields#"    index="FieldName">    type="Text"    name="#FieldName#"    value="#Eva

RE: Verify an email address from a query

2004-09-28 Thread Ewok
This regex has always worked great for me. Just drop it in your own function like so and voila….. function validemail(addr){ if(REFindNocase("^[_a-z0-9-]+(\.[_a-z0-9-]+)[EMAIL PROTECTED](\.[a-z0-9-]+)*\.(([ a-z]{2,3})|(aero|coop|info|museum|name))$", addr)) {IsValid = true;} else {IsValid =

Re: CF Application Design

2004-09-28 Thread Dave Carabetta
On Tue, 28 Sep 2004 15:14:55 -0400, Dan O'Keefe <[EMAIL PROTECTED]> wrote: > Sean, > > What would your requirement ID signify. Just a tracking number to be > used throughout the process to tie together the one to one record of > requirements? I just looked at Together as well as the tutorial on al

RE: Hot-fixes

2004-09-28 Thread Plunkett, Matt
Does the updater include MPSB03-06, MPSB03-07, MPSB04-01, and MPSB04-02? -Original Message- From: Jochem van Dieten [mailto:[EMAIL PROTECTED] Sent: Friday, September 24, 2004 7:44 PM To: CF-Talk Subject: Re: Hot-fixes Earl, George wrote: > > What if you are building a new server (mig

RE: SQL Query to XML Addendum

2004-09-28 Thread SStewart
I'm able to write my data to am XML Template in the proper format. now I need to be able to find the corresponding node in the parent document and overwrite it without Destroying the other nodes in the document. Halp!!! sas Scott A. Stewart, Web Application Developer Engineering Consult

Re: Session swapping

2004-09-28 Thread Adrocknaphobia
Good point Al, the computers we saw this on were ghosted as well. Maybe switching to UUID just cleaned out the old values. -Adam On Tue, 28 Sep 2004 15:27:46 -0400, Adrocknaphobia <[EMAIL PROTECTED]> wrote: > I ran into a similar issue with one of our intranets here. If you > aren't already use U

Re: Session swapping

2004-09-28 Thread Adrocknaphobia
I ran into a similar issue with one of our intranets here. If you aren't already use UUID for cftoken. We were only seeing this issue in teh training labs when a bunch of people were logged in on the same part of the network and UUID seemed to prevent the SESSION steals. -Adam - Original Mess

Re: Session swapping

2004-09-28 Thread Al Everett
I encountered virtualy the same issue where various PCs were "ghosted" from an original image. When setting up that image our site had been visited and the CFID and CFTOKEN cookies ended up being part of the image. Explicitly deleting cookies in the client browser fixed it right up. --- "Burns, J

Re: losing form on cflocation

2004-09-28 Thread dave
ur having a heck of a time with this form huh! ok, too do that u'd need to set the form fields as session so when u go back u can put them back in but reloading the form the way i understand it is a bit odd why are u sending it to another page? just put the code below it would it help 4 u too see

CF Array to Java array : more sforce questions

2004-09-28 Thread Joshua OConnor-Rose
I'm feeling like I've got a near neighbor to a solution here but I keep getting an error. here's my code most going strait to the sforce example. _ createObject("java","com.sforce.soap.enterprise.sobject.Account")> createObject("java","com.sforce.soap.enterprise.sobject.

Re: losing form on cflocation

2004-09-28 Thread Sean Corfield
On Tue, 28 Sep 2004 14:56:09 -0400, Daniel Kessler <[EMAIL PROTECTED]> wrote: > I have a registration form that I want to insert to a DB after > validation.  To validate a unique name, I reload the form and query > on the information.  If it's a unique name, I to the > INSERT page.  Thing is, when

RE: Verify an email address from a query

2004-09-28 Thread Burns, John D
Put the Function isEmail(). In your page above the following and then do: ... Bad address John -Original Message- From: Les Mizzell [mailto:[EMAIL PROTECTED] Sent: Tuesday, September 28, 2004 2:52 PM To: CF-Talk Subject: Verify an email address from a query I've spen

Re: CF Application Design

2004-09-28 Thread Dan O'Keefe
Sean, What would your requirement ID signify. Just a tracking number to be used throughout the process to tie together the one to one record of requirements? I just looked at Together as well as the tutorial on all of the UML diagrams. Very cool product, but $3500 for the solo license. Yikes! Dan

Re: losing form on cflocation

2004-09-28 Thread Rick Root
Daniel Kessler wrote: > replace().  Is there a cure for this? Do the insert on that page then cflocation to a result page. optinally you could cfinclude the insert template... as long as you're careful how you handle the end of THAT template.. I wouldn't do it this way though.   - Rick [Toda

RE: losing form on cflocation

2004-09-28 Thread Paul Vernon
A cflocation sends a header back to the client that tells it to redirect to another page using the GET method therefore the form submission ends and the form scope is cleared down when the GET request is made. This is normal behaviour. Paul [Todays Threads] [This Message] [Subscription] [

Verify an email address from a query

2004-09-28 Thread Les Mizzell
I've spent the last couple of hours looking at "isEmail" and regular _expression_ stuff, but haven't gotten anything to work for me yet. I swear somebody posted, just a few weeks ago, a good piece of working code, but for some reason I can't seem to get the archive search to work for me... Her

losing form on cflocation

2004-09-28 Thread Daniel Kessler
I have a registration form that I want to insert to a DB after validation.  To validate a unique name, I reload the form and query on the information.  If it's a unique name, I to the INSERT page.  Thing is, when I get to the insert page, the form is no longer available.  I assume it's because

Session swapping

2004-09-28 Thread Burns, John D
We have an internet application running on CFMX hosted locally.  Our clients (on a Navy base) are running machines that are restricted by NMCI (Navy-Marine Corps Intranet) and they're using a NAT Proxy Server that all of the users are behind.  They just recently got moved to this new system and we

Re: CF Application Design

2004-09-28 Thread Sean Corfield
On Tue, 28 Sep 2004 10:17:39 -0400, Tangorre, Michael <[EMAIL PROTECTED]> wrote: > Once you have gotten your requirements for a new application and the > modeling/architecture process ensues, what tools do you use to link > requirements to screens, processes, etc? We don't keep a formal one-to-one

Re: OT: type ahead select lists

2004-09-28 Thread George Abraham
Charlie, I guess I should have made myself more clear. The form element would have to be a text input (or textarea), not a select list. Mario's referring URL seems to do what I want. It does appear to have a few bugs in the demo. Matthieu's idea of using a global buffer for storing the options seem

Re: Web Service on CFMX 6.1/JRun suddenly not working

2004-09-28 Thread Scott Stroz
No chance on teh Application.cfm, I copied all the files, EXACTLY as they were on teh old server. - Original Message - From: Ian Skinner <[EMAIL PROTECTED]> Date: Tue, 28 Sep 2004 10:04:28 -0700 Subject: RE: Web Service on CFMX 6.1/JRun suddenly not working To: CF-Talk <[EMAIL PROTECTED]>

RE: ms to no longer supporting msjvm

2004-09-28 Thread dave
sorry but i have a hard time having the words "freedom" and "microsoft" being linked together. well at least without seriously laughing my ass off nothing to do with bd though vince -- Original Message -- From: "Vince Bonfanti" <[EMAIL PROTECTED]> Reply-To:

RE: OT: type ahead select lists

2004-09-28 Thread Ciliotta, Mario
George, Is this what your are looking for: http://webfx.eae.net/dhtml/combobox/combobox.htm I tried the other example below, but it did not type ahead. Mario -Original Message- From: Tony Weeg [mailto:[EMAIL PROTECTED] Sent: Tuesday, September 28, 2004 1:03 PM To: CF-Talk Subjec

SQL Query to XML

2004-09-28 Thread SStewart
Here's one where I'm not really sure where to start I have a SQL query that I need to run and append the results to a node in a pre-formatted XML template. The XML template is used by several other apps in the suite and carries information from different apps. I'll be doing updates and inser

RE: ms to no longer supporting msjvm

2004-09-28 Thread Vince Bonfanti
Be careful where you're going with this argument. You wouldn't ever rely on a single-vendor solution--such as Allaire/Macromedia ColdFusion--would you? What about the problems that arise when you put all your eggs in one basket? With BlueDragon, you get:   - The freedom to choose either Java or .

RE: ms to no longer supporting msjvm

2004-09-28 Thread Vince Bonfanti
The major benefits to giving up portability are: platform integration and performance. (I'd argue that you'll get better reliability and scalability, but that's a bit harder to prove). Performance and integration come from a single vendor providing a single integrated solution. It's well-known tha

Re: OT: type ahead select lists

2004-09-28 Thread Tony Weeg
just did this, and it works GREAT, but after like 3 letters it begins to trip out... it worked for two diff. examples i used on my backend, however, like i said, when you are in the select box, and you type more than 3 letters, it seems to trip... tw On Tue, 28 Sep 2004 08:59:23 -0700, Charlie G

RE: Web Service on CFMX 6.1/JRun suddenly not working

2004-09-28 Thread Ian Skinner
Any chance there is a new Application.cfm file on the new server? I received that exact same error when I tried to write my first web service CFC a few weeks ago.  It ended up that I was putting the cfc in my root which had an Application.cfm file that did a fair amount of processing.  It turned

Re: Stupid evaluate() question

2004-09-28 Thread Barney Boisvert
use form[theFormField] instead. cheers, barneyb On Tue, 28 Sep 2004 09:52:09 -0700, Matt Robertson <[EMAIL PROTECTED]> wrote: > How would I go about getting rid of evaluate() in this loop?  I'm > having a brainlock.  must have gotten up too early today. > > >list="#form.FieldNames#" >  

RE: Stupid evaluate() question

2004-09-28 Thread Tangorre, Michael
> From: Matt Robertson [mailto:[EMAIL PROTECTED] > How would I go about getting rid of evaluate() in this loop?   > I'm having a brainlock.  must have gotten up too early today. > > list="#form.FieldNames#" > index="TheFormField"> > > if (len(Evaluate(TheFormField))) { > my.FieldValue=Eva

Re: Java 1.4.2_05

2004-09-28 Thread Nathan Strutz
I'm not having problems with 1.4.2_05. It seems more stable than previous versions even. Perhaps something in your app isn't _05 friendly? -nathan strutz http://www.dopefly.com/ Robertson-Ravo, Neil (RX) wrote: > Any one have any issues with performance/JRun connection errors since > upgrading t

webgrabber and mx wrapper

2004-09-28 Thread Tim Do
Can anyone tell me how to get this product to work w/ an intranet address? It works fine if I pass in yahoo or google address but when I pass in an intranet address.. the pdf isn't generated.  It just hangs.  If I use the native method with file protocol it returns a plain pdf w/ no styles.  Any he

RE: Select Box / LIKE operator

2004-09-28 Thread Cornillon, Matthieu (Consultant)
> If the end user just enters "e" > in the search box, I am not so   > sure that I want every name that   > contains an 'e' to be returned   > Or do I??? > > What is the consensus on how to   > make something like this work best? I personally like the "anywhere in the string" approach, but

RE: type ahead select lists

2004-09-28 Thread Cornillon, Matthieu (Consultant)
> Anybody know of a script that replicates type-ahead select lists (like > in Gmail or offline VB applications)? George, I built this using _javascript_.  It's not too pretty, but it works just fine. The idea is that a global variable is the "buffer" in the list, to which keystrokes are added. 

RE: Select Box / LIKE operator

2004-09-28 Thread Steve Brownlee
Not so much a consensus as an ad hoc standard is that the 'e' would be the first letter of the search string.  Just be sure to notify users of the functionality of your search engine. "Please enter in the first few letters of the last name of the person you wish to find" You could also provid

Re: Stupid evaluate() question

2004-09-28 Thread Matt Robertson
> my.FieldValue=Form[TheFormField]; DOH! Thanks Mark.  I knew I was missing something simple. -- --Matt Robertson-- MSB Designs, Inc. mysecretbase.com [Todays Threads] [This Message] [Subscription] [Fast Unsubscribe] [User Settings] [Donations and Support]

Re: ms to no longer supporting msjvm

2004-09-28 Thread Adrocknaphobia
>Think about it: when deploying CFMX, you're relying first on Sun for the >Java VM, then on DataDirect for the JDBC drivers, and then on JIntegra for >COM support (if you need it), and only finally on Macromedia for the CFMX >application server. All of these are good companies with good technology,

Re: Stupid evaluate() question

2004-09-28 Thread Scott Brady
This should do it (without testing, off the top of my head): list="#form.FieldNames#" index="TheFormField"> if (len(FORM[TheFormField])) { my.FieldValue=FORM[TheFormField]; } Scott -- - Scott Brady http://www.scottbrady.net/ [Todays Threads]

RE: Stupid evaluate() question

2004-09-28 Thread Mark A Kruger
if (len(form[TheFormField]) {     my.FieldValue=Form[TheFormField]; } You can also do this with "collection="#form#" "   -Original Message-   From: Matt Robertson [mailto:[EMAIL PROTECTED]   Sent: Tuesday, September 28, 2004 11:52 AM   To: CF-Talk   Subject: Stupid evaluate() quest

Stupid evaluate() question

2004-09-28 Thread Matt Robertson
How would I go about getting rid of evaluate() in this loop?  I'm having a brainlock.  must have gotten up too early today. list="#form.FieldNames#" index="TheFormField"> if (len(Evaluate(TheFormField))) { my.FieldValue=Evaluate(TheFormField); } -- --Matt Robertson-- MSB Designs, In

RE: ms to no longer supporting msjvm

2004-09-28 Thread Vince Bonfanti
For some (many?) people that's true. But there are some (many?) who have only ever deployed on Windows, and who only ever intend to deploy on Windows. For these people, portability to Linux, UNIX, or Mac OS X is not something they're interested in. Vince Bonfanti New Atlanta Communications, LLC ht

RE: ms to no longer supporting msjvm

2004-09-28 Thread Vince Bonfanti
Put another way, for some people, portability across operating systems is an overriding concern. For other people, platform integration, support, reliability, performance, and scalability are overriding concerns, for which they're willing to sacrifice portability. I wouldn't argue that either .NET

Re: Web Service on CFMX 6.1/JRun suddenly not working

2004-09-28 Thread Scott Stroz
I was able to correct this issue, and since others seem to havehad a similar issue, I thought I would post my solution. When I migrated the site to the new server, I wanted to keep it as similar as it was (cause everything was working).  On the old server, I had a mapping to the root of my web dir

Re: Select Box / LIKE operator

2004-09-28 Thread Scott Brady
- Original Message - From: Claremont, Timothy Date: Tue, 28 Sep 2004 11:46:52 -0400 > If the end user just enters "e" in the search box, I am not so sure that > I want every name that contains an 'e' to be returned Or do I??? Typically, I expect searches like that to have at least th

  1   2   >