RE: Coldfusion Australia discussion group.

2002-09-10 Thread Michael Kear
Yes, there's an Australian version of this list. It's called CFAUSSIE and you can subscribe at http://lists.daemon.com.au/cgi-bin/lyris.pl or view in a news-style interface at news://lists.daemon.com.au/cfaussie Cheers Mike Kear Windsor, NSW, Australia Webmaster, Bluegrass Australia

RE: VB

2002-09-10 Thread Kevan . Windle
How about using an error block. Try to use it - if you get a variable does not exist error then dim it. -Original Message- From: Benoit Martin [mailto:[EMAIL PROTECTED]] Sent: 09 September 2002 21:48 To: CF-Talk Subject: RE: VB Unfortunately I don't know the answer but I don't think

CFMX for J2EE on the TheServerSide

2002-09-10 Thread Benoit Hediard
Hi, If you want to put some great comments on CFMX capabilities for the J2EE audience, a thread Macromedia ColdFusion MX for J2EE AppServers Released has been created yesterday on TheServerSide.com : http://www.theserverside.com/home/thread.jsp?thread_id=15402 I like this comment : The Allaire

RE: CF and Keeping track of time

2002-09-10 Thread Adrian Lynch
A bit over the top maybe, but have a look at this, infact everyone should, it's a nice read http://www.depressedpress.com/DepressedPress/Content/ColdFusion/Essays/GifAs Pipe/Index.cfm Ade -Original Message- From: Phillip Perry [mailto:[EMAIL PROTECTED]] Sent: 10 September 2002 03:44

CF Underground, CFBugHunt and CFDJ Awards

2002-09-10 Thread Michael Smith
Here is the news on CF_Underground conference, CFBugHunt and the CFDJ awards. 1. CFDJ awards ** TeraTech has been nominated for best consulting and best training ColdFusion company at CFDJ magazine. Please vote at: http://www.sys-con.com/coldfusion/readerschoice2002/ After you vote

List to stored proc

2002-09-10 Thread Tipton Josh (orl1jdt)
I have a comma delimited list that I want to pass into a procedure. Any help. I am using nvarchar(4000) as the data type but I get invalid cast spec. Josh __ Get the mailserver that powers this list at

RE: CF and Keeping track of time

2002-09-10 Thread todd
Baby pictures are a little distracting. :P ~Todd On Tue, 10 Sep 2002, Adrian Lynch wrote: A bit over the top maybe, but have a look at this, infact everyone should, it's a nice read http://www.depressedpress.com/DepressedPress/Content/ColdFusion/Essays/GifAs Pipe/Index.cfm Ade --

RE: Jsp Vs Cfm (CFMX) -- Code

2002-09-10 Thread Stacy Young
Identical on my end... -Original Message- From: Joe Eugene [mailto:[EMAIL PROTECTED]] Sent: Tuesday, September 10, 2002 12:58 AM To: CF-Talk Subject: RE: Jsp Vs Cfm (CFMX) -- Code Ok.. code to my post earlier i couldnt sleep.. had to test this out... I was surprised at the

RE: Macintosh/CFFILE Problems - Corruption

2002-09-10 Thread Chad Gray
Use HQX, not SIT when you stuff it -Original Message- From: Scott Van Vliet [mailto:[EMAIL PROTECTED]] Sent: Monday, September 09, 2002 5:42 PM To: CF-Talk Subject: Macintosh/CFFILE Problems - Corruption Hey All, Have any of you out there experienced corruption problems when

Re: CF Surveys?

2002-09-10 Thread Candace Cottrell
I am looking for the same thing and would be interested to know as well. Thanks Candace K. Cottrell, Web Developer The Children's Medical Center One Children's Plaza Dayton, OH 45404 937-641-4293 http://www.childrensdayton.org [EMAIL PROTECTED] [EMAIL PROTECTED] 9/9/2002 6:01:18 PM

Re: List to stored proc

2002-09-10 Thread Joe Eugene
You can pass the whole String(List) into the StroredProc.. just as VARCHAR depends on what you want to do with the LIST... put into different fields.. u have split it in the stored proc.. Joe - Original Message - From: Tipton Josh (orl1jdt) [EMAIL PROTECTED] To: CF-Talk [EMAIL

cgi variable auth-user not generated

2002-09-10 Thread Tim Nissen
We were using CF to parse the cgi variable auth_user to determine the user's ID for access control to certain folders on our Intranet. We were using NT 4.0 and IIS 4.0, Anonymous was turned off, and everything worked like a charm. We recently upgraded to Win2000, and now that variable is blank.

RE: List to stored proc

2002-09-10 Thread Tangorre, Michael
I have a similar question... in the stored proc, say you pass in a comma delimited list, how do you break it apart? Are there list functions within T-SQL? Mike -Original Message- From: Joe Eugene [mailto:[EMAIL PROTECTED]] Sent: Tuesday, September 10, 2002 9:01 AM To: CF-Talk Subject:

RE: List to stored proc

2002-09-10 Thread Adrian Lynch
I know you can build a list using COALESCE, not sure about manipulation though Ade -Original Message- From: Tangorre, Michael [mailto:[EMAIL PROTECTED]] Sent: 10 September 2002 14:13 To: CF-Talk Subject: RE: List to stored proc I have a similar question... in the stored proc, say you

Re: List to stored proc

2002-09-10 Thread Paul Hastings
I have a similar question... in the stored proc, say you pass in a comma delimited list, how do you break it apart? Are there list functions within T-SQL? t-sql isn't suited for this. you could do it w/dynamic sql (building the code data into an sql statement) but then the sp won't buy you

RE: List to stored proc

2002-09-10 Thread Smith, Matthew P -CONT(DYN)
T-SQL is really a pain to do string manipulation in, especially after being spoiled by all the great functions CF has. You can do quite a few things, though, you just have to works a bit harder with them. Here's how to loop through a list: CREATE PROCEDURE showLoop @listOfKeys

Re: Jsp Vs Cfm (CFMX) -- Code

2002-09-10 Thread Dick Applebaum
What do you need to do to run JSP code on CFMX Enterprise (Developer)? TIA Dick On Tuesday, September 10, 2002, at 05:33 AM, Stacy Young wrote: Identical on my end... -Original Message- From: Joe Eugene [mailto:[EMAIL PROTECTED]] Sent: Tuesday, September 10, 2002 12:58 AM To:

RE: CF and Keeping track of time

2002-09-10 Thread Andy Ousterhout
Very nice. Thanks. -Original Message- From: Adrian Lynch [mailto:[EMAIL PROTECTED]] Sent: Tuesday, September 10, 2002 4:22 AM To: CF-Talk Subject: RE: CF and Keeping track of time A bit over the top maybe, but have a look at this, infact everyone should, it's a nice read

Re: Jsp Vs Cfm (CFMX) -- Code

2002-09-10 Thread Joe Eugene
If i am right.. JSP runs only on CFMX Enterprise edition... am not sure if there is a CFMX Enterprise Developer edition. Joe - Original Message - From: Dick Applebaum [EMAIL PROTECTED] To: CF-Talk [EMAIL PROTECTED] Sent: Tuesday, September 10, 2002 9:36 AM Subject: Re: Jsp Vs Cfm (CFMX)

Re: Jsp Vs Cfm (CFMX) -- Code

2002-09-10 Thread Sean A Corfield
On Tuesday, September 10, 2002, at 06:36 , Dick Applebaum wrote: What do you need to do to run JSP code on CFMX Enterprise (Developer)? If you have only the Developer Edition, you can't run JSP. You need a full Enterprise license for this. But don't worry, you're not missing much - on Mac

Re: Jsp Vs Cfm (CFMX) -- Code

2002-09-10 Thread Jeffry Houser
The only differences between ColdFusion MX Enterprise and the ColdFusion MX Developer Edition is that the Developer edition will only let you surf from a single IP (And the localhost ). At 09:38 AM 9/10/2002 -0400, you wrote: If i am right.. JSP runs only on CFMX Enterprise edition... am not

Re: Jsp Vs Cfm (CFMX) -- Code

2002-09-10 Thread Dick Applebaum
AFAIK, The trial version is a full enterprise version that reverts to a single IP-Address (Developer version after 39 days). So, I assume that any JSP support in Enterprise is still supported. Yes it is a Mac... I Can run JSP code by other means, but I want to try JSP-CFMX interoperability.

RE: Macintosh/CFFILE Problems - Corruption

2002-09-10 Thread Joshua Miller
I've had this same problem using .sit files between Mac and PC ... When I move a .sit to my PC for storage and then bring it over to a Mac to use it, the file is corrupt. I believe it has something to do with Binary/ASCII file transfers, but I'm not sure. HQX works just fine though - odd.

Re: Jsp Vs Cfm (CFMX) -- Code

2002-09-10 Thread Sean A Corfield
On Tuesday, September 10, 2002, at 06:51 , Jeffry Houser wrote: The only differences between ColdFusion MX Enterprise and the ColdFusion MX Developer Edition is that the Developer edition will only let you surf from a single IP (And the localhost ). Hmm, I'm not so sure about that but I'll

RE: CFMX - relationship between IIS and JRun

2002-09-10 Thread Ilyinsky, Igor
Dave, This is really no different than how the regular version of CF MX works True, but in the J2EE version there is no ColdFusion MX Application Server service. Then again, if it's not jrunsvc.exe, it's some other service running the app server. I think this is true for any version of CF MX

RE: Macintosh/CFFILE Problems - Corruption

2002-09-10 Thread Chad Gray
I have always heard that SIT is 8 bit and HQX is 7 bit So the 8th bit of a SIT file tends to get chopped off if the file is modified on a PC. -Original Message- From: Joshua Miller [mailto:[EMAIL PROTECTED]] Sent: Tuesday, September 10, 2002 9:31 AM To: CF-Talk Subject: RE:

Re: Jsp Vs Cfm (CFMX) -- Code

2002-09-10 Thread Jeffry Houser
I could be wrong. In the past the developer edition was the same feature set as ColdFusion Enterprise. It seems to me that this would be the best approach. Why should I have to pay $5,000 just so I can develop something on my local machine? At 07:30 AM 9/10/2002 -0700, you wrote: On

Re: Jsp Vs Cfm (CFMX) -- Code

2002-09-10 Thread todd
It was my understanding that the developer version is a full fledge enterprise as well and restricted to 2 IPs (localhost, and whatever else). Jeffry isn't the only one that thought this. ~Todd On Tue, 10 Sep 2002, Sean A Corfield wrote: On Tuesday, September 10, 2002, at 06:51 , Jeffry

Re: Jsp Vs Cfm (CFMX) -- Code

2002-09-10 Thread Sean A Corfield
On Tuesday, September 10, 2002, at 07:15 , Dick Applebaum wrote: The Mac comes with a full Native Java system already installed (including JDK) -- so any needed Java compiler is already present. Yes, but it isn't being invoked correctly for the Mac. Any idea on what needs to be changed, and

Re: Jsp Vs Cfm (CFMX) -- Code

2002-09-10 Thread Dick Applebaum
Restricting featueres isn't logical, considering the purpose of the Developer version! Dick On Tuesday, September 10, 2002, at 07:30 AM, Sean A Corfield wrote: My understanding was that the Developer Edition restricted certain features - in addition to the single IP access - in the

RE: Jsp Vs Cfm (CFMX) -- Code

2002-09-10 Thread Andre Turrettini
Hey Joe, I'm a bit new to this java stuff but I would of thought that I could simply run it. What do I have to do to get the java code snippet to run. Right now, it just passes it to the browser so I can view it in the source. Tks. DRE -Original Message- From: Joe Eugene

question for MM: CFMX sandboxing security holes?

2002-09-10 Thread Gyrus
Could I get an official line from Macromedia on this? We're being told by a potential host that they are only offering CF 5 with CFFILE etc. enabled in a shared environment, secured through sandboxing, because they've been advised that the sandboxing security in CFMX is not yet stable. They are

RE: Jsp Vs Cfm (CFMX) -- Code

2002-09-10 Thread Vernon Viehe
The product team tells me that the Developer's edition is the Enterprise Edition plus the IP limitation, so, it's the full feature set. Vernon Viehe ColdFusion Community Manager Macromedia, Inc. -Original Message- From: Sean A Corfield To: CF-Talk Sent: 9/10/2002 7:30 AM

RE: question for MM: CFMX sandboxing security holes?

2002-09-10 Thread Dan Phillips
For what it's worth, we are running CFMX and running sandboxing and allow use of CFFILE, CFDIRECTORY, and other non-secure tags. The server has been up for just over a month and I've not seen any issues as of yet. Dan Phillips CFXHosting.com -Original Message- From: Gyrus

Weird Error.

2002-09-10 Thread Kevin Wong
This is a multi-part message in MIME format. --_=_NextPart_001_01C258DC.4D23E326 Content-Type: text/plain; charset=iso-8859-1 Content-Transfer-Encoding: quoted-printable Hi, I've been getting a strange error recently on some my sites. I have an = error=20 handler using cferror tag

Nice

2002-09-10 Thread Bryan F. Hogan
I like the CF Easter Egg __ Structure your ColdFusion code with Fusebox. Get the official book at http://www.fusionauthority.com/bkinfo.cfm FAQ: http://www.thenetprofits.co.uk/coldfusion/faq Archives:

CFMX on Mandrake 7.2

2002-09-10 Thread Joshua Miller
I know it's not supported, but will CFMX run on Mandrake 7.2 (x86) ? If so, anyone know if there's information out there about how to do it? Thanks, Joshua Miller [EMAIL PROTECTED] __ Signup for the Fusion Authority news

CF 5 and CFMX and headers

2002-09-10 Thread Mark A. Kruger - CFG
On 2 boxes with IIS 5 - one running CFMX and one running CF 5, I have the same code. On a post request (or any request), the CFMX box has the following headers in the request: ** Expires: Thu, 01 Dec 1994 16:00:00 GMT Cache-Control:

RE: Macintosh/CFFILE Problems - Corruption

2002-09-10 Thread Joshua Miller
Ah Thanks for the info, that's been bugging me for some time now. Joshua Miller [EMAIL PROTECTED] -Original Message- From: Chad Gray [mailto:[EMAIL PROTECTED]] Sent: Tuesday, September 10, 2002 10:39 AM To: CF-Talk Subject: RE: Macintosh/CFFILE Problems - Corruption I have

Re: Jsp Vs Cfm (CFMX) -- Code

2002-09-10 Thread Dick Applebaum
Thanks Vern, That's what I expected! Dick On Tuesday, September 10, 2002, at 08:08 AM, Vernon Viehe wrote: The product team tells me that the Developer's edition is the Enterprise Edition plus the IP limitation, so, it's the full feature set.

RE: CFMX on Mandrake 7.2

2002-09-10 Thread Jesse Noller
Not supported! (should work tho, minus verity) Jesse Noller [EMAIL PROTECTED] Macromedia Server Development Unix/Linux special guy But I ned tacos! I need them or I will explode! That happens to me sometimes! -GIR -Original Message- From: Joshua Miller [mailto:[EMAIL

CFLOGINUSER bug

2002-09-10 Thread Kreig Zimmerman
I'm posting this here because I haven't had a response on the Macromedia CF Security Forum. I'd like to submit the bug to Macromedia... anybody got that URL handy? Found two now! :) Hi all While attempting to use the new CF security architecture in our pre-existing web application (such as

Re: Nice

2002-09-10 Thread Dick Applebaum
I'll bite -- where? On Tuesday, September 10, 2002, at 08:10 AM, Bryan F. Hogan wrote: I like the CF Easter Egg __ Your ad could be here. Monies from ads go to support these lists and provide more resources for the

RE: Nice

2002-09-10 Thread Bryan F. Hogan
http://cfm.blogspot.com/ -Original Message- From: Jeffry Houser [mailto:[EMAIL PROTECTED]] Sent: Tuesday, September 10, 2002 11:15 AM To: CF-Talk Subject: Re: Nice What easter egg? At 11:10 AM 9/10/2002 -0400, you wrote: I like the CF Easter Egg

RE: Weird Error.

2002-09-10 Thread Benoit Hediard
Are you using CFMX and CFC in persistent scopes (session, application...)? Benoit Hediard www.benorama.com -Message d'origine- De : Kevin Wong [mailto:[EMAIL PROTECTED]] Envoyé : mardi 10 septembre 2002 17:11 À : CF-Talk Objet : Weird Error. This is a multi-part message in MIME

RE: Nice

2002-09-10 Thread Angel Stewart
*taps foot on floor* Ok..I'll ask... WHAT CF Easter Egg?? -Gel -Original Message- From: Bryan F. Hogan [mailto:[EMAIL PROTECTED]] I like the CF Easter Egg __ Your ad could be here. Monies from ads go to support

Fusebox 2002 Conference

2002-09-10 Thread John Beynon
The Fusebox Organization will be holding its third annual developer conference in beautiful Orlando, Florida on Saturday October 26th and Sunday October 27th (the weekend before Macromedia DevCon). We will have over 15 different speakers presenting on various Fusebox topics, including both

Re: Nice

2002-09-10 Thread Jeffry Houser
What easter egg? At 11:10 AM 9/10/2002 -0400, you wrote: I like the CF Easter Egg __ Get the mailserver that powers this list at http://www.coolfusion.com FAQ: http://www.thenetprofits.co.uk/coldfusion/faq Archives:

Re: Nice

2002-09-10 Thread Stephen Moretti
Its not even Easter!! Be patient... ;o) - Original Message - From: Dick Applebaum [EMAIL PROTECTED] To: CF-Talk [EMAIL PROTECTED] Sent: Tuesday, September 10, 2002 4:17 PM Subject: Re: Nice I'll bite -- where? On Tuesday, September 10, 2002, at 08:10 AM, Bryan F. Hogan wrote: I

RE: Weird Error.

2002-09-10 Thread Kevin Wong
Nope, using CF5. -Original Message- From: Benoit Hediard [mailto:[EMAIL PROTECTED]] Sent: Tuesday, September 10, 2002 11:27 AM To: CF-Talk Subject: RE: Weird Error. Are you using CFMX and CFC in persistent scopes (session, application...)? Benoit Hediard www.benorama.com

RE: Nice

2002-09-10 Thread Robert Everland
One thing to add is move up the language so it's the first one or the trick won't work. Robert Everland III Web Developer Extraordinaire Dixon Ticonderoga Company http://www.dixonusa.com -Original Message- From: Bryan F. Hogan [mailto:[EMAIL PROTECTED]] Sent: Tuesday, September 10,

RE: Nice

2002-09-10 Thread Adrian Lynch
So who's the kid with the three eyes? -Original Message- From: Stephen Moretti [mailto:[EMAIL PROTECTED]] Sent: 10 September 2002 16:40 To: CF-Talk Subject: Re: Nice Its not even Easter!! Be patient... ;o) - Original Message - From: Dick Applebaum [EMAIL PROTECTED] To:

RE: CFMX for J2EE (was: CFMX - relationship between IIS and JRun

2002-09-10 Thread Ilyinsky, Igor
You can start and stop CFMX independent of the underlying app server (JRun). Actually Sean, You can't. Since CFMX is an application (not a service or process) it can not be cycled. You can only cycle the service it is running on; but that further discredits my point; so I'll shut up now. :)

RE: CFLOGINUSER bug

2002-09-10 Thread Raymond Camden
[cflogin] [cfloginuser name=HowdyDoody password=x roles=1] [/cflogin] ..this should throw one of those bizarro-NEO errors which we love so much, complaining about null null summat. I'll test this and if I can confirm it, will enter a bug report. How much of an afterthought

RE: Nice

2002-09-10 Thread Sam Roach
Set your Language preference to CFML in IE you can do this by going to Internet Properties - Languages - Add - User Defined CFML Then browse to Version Information link in ColdFusion MX Administrator. -Original Message- From: Stephen Moretti [mailto:[EMAIL PROTECTED]] Sent: Tuesday,

RE: CFLOGINUSER bug

2002-09-10 Thread Raymond Camden
Kreig, I can't reproduce this bug. Can you show me the complete error message? === Raymond Camden, ColdFusion Jedi Master for Hire Email: [EMAIL PROTECTED] Yahoo IM : cfjedimaster My ally is the Force, and a powerful ally

Re: question for MM: CFMX sandboxing security holes?

2002-09-10 Thread Jochem van Dieten
Gyrus wrote: Could I get an official line from Macromedia on this? Probably not here. We're being told by a potential host that they are only offering CF 5 with CFFILE etc. enabled in a shared environment, secured through sandboxing, because they've been advised that the sandboxing

RE: Nice

2002-09-10 Thread Tony Carcieri
Ok, I tried it and didn't see anything different...does this work on DWMX version? -Original Message- From: Stephen Moretti [mailto:[EMAIL PROTECTED]] Sent: Tuesday, September 10, 2002 11:40 AM To: CF-Talk Subject: Re: Nice Its not even Easter!! Be patient... ;o) - Original

Re: Jsp Vs Cfm (CFMX) -- Code

2002-09-10 Thread Dick Applebaum
Replying to my own post: Downloaded Installed Tomcat Java Web Services Developer Pack from Sun. So, now I can run the JSP program --- It gives identical results as the cfm program. 5050 What are the results when you run the JSP program under CFMX/JRun? TIA Dick On

RE: Nice

2002-09-10 Thread todd
DWMX? *eyes Tony* No, they meant to do that in IE and .. you have to make sure that CFMX is 1st in the list, highlight it and move it up. ~Todd On Tue, 10 Sep 2002, Tony Carcieri wrote: Ok, I tried it and didn't see anything different...does this work on DWMX version? -Original

SOT: Delivering MSSQL DB to Client

2002-09-10 Thread Jamie Jackson
What's the usual way to deliver a MSSQL (7) DB to the client? (IOW, How do you get it portable, so they can replicate the DB and data on their server?) Thanks, Jamie __ This list and all House of Fusion resources hosted by

Re: Nice

2002-09-10 Thread Dick Applebaum
It doesn't work on a Mac -- why doesn't that surprise me? Dick On Tuesday, September 10, 2002, at 08:18 AM, Bryan F. Hogan wrote: http://cfm.blogspot.com/ -Original Message- From: Jeffry Houser [mailto:[EMAIL PROTECTED]] Sent: Tuesday, September 10, 2002 11:15 AM To: CF-Talk

CFMX: how to deal with type java.util.Hashtable$Enumerator

2002-09-10 Thread Marcello Frutig
Hello! I'm calling a Java method in CFMX that is returning an object of type java.util.Hashtable$Enumerator. How could I deal with this object in CFML in order to get the elements/values? I've tried to use the methods next(), etc. without success. Thanks, Marcello Frutig. -- Astrolabio

OT: ecommerce live chat case study

2002-09-10 Thread joe hobson
I run a CF-based professional development site and we offer 9-5 live Help Desk support to our users via a Flash-based chatroom. You can buy that package at http://www.cfchat.net and customize the code at will, just like we did. It integrates quite nicely with the rest of our system. Of course

Re: Nice

2002-09-10 Thread Dick Applebaum
Well, moving cfml up changes things-- Now I get a popup titlled ColdFusion MX Team. It has a nice light-blue background and a framed area that remains empty. I guess it reflects the fact that there is no support for the Mac platform! Dick On Tuesday, September 10, 2002, at 08:40 AM,

RE: Nice

2002-09-10 Thread Jesse Noller
Well, it could be because Mac's Aren't Supported! /snipe Jesse Noller [EMAIL PROTECTED] Macromedia Server Development Unix/Linux special guy But I ned tacos! I need them or I will explode! That happens to me sometimes! -GIR -Original Message- From: Dick Applebaum [mailto:[EMAIL

Re: Nice

2002-09-10 Thread Howie Hamlin
Or, you can cheat (once you log in to administrator): http://localhost:8500/cfide/administrator/settings/_licensedata.cfm?serialize -- Howie Hamlin - inFusion Project Manager On-Line Data Solutions, Inc. - www.CoolFusion.com - 631-737-4668 x101 *** Please vote for iMS here:

Re: CFMX - Slow, why?

2002-09-10 Thread Lewis Sellers
On Mon, 9 Sep 2002 15:52:15 -0700, in cf-talk you wrote: Actually, that is not entirely correct. While it is fair to say that CFMX makes use of a just-in-time (JIT) compiler, many people in the industry have a different notion as to what that means. Specifically, a JIT generally is thought to

RE: Nice

2002-09-10 Thread todd
Probably because it's Flash using Flash Remoting. Dick, no offense, but .. if you're on a unsupported platform, why would you even bother to comment about it? The rest of us are just going to say.. n sh!t ~Todd On Tue, 10 Sep 2002, Jesse Noller wrote: Well, it could be because Mac's

SQL query woes...cf 4.5 v 5.0

2002-09-10 Thread charlie griefer
hey all... i have a query running against an Access database. on CF 5, works fine. on cf 4.5, i get a SQL error. ODBC Error Code = S1000 (General error) [Microsoft][ODBC Microsoft Access Driver] Join expression not supported. the JOIN looks like this: FROM items INNER JOIN divorder ON

RE: Delivering MSSQL DB to Client

2002-09-10 Thread Ben Johnson
What's the usual way to deliver a MSSQL (7) DB to the client? (IOW, How do you get it portable, so they can replicate the DB and data on their server?) Jamie, Do you need to send a database structure a little bit of data or a database structure and a LOT of data? If you're not

Re: ecommerce live chat case study

2002-09-10 Thread Bryan Stevenson
Joe..how was your post associated with a case study and not just spam?? ;-) Did I miss something there? Bryan Stevenson B.Comm. VP Director of E-Commerce Development Electric Edge Systems Group Inc. t. 250.920.8830 e. [EMAIL PROTECTED] -

RE: Delivering MSSQL DB to Client

2002-09-10 Thread Mitko Gerensky-Greene
SQL Server 7/2000 has a very handy Import/Export facility. Using it you can specify the source and destination servers and you can export both the database structure and the data. Hope that helps, Mitko -- Original Message -- From: Ben Johnson [EMAIL

Re: Nice

2002-09-10 Thread Stephen Moretti
It doesn't work on a Mac -- why doesn't that surprise me? Dick On Tuesday, September 10, 2002, at 08:18 AM, Bryan F. Hogan wrote: http://cfm.blogspot.com/ What easter egg? At 11:10 AM 9/10/2002 -0400, you wrote: I like the CF Easter Egg Ok I shouldn't really do this on

Re: Jsp Vs Cfm (CFMX) -- Code

2002-09-10 Thread Joe Eugene
Dick, The subject of the post was Jsp Vs Cfm (CFMX).. Yes both code blocks should show same OUTPUT... unless there is problem with the language or difference in code blocks(Jsp Vs Cfm). Joe From: Dick Applebaum [EMAIL PROTECTED] Reply-To: [EMAIL PROTECTED] To: CF-Talk [EMAIL PROTECTED]

RE: Nice

2002-09-10 Thread Tony Carcieri
Sorry, shoulda been more specific...I have the eval version from the DWMX cd. As far as the settings in IE, I did it. Including throwing the language da top. Thanks, Big T -Original Message- From: [EMAIL PROTECTED] [mailto:[EMAIL PROTECTED]] Sent: Tuesday, September 10, 2002 12:23 PM

Exception Names

2002-09-10 Thread John Gedeon
I am trying to catch exceptions thrown by my application. I was wondering if there was a place where all the exeptions thrown are listed... ie all the database exception names? John Proverbs 3:5 Trust in the Lord with all your heart and lean not on your own understanding;

Re: SOT: Delivering MSSQL DB to Client

2002-09-10 Thread Joe Eugene
Jamie, You can create a BACKUP of the database and send the client..just one file.. they can use the file.. to create the new Database they need .import/export..whatever. Joe From: Jamie Jackson [EMAIL PROTECTED] Reply-To: [EMAIL PROTECTED] To: CF-Talk [EMAIL PROTECTED] Subject: SOT:

Developer Platform suggestions was Re: Nice

2002-09-10 Thread Dick Applebaum
Ya' know, it gets pretty old... I am beginning to accept the fact that as a Mac/CF developer, I will always be a second-class citizen, and not have equal resources with the competition. So, I am open to suggestions: If you could chose a platform today, with no baggage, what would it be? I

Re: Jsp Vs Cfm (CFMX) -- Code

2002-09-10 Thread Dick Applebaum
Joe From the post, I got the impression that there was a difference running the code blocks under CFMX (otherwise, what is the point of the post)? I could not run the JSP code block under my CFMX, because I run on the Mac. I did run the JSP code block under Tomcat and it gave the same

RE: SOT: Delivering MSSQL DB to Client

2002-09-10 Thread Tipton Josh (orl1jdt)
YOu can do what is called detach on a database. Then send the client the db and have a little exe that I wrote to copy the db to a directory and run sp_attach_db. Look in books on line it has all the info needed. Joshua Tipton sp_detach_db (T-SQL) Detaches a database from a server and,

CFMX unicode problem

2002-09-10 Thread Marius Milosav
Hi, I really hope that somebody can shed some light with this issue (Hint, hint Macromedia) We have one application that was fully translated in Korean (using CF5) With CFMX the previously translated data cannot be properly display by CFMX , so we had to manually retrieve the data and re save

Re: Developer Platform suggestions was Re: Nice

2002-09-10 Thread Joe Eugene
Windows 2k Advantages. CF(CFMX) Development JSP(CFMX) or Tomcat Development NET Development SQL Server Oracle Joe - Original Message - From: Dick Applebaum [EMAIL PROTECTED] To: CF-Talk [EMAIL PROTECTED] Sent: Tuesday, September 10, 2002 1:12 PM Subject: Developer Platform suggestions

Re: CFMX for J2EE (was: CFMX - relationship between IIS and JRun

2002-09-10 Thread Sean A Corfield
On Tuesday, September 10, 2002, at 08:41 , Ilyinsky, Igor wrote: You can start and stop CFMX independent of the underlying app server (JRun). Actually Sean, You can't. Since CFMX is an application (not a service or process) it can not be cycled. Well, the ColdFusion MX application seems

Re: Nice

2002-09-10 Thread Dick Applebaum
Todd I doubt that Flash Remoting is the problem -- Christian Cantrell gave a Flash Remotiing presentation to a Recent FlashForward entirely on a Mac (Server and Client). Christian is co-authoring a book on the subjace with Mike Chambers... Christian tells me he does all his development on a

RE: Delivering MSSQL DB to Client

2002-09-10 Thread Jason Egan
Yes, doing a SQL to SQL transfer is the best - you get all extended properties etc... Jason CFDynamics.com -Original Message- From: Mitko Gerensky-Greene [mailto:[EMAIL PROTECTED]] Sent: Tuesday, September 10, 2002 10:56 AM To: CF-Talk Subject: RE: Delivering MSSQL DB to Client

Re: Developer Platform suggestions was Re: Nice

2002-09-10 Thread Jeffry Houser
I've used Windows 9x and they worked okay as long as you rebooted at least once a day (preferably twice). I use Windows 2000 now. I've had few problems and the system is very stable, even if I don't reboot it for 3-4 days. At 10:12 AM 9/10/2002 -0700, you wrote: Ya' know, it gets pretty

Re: Jsp Vs Cfm (CFMX) -- Code

2002-09-10 Thread Sean A Corfield
On Tuesday, September 10, 2002, at 08:04 , Vernon Viehe wrote: The product team tells me that the Developer's edition is the Enterprise Edition plus the IP limitation, so, it's the full feature set. I stand corrected. Thank you! If you're not annoying somebody, you're not really alive. --

CF encrypt() and SQL

2002-09-10 Thread Willy Ray
Ok here's what's going on: I'm using the encrypt() function to encrypt data as it goes into my database. Like this: cfquery datasource=#application.dsn# name=insertencrypteddata UPDATE mytable SET myvalue= '#encrypt(#FORM.myvalue#,mykey)#' WHERE id = #FORM.id /cfquery Some of you probably

Re: Jsp Vs Cfm (CFMX) -- Code

2002-09-10 Thread Sean A Corfield
On Monday, September 9, 2002, at 09:58 , Joe Eugene wrote: Ok.. code to my post earlier i couldnt sleep.. had to test this out.. . I was surprised at the resultsam NOT posting results.. anyone interested can use the below code.. OK, so far folks have run your code and it behaves

Re: Developer Platform suggestions was Re: Nice

2002-09-10 Thread todd
If the majority of the program I ran wasn't windows based, I'd run redhat linux. Dick, I think you're going about this the wrong way tho. OSX shows a lot of promise from what I've seen (despite that it's a day and a dollar too late). Hell, I'm jealous of OSX that it runs on top of a stable

Re: Developer Platform suggestions was Re: Nice

2002-09-10 Thread Dick Applebaum
Joe Do you have NET, SQL Server Oracle installed on your developer machine/ Are there free/reasonable developer versions of these available. The reason I ask is I want a completely self-contained environment on a laptop -- that I can use for development and demonstration to clients. I have

Re: CFLOGINUSER bug

2002-09-10 Thread Kreig Zimmerman
Raymond Camden wrote: How much of an afterthought was this security architecture, Macromedia? Not at all. I know you are being a bit sarcastic, but this _was_ a well thought feature. That being said, it is 'new' and has a few kinks that will be worked out in future updates. Yeah, I'm

RE: CF encrypt() and SQL

2002-09-10 Thread Everett, Al
Have you tried using CFQUERYPARAM? cfquery datasource=#application.dsn# name=insertencrypteddata UPDATE mytable SET myvalue= cfqueryparam cfsqltype=CF_SQL_VARCHAR value=#encrypt(FORM.myvalue,'mykey')# WHERE id = cfqueryparam cfsqltype=CF_SQL_INTEGER value=#FORM.id# /cfquery -Original

Re: CFMX unicode problem

2002-09-10 Thread Jochem van Dieten
Marius Milosav wrote: I really hope that somebody can shed some light with this issue (Hint, hint Macromedia) I doubt you will see something from Macromedia here. Maybe from Macromedia employees, but that is not the same. We have one application that was fully translated in Korean (using

Re: Developer Platform suggestions was Re: Nice

2002-09-10 Thread Jochem van Dieten
Dick Applebaum wrote: Ya' know, it gets pretty old... I am beginning to accept the fact that as a Mac/CF developer, I will always be a second-class citizen, and not have equal resources with the competition. So, I am open to suggestions: If you could chose a platform today, with no

Re: Nice

2002-09-10 Thread Sean A Corfield
On Tuesday, September 10, 2002, at 09:35 , Howie Hamlin wrote: Or, you can cheat (once you log in to administrator): http://localhost:8500/cfide/administrator/settings/_licensedata.cfm?serialize Ah, I wondered where that swf was going to show up (after seeing it on the internal Neo site for

Re: Nice

2002-09-10 Thread todd
Well, I don't know what's up with your settings then because that's all it is... it's a flash movie that scrolls up the list of names of developers that was on the CFMX team. There's nothing complicated here unless it's using Flash Remoting. ~Todd On Tue, 10 Sep 2002, Dick Applebaum wrote:

Re: CF encrypt() and SQL

2002-09-10 Thread Jochem van Dieten
Willy Ray wrote: Ok here's what's going on: I'm using the encrypt() function to encrypt data as it goes into my database. Like this: cfquery datasource=#application.dsn# name=insertencrypteddata UPDATE mytable SET myvalue= '#encrypt(#FORM.myvalue#,mykey)#' WHERE id = #FORM.id

RE: Developer Platform suggestions was Re: Nice

2002-09-10 Thread Matt Liotta
IMHO, I'd go with Linux. Not only does CF run the best on Linux, but you also have access to any kind of text editor/IDE you could want. Many of them are way better than DMX, which isn't saying much I know, but there it is. Plus, Linux is as stable as it gets and is free. Matt Liotta President

  1   2   3   >