SQL Pickle

2004-02-10 Thread Tony Gruen
I have done this in reverse with the Membership Test (IN) and I have figured out a way for it to work (example below) but this does not seem the best way. Can I ask for some SQL input? I have one field in a database (SQL Server 2000) that contains a comma separated list of state abbr.

Re: SQL Pickle

2004-02-10 Thread Paul Hastings
I have one field in a database (SQL Server 2000) that contains a comma separated list of state abbr. (AL,CA,TX). I am submitting ONE state selection (CA) for example to a query. I simply need to go to the database and select records CONTAINING 'CA' within the comma delimited list.. that's a

RE: SQL Pickle

2004-02-10 Thread Tony Gruen
Awful is right, however as is the case with so many projects, it is not my app, I don't have access to the SQL Server for ease of manipulation and they want to see it tomorrow. It will be run once a day and relevant to about 4,000 records. Any other input would be greatly appreciated. Tony

Re: content management system db schema

2004-02-10 Thread Geoff Bowers
Daniel Farmer wrote: Does anyone have a database schema that they could share with me for a content management system for a small to medium size website? I just need direction on how to go about setting up the tables etc... for links, content...etc It'll be a fair bit of work to take a generic

RE: SQL Pickle

2004-02-10 Thread Pascal Peters
As state abbr. are always 2 chars, this is reliable. If you have list items of variable length you can do ',' + States + ',' LIKE '%,#FORM.stateabbr#,%' I don't see a better way of doing it if you can't change the database. -Original Message- From: Tony Gruen [mailto:[EMAIL PROTECTED]

Re: CFMX - best way to strip content from html page

2004-02-10 Thread Thomas Chiverton
On Monday 09 Feb 2004 16:36 pm, Rob Rohan wrote: What are the Perl modules called? perhaps I can port them - do you have a link? :rummages at NTK http://www.ntk.net/index.cgi?b=02003-09-12l=124#l -- Tom Chiverton Advanced ColdFusion Programmer Tel: +44(0)1749 834997 email: [EMAIL PROTECTED]

Problem using structures with SOAP...

2004-02-10 Thread Chris Rice
Hi everyone, I'm new to this list and I have a problem which is seriously holding back my development :( I've just finished constructing a web service (CFMX 6.1) which returns a structure containing items that should be able to be of any data type (strings, arrays or more structures).

Re: MS Update broke security

2004-02-10 Thread Thomas Chiverton
On Friday 06 Feb 2004 17:37 pm, Robert Everland III wrote: basic authentication. So now I just need to figure out how IIS known to make those cgi variables and if I can do that they will be cached If you use (just) NT auth., IIS fills in (iirc) cgi.remote_user for you. You can use this to

Re: MySQL and CF

2004-02-10 Thread Thomas Chiverton
On Friday 06 Feb 2004 21:29 pm, Jochem van Dieten wrote: Per my other post regarding the MySQL release schedule, you must know something that even MySQL AB doesn't know. The only comment the developers give is that 4.0 took 17 months. http://www.infoworld.com/article/04/01/12/HNmysql5_1.html

RE: SQL Pickle

2004-02-10 Thread Tony Gruen
Thank you Pascal. I appreciate your input. I have it working for now. I've spent some time documenting how it *should be done for tomorrow's (today's) meeting so they can at least say I told'em so down the road. :-) Tony -Original Message- From: Pascal Peters [mailto:[EMAIL

RE: Learning Programming (WAS: Good beginner cold fusion book)

2004-02-10 Thread Adrian Lynch
I found _javascript_ to be a good choice to learn programming constructs. If you know html the ability to write some JS hit refresh and see the results is nice and instant. Ade -Original Message- From: Jim Campbell [mailto:[EMAIL PROTECTED] Sent: 09 February 2004 21:26 To: CF-Talk

Re: MySQL and CF

2004-02-10 Thread Jochem van Dieten
Thomas Chiverton wrote: On Friday 06 Feb 2004 21:29 pm, Jochem van Dieten wrote: Per my other post regarding the MySQL release schedule, you must know something that even MySQL AB doesn't know. The only comment the developers give is that 4.0 took 17 months.

Re: Complex Database Stuff

2004-02-10 Thread Deanna Schneider
cfquery name = GetMyEnqiryList datasource = 020 SELECT e.nquiryID, e.EnquiryMobileNumber, e.EnquiryDateTime, p.ProductCodeID. p.ProductCodeDescription FROM EnquiryTable e, ProductCodeTable p WHERE e.ProductCodeID in (SELECT ProductCodeID FROM ProductCodeTable WHERE

Sorting Logic question

2004-02-10 Thread Tim Laureska
I have a real estate search app that will provide the site user a number of options for narrowing down their search (ex. Lot size options, number of baths, house style plus a number of other options).This makes for a fairly complex set of queries based on the options selected The only

Re:OT: Good beginner cold fusion book

2004-02-10 Thread Jake .
I have a friend who, for some unknown reason, wants to learn CF :). Anybody have a recommendation for a good beginning cold fusion book for someone without any coding experience? Or perhaps a class in the San Francisco Area. I am pretty sure he knows HTML; it would be nice if the book covered MX

RE: Sorting Logic question

2004-02-10 Thread Raymond Camden
There is nothing wrong at all with this approach... cfquery ... select a,b,c,d from houses where 0=1 cfif isDefined(form.lotsize) and isNumeric(form.lotsize) and lotsize = #form.lotsize# /cfif etc By the way, as a side comment - I recently ran across a real estate site that

RE: Sorting Logic question

2004-02-10 Thread Tim Laureska
Thanks Raymond... just checking to see if I was missing something better ... although you did show me below that its OK to throw CFIF's into the query itself... I have always wrapped the query within the CFIFs -Original Message- From: Raymond Camden [mailto:[EMAIL PROTECTED] Sent:

RE: Sorting Logic question

2004-02-10 Thread Raymond Camden
Oops, I meant to say... select a,b,c,d from houses where 1=1 cfif isDefined(form.lotsize) and isNumeric(form.lotsize) and lotsize = #form.lotsize# /cfif etc The 1=1 part is just a dummly clause so I can have a set of and PROPERTY = #FORMVALUE# lines. [Todays Threads]

RE: Sorting Logic question

2004-02-10 Thread Tim Laureska
By the way... I think the reason they probably leave out the street address is because they want you to contact an agent to take you there... the company I'm dealing with only wants to provide scant info so the viewer contacts an agent for more details (ie. They just hang out the carrot)

Re: Sorting Logic question

2004-02-10 Thread Bryan F. Hogan
They are probably loosing customers that way also. For example I went online this weekend looking to buy a car. When search results had that annoying _javascript_:loadPage() crap in it so I couldn't open a new window from the results or if there wasn't a picture (probably to get you to come in

RE: Sorting Logic question

2004-02-10 Thread Tim Laureska
Agreed and I've told them this approach may be a turn off... but in my case you're dealing with hungry Real Estate Agents, who can't see past the commission -Original Message- From: Bryan F. Hogan [mailto:[EMAIL PROTECTED] Sent: Tuesday, February 10, 2004 8:28 AM To: CF-Talk Subject: Re:

RE: Sorting Logic question

2004-02-10 Thread Raymond Camden
Yea I've seen that too. You couldn't book mark form results or detail pages. I hate it. [Todays Threads] [This Message] [Subscription] [Fast Unsubscribe] [User Settings]

SOT: Security Audit Software

2004-02-10 Thread Tangorre, Michael
Has anyone used AppScan from Sanctum to test their applications and application servers for vulnerabilities? Mike [Todays Threads] [This Message] [Subscription] [Fast Unsubscribe] [User Settings]

RE: Sorting Logic question

2004-02-10 Thread Tim Laureska
1st try at embedding CFIFS in Query but failing... getting Error resolving parameter P.AUTOID ... this must be a syntax thing: cfquery datasource=datasource dbtype=odbc name=photo_find SELECT p.autoid, e.photo AS photo2, p.mls_no, e.property_id_no FROM properties p, property_photos e WHERE cfif

Xpath expressions compliance

2004-02-10 Thread Kevin Marino
Anybody know if Xpath in CF is fully compliant with all functions, expressions,etc... Of the spec? I tried to use the value() function and got a not defined error. Its certainly possible I implemented wrong, but I know how CF likes to do partial implementations every so often ;) Thanks Kevin

RE: Sorting Logic question

2004-02-10 Thread Raymond Camden
Your addressing SQL columns in your cf code, which doensn't make sense. See below cfquery datasource=datasource dbtype=odbc name=photo_find SELECT p.autoid, e.photo AS photo2, p.mls_no, e.property_id_no FROM properties p, property_photos e WHERE cfif (p.autoid EQ e.property_id_no)

Re: Sorting Logic question

2004-02-10 Thread Deanna Schneider
You can't use the CF logic on your query columns. You're mixing CF logic with database logic. Is this access? I think you want something like this: cfquery datasource=datasource dbtype=odbc name=photo_find SELECT p.autoid, p.mls_no, e.property_id_no, iif (e.property_id_no is not null, photo2, 'No

Trim in cfoutput

2004-02-10 Thread Robert Orlini
How do I apply the trim function in a CFOUTPUT? I have: CFOUTPUTTrim(#getinfo.trialname#).htm/CFOUTPUT. (Maybe it should be in cfoutput--not sure on this) It's probably wrong I figure. I need the .htm to appear right after the getinfo.trialname so it can be clicked directly to a html page. Right

Re: Trim in cfoutput

2004-02-10 Thread Bryan F. Hogan
cfoutput#trim(getInfo.trialName)#.htm/cfoutput [Todays Threads] [This Message] [Subscription] [Fast Unsubscribe] [User Settings]

RE: Trim in cfoutput

2004-02-10 Thread Raymond Camden
Change it to cfoutput#trim(getinfo.trialname)#.html/cfoutput Notice the difference? The # signs are around trim. In your example, they were only arround the varaible so CF just ignored the Trim part. [Todays Threads] [This Message] [Subscription] [Fast Unsubscribe] [User Settings]

RE: Trim in cfoutput

2004-02-10 Thread Adkins, Randy
Move your #s outside the TRIM function CFOUTPUT #TRIM(getinfo.trialname)#.htm /CFOUTPUT Randy Adkins SRA International -Original Message- From: Robert Orlini [mailto:[EMAIL PROTECTED] Sent: Tuesday, February 10, 2004 9:23 AM To: CF-Talk Subject: Trim in cfoutput How do I

Replying To a HTTP POST

2004-02-10 Thread chad
Here is the problem, I am receiving a XML document from a PDA using a standard CGI HTTP Post to a coldfusion page. This coldfusion page will process the XML document do some stuff and generate a new XML document that then has to be replied back to the PDA. I can receive and process the XML

RE: Trim in cfoutput

2004-02-10 Thread Robert Orlini
Thanks all for your QUICK suggestions. Sometimes its too easy but your thinking too ahead of the game. Robert O. -Original Message- From: Raymond Camden [mailto:[EMAIL PROTECTED] Sent: Tuesday, February 10, 2004 9:32 AM To: CF-Talk Subject: RE: Trim in cfoutput Change it to

regexpression

2004-02-10 Thread kelly
I would like to run an update query my refind on the serialnumber returns all positive matches. Right now, it will return what is in the first part of the if and what is in the else part. The whole thing looks like this: cfloop from=1 to=#ListLen(form.modelnumber)# index=i cfquery

passing sessions between 2 sites

2004-02-10 Thread Ketan Patel
I have a shopping cart that it is losing all of its values when the user hits the checkout button and takes them to my secure checkout page. Example, the user is shopping at www.store.com and purchase several items which are saved as session variables (session.cartdata), they then would click on

Re:OT: Good beginner cold fusion book

2004-02-10 Thread Michael Dinowitz
I'll add in that RegEx is going to be something very useful for your friend and Ben Forta's got a new 'RegEx in 10 minutes' book coming out any day now. You've probably seen a banner for it in your mail already. :) (I was tech editor on it) Others have suggested great CF books, and on top of a

RE: passing sessions between 2 sites

2004-02-10 Thread Katz, Dov B (IT)
If the 2 sites/apps are running on the same cf server (just 2 domain names) I have often shares sessions by doing an application-context-switch -- using the same CFAPPLICATION tag as on your non-secure site when trying to access it... (maybe passing urltoken in the query string or form as well...)

OT: US and Canadian web sites

2004-02-10 Thread Phillip B
We are a US company that has dealers in the US and in Canada that we want to give more support to. We want to duplicate all of our sites so for Canada so we can show Canadian pricing. So this is what I'm curious about. 1. Are there any rules or regulations specific to Canada for having a web

Re: passing sessions between 2 sites

2004-02-10 Thread Ubqtous
Ketan, On 2/10/2004 at 10:04, you wrote: KP Any suggestions to avoid losing my session. Is www.store.com on the same server as secure.securestore.com? If so, just append CFID CFTOKEN in the URL that sends the user to the secure site. If the secure site has its own Application.cfm, I'm pretty

RE: Replying To a HTTP POST

2004-02-10 Thread Craig Dudley
Just write it into the page stream? -Original Message- From: chad [mailto:[EMAIL PROTECTED] Sent: 10 February 2004 14:56 To: CF-Talk Subject: Replying To a HTTP POST Here is the problem, I am receiving a XML document from a PDA using a standard CGI HTTP Post to a coldfusion

Re: Replying To a HTTP POST

2004-02-10 Thread chad
Anywhere I can get examples of this? - Original Message - From: Craig Dudley To: CF-Talk Sent: Tuesday, February 10, 2004 10:22 AM Subject: RE: Replying To a HTTP POST Just write it into the page stream? -Original Message- From: chad [mailto:[EMAIL PROTECTED] Sent: 10

RE: Replying To a HTTP POST

2004-02-10 Thread Craig Dudley
Just output it in the page that processes the incoming xml, use absolutley NO html, perhaps even set the content type with cfcontent first, though this may not be necessary. cfsilent !--- Proces incoming xml Create response packet --- /cfsilent cfcontent type=text/xml cfoutput#your xml

RE: Error: [Macromedia][SQLServer JDBC Driver]No more data available to read

2004-02-10 Thread Nathan Strutz
Did you install all the hot fixes? http://www.macromedia.com/support/coldfusion/ts/documents/tn17883.htm -nathan strutz -Original Message- From: Jeffrey Polaski [mailto:[EMAIL PROTECTED] Sent: Monday, February 09, 2004 5:41 PM To: CF-Talk Subject: Error: [Macromedia][SQLServer JDBC

RE: homesite+ question

2004-02-10 Thread Nathan Strutz
In CF Studio 5 (which is much like hs+), the file list is slow unless you take off the Document Title column. The icons won't take hardly any resources, but the title forces the program to search each file for a title tag. Turn it off by right-clicking in the file area window, go to view and

Re: Xpath expressions compliance

2004-02-10 Thread Massimo Foti
Anybody know if Xpath in CF is fully compliant with all functions, expressions,etc... Of the spec? I tried to use the value() function and got a not defined error. Its certainly possible I implemented wrong, but I know how CF likes to do partial implementations every so often ;) The problem

RE: homesite+ question

2004-02-10 Thread Tony Weeg
thank you nathan...i did that...ok, but not great... man 802.11b networks can be slow :( -Original Message- From: Nathan Strutz [mailto:[EMAIL PROTECTED] Sent: Tuesday, February 10, 2004 10:53 AM To: CF-Talk Subject: RE: homesite+ question In CF Studio 5 (which is much like hs+), the

RE: passing sessions between 2 sites

2004-02-10 Thread Ketan Patel
Worked fine now. Since both domains are on same server the CFID CFTOKEN passing worked. Thanks Ketan Patel -Original Message- From: Ubqtous [mailto:[EMAIL PROTECTED] Sent: Tuesday, February 10, 2004 10:26 AM To: CF-Talk Subject: Re: passing sessions between 2 sites Ketan, On 2/10/2004

-OT- CF Audio books

2004-02-10 Thread Thane Sherrington
I do a lot of driving, and I was wondering if anyone knows of any good CF Audio books?Even some books on programming in general would be good. T [Todays Threads] [This Message] [Subscription] [Fast Unsubscribe] [User Settings]

Time Out Question

2004-02-10 Thread Harold Brauer
I am setting an application variable in application.cfm to keep track of active users on my site. I have the session time out set to 40 minutes in my cfapplication tag (cfapplication name=personal clientmanagement=yes sessionmanagement=Yes setclientcookies=Yes

Re: Replying To a HTTP POST

2004-02-10 Thread Thomas Chiverton
On Tuesday 10 Feb 2004 15:35 pm, chad wrote: Anywhere I can get examples of this? Eh ? What is the PDA running ? If it's a web browser, just output as you would normaly. -- Tom Chiverton Advanced ColdFusion Programmer Tel: +44(0)1749 834997 email: [EMAIL PROTECTED] BlueFinger Limited

RE: Time Out Question

2004-02-10 Thread Raymond Camden
You need to set the timeout value in your cfapplication tag. Also make sure that the MAX setting for App vars in the CF Admin allows for 40 minutes. By the way, you don't need the evaluate in the cfif Evaluate(datediff...) line. [Todays Threads] [This Message] [Subscription] [Fast

Monthly Scheduled Task

2004-02-10 Thread Robertson-Ravo, Neil (RX)
Anyone had any problems with adding a Scheduled Task set to run monthly but will suddenly a few days later turn into a Weekly task? This e-mail is from Reed Exhibitions (Oriel House, 26 The Quadrant, Richmond, Surrey, TW9 1DL, United Kingdom), a division of Reed Business, Registered

RE: Time Out Question

2004-02-10 Thread Robertson-Ravo, Neil (RX)
LOL :-) you couldn't resist... _ From: Raymond Camden [mailto:[EMAIL PROTECTED] Sent: 10 February 2004 16:04 To: CF-Talk Subject: RE: Time Out Question You need to set the timeout value in your cfapplication tag. Also make sure that the MAX setting for App vars in the CF Admin allows

RE: Time Out Question

2004-02-10 Thread Harold Brauer
The setting in the admin for the application variables is 2 days. -Original Message- From: Raymond Camden [mailto:[EMAIL PROTECTED] Sent: Tuesday, February 10, 2004 8:04 AM To: CF-Talk Subject: RE: Time Out Question You need to set the timeout value in your cfapplication tag. Also

Another Homesite+ Question

2004-02-10 Thread Dain Anderson
I've been using Homesite+ v5.5, and it seems like certain files take 3-4 seconds to save, while others save instantaneously (all are .cfm files). I can reproduce it on specific files 100% of the time, and it happens on about 75% of all files. I recall this being an issue a long time ago with CF

Re: passing sessions between 2 sites

2004-02-10 Thread Joe Eugene
Depending on your requirements, you can do several things. In this case store.com and secureStore.com are different domains... Here is one way of solving the problem. 1. Keep all you session stuff (cart details in structs/arrays) 2. When User Checks out you can convert the Struct/Arrays details

Re: Time Out Question

2004-02-10 Thread Bryan F. Hogan
Than your ok. Harold Brauer wrote: The setting in the admin for the application variables is 2 days. [Todays Threads] [This Message] [Subscription] [Fast Unsubscribe] [User Settings]

RE: Time Out Question

2004-02-10 Thread Raymond Camden
Ok then - so you need to add applicationtimeout to the cfapplication tag. This will tell CF how long app vars live for. [Todays Threads] [This Message] [Subscription] [Fast Unsubscribe] [User Settings]

RE: Time Out Question

2004-02-10 Thread Harold Brauer
It is still timing out before the 40 minutes. I just tested it again and it showed one user on line then about 15 to 20 minutes later it showed 0 users. -Original Message- From: Bryan F. Hogan [mailto:[EMAIL PROTECTED] Sent: Tuesday, February 10, 2004 8:14 AM To: CF-Talk Subject: Re:

Re: Time Out Question

2004-02-10 Thread Bryan F. Hogan
Check out Ray's reply. Harold Brauer wrote: It is still timing out before the 40 minutes. I just tested it again and it showed one user on line then about 15 to 20 minutes later it showed 0 users. [Todays Threads] [This Message] [Subscription] [Fast Unsubscribe] [User Settings]

RE: Error: [Macromedia][SQLServer JDBC Driver]No more data availa ble to read

2004-02-10 Thread Christine Lawson
Hi Jeff, Make sure you apply the 3.1+ drivers from this article: http://www.macromedia.com/support/coldfusion/ts/documents/cfmx61_sqlserver_c pu.htm http://www.macromedia.com/support/coldfusion/ts/documents/cfmx61_sqlserver_ cpu.htm . If you apply the drivers and still see this issue post back!

RE: Problem using structures with SOAP...

2004-02-10 Thread Tom Jordahl
Chris, This is a bug in Axis 1.1.A pretty serious one that for some reason went unnoticed.Generally, since CFML is typeless, everything can be a string, so this is harmless in many (most?) cases.I have fixed the current Axis 1.2 source. If you really need this fixed, you can use an updated

Re: Xpath expressions compliance

2004-02-10 Thread Rob Rohan
On Tue, 2004-02-10 at 07:50, Massimo Foti wrote: Anybody know if Xpath in CF is fully compliant with all functions, expressions,etc... Of the spec? I tried to use the value() function and got a not defined error. Its certainly possible I implemented wrong, but I know how CF likes to do

accessing COM objects using Coldfusion

2004-02-10 Thread David Ashworth
Hello, I have installed the component aspZip.EasyZIP that is used to unzip files, here is the code in ASP: const AddDirNames= 1 const AddZipTime= 2 const AddRecurseDirs= 4 const AddHiddenFiles= 8 const AddEncrypt = 16 const AddSeparateDirs = 32 dim ZIP, zipItem1 set ZIP =

Re: accessing COM objects using Coldfusion

2004-02-10 Thread Rob Rohan
Is Unzip a method? cfmzipper.UnZip; or cfmzipper.UnZip(); On Tue, 2004-02-10 at 08:56, David Ashworth wrote: Hello, I have installed the component aspZip.EasyZIP that is used to unzip files, here is the code in ASP: const AddDirNames= 1 const AddZipTime= 2 const AddRecurseDirs= 4 const

RE: Monthly Scheduled Task

2004-02-10 Thread Matt Robertson
I've heard of this happening more than once, but haven't seen it personally. Not too long ago I started needing a lot of scheduled tasks, and was having occasional trouble with them.They sometimes didn't want to start etc.Switched to running them thru the Windows scheduler and have been real

RE: accessing COM objects using Coldfusion

2004-02-10 Thread David Ashworth
Both Unzip and Unzip() produce the same error as an aside I tried the code with just one of the methods at a time to see if one of them in particular was causing the error eg: cfscript cfmzipper.Debug = true; /cfscript but still get same error I thought maybe the methods/properties

RE: Monthly Scheduled Task

2004-02-10 Thread Rob Rohan
On Tue, 2004-02-10 at 09:07, Matt Robertson wrote: I've heard of this happening more than once, but haven't seen it personally. Not too long ago I started needing a lot of scheduled tasks, and was having occasional trouble with them.They sometimes didn't want to start etc.Switched to

Anyone used Coral?

2004-02-10 Thread Miller, Kevin
I am looking into this package for a distributed app?Anyone have any experiences with it? Thanks, Kevin [Todays Threads] [This Message] [Subscription] [Fast Unsubscribe] [User Settings]

Re: Anyone used Coral?

2004-02-10 Thread Rob Rohan
On Tue, 2004-02-10 at 09:15, Miller, Kevin wrote: I am looking into this package for a distributed app?Anyone have any experiences with it? It was mentioned on the list a while back and I showed the site to a client who wanted to do something along those lines (standalone app), but he said he

RE: accessing COM objects using Coldfusion

2004-02-10 Thread Mike Townend
What version of CF and Patch level are you using? -Original Message- From: David Ashworth [mailto:[EMAIL PROTECTED] Sent: Tuesday, February 10, 2004 17:13 To: CF-Talk Subject: RE: accessing COM objects using Coldfusion Both Unzip and Unzip() produce the same error as an aside I tried

Cannot access Coldfuion5.0 Admin on solaris

2004-02-10 Thread Ketan Patel
Hi All, I have a problem with CFADMIN on Solaris coldfusion 5.0 I uncheckd the box for enable security for CFREGISTRY tag and now I cannot access the CFADMIN get this error. Any help is appreciated. Error Diagnostic Information The CFRegistry tag is disabled. The administrator has chosen to

Re:OT: Good beginner cold fusion book

2004-02-10 Thread D Nando
Sams Teach Yourself ColdFusion in 21 Days by Charles Mohnike I would say this book is the best for beginners, because it's very fun! The 21 Days will probably fly by in 3 or 4. It covers the bare bone basics wonderfully and dips in deeper from time to time as if he's telling you insider secrets

Re: Cannot access Coldfuion5.0 Admin on solaris

2004-02-10 Thread Ubqtous
Ketan, On 2/10/2004 at 13:13, you wrote: KP I have a problem with CFADMIN on Solaris coldfusion 5.0 I uncheckd the box KP for enable security for CFREGISTRY tag and now I cannot access the CFADMIN KP get this error. Any help is appreciated. Not sure where this is stored on Solaris, but in a

RE: Another Homesite+ Question

2004-02-10 Thread Cameron Childress
I'm not sure it will help in this specific case, but when I've had unexplained slowdowns in Homesite it's usually because Tag Validation is turned on.Homesite pauses as it validates stuff and though it's usually just after you complete the tag in the editor, some of those activities might also be

Thesaurus DB

2004-02-10 Thread Andrew Golden
I had an idea to simply a project i am working on and I was wondering if anyone knew of any source for a database of a thesaurus. Obviosuly, a CSV, tab delimited, etc file would be workable and free/dirt cheap is best. I haven't had too much luck on google thus far. Any ideas? anyone have

OT: Michael's Speaking at our CFUG Tonight!!!

2004-02-10 Thread Judith Dinowitz
Michael's going to be speaking at the New York ColdFusion User Group tonight at 6:30 PM. His topic: 'Dealing with Remote Data' The huge amount of information that exists on the Net exists on a number of sites with a number of ways of accessing it. What happens when you want that data local to

Re: Thesaurus DB

2004-02-10 Thread Rob Rohan
On Tue, 2004-02-10 at 09:38, Andrew Golden wrote: I had an idea to simply a project i am working on and I was wondering if anyone knew of any source for a database of a thesaurus. Obviosuly, a CSV, tab delimited, etc file would be workable and free/dirt cheap is best. I haven't had too much luck

Re: accessing COM objects using Coldfusion

2004-02-10 Thread Joe Eugene
COM is an OLD Technology and doesnt work well... even Microsoft doesnt recommend the usage of COM these days. I would recommend you look at java.util.Zip package and this is very compatible with CFMX. http://java.sun.com/j2se/1.4.1/docs/api/java/util/zip/package-summary.html If you are not

RE: Another Homesite+ Question

2004-02-10 Thread Tony Weeg
are you saving to a network drive? or to a local drive? I have all that validation off, I save to local drive, FAST, save to network drive, SLOW tw -Original Message- From: Dain Anderson [mailto:[EMAIL PROTECTED] Sent: Tuesday, February 10, 2004 11:12 AM To: CF-Talk Subject: Another

RE: accessing COM objects using Coldfusion

2004-02-10 Thread Barney Boisvert
You might also check out cflib.org.I know there is at least one function that does zip operations.It uses Java, as Joe suggested, but it encapsulates all the complexity in a normal CF function. Cheers, barneyb -Original Message- From: Joe Eugene [mailto:[EMAIL PROTECTED] Sent:

Purchase CFMX?

2004-02-10 Thread Burns, John
Does anyone know of any tricks of the trade to get CFMX 6.1 for cheaper than $1300?Any kind of discounts or promotions or resellers or anything?I've heard the ebay ideas and the cons associated with that, but any valid, legal ways of getting it for cheaper would be much appreciated. John Burns

RE: Cannot access Coldfuion5.0 Admin on solaris

2004-02-10 Thread Ketan Patel
I found the location /opt/coldfusion/registry/cf.registry to edit the registry but now dont know how to stop and start the cf service on unix. /opt/coldfusion/bin/stop /opt/coldfusion/bin/start does not work Ketan Patel -Original Message- From: Ubqtous [mailto:[EMAIL PROTECTED] Sent:

RE: Purchase CFMX?

2004-02-10 Thread Matt Robertson
buy it at CDW or another reseller.Those are a couple hundred bucks off list, usually.Or try... http://www.nextag.com/serv/main/buyer/OutPDir.jsp?search=coldfusion+mx Matt Robertson [EMAIL PROTECTED] MSB Designs, Inc.http://mysecretbase.com

Re: Purchase CFMX?

2004-02-10 Thread Rob Rohan
On Tue, 2004-02-10 at 11:06, Burns, John wrote: Does anyone know of any tricks of the trade to get CFMX 6.1 for cheaper than $1300?Any kind of discounts or promotions or resellers or anything?I've heard the ebay ideas and the cons associated with that, but any valid, legal ways of getting it

Re: Michael's Speaking at our CFUG Tonight!!!

2004-02-10 Thread Joe Eugene
Michael will also showcase an XML decoder written for CF 5 Interesting... is this a DOM Implementation of any popluar XML Parsers? Xerces? DOM Version? It would be nice to see someone override xmlParse() and xmlSearch() for CF5.0 using DOM via Java and use CF5.0 C++ structs/arrays return

Cookie Info CF MX 6.1

2004-02-10 Thread Nick Baker
The following code worked with CF 5.0 cfset cookieArray=cfhttp.responseHeader[set-cookie] cfset session.RPCFID = #ReplaceNoCase(GetToken(cookieArray[1], 1, ; ), CFID=, )# cfset session.RPCFTOKEN = #ReplaceNoCase(GetToken(cookieArray[2], 1, ; ), CFTOKEN=, )# When processed on CF MX 6.1 it

RE: Michael's Speaking at our CFUG Tonight!!!

2004-02-10 Thread Barney Boisvert
As part of the port for Fusebox4 from CFMX to CF5, Rob Edwards created an XML toolkit that's available at http://xml.fusebox.org. Cheers, barneyb -Original Message- From: Joe Eugene [mailto:[EMAIL PROTECTED] Sent: Tuesday, February 10, 2004 11:24 AM To: CF-Talk Subject: Re:

RE: Purchase CFMX?

2004-02-10 Thread Burns, John
Can anyone tell if this is a full edition license?I see it's license only but I could care less since I can download the installer from Macromedia.com Any drawbacks with this that anyone can think of? I'm installing on Linux. http://www.pcmall.com/pcmall/shop/detail.asp?dpno=68store=pcmallso

SOT: How do I tell if I got FlashMX professional?

2004-02-10 Thread Jeff Small
I just upgraded to StudioMX 2004, purchased from the Macromedia site by our IT guy, and I made sure that I told him I wanted Flash Professional as I understood that this one was the one you wanted if you wanted to integrate CF and Flash. When I downloaded it, I noticed that my Flash installer

java.lang.ArrayIndexOutOfBoundsException

2004-02-10 Thread Ruben Ghosal
Hi, I have a large amount of data which I am trying to insert in a Shopping cart array. The array is declared is _javascript_. I get the following runtime error. java.lang.ArrayIndexOutOfBoundsException at java.net.SocketInputStream.read(SocketInputStream.java:121) at

RE: java.lang.ArrayIndexOutOfBoundsException

2004-02-10 Thread Katz, Dov B (IT)
You want arraylen -1 -dbk _ From: Ruben Ghosal [mailto:[EMAIL PROTECTED] Sent: Tuesday, February 10, 2004 1:43 PM To: CF-Talk Subject: java.lang.ArrayIndexOutOfBoundsException Hi, I have a large amount of data which I am trying to insert in a Shopping cart array. The array is

RE: How do I tell if I got FlashMX professional?

2004-02-10 Thread Burns, John
I had the same problem. The CD doesn't say anything about pro.When you install it you get video components and stuff.I don't think you need pro to integrate CF and flash.My understanding was that pro had more video components and a few other things, but with actionscript you can build RIAs with

Re: Cannot access Coldfuion5.0 Admin on solaris

2004-02-10 Thread Ubqtous
Ketan, On 2/10/2004 at 14:16, you wrote: KP but now dont know how to stop and start the cf serviceon unix. KP /opt/coldfusion/bin/stop KP /opt/coldfusion/bin/start KP does not work On Linux with CFMX I am able to use the following: service coldfusionmx restart ~ Ubqtous ~ [Todays Threads]

Re: SOT: How do I tell if I got FlashMX professional?

2004-02-10 Thread ksuh
The install file for both versions is the same. When you enter the appropriate serial number, you will get either a choice of which version to install, or the standard version will install. - Original Message - From: Jeff Small [EMAIL PROTECTED] Date: Tuesday, February 10, 2004 12:40 pm

RE: java.lang.ArrayIndexOutOfBoundsException

2004-02-10 Thread Ghosal, Ruben - HQ CD Consul
Can you please explain.the error occurs only when there is a lot of data..for small amount of data the code works fine. -Original Message- From: Katz, Dov B (IT) [mailto:[EMAIL PROTECTED] Sent: Tuesday, February 10, 2004 2:44 PM To: CF-Talk Subject: RE:

Re: Cannot access Coldfuion5.0 Admin on solaris

2004-02-10 Thread Doug White
from command shell:service cfusion restart == Stop spam on your domain, Anti-spam solutions http://www.clickdoug.com/mailfilter.cfm For hosting solutions http://www.clickdoug.com == Aspire to Inspire before you Retire or

RE: How do I tell if I got FlashMX professional?

2004-02-10 Thread Barney Boisvert
The installer from MM has both, and it picks which you get based on the license key.You'll have to install it to tell for sure. Cheers, barneyb -Original Message- From: Jeff Small [mailto:[EMAIL PROTECTED] Sent: Tuesday, February 10, 2004 11:40 AM To: CF-Talk Subject: SOT: How do

RE: How do I tell if I got FlashMX professional?

2004-02-10 Thread Michael Wolfe
Jeff, The installer is the same for Standard and Professional. The difference is the serial number... If your IT guy purchased the Professional version, you will see this once you enter the serial number. -- Michael Wolfe [EMAIL PROTECTED] _ From: Jeff Small [mailto:[EMAIL PROTECTED]

serving non-CFM files w/ Cold Fusion

2004-02-10 Thread Conan Saunders
Say I have a directory containing these three files: page.cfm info.txt image.gif I want everything in this directory to be protected by my Cold Fusion login for this application. For example if SESSION.IsLoggedIn is not defined, bump to the login screen. I want the files to be located directly

  1   2   >