RE: CFX_Ping

2004-09-02 Thread Andrew Dixon
Hi Jim As far as I have been able to see it is a problem with Windows 2003 and not CFMX. So I'm not sure whether the fix would need to come from MM or MS. The fix at the moment would be to change the server to Windows 2000. Best Regards Andrew SpamNet - Stop spam immediately and help me

RE: CF4.5 to CFMX

2004-09-02 Thread Andrew Dixon
Hi Russ. For the most part you should be fine. We moved from 4.5 to MX and the only real problem we had was with some old apps where we have used CFINSERT and CFUPDATE, there is a small change in behaviour between 4.5 and MX. Apart from that everything is pretty much ok. The only other problem

RE: Security gurus out there?

2004-09-02 Thread Alistair Davidson
...sorry, I just finished watching Columbo me too! *turns as he reaches the door, and says* Oh, just one more thing... If you're storing lots of sensitive information in a web application, DON'T RUN IT ON ACCESS!!! Access is a desktop database, threads frequently crop up on here with lots

Re: CF4.5 to CFMX

2004-09-02 Thread vishnu prasad
Hi Check for the variable name like cfset a.b.c = some value in mx it will treat as structure,so u have to craetethe structure first if u want to have migration guidlines dcoument send a mail to me i will reply to u with the document ragards Vishnu Prasad My company's thinking about

Re: cf_aebrowser - New Version Testing Help Required

2004-09-02 Thread Mark Drew
Hi Andrew I tested this in Mozilla 1.6 and I got the right results (as far as I can see) On OS X 10.2.8 I also tested using Safari 1.0.2 but the version info seemed a bit out: MAJORVERSION 85. MINORVERSION [empty string] So I dont know if this is to do with the labelinng of the Safari

hlooping and stuff

2004-09-02 Thread dave
anyone have a script already done for looping pix and recordset navigation? got a migraine and i really dont wanna start from scratch. and yes i do have 2 different extentions but one wont do navigation and the other wont loop horizontially, figures, lol wanna go 5 pics a row by 5 rows a page cfmx

Re: hlooping and stuff

2004-09-02 Thread joe velez
it's late.. but i think this will work for you... cfparam name='startrow' default='1' cfset img_per_page=25 cfset cnt=0 cfloop query='blah' startrow='#startrow#' endrow='#evaluate(startrow+img_per_page-1)#' cfset startrow=startrow+1 cfset cnt=cnt+1 cfif cnt eq 1tr/cfif tdYour Image Here/td

Re: CFX_Ping

2004-09-02 Thread joe velez
if you are on windows .. why not use cfexecute?? [Todays Threads] [This Message] [Subscription] [Fast Unsubscribe] [User Settings] [Donations and Support]

updater and instances

2004-09-02 Thread Greg Stewart
Hi all, I have just installed the CFMX updater and immediately spotted that it only updates the default cfusion instance whenyou are using the J2EE configuration option. I was wondering if anybody had figured out a best practice for patching the other instances? The only thing I can think of is

Re: CFX_Ping

2004-09-02 Thread Andrew Dixon
If you use CFEXECUTE you have to write the output to a file, then read the file using CFFILE and then parse the output to get the information you need. It is very in-efficent way of doing it, but an option. You could maybe find a way of doing it using CFOBJECT and a Java API. Best Regards

Re: advanced query builders

2004-09-02 Thread Joe Rinehart
I've tried a number of query builders, but I keep coming back to my text editor. If things get complicated, I'll use a dry erase board to help me out. -joe -- For Tabs, Trees, and more, use the jComponents: http://clearsoftware.net/clear/?template=downloads.jComponents [Todays Threads]

Market XML Feed

2004-09-02 Thread Vamp
Hello, Anyone know of a good Market Xml Feed. Trying to set-up a parser so I can get Dow's, NASDAQ and SP 500 Like Yahoo's Market Summary http://finance.yahoo.com/?u Yes I could just screen grab Yahoo's but do not want to take the chance they change the code. Thank You Vampires Internet

Re: CF4.5 to CFMX

2004-09-02 Thread Chris Norloff
We moved from CF 4.5 to CFMX for J2EE on WebSphere. The ColdFusion part was quite straight forward. The built-in code analyzer caught almost all of the changes between CF 4.5 and CFMX that affected our code (100 issues in 3,500 .cfm files). There was only one other issue - a Developer put two of

RE: advanced query builders

2004-09-02 Thread Vamp
I use an app called basenow.. http://www.basenow.com/ Thank You Vampires Internet Company Troy Montour Web Master, Network Administrator F: 763.586.0552 M: 763.458.2368 HTTP://www.vampiresinc.com _ From: Joe Rinehart [mailto:[EMAIL PROTECTED] Sent: Thursday, September 02, 2004

Access alternatives (WAS: Security gurus out there?)

2004-09-02 Thread Chris Kavanagh
If you're storing lots of sensitive information in a web application, DON'T RUN IT ON ACCESS!!! Access is a desktop database, threads frequently crop up on here with lots of info on why it's really NOT suited to a server environment... What's a better choice?SQL Server?Does anyone know of

Re: Access alternatives (WAS: Security gurus out there?)

2004-09-02 Thread Scott Stroz
Chris, MySQL is a good choice as well.Check oput http://www.mysql.com - Original Message - From: Chris Kavanagh [EMAIL PROTECTED] Date: Thu, 2 Sep 2004 13:30:57 +0100 Subject: Access alternatives (WAS: Security gurus out there?) To: CF-Talk [EMAIL PROTECTED] If you're storing lots of

Re: Access alternatives (WAS: Security gurus out there?)

2004-09-02 Thread Massimo Foti
What's a better choice?SQL Server?Does anyone know of an idiot's guide to it I could check out somewhere? A good entry-level book on SQL server: Step by Step Microsoft SQL Server 2000 Programming by Rebecca M. Riordan Paperback - 685 pages (November 2000) Microsoft Press ISBN: 0735611424 The

Re: CFX_Ping

2004-09-02 Thread Adam Haskell
Just a quick search on google and I found this: http://www.rgagnon.com/javadetails/java-0093.html I might give it a go later see what I could come up with in a nice little UDF or java CFXsince I could think of some uses for this at work. Adam H On Thu, 02 Sep 2004 07:09:40 -0400, Andrew Dixon

RE: Access alternatives (WAS: Security gurus out there?)

2004-09-02 Thread Micha Schopman
MySQL is out of the question for sensitive information. MySQL is missing to much functionality to maintain data integrity on db level. 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

Re: Access alternatives (WAS: Security gurus out there?)

2004-09-02 Thread Andrew Dixon
Really. Like what? Andrew. - Original Message - From: Micha Schopman [EMAIL PROTECTED] Date: Thu, 2 Sep 2004 14:43:16 +0200 Subject: RE: Access alternatives (WAS: Security gurus out there?) To: CF-Talk [EMAIL PROTECTED] MySQL is out of the question for sensitive information. MySQL is

RE: Weather Feed - Custom Tag

2004-09-02 Thread Jim Davis
Its old buy my NWS tag still works fine: http://www.depressedpress.com/depressedpress/Content/Development/ColdFusion/ Extensions/FreeData_NWS/Index.cfm This tag doesn't give you forecasts, but you can get them from the same (free) source.Nearly all of the other weather providers out there are

Re: Access alternatives (WAS: Security gurus out there?)

2004-09-02 Thread Scott Stroz
Micha, Please explain. On Thu, 2 Sep 2004 14:43:16 +0200, Micha Schopman [EMAIL PROTECTED] wrote: MySQL is out of the question for sensitive information. MySQL is missing to much functionality to maintain data integrity on db level. Micha Schopman Software Engineer Modern Media, Databankweg

Re: Security gurus out there?

2004-09-02 Thread Deanna Schneider
Yah, and if you do download the database, you can see who built the site, and that he considers himself a webgod. On a more applicable note, they also should turn off file directory browsing - another nifty security hole. - Original Message - From: Ray Champagne Holy crapola! BTW, I

Re: Access alternatives (WAS: Security gurus out there?)

2004-09-02 Thread Andy Allan
I'll second that motion for an explanation. Quoting Scott Stroz [EMAIL PROTECTED]: Micha, Please explain. On Thu, 2 Sep 2004 14:43:16 +0200, Micha Schopman [EMAIL PROTECTED] wrote: MySQL is out of the question for sensitive information. MySQL is missing to much functionality to

cfpop alternatives

2004-09-02 Thread Chris Musial
I am looking for an alternative way to use the functionality of the cfpop tag.The coldfusion defined function doesnt have the capabilities or the power to handle most of the actions needed for my web based email system.I have used the cfx_iipop3 and i have used the demo version up to this

RE: Access alternatives (WAS: Security gurus out there?)

2004-09-02 Thread Dave Watts
MySQL is out of the question for sensitive information. MySQL is missing to much functionality to maintain data integrity on db level. Really. Like what? I don't follow MySQL development too closely, so this may have been addressed by now, but the versions I looked at didn't ensure

RE: CF4.5 to CFMX

2004-09-02 Thread Adrian Lynch
I don't think you _have_ to create the structure first, but yup it will create one. Ade -Original Message- From: vishnu prasad [mailto:[EMAIL PROTECTED] Sent: 02 September 2004 09:38 To: CF-Talk Subject: Re: CF4.5 to CFMX Hi Check for the variable name like cfset a.b.c = some value in

Re: cfpop alternatives

2004-09-02 Thread Charlie Griefer
try cfx_pop3.I don't think you'll be disappointed. the tag works great...and as far as service...any time an update comes out Paul e-mails it to you.you don't have to worry about missing an update or constantly check a site to see if an update is available. honestly, it's been a couple of years

Re: Access alternatives (WAS: Security gurus out there?)

2004-09-02 Thread Jochem van Dieten
Andy Allan wrote: I'll second that motion for an explanation. I'll second that 'motion of distrust': http://sql-info.de/mysql/gotchas.html Jochem [Todays Threads] [This Message] [Subscription] [Fast Unsubscribe] [User Settings] [Donations and Support]

RE: Security gurus out there?

2004-09-02 Thread Ewok
lol I’ll take you’re word for it… I don’t think I want to be a log entry in an FBI investigation _ From: Deanna Schneider [mailto:[EMAIL PROTECTED] Sent: Thursday, September 02, 2004 9:10 AM To: CF-Talk Subject: Re: Security gurus out there? Yah, and if you do download the database, you

Re: Access alternatives (WAS: Security gurus out there?)

2004-09-02 Thread Dick Applebaum
Have a look at Cloudscape http://www-306.ibm.com/software/data/cloudscape/ It may be overkill but they have an option to encrypt the entire database- even the schema is not visible. Dick On Sep 2, 2004, at 5:30 AM, Chris Kavanagh wrote:   If you're storing lots of sensitive information in a

Re: CF4.5 to CFMX

2004-09-02 Thread Jochem van Dieten
Russ wrote: My company's thinking about upgrading from CF 4.5 to CFMX.How much stuff is likely to break, and is there a book/tutorial somewhere I can get? Charset handling breakage is: - unlikely if you use US-ASCII - likely if you use ISO-8859-x or Win 125x - certain if you use multibyte

RE: Access alternatives (WAS: Security gurus out there?)

2004-09-02 Thread Dave Watts
What's a better choice? SQL Server? SQL Server is certainly a better choice for a multi-user database. Oracle, Sybase and other database servers would also be better than Access. Unfortunately, they also tend to be quite expensive in many cases. Fortunately, there are cheap and/or free

coldfusion server 5, apache 1.3.27, redhat 7.3

2004-09-02 Thread Scott Trudeau
Forwarding y'all a question I've so far been unable to find an answer for.I'm not much of a coldfusion guy, but we have a couple old CF apps laying around that need it on this server. I recently updated the server it was on (a very crusty RedHat 7.2 box) to RH 7.3 (via freshrpms.net using

Re: CFX_Ping

2004-09-02 Thread Asim Manzur
if you have no choice and need to use cfexecute, just my 0.50 cents cfset ip = www.yahoo.com cfset myfile = C:\domainname.txt cfexecute name = C:\winnt\system32\ping.exe arguments=#ip# outputfile=#myfile# /cfexecute Just a quick search on google and I found this:

.NET Web Service with custom authentication class

2004-09-02 Thread Jim Campbell
I'm testing a .NET web services interface, which requires the user to instantiate a custom class and pass in authentication information as part of the web service request.If I want to invoke it via .NET, the invocation code is fairly straightforward: private void Button1_Click(object sender,

Re: Access alternatives (WAS: Security gurus out there?)

2004-09-02 Thread Andy Allan
Sweet. That's what I (and probably others) was after rather than just a Don't use MySQL. Don't actually use MySQL myself but this sort of thing is good to know. Andy Quoting Jochem van Dieten [EMAIL PROTECTED]: Andy Allan wrote: I'll second that motion for an explanation. I'll second

RE: Access alternatives (WAS: Security gurus out there?)

2004-09-02 Thread Micha Schopman
Or the following list, the missing referential integrity still remains as a MySQL nogo. MySQL is perfect for your average website, but definitely not for company critical data. Weird behaviour 1. You can define a varchar/char field 'auto_increment'. 2. SELECT 'A' = 'a' gets you true. 3. Int(10)

Re: Security gurus out there?

2004-09-02 Thread Asim Manzur
Try to move your database from the webroot to somewhere on your hdd, its still there. move it somewhere out from the webroot and re-create the hdd is Jesse A. Snyder the guy who developed this application? ...sorry, I just finished watching Columbo me too! *turns as he reaches the door,

cfm not logging as 404's with IIS 5 IIS 6

2004-09-02 Thread Gaulin, Mark
Hi I just noticed that all requests for a .cfm page that does not exist are being logged with status 200, even though the HTTP request is correctly returning a 404. This happens on both IIS 5 and IIS 6 with the w3c extended log file format. I have IIS's Custom Errors configured to return a file

Re: cfm not logging as 404's with IIS 5 IIS 6

2004-09-02 Thread Andrew Dixon
This happens because CF returns it own 404 error page and IIS and others believe it just a standard page being returned, which is a major pain the ass. There is a way to the set the missing template handler in the administrator to display a custom 404 but it is very difficult to configure and it

Re: Security gurus out there?

2004-09-02 Thread Asim Manzur
I mean re-create the datasource [Todays Threads] [This Message] [Subscription] [Fast Unsubscribe] [User Settings] [Donations and Support]

Re: Access alternatives (WAS: Security gurus out there?)

2004-09-02 Thread Andrew Dixon
How about Firdbird? I've never used it and not with CF, but I have heard good things about it. Anyone know if it can be used with CF? or if it is any good. http://firebird.sourceforge.net/ Andrew. [Todays Threads] [This Message] [Subscription] [Fast Unsubscribe] [User Settings]

Re: ATTN Duke / Durham area CFers

2004-09-02 Thread Rick Root
Jeff Price wrote: Is there something wrong with these groups? Carolina ColdFusion Users Group http://www.ccfug.org/ This is a cold fusion users group, not a macromedia users group. Trianle Area Macromedia Users Group http://groups.yahoo.com/group/tammug/ Last I had checked, TAMMUG was

Re: Market XML Feed

2004-09-02 Thread Rick Root
Vamp wrote: Yes I could just screen grab Yahoo's but do not want to take the chance they change the code. Plus, that would probably be illegal =) [Todays Threads] [This Message] [Subscription] [Fast Unsubscribe] [User Settings] [Donations and Support]

Re: Security gurus out there?

2004-09-02 Thread Ray Champagne
As I said yesterday, I really know nothing about this app, who created it, or even the guy who contacted me.The issue is resolved in my eyes.We don't have time to look into it, and I gave the guy a few names from this list to contact.What he did with the info is no longer my problem.Never

Re: Market XML Feed

2004-09-02 Thread Ray Champagne
It definitely IS illegal.Read their disclaimer/privacy policy/user agreement/whatever they call it. I have researched this in the past, and if you want to get market feeds to display on your site (legally), you have to pay for them. Ray At 10:32 AM 9/2/2004, you wrote: Vamp wrote: Yes I

RE: Access alternatives (WAS: Security gurus out there?)

2004-09-02 Thread Mark A Kruger
Micha, Ok ok... so it has a few problems (lol).I think you should apply to write the next NOT MySQL for dummies book. Seriously - this is a pretty comprehensive list and great fodder for those of us who live off of upselling. Thanks! Mark A. Kruger, CFG, MSCE www.cfwebtools.com www.necfug.com

Re: Access alternatives (WAS: Security gurus out there?)

2004-09-02 Thread Scott Stroz
Some of Micha's points are inaccurate...in some downtime, I plan on testing each issue he presents. I can tell you that the first point he makes is inaccurate.In version 4.0.17 you CANNOT 'define a varchar/char field 'auto_increment'. ' That's about as far as I have gotten...I just started

RE: Anyone looking for a java WYSIWYG online textarea replacement...

2004-09-02 Thread Marlon Moyer
I thought this could be the ONE initially, but if fails the Word Cut Paste test miserably.Every time I'd cut and paste, I'd end up with multiple copies of different parts of the text. Oh well, back to searching for the text editor nirvana. -Original Message- From: Rob [mailto:[EMAIL

Re: Access alternatives (WAS: Security gurus out there?)

2004-09-02 Thread Andrew Dixon
And it does automatically change a char(32) to varchar(32), tested on 4.0.20. that makes it 0 for 2... Andrew. [Todays Threads] [This Message] [Subscription] [Fast Unsubscribe] [User Settings] [Donations and Support]

RE: Access alternatives (WAS: Security gurus out there?)

2004-09-02 Thread Marlon Moyer
Regarding number 5, do other Db's do this differently.I know MSSql will create a temp table, copy all rows, drop original table, create new table with new defs, and then copy all data back.So actually MSSql uses more space to make table modifications.This is using Enterprise manager.You could do

Re: Anyone looking for a java WYSIWYG online textarea replacement...

2004-09-02 Thread Andrew Dixon
This is another open source one. This one is _javascript_ and works in IE on PC and all version of Mozilla on all platforms. This includes Firefox. http://sourceforge.net/projects/itools-htmlarea/ Andrew. [Todays Threads] [This Message] [Subscription] [Fast Unsubscribe] [User Settings]

Unicode with CF-4.5?

2004-09-02 Thread Russ
Is Unicode supported in CF 4.5?If not, is there a workaround? I'm trying to read a text (csv) file with CF 4.5 and I'll I'm getting is garbage.. When I saved it as non-unicode with wordpad, it works fine. Is there a way to automatically convert it? Russ [Todays Threads] [This Message]

Re: Anyone looking for a java WYSIWYG online textarea replacement...

2004-09-02 Thread Rick Root
Andrew Dixon wrote: This is another open source one. This one is _javascript_ and works in IE on PC and all version of Mozilla on all platforms. This includes Firefox. http://sourceforge.net/projects/itools-htmlarea/ One of the problems I've had with html area was the exceptionally slow

Re: ATTN Duke / Durham area CFers

2004-09-02 Thread Brian Meloche
Rick, I can't say for sure, but I think TAMMUG may have been one of the MMUGs that were affected by the web hosting outage at ClickDoug.The Cleveland MMUG (which I manage) is one of about two dozen MMUG and CFUGs affected.TAMMUG is still listed on macromedia.com as official. That said, new

Re: application testing

2004-09-02 Thread Dave Carabetta
We've recently purchased Empirix's e-TEST Suite 7.0 as well. Their sales and support reps are phenomenal (at least, ours are) and the product really does an excellent job of simplifying what it can of an otherwise tedious, complicated load testing process. All that being said, they've just raised

RE: Access alternatives (WAS: Security gurus out there?)

2004-09-02 Thread Micha Schopman
This listing contains some issues not affecting newer versions, the list has been created some time ago and is indeed outdated on a few points but for the overall ... it is MySQL in its current state. But the point was more or less, MySQL does not contain integrity functionality, and even if you

component browser does not open...

2004-09-02 Thread a k
We are having issues with our component browser in coldfusion administrator. Current configuration : Windows server 2003 and CFMX 6.1 with apache. The component browser works fine on the stand alone windows 2000 professional with or with out apace/IIS. Either it keeps trying to open repeatedly

installing MX on win2003 hangs when installing ODBC Services

2004-09-02 Thread Bert Dawson
I'm trying to install MX6.1 on Jrun, on a fresshly rebuilt 2003 server. Everything goes fine, then when i fire up CFadmin it goes through the set up things. RDS password enerted OK, then it goes to ODBC Setup: Installing the ODBC Services. This may take a few minutes. and there it stays... Any

RE: Access alternatives (WAS: Security gurus out there?)

2004-09-02 Thread Mark A Kruger
Micha, The firestorm has started and you are going to be challenged on most of these I would wager. Still, your list shows you are no novice.I liked it well enough to post it on my blog. When the point by point rebuttals come in I'll post them too - for the sake of fair play g. -mark

RE: Security gurus out there?

2004-09-02 Thread Dave Watts
Try to move your database from the webroot to somewhere on your hdd, its still there. move it somewhere out from the webroot and re-create the hdd is Jesse A. Snyder the guy who developed this application? While it's good that people want to help, we probably shouldn't comment on the list

component broswer

2004-09-02 Thread a k
We are having issues with our component browser in coldfusion administrator. Current configuration : Windows server 2003 and CFMX 6.1 with apache. The component browser works fine on the stand alone windows 2000 professional with or with out apace/IIS. Either it keeps trying to open repeatedly

Re: cfm not logging as 404's with IIS 5 IIS 6

2004-09-02 Thread Nathan Strutz
Go to IIS Manager, right-click on your site and choose properties, Home Directory tab, Configuration button, choose .cfm and click edit. There is a checkbox that says Check that file exists. Check it, hit OK 3 times and now IIS will report .cfm 404 errors instead of JRun. -nathan strutz

Re: Access alternatives (WAS: Security gurus out there?)

2004-09-02 Thread Jochem van Dieten
Andrew Dixon wrote: And it does automatically change a char(32) to varchar(32), tested on 4.0.20. If any column in a table has a variable length, the entire row becomes variable-length as a result. Therefore, if a table contains any variable-length columns (VARCHAR, TEXT, or BLOB), all CHAR

Re: Is there any way to not have a Client relog in after server reset.

2004-09-02 Thread Jim Louis
CF_Customlogin uses cookies here is the application file. Are these not client side vars? Jim Louis !---// Enable Session Management //--- cfApplication name=CF_CustomLogin sessionManagement=yes sessionTimeout=#createTimeSpan(0,0,15,0)#

Re: Access alternatives (WAS: Security gurus out there?)

2004-09-02 Thread Jochem van Dieten
Andrew Dixon wrote: How about Firdbird? I've never used it and not with CF, but I have heard good things about it. Anyone know if it can be used with CF? or if it is any good. Yes. Yes. There are quite a few Free Open Source relational databases to choose from: - Cloudscape

Re: ATTN Duke / Durham area CFers

2004-09-02 Thread Michael A Vinson
Brian Meloche wrote: Cleveland State University's MMUG was started this month ... The larger the community, the better When? Where @ CSU? URL? Thanks -Mike (who thought NE Ohio had been outsourced ;) Brian Meloche [EMAIL PROTECTED] 09/02/2004 11:25 AM Please respond to cf-talk

Re: Access alternatives (WAS: Security gurus out there?)

2004-09-02 Thread Damien McKenna
On Sep 2, 2004, at 11:46 AM, Jochem van Dieten wrote: - SAPdbhttp://www.sapdb.org/ The MySQL folks now own this. -- Damien McKenna - Web Developer - [EMAIL PROTECTED] The Limu Company - http://www.thelimucompany.com/ - 407-804-1014 Nothing endures but change. - Heraclitus [Todays Threads]

RE: cfm not logging as 404's with IIS 5 IIS 6

2004-09-02 Thread Gaulin, Mark
That did the trick. Thanks! -Original Message- From: Nathan Strutz [mailto:[EMAIL PROTECTED] Sent: Thursday, September 02, 2004 11:39 AM To: CF-Talk Subject: Re: cfm not logging as 404's with IIS 5 IIS 6 Go to IIS Manager, right-click on your site and choose properties, Home Directory

RE: .NET Web Service with custom authentication class

2004-09-02 Thread Dave Watts
I'm testing a .NET web services interface, which requires the user to instantiate a custom class and pass in authentication information as part of the web service request.If I want to invoke it via .NET, the invocation code is fairly straightforward: private void Button1_Click(object

RE: updater and instances

2004-09-02 Thread Dave Watts
I have just installed the CFMX updater and immediately spotted that it only updates the default cfusion instance whenyou are using the J2EE configuration option. I was wondering if anybody had figured out a best practice for patching the other instances? The only thing I can think of

Re: Unicode with CF-4.5?

2004-09-02 Thread Paul Hastings
Is Unicode supported in CF 4.5?If not, is there a workaround? nope. not really. I'm trying to read a text (csv) file with CF 4.5 and I'll I'm getting is garbage.. When I saved it as non-unicode with wordpad, it works fine. Is there a way to automatically convert it? if the text really needs

Auto-Login

2004-09-02 Thread Tony Pimm
If I'm logged onto my local machine in the local domain, is there a way that ColdFusion can identify my username? Is there a way of identifying if the user is logged onto the local domain already? And who the user is? Basically, I want to avoid making users log on to an internal system, and for

Re: Access alternatives (WAS: Security gurus out there?)

2004-09-02 Thread Scott Stroz
So you are admitting that the points used in your argument for not using MySQL are outdated? That's like arguing that you shouldn't use Windows Xp because of flaws found in Wndows '95.IF you are going to use data to support your argument, make sure its accurate and up to date. - Original

Re: updater and instances

2004-09-02 Thread Greg Stewart
Thanks Dave, That looks like the path of least resistance... the other option I was considering to try out was to create backups of all the instance specific neo*.xml files and then doing the whole copying larck and restoring the XML files again. But I think your suggestion is probably the safest!

RE: Auto-Login

2004-09-02 Thread Dave Watts
If I'm logged onto my local machine in the local domain, is there a way that ColdFusion can identify my username? Is there a way of identifying if the user is logged onto the local domain already? And who the user is? Basically, I want to avoid making users log on to an internal

Re: Access alternatives (WAS: Security gurus out there?)

2004-09-02 Thread Jochem van Dieten
Mark A Kruger wrote: The firestorm has started and you are going to be challenged on most of these I would wager. Still, your list shows you are no novice. The list is not Micha's, it is maintained by ACM and many people contributed in a public process:

Re: Anyone looking for a java WYSIWYG online textarea replacement...

2004-09-02 Thread Claude Schneegans
There were a lot of bugs in the beta version when I used it, and the responsiveness about fixing things was poor. There are many reasons for all those tools being buggy, I know for having developed my own which I'm yet not quite satisfied with: - on the microsoft side, the functions invoqued have

Re: application testing

2004-09-02 Thread Adam Churvis
And be aware that there is a *substantial* annual maintenance fee associated with almost any commercial load testing suite. Respectfully, Adam Phillip Churvis Member of Team Macromedia Advanced Intensive Training: * C# ASP.NET for ColdFusion Developers * ColdFusion MX Master Class * Advanced

Re: cfpop alternatives

2004-09-02 Thread Claude Schneegans
try cfx_pop3.I don't think you'll be disappointed. I strongly second this. -- ___ REUSE CODE! Use custom tags; See http://www.contentbox.com/claude/customtags/tagstore.cfm (Please send any spam to this address: [EMAIL PROTECTED]) Thanks. [Todays Threads]

RE: Unicode with CF-4.5?

2004-09-02 Thread Russ
Is that the only way?Isn't there like a COM object I can call to just turn the Unicode file into standard text file?Or some command line utility so that I can use CFEXECUTE?I really want this done programmatically, as it will be part of a automatic script that runs daily. Russ _ From: Paul

Re: .NET Web Service with custom authentication class

2004-09-02 Thread Jim Campbell
Yeah, that's the first thing I tried, but it won't work.I also tried CFINVOKEARGUMENT setting Username and Password to no avail.We're trying wrapping that class invocation into a service method itself, then passing the resulting object into a second method.Trial and error. - Jim Dave Watts

CFMAIL and mass mailings: problem?

2004-09-02 Thread Cornillon, Matthieu (Consultant)
Hi.I want to set up a page to cycle through a list of about 25,000 users and send a personalized e-mail to each of them.I have no need for fancy subscription, opt-out, or other such management features.Also, I am only doing this two or three of times.As such, my plan was to loop over a query,

Re: CFMAIL and mass mailings: problem?

2004-09-02 Thread Ray Champagne
If you are hosted somewhere than your own server, then I would make sure your host doesn't have mails-per-hour-restrictions on your server.This is the case at our hosting company, and I would assume that it would be smart for other companies to do it too.I think ours is like 3000 per hour

currency symbol converter

2004-09-02 Thread joe velez
hey is there a way to convert the $ to another character. i have an app that displays the price, but DollarFormat automatically prepends the dollar sign. I have something like cfset cursym = 'euro;' cfoutput#replace(dollarformat(price), '$', cursym, 'ALL')#/cfoutput i was just wondering if

Re: CFMAIL and mass mailings: problem?

2004-09-02 Thread joe velez
i would create a schedule task that sends out smaller amounts, maybe 500 at a time, and keeps track of where you are in the list. i dont think CF can handle sending 25K messages at once, it'll probably kill the server. however, i've only had this issue on cf4.5, i havent tested sending bulk

RE: currency symbol converter

2004-09-02 Thread Cornillon, Matthieu (Consultant)
Joe, Have you looked at LSCurrencyFormat and LSEuroCurrencyFormat?I haven't used them, but I think they might handle your needs. HTH, Matthieu -Original Message- From: joe velez [mailto:[EMAIL PROTECTED] Sent: Thursday, September 02, 2004 1:35 PM To: CF-Talk Subject: currency

Sending XML via CFHTTP

2004-09-02 Thread John Stanley
All, I am writing a cf interface between a third party software application that resides on one of our servers. The mode of communication between us and them is XML. When I run this I keep getting the error below. If I purposly screw up the url in the request, I get an unknown host error so this

Re: currency symbol converter

2004-09-02 Thread Paul Hastings
i was just wondering if anyone had a better way of doing this; and what about currencies where the symbol is at the end, or they use a comma instead of a period to delimit dollars and cents. my replace statement is going to get huge! you need i18n functions. if the locales that cf currently

Re: CFMAIL and mass mailings: problem?

2004-09-02 Thread Asim Manzur
cfquery name=getList datasource=mailing select name, email from table /cfquery cffile action="" file=#file# addnewline=yes My question is I am also getting involve in the same sort of project. How can I create the log file for the email which have been sent and the one which are refused/not

Looping Question

2004-09-02 Thread Mark Leder
I inherited a db with US phone numbers, about 3500 or so, some having a - between the first three and last four numbers. The field in question does not include area codes. I want to strip the dashes out of the db, and reinsert into the same field. I'm running the following query, which obtains

Re: Anyone looking for a java WYSIWYG online textarea replacement...

2004-09-02 Thread Jim Louis
There is also The List http://www.bris.ac.uk/is/projects/cms/ttw/ttw.html#composite Jim Louis There were a lot of bugs in the beta version when I used it, and the responsiveness about fixing things was poor. There are many reasons for all those tools being buggy, I know for having

Re: Looping Question

2004-09-02 Thread joe velez
try w/o the query name in your sql statement i had to change a few loop/queries migrating from cf5 to cfmx .. cfloop index=memberID from=1 to=#getRecords.recordcount# cfquery name=updateRecords datasource=#REQUEST.dsnSQL# username=#REQUEST.dsnUID# password=#REQUEST.dsnPWD# UPDATE

Re: currency symbol converter

2004-09-02 Thread joe velez
Cool .. i knew there was a function just too lazy to look it up. LSCurrencyFormat should provide enough for now as I'm just working on US, EUROPE, specifically Germany, but if my app goes global to regions CF doesnt support I'll check out the other links sent. Thanks to all. [Todays Threads]

RE: Looping Question

2004-09-02 Thread Cornillon, Matthieu (Consultant)
Mark, The problem is that your loop index (memberID) is changing, but nothing about the query is.You are repeatedly referring to getRecords.memberID, which, without a CFOUTPUT or CFLOOP tag, will always just give you the first record.In fact, I am surprised that you are doing anything other

Re: Access alternatives (WAS: Security gurus out there?)

2004-09-02 Thread Peter Farrell
I've been following this thread closely, but silently.I've used MySQL rather exclusively in the past couple of years.I agree with Scott that Micha's list seems to be out-dated or not explained well. I'll address this list - according to MySQL 4.0.2a-NT: 1. You can define a varchar/char field

Re: Anyone looking for a java WYSIWYG online textarea replacement...

2004-09-02 Thread Rob
editor nirvana == disallow Word (and like nirvana the odds of that happening are slim :-D) On Thu, 2 Sep 2004 10:00:25 -0500, Marlon Moyer [EMAIL PROTECTED] wrote: I thought this could be the ONE initially, but if fails the Word Cut Paste test miserably.Every time I'd cut and paste, I'd end

Re: Anyone looking for a java WYSIWYG online textarea replacement...

2004-09-02 Thread Rob
What do you want for free - a rubber biscuit? On Thu, 02 Sep 2004 11:22:50 -0400, Rick Root [EMAIL PROTECTED] wrote: Andrew Dixon wrote: This is another open source one. This one is _javascript_ and works in IE on PC and all version of Mozilla on all platforms. This includes Firefox.

Re: currency symbol converter

2004-09-02 Thread Paul Hastings
Cool .. i knew there was a function just too lazy to look it up. LSCurrencyFormat should provide enough for now as I'm just working on US, EUROPE, specifically Germany, but if my app goes global to regions CF doesnt support I'll check out the other links sent. in that case also watch out for

  1   2   >