RE: Grouping Output Query Display

2004-09-28 Thread Pascal Peters
You will also need an order by in your query for the grouping to work correctly. There was none in your original code, but maybe you didn't send your original code: cfquery datasource=#request.dsn# name=meetingAgenda SELECT meeting_ID,month,date,time,year,comment,agenda FROM meeting_agenda

Re: Possible Bug with Dates

2004-09-28 Thread Andrew Dixon
Hi Paul. I fixed it by simply removing the day comma part, but that is not really the point as it is meant to accept it. I will report it to MM. Andrew. - Original Message - From: Paul Vernon [EMAIL PROTECTED] Date: Mon, 27 Sep 2004 16:36:46 +0100 Subject: RE: Possible Bug with Dates

Java 1.4.2_05

2004-09-28 Thread Robertson-Ravo, Neil (RX)
Any one have any issues with performance/JRun connection errors since upgrading to Sun Java 1.4.2_05?We are thinking about downgrading from this as it would seem that it's not a happy JVM when it comes to load and CF... ? This e-mail is from Reed Exhibitions (Oriel House, 26 The Quadrant,

vCard

2004-09-28 Thread Thomas Chiverton
Is anyone aware of any vCard parser / generators ? -- Tom Chiverton Advanced ColdFusion Programmer Tel: +44(0)1749 834997 email: [EMAIL PROTECTED] BlueFinger Limited Underwood Business Park Wookey Hole Road, WELLS. BA5 1AF Tel: +44 (0)1749 834900 Fax: +44 (0)1749 834901 web: www.bluefinger.com

RE: vCard

2004-09-28 Thread Robertson-Ravo, Neil (RX)
We just created our own - it was easier! _ From: Thomas Chiverton [mailto:[EMAIL PROTECTED] Sent: 28 September 2004 09:26 To: CF-Talk Subject: vCard Is anyone aware of any vCard parser / generators ? -- Tom Chiverton Advanced ColdFusion Programmer Tel: +44(0)1749 834997 email: [EMAIL

Re: RE: vCard

2004-09-28 Thread simon
I believe Steve Drucker, CEO Fig Leaf Software, gave a CFUG presentation on generating VCards sevral years ago.Not sure whether or not the code is still around but you might want to check both the old and new figleaf site for that. ~Simon We just created our own - it was easier! _

Uploading large audio files

2004-09-28 Thread luke freeman
I have a webform that allows users to upload large audio files to the server (40MB upwards) However I am now starting to realise that CFFILE is probably not the best way to go about it as it takes over and hour to get a file uploaded to the server. I have looked into using CFFTP but cant see a way

How do I close the pop-up window - kindly help

2004-09-28 Thread cf coder
Hi Guys, I'm hoping someone can help me. I've tried everything but can't quiet nail this problem. I have this page that has a hyper-link. Clicking on the hyper-link opens up a pop-up window. The url looks something like this: window.open('attachment.cfm?promptUser=trueid=12345filename=testfile',

Re: Uploading large audio files

2004-09-28 Thread Thomas Chiverton
On Tuesday 28 Sep 2004 12:18 pm, luke freeman wrote: Can this be done in CFFTP and would this be any quicker for uploading I'd suggest a system where users can enter their ftp details, and you have a scheduled task that picks up all the new ones and fires off another request to ftp them to

JRE server folder

2004-09-28 Thread Robertson-Ravo, Neil (RX)
OK, here is one which I have searched on but haven't found a true answer. When you upgrade your JRE from the vanilla CFusionMX JRE there is no server folder in the bin folder of the system (Sun Java).I have read that you copy the existing server folder from the CFusioMX install to your new

RE: How do I close the pop-up window - kindly help

2004-09-28 Thread Pascal Peters
Not that easy to do, because once you changed the header, you can't close the window in JS anymore. You could do one of the following, but neither are perfect and you may have problems with security settings in the browser. function openAttachment(){

Re: How do I close the pop-up window - kindly help

2004-09-28 Thread cf coder
thanks Pascal. I went with the second option: function openAttachment(){ opener.location = cfoutput#cgi.SCRIPT_NAME#?FILENAME=#url.FILENAME#ID=#url.id#promptU ser=false/cfoutput; window.close(); } It works just fine, many thanks Pascal, you are a genius Regards, cfcoder [Todays Threads] [This

RE: How do I close the pop-up window - kindly help

2004-09-28 Thread Pascal Peters
Be aware that with XP SP2, the file will not open by default. Pascal -Original Message- From: cf coder [mailto:[EMAIL PROTECTED] Sent: 28 September 2004 15:11 To: CF-Talk Subject: Re: How do I close the pop-up window - kindly help thanks Pascal. I went with the second option:

Re: Database Management Tool

2004-09-28 Thread daniel kessler
Ah, I hadn't thought of that.While I don't know if we have php, probably not, it's an innovative solution. Thanks and thanks for the link too. I've never used this particular application, but if you also have PHP support in your web instance, you may be able to use a PHP program to manage your

ms to no longer supporting msjvm

2004-09-28 Thread Tony Weeg
http://www.microsoft.com/mscorp/java/ this has ABSOLUTELY no adverse affect on us right? -- tony Tony Weeg macromedia certified cold fusion developer email: tonyweeg [at] gmail [dot] com blog: http://www.revolutionwebdesign.com/blog/ cool tool: http://www.antiwrap.com [Todays Threads]

Re: Database Management Tool

2004-09-28 Thread daniel kessler
Sorry, let me be a bit more helpful. You should get a new host because it seems like they are keeping you out of the database for security issues. I appreciate your sentiment and while I agree with the sentiment, it's not doable.It's the Universities hosting service and we're supposed to use

CF_FTP Error

2004-09-28 Thread BOUDOT Christian
Hi Folks, I am trying to establish an ftp connection using CF_FTP and I get this error message: 500 Illegal PORT Command Has anyone seen this before? Thanks for your help Chris __ Christian BOUDOT Intrasoft International 89-91 route de Thionville

RE: ms to no longer supporting msjvm

2004-09-28 Thread Micha Schopman
No.. Micha Schopman Software Engineer Modern Media, Databankweg 12 M, 3821 ALAmersfoort Tel 033-4535377, Fax 033-4535388 KvK Amersfoort 39081679, Rabo 39.48.05.380 [Todays Threads] [This Message] [Subscription] [Fast Unsubscribe] [User Settings] [Donations and Support]

RE: ms to no longer supporting msjvm

2004-09-28 Thread Tim Laureska
No its doesn't have an effect or ... No, it does have an effect -Original Message- From: Micha Schopman [mailto:[EMAIL PROTECTED] Sent: Tuesday, September 28, 2004 9:29 AM To: CF-Talk Subject: RE: ms to no longer supporting msjvm No.. Micha Schopman Software Engineer Modern Media,

Re: CF_FTP Error

2004-09-28 Thread Howie Hamlin
Is your CF server behind a firewall and using NAT?If so, it may be issuing a PORT command to the remote server with a non-routable IP address. Just a thought. Regards, -- Howie Hamlin - inFusion Project Manager On-Line Data Solutions, Inc. - www.CoolFusion.com inFusion Mail Server (iMS) - The

RE: ms to no longer supporting msjvm

2004-09-28 Thread Micha Schopman
No it doesn't have an effect. Unless you are running ColdFusion on a MSJVM, but that is a bit uncommon Micha Schopman Software Engineer Modern Media, Databankweg 12 M, 3821 ALAmersfoort Tel 033-4535377, Fax 033-4535388 KvK Amersfoort 39081679, Rabo 39.48.05.380 [Todays Threads] [This

Re: Database Management Tool

2004-09-28 Thread Anders Green
At 09:28 AM 9/28/2004, you wrote: What are mad permissions? http://www.urbandictionary.com/define.php?term=madr=f Anders +===+ |Anders GreenEmail: [EMAIL PROTECTED] | |Home: 919.303.0218| |Off Road Rally Racing Team: http://linaracing.com/

Re: ms to no longer supporting msjvm

2004-09-28 Thread Tony Weeg
just wanted to make sure. i was almost positive of this, but, you never know... measure twice cut once. tw On Tue, 28 Sep 2004 15:36:54 +0200, Micha Schopman [EMAIL PROTECTED] wrote: No it doesn't have an effect. Unless you are running ColdFusion on a MSJVM, but that is a bit uncommon

Re: oracle timestamp java objects in query results,,, wtf?!

2004-09-28 Thread S . Isaac Dealey
Isaac, We've found that you we can't use the latest drivers with our Oracle 8i DB. We had to stick with the 3.1 drivers. The 3.3 drivers will cause a pile up of open connections and cause the CF server to hang. But, the 3.1 drivers are stable. Thanks Deanna, I may give that a shot. :) s.

Re: oracle timestamp java objects in query results,,, wtf?!

2004-09-28 Thread S . Isaac Dealey
On Monday 27 Sep 2004 13:15 pm, S. Isaac Dealey wrote: The MM Oracle driver seems to be much better -- although on my development server it's still not stable enough for me to want to use it for production. Oddness. We're using the MM drivers against 9i fine here (the roll-up updater is

RE: CF_FTP Error

2004-09-28 Thread BOUDOT Christian
My server is behind a firewall. I just tried the connection with the passive option and it works now. Thanks for your help Cheers Chris _ From: Howie Hamlin [mailto:[EMAIL PROTECTED] Sent: mardi 28 septembre 2004 15:34 To: CF-Talk Subject: Re: CF_FTP Error Is your CF server behind a

Re: translating java to CF

2004-09-28 Thread Joshua OConnor-Rose
Did that, compiled the jar file now I'm able to create the objects . . . now I have other problems. Is there a list where I can discuss create and update issues? for sforce I keep getting this error: Web service operation create with parameters [EMAIL PROTECTED]

CF Application Design

2004-09-28 Thread Tangorre, Michael
I am interested in getting some feedback from people on the following: 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? I have been evaluating Adalon as a tool to

Randomising a query

2004-09-28 Thread James Smith
Is there any way to randomise a query result set?I was thinking of adding... SELECT rand() AS RandomColumn, OtherQueryFields, ... FROM ... WHERE ... ORDER BY RandomColumn to the query but am not sure if this will produce a good randomisation, it doesn't need to be perfect, just good.

Re: Database Management Tool

2004-09-28 Thread jw
Are you at least allowed ssh shell access (likely the same name/password as your ftp account)?If so you could use portforwarding,this would allow you to access this database from your local computer using one of the DB tools.I prefer DBVisualizer http://www.minq.se/products/dbvis/ and it works

RE: Database Management Tool

2004-09-28 Thread Dave Watts
What are mad permissions? Database management requires complete authority over the databases to be managed. You typically wouldn't want your web server to have those permissions for security reasons - if your web server is compromised, it would have complete control over the databases in

Re: Randomising a query

2004-09-28 Thread Tony Weeg
you can always use... select * from myTable order by newid() that will select everything from that table (not recommended, but for this purpose it will work) the order by newid() will create a new UUID for each row, and of course, but doing so, will make it a random result set as those are VERY

RE: Database Management Tool

2004-09-28 Thread James Holmes
We use TOAD with the same account used in CF (nowhere near DBA privs); this would allow the same SQL in a web-based tool that is used in TOAD (and I've been meaning to write one in CF for quite some time). -Original Message- From: Dave Watts [mailto:[EMAIL PROTECTED] Sent: Tuesday, 28

Re: Database Management Tool

2004-09-28 Thread Adrocknaphobia
My sentiment exactly. Although I'm curious as to what they are really concerned about. They should be able to give you an account to create your own objects without giving you permissions to alter anything outside of your own schema. -Adam - Original Message - From: Dave Watts [EMAIL

Server JRUN/CFMX

2004-09-28 Thread Paul Giesenhagen
I have a pretty new (few weeks old) CFMX server 6.1 freshly downloaded from Macromedia setup on our new server.I am getting complaints just about every day that the people are getting the error message below. Also, I noticed yesterday that CFMail just stopped sending out mail .. in the spool

Re: Server JRUN/CFMX

2004-09-28 Thread Adrocknaphobia
Welcome to JRun. IMHO that is the generic JRun error that is thrown when anything wrong happens. Look into your JRun logs to see if you can find any clues. -Adam - Original Message - From: Paul Giesenhagen [EMAIL PROTECTED] Date: Tue, 28 Sep 2004 09:43:02 -0500 Subject: Server JRUN/CFMX

RE: Server JRUN/CFMX

2004-09-28 Thread Paul Vernon
What platform are you running on? Windows, *nix etc... If its Win2k3, we had a thread a couple of weeks ago about CF stability. Where JRun was not a happy camper... It seems to be solved by going through the MS best practices docs and turning off all the uneccessary services... The

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

2004-09-28 Thread Jon Block
I've got a CF application with tons of users. Each of the users is supposed to have their own FTP account and their own directory on the server. The CF application creates the users and the ftp home directories. Are there any Windows based FTP servers that use a text based config file like

Web Service on CFMX 6.1/JRun suddenly not working

2004-09-28 Thread Scott Stroz
I recently swithced from a hosting company to a dedicated server which I am sharing with some co-workers. I have a simple web sevice that resides in the root of my web site. On the old sever, it worked fine (over 1,000,000 hits for the year so far).However, after we switched servers, I would get

RE: Server JRUN/CFMX

2004-09-28 Thread Robertson-Ravo, Neil (RX)
Any idea where that checklist is?We have some JVM issue which are becoming increasingly annoying. _ From: Paul Vernon [mailto:[EMAIL PROTECTED] Sent: 28 September 2004 16:03 To: CF-Talk Subject: RE: Server JRUN/CFMX What platform are you running on? Windows, *nix etc... If its Win2k3,

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

2004-09-28 Thread Howie Hamlin
This one is very good: http://www.serv-u.com/ Regards, -- Howie Hamlin - inFusion Project Manager On-Line Data Solutions, Inc. - www.CoolFusion.com inFusion Mail Server (iMS) - The Award-winning, Intelligent Mail Server PrismAV - Virus scanning for ColdFusion applications Find out how iMS

cfservlet with cfmx

2004-09-28 Thread Gaulin, Mark
Hi I'm migrating from cf 5 + jrun 3 to cfmx and am trying to get the jrun that cfmx is running to host a servlet. I was able to do that by adding the servlet to default-web.xml... the servlet starts.Now I'm tring to connect to that servlet using the cfservlet tag but it doesn't work.Turns out,

RE: ms to no longer supporting msjvm

2004-09-28 Thread Vince Bonfanti
No, it doesn't, since both CFMX and the Java editions of BlueDragon run on Java VMs provided by Sun. It does raise an interesting point, however: Java is basically a foreign technology layered on top Windows and developed by a third-party (Sun) who hasn't always been on the friendliest of terms

OT: type ahead select lists

2004-09-28 Thread George Abraham
All, Anybody know of a script that replicates type-ahead select lists (like in Gmail or offline VB applications)? TIA, George [Todays Threads] [This Message] [Subscription] [Fast Unsubscribe] [User Settings] [Donations and Support]

RE: Randomising a query

2004-09-28 Thread Steve Brownlee
SELECT TOP 900 * FROM Table WHERE foo=bar ORDER BY NEWID() From: James Smith [mailto:[EMAIL PROTECTED] Sent: Tuesday, September 28, 2004 10:16 AM To: CF-Talk Subject: Randomising a query Is there any way to randomise a query result set?I was thinking of

Select Box / LIKE operator

2004-09-28 Thread Claremont, Timothy
I need to come up with a search function that will return a list of matches for a given input. The fields in question are FirstName and LastName. I am not averse to having the search work simply on the last name. For our purposes this is sufficient. The backend database is Access, so I would

Re: ms to no longer supporting msjvm

2004-09-28 Thread Thomas Chiverton
On Tuesday 28 Sep 2004 16:23 pm, Vince Bonfanti wrote: The only reason to use Java on Windows is if you want your applications to be portable And that alone should be worth any potential issues with a 'complex' stack of technology. -- Tom Chiverton Advanced ColdFusion Programmer Tel:

Re: oracle timestamp java objects in query results,,, wtf?!

2004-09-28 Thread Thomas Chiverton
On Tuesday 28 Sep 2004 14:51 pm, S. Isaac Dealey wrote: the browser and continue testing when they do occur. During CF testing Oracle also tends to grab hold of 99% of system resources and hang onto them while slowly consuming more memory (I just restart the Is your Oracle up to date ? There

Re: OT: type ahead select lists

2004-09-28 Thread Charlie Griefer
never used it, so can't vouch for quality/cross-browser/etc... http://www.oreillynet.com/pub/a/_javascript_/2003/09/03/dannygoodman.html On Tue, 28 Sep 2004 11:34:54 -0400, George Abraham [EMAIL PROTECTED] wrote: All, Anybody know of a script that replicates type-ahead select lists (like in

Re: Determining the size of a remote image

2004-09-28 Thread Doug Hughes
I know this message is a bit late, but look for the upcoming version of the Alagad Image Component. This will add the ability to work with images via urls just exactly as requested. Thanks, Doug Hughes [EMAIL PROTECTED] On Thu, 16 Sep 2004 21:37:24 -0400, Rick Root [EMAIL PROTECTED] wrote:

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 the

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

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

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

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. cfloop list=#form.FieldNames# index=TheFormField cfscript if (len(Evaluate(TheFormField))) { my.FieldValue=Evaluate(TheFormField); } /cfscript /cfloop -- --Matt

RE: Stupid evaluate() question

2004-09-28 Thread Mark A Kruger
cfloop list=#form.FieldNames# index=TheFormField cfscript if (len(form[TheFormField]) { my.FieldValue=Form[TheFormField]; } /cfscript /cfloop You can also do this with collection=#form# cf -Original Message- From: Matt Robertson [mailto:[EMAIL PROTECTED] Sent: Tuesday, September 28,

Re: Stupid evaluate() question

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

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 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: 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 provide

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.The

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 I have found that

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 help

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 to

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. cfloop list=#form.FieldNames# index=TheFormField cfscript if (len(Evaluate(TheFormField))) {

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. cfloop list=#form.FieldNames#

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: 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

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

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

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

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 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:

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: [EMAIL

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: 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

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

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

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 cflocation to the INSERT page.Thing is, when I get to the insert page, the form is no longer available.I assume it's

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...

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]

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 [Todays

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!

RE: Verify an email address from a query

2004-09-28 Thread Burns, John D
Put the cfscript Function isEmail(). /cfscript In your page above the following and then do: cfloop query=emailLIST cfif isEmail('#emailAddress#') ... cfelse Bad address /cfif /cfloop John -Original Message- From: Les Mizzell [mailto:[EMAIL PROTECTED] Sent: Tuesday,

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 cflocation to the INSERT page.Thing is, when

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. _ cfset account1 = createObject(java,com.sforce.soap.enterprise.sobject.Account) cfset account2 =

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

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,

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

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 UUID

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

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

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 all of

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….. cfscript 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

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), cfset my.loopcounter=0 cfloop list=#my.Fields# index=FieldName input type=Text name=#FieldName#

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

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 DISTINCTb.id, b.qnum, b.firstname, b.lastname, b.ssn, c.phase, c.disbursed_date FROMfaLoans a INNER JOIN abIdentity b ON

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 DISTINCTb.id, b.qnum, b.firstname, b.lastname, b.ssn, c.phase, c.disbursed_date FROMfaLoans a INNER JOIN abIdentity b ON

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] [Donations

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 DISTINCTb.id, b.qnum, b.firstname, b.lastname, b.ssn, c.phase, c.disbursed_date FROMfaLoans a INNER JOIN abIdentity b ON

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

  1   2   >