Stream data with ADO in CF

2004-06-25 Thread Taco Fleur
Has anyone successfully streamed data with ADO in ColdFusion? If you want to know why? I am using FOR XML in MS SQL and need to retrieve the result, if you know any better ways I'd love to hear about it. Samples please... At the moment I am getting an error when I try to stream with ADO,

The selected method ResolvePath was not found

2004-06-25 Thread Taco Fleur
I get the error The selected method ResolvePath was not found when trying to inspect a local web service, i.e. /my.cfc?wdsl I am not invoking it, I am just inspecting it, i.e. access http:///my.cfc?wdsl via the browser I'm on Apache if that could make any difference? Any ideas?

RE: ANNOUNCE: ColdFusion MX Master Class, July 19th

2004-06-25 Thread Alistair Davidson
True, England can't seem to hold onto anything for very long. certainly not a one-goal lead... _ From: Jerry Johnson [mailto:[EMAIL PROTECTED] Sent: 24 June 2004 17:24 To: CF-Talk Subject: RE: ANNOUNCE: ColdFusion MX Master Class, July 19th Nah. The British would have lost this colony

RE: cftransaction inside or outside cfloops?

2004-06-25 Thread Alistair Davidson
Also, it may help in these situations to think of cftransaction as a kind of DB-based CFLOCK Transactions, depending on the isolation level, may need to lock the db (either on a row or table basis) to stop any other process making a change while the transaction completes. It's worth bearing this

Coldfusion Regex

2004-06-25 Thread Ian Vaughan
Can anybody on the list provide any examples of using coldfusion with regex. For example I have the following line of regex that checks for the detection of SQL meta characters, which will help prevent SQL Injection etc /(\%27)|(\')|(\-\-)|(\%23)|(#)/ix I envisage this will be placed in

RE: Coldfusion Regex

2004-06-25 Thread Taco Fleur
You could for example check if the chi.request_method is POST, if so loop over the form structure and run the regex on each key of the form structure, you could do the same thing for the URL structure. But. your probably better of using cfqueryparam or cfprocparam, which I believe should

RE: Coldfusion Regex

2004-06-25 Thread Alistair Davidson
!--- in Application.cfm --- cfscript function isValid( strInput ){ // NOTE: the hash character must be escaped // to prevent the CF engine thinking it's the start // of a variable name var reRegEx = /(\%27)|(\')|(\-\-)|(\%23)|(##)/ix; if( REFindNoCase( reRegEx, arguments.strInput ) GT 0 ){

RE: Coldfusion Regex

2004-06-25 Thread Alistair Davidson
!--- in Application.cfm --- cfscript function isValid( strInput ){     // NOTE: the hash character must be escaped     // to prevent the CF engine thinking it's the start     // of a variable name     var reRegEx = /(\%27)|(\')|(\-\-)|(\%23)|(##)/ix;    

RE: Coldfusion Regex

2004-06-25 Thread Pascal Peters
Use cfqueryparam to prevent sql injection. You can do what you described in the application.cfm on the scopes url, form, cookie. Loop over the scopes and check the vars. The regexps in CF are different though: http://livedocs.macromedia.com/coldfusion/6.1/htmldocs/regexp.htm Pascal

RE: Coldfusion Regex

2004-06-25 Thread Pascal Peters
The regexp you used will not work as intended in CF ! -Original Message- From: Alistair Davidson [mailto:[EMAIL PROTECTED] Sent: vrijdag 25 juni 2004 11:35 To: CF-Talk Subject: RE: Coldfusion Regex !--- in Application.cfm --- cfscript function isValid( strInput ){    

Some Expert input on this

2004-06-25 Thread Taco Fleur
I am no expert in Object Oriented Programming, and I'm pretty sure I am loosing the plot somewhere with the following cfc, I would really appreciate some expert input from someone (Sean where art thou).. I believe I need to lock any access to the object as its in the server scope, not sure yet

RE: Coldfusion Regex

2004-06-25 Thread Ian Vaughan
Pascal How would I reference the scopes url, form etc ? A snippet would help me get me head around this. So why wouldnt the code (regex) below work in coldfusion ?? cfscript function isValid( strInput ){ // NOTE: the hash character must be escaped // to prevent the CF engine

RE: java.lang.OutOfMemoryError

2004-06-25 Thread Alistair Davidson
There's also a sneaky workaround I found involving the inbuilt java.lang.System object. I wrote a blog article about it here (a bit waffly, but you can just skip straight to the code at the bottom!) : http://instantbadger.blogspot.com/2004_06_01_instantbadger_archive.html# 108798595159007922

RE: java.lang.OutOfMemoryError

2004-06-25 Thread Alistair Davidson
There's also a sneaky workaround I found involving the inbuilt java.lang.System object. I wrote a blog article about it here (a bit waffly, but you can just skip straight to the code at the bottom!) : http://instantbadger.blogspot.com/2004_06_01_instantbadger_archive.html# 108798595159007922

Re: [ANN] BlueDragon 6.1 Released!

2004-06-25 Thread Claude Schneegans
final release of BlueDragon 6.1 Does it supports CFX_s or equivalent? -- ___ 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] [This

inventory management

2004-06-25 Thread Chris Tilley
I'm using the Cartweaver e-commerce for a customer and would like to have an easier way to receive inventory into the database.  Currently, you must go to the item and then it's sku page and add your received quantity.  This will be tedious seeing as my customer currently has over 1500 items in

RE: Coldfusion Regex

2004-06-25 Thread Pascal Peters
cfloop collection=#form# item=var cfset form[var] = SOmeFunctionToStripInvalidChars(form[var]) /cfloop And the same for url cookie The regexp won't work, because it is JS syntax (I think) and NOT CF syntax. / is a normal character in CF \%3C will match %3C and not the ascii character

how to open an attached file in its own application (ms-word, excel etc).. please read

2004-06-25 Thread cf coder
Hello everybody, I have CFMX installed running on a windows machine. I have a section on the site where users can view the files that are attached to a log. I've called this file showAttachments.cfm Here is the code: showattachments.cfm --- cfquery name=showAttachments

Catching this Error

2004-06-25 Thread webmaster
Hi, I'm trying to catch the error below, but I'm not sure what scope it is in, or how to display it in an error template. When I wrap the cfstoredproc in a cftry tag, I can catch the error generically, but I cannot display this specific error message because I do not know what variable is holding

Re: how to open an attached file in its own application (ms-word, excel etc).. please read

2004-06-25 Thread Dave Carabetta
On Fri, 25 Jun 2004 06:43:35 -0700 (PDT), cf coder [EMAIL PROTECTED] wrote: snip The above code works fine. It opens the file inside the browser window. However I want the file to open inside its own application. So if the attached file is a word document, I want it to open in msword.

Re: inventory management

2004-06-25 Thread brobborb
Do they have an SKU bar code or something on the physical product?On my last project, they would just scan the bar code, and it jumps right to the product info page, and they can do whatever theyw ant to it (update inventory for that particlular item, change description, etc).All of this web

Re: how to open an attached file in its own application (ms-word, excel etc).. please read

2004-06-25 Thread cf coder
there must be a way to do this. I mean, its hard to beleive that nobody has ever tried to find a solution to this problem. [Todays Threads] [This Message] [Subscription] [Fast Unsubscribe] [User Settings] [Donations and Support]

RE: [ANN] BlueDragon 6.1 Released!

2004-06-25 Thread Vince Bonfanti
Yes, BlueDragon 6.1 supports CFX tags implemented in both Java and C++. Any CFX tag that runs on CF5/MX will run correctly on BlueDragon. Vince Bonfanti New Atlanta Communications, LLC http://www.newatlanta.com From: Claude Schneegans [mailto:[EMAIL

Re: how to open an attached file in its own application (ms-word, excel etc).. please read

2004-06-25 Thread John Beynon
it's a feature of the local browser not something controllable. There's an option that needs to be flagged in eg. excel to stop it opening the spreadsheet within an IE session. Of course, if you don't use IE then the problem goes away. On Fri, 25 Jun 2004 10:25:45 -0400, cf coder [EMAIL

RE: how to open an attached file in its own application (ms-word, excel etc).. please read

2004-06-25 Thread Samuel Neff
You have a problem here: CFHEADER NAME=Content-Disposition VALUE=inline; filename=#fName# It's saying open in the browser.Change it to CFHEADER NAME=Content-Disposition VALUE=attachment; filename=#fName# HTH, Sam -- Blog:http://www.rewindlife.com

Re: how to open an attached file in its own application (ms-word, excel etc).. please read

2004-06-25 Thread dave
i wouldnt concider being in control of my OWN puter a problem, the problem i see is having some other coder whos not thinking clearly deciding how i should best view the material and with what program. sounds like a job for M$ maybe u should look at FrontPage, I'm sure thats one of the #1 tools

cffile question

2004-06-25 Thread Tony Weeg
hi there. ok, I have a mapped network drive, that from my cfmx server, I can write files to, etc...however when I try to use coldfusion and cffile, to create the file on the mapped network drive, it gives me an error, access denied. Detail The cause of this exception was:

So weird - cannot use variable for query in CFQUERY

2004-06-25 Thread Dustin Snell [Unisyn Software, LLC]
Using CF MX 6.1 with MSSQL 2000 on Windows 2003 Server Regardless of the query used the following code gives me an Macromedia][SQLServer JDBC Driver][SQLServer]Line 1: Incorrect syntax error: cfset myquery=select Count(*) as thecount from cdomains where

RE: So weird - cannot use variable for query in CFQUERY

2004-06-25 Thread Tony Weeg
maybe its not parsing the #listGetAt# like it should? tw -Original Message- From: Dustin Snell [Unisyn Software, LLC] [mailto:[EMAIL PROTECTED] Sent: Friday, June 25, 2004 10:53 AM To: CF-Talk Subject: So weird - cannot use variable for query in CFQUERY Using CF MX 6.1 with MSSQL 2000

RE: how to open an attached file in its own application (ms-word, excel etc).. please read

2004-06-25 Thread Douglas.Knudsen
why?Cause everyone has M$ Word or Excel?Using CFCONTENT you can tell the browser to expect a different mimetype and perhaps download or open it, perhaps, perhaps.What the browser does with this knowledge is beyond your control. Doug -Original Message- From: cf coder [mailto:[EMAIL

RE: So weird - cannot use variable for query in CFQUERY

2004-06-25 Thread Douglas.Knudsen
PerserveSingleQuotes() perhaps? cfquery name=getdomaindupes datasource=#datasource##PreserveSingleQuotes(myquery)#/CFQUERY Doug -Original Message- From: Dustin Snell [Unisyn Software, LLC] [mailto:[EMAIL PROTECTED] Sent: Friday, June 25, 2004 10:53 AM To: CF-Talk Subject: So weird -

RE: cffile question

2004-06-25 Thread Peterson, Andrew S.
Tony, Are your cfmx services running under the localSystem account or an administrator account? I think that sometimes your LocalSystem account may not have rights to mapped drives, whereas if your CFMX services is running under an administrator account, you'll have better luck. Sincerely,

Re: So weird - cannot use variable for query in CFQUERY

2004-06-25 Thread Joe Rinehart
I think you've having a problem with single quotes being escapedtry: cfquery name=getdomaindupes datasource=#datasource# #preserveSingleQuotes(myquery)# /CFQUERY -joe - Original Message - From: Dustin Snell [Unisyn Software, LLC] [EMAIL PROTECTED] Date: Fri, 25 Jun 2004 07:53:16

RE: how to open an attached file in its own application (ms-word, excel etc).. please read

2004-06-25 Thread Alistair Davidson
There is no way to do this from a browser (unless you use ActiveX, possibly - I've never tried it) , for very valid security reasons Can you imagine the security risks if it was possible to craft a HTML document that would automatically force-launch a downloaded document in an external

Re: inventory management

2004-06-25 Thread Chris Tilley
No SKU bar code.Just a physical part no. - Original Message - From: brobborb [EMAIL PROTECTED] Date: Fri, 25 Jun 2004 09:16:54 -0500 Subject: Re: inventory management To: CF-Talk [EMAIL PROTECTED] Do they have an SKU bar code or something on the physical product?On my last project, they

Re: cffile question

2004-06-25 Thread JediHomer
Have you tried using a UNC path? Also, is CF running as a user that has rights to access it, by default CF runs under LocalSystem so has full access to its own machine and thats all HTH - Original Message - From: Tony Weeg [EMAIL PROTECTED] Date: Fri, 25 Jun 2004 10:43:32 -0400 Subject:

cfftp question

2004-06-25 Thread Jerry Johnson
I hope I am just being stupid, but... Is there a way to tell cfftp to get a file and keep the date and time from = the ftp server, rather than the date and time it was got? If not, is thee an alternative tag or method of retrieval that will keep = the date and time? Thanks, Jerry Johnson

RE: cfftp question

2004-06-25 Thread Barney Boisvert
I don't think you can do that.However, you should be able to download the file, check the server for the datetime, and then use some system call or another to reset the date to the one you want via CFEXECUTE. Cheers, barneyb -Original Message- From: Jerry Johnson [mailto:[EMAIL

Re: CFHTTP and certificates

2004-06-25 Thread Marlon Moyer
Ion, I'm not sure that this is possible.The client certificate relies on the browser to pass it back to the server and I don't think that kind of functionality has been built into CFHTTP. In researching this, I've come across references on how to do it in Java, so that may be the way you need to

RE: So weird - cannot use variable for query in CFQUERY

2004-06-25 Thread Dustin Snell [Unisyn Software, LLC]
You were correct. Could you please explain to me how/why this happens? -Dustin _ From: Joe Rinehart [mailto:[EMAIL PROTECTED] Sent: Friday, June 25, 2004 8:00 AM To: CF-Talk Subject: Re: So weird - cannot use variable for query in CFQUERY I think you've having a problem with single

RE: cffile question

2004-06-25 Thread Tony Weeg
can you use unc path in cffile? I didn't know that...ill have to try... thanks. tw -Original Message- From: JediHomer [mailto:[EMAIL PROTECTED] Sent: Friday, June 25, 2004 11:04 AM To: CF-Talk Subject: Re: cffile question Have you tried using a UNC path? Also, is CF running as a

Re: So weird - cannot use variable for query in CFQUERY

2004-06-25 Thread Joe Rinehart
As far as I know, it's cf being nice and trying to help your strings get into SQL statements more easily. Like so: cfset text = my 'first' name cfquery datasource=foo UPDATE table SET column = '#text#' /cfquery ...CF would automatically escape the single quotes in #text#so that you don't need

RE: cffile question

2004-06-25 Thread Tony Weeg
ok I used the unc path, and still the same thing. what are the implications if I change the cfmx server to be a different account, other than localSystem?what could happen if I make the change? can I do it on the fly and it wont alter anything else? lets say if I use an administrator account...

Re: ANNOUNCE: ColdFusion MX Master Class, July 19th

2004-06-25 Thread Larry Lyons
French restaurant? Let's not support the cheese-eating surrender-monkeys as part of the class. :-) In case you have not noticed, this is a technical list, could you take your contemptible racist screed elsewhere. Larry C. Lyons [Todays Threads] [This Message] [Subscription] [Fast

cfmx service question

2004-06-25 Thread Tony Weeg
what are the implications of changing how the service logs in? if I wanted to change it from local system to lets say, a network admin acct? thanks! ...tony tony weeg senior web applications architect navtrak, inc. www.navtrak.net [EMAIL PROTECTED] 410.548.2337 visit www.antiwrap.com to send

RE: cffile question

2004-06-25 Thread Dave Watts
ok I used the unc path, and still the same thing. The SYSTEM account has no rights or access to other servers, via UNC paths or drive mappings. what are the implications if I change the cfmx server to be a different account, other than localSystem?what could happen if I make the change?

RE: cfmx service question

2004-06-25 Thread Dave Watts
what are the implications of changing how the service logs in? if I wanted to change it from local system to lets say, a network admin acct? For the love of all that's holy, don't run CFMX as a domain admin! If you do, all your CF code will run with the privileges necessary to do anything

RE: cfmx service question

2004-06-25 Thread Douglas.Knudsen
network admin?ugh, what's the IP?;)Better to use an account with much less access to your system, eh?IIRC, I have mine set to a normal user with a couple restricitons.As an added bonus, RDS finally can't change system files. Dave Watts, u out there?He's the d00d with a more precise answer on

RE: cffile question

2004-06-25 Thread Tony Weeg
so I can do it as administrator, and change it in the services panel, and restart, and things should be good? tw -Original Message- From: Dave Watts [mailto:[EMAIL PROTECTED] Sent: Friday, June 25, 2004 11:46 AM To: CF-Talk Subject: RE: cffile question ok I used the unc path, and

RE: cfmx service question

2004-06-25 Thread Douglas.Knudsen
the d00d speaks!So let it be written, so let it be done.LOL! Doug -Original Message- From: Dave Watts [mailto:[EMAIL PROTECTED] Sent: Friday, June 25, 2004 11:47 AM To: CF-Talk Subject: RE: cfmx service question what are the implications of changing how the service logs in? if I

RE: cfmx service question

2004-06-25 Thread Tony Weeg
true...local box admin acct? not domain admin :) tw -Original Message- From: Dave Watts [mailto:[EMAIL PROTECTED] Sent: Friday, June 25, 2004 11:47 AM To: CF-Talk Subject: RE: cfmx service question what are the implications of changing how the service logs in? if I wanted to

RE: Catching this Error

2004-06-25 Thread Pascal Peters
In your cfcatch do cfdump var=#cfcatch# to see what is in there -Original Message- From: [EMAIL PROTECTED] [EMAIL PROTECTED] [mailto:[EMAIL PROTECTED] Sent: vrijdag 25 juni 2004 15:52 To: CF-Talk Subject: Catching this Error Hi, I'm trying to catch the error below, but

Re: cfmx service question

2004-06-25 Thread Joe Rinehart
That would give the CF server rights to do anything a network/domain admin can do. Don't do it. -joe - Original Message - From: Tony Weeg [EMAIL PROTECTED] Date: Fri, 25 Jun 2004 11:32:23 -0400 Subject: cfmx service question To: CF-Talk [EMAIL PROTECTED] what are the implications of

RE: Catching this Error

2004-06-25 Thread Dave Watts
I'm trying to catch the error below, but I'm not sure what scope it is in, or how to display it in an error template. When I wrap the cfstoredproc in a cftry tag, I can catch the error generically, but I cannot display this specific error message because I do not know what variable is

Re: cffile question

2004-06-25 Thread Joe Rinehart
I think there's two posts going along this same line now. I would not grant CF administrator access - generally, I run it as a specific user and grant that user rights only to what it needs. -joe - Original Message - From: Tony Weeg [EMAIL PROTECTED] Date: Fri, 25 Jun 2004 11:37:04

Re: from APRIL 2004 till current month

2004-06-25 Thread Asim Manzur
Thanks everyone, I need to pass the value, like the dateformat so, I can directly use in in the query. I am submitting this form with the date value (month and year only) and then using it in the query. There is no logic in comming in my mind that how to do that. I need both month and year.

OT: Measure Application Bandwidth

2004-06-25 Thread Chris McGrath
Hi all, I am in search of a tool that will allow me to measure how much bandwidth an application uses per user(average). We have tried NAPA on a few different machines and could never get it to run. Does anyone know of a reliable tool for this? Thanks. [Todays Threads] [This Message]

duplicate inserts

2004-06-25 Thread Joshua OConnor-Rose
So this is a complete mystery to me but I've seen now on a few occasions (mostly on MX(6.1) I think but it may have happend with 5.0 too) But every so often when I'm inserting a record into a database two records get inserted. I check my cf code with debugging and note that it's not actualy

Image Issue

2004-06-25 Thread Milan Mushran
Hi Guys, When I try to upload an image using cffile, How do I check for an existence of an image on the action page. For regular form fields, we use IsDefined(), but what about for input type = file. Thanks a ton, Milan - Do you Yahoo!? Yahoo! Mail - 50x

RE: cfmx service question

2004-06-25 Thread Dave Watts
true...local box admin acct? not domain admin :) By default, local Administrator accounts still don't have rights to network resources. You can use a domain account that has those rights, and is a member of the local Administrators group, but again you don't need to use that privileged an

RE: Image Issue

2004-06-25 Thread Pascal Peters
cfif IsDefined(form.field) ANDLen(form.field) -Original Message- From: Milan Mushran [mailto:[EMAIL PROTECTED] Sent: vrijdag 25 juni 2004 17:51 To: CF-Talk Subject: Image Issue Hi Guys, When I try to upload an image using cffile, How do I check for an existence of an image on

RE: Image Issue

2004-06-25 Thread Dave Watts
When I try to upload an image using cffile, How do I check for an existence of an image on the action page. For regular form fields, we use IsDefined(), but what about for input type = file. After the file has been uploaded, you can look at CFFile.ClientFileExt to see the extension of the

Re: OT: Measure Application Bandwidth

2004-06-25 Thread Brandon Harper
On Fri, 25 Jun 2004 10:47:49 -0500, Chris McGrath [EMAIL PROTECTED] wrote: Hi all, I am in search of a tool that will allow me to measure how much bandwidth an application uses per user(average). The tools that comes to mind to keep track of this sort of stuff are either web stats, or

Re: OT: Measure Application Bandwidth

2004-06-25 Thread Jochem van Dieten
Chris McGrath wrote: I am in search of a tool that will allow me to measure how much bandwidth an application uses per user(average). What sort of application? If you mean a HTTP based application just get it from your webserver logfiles. If you mean something else, please elaborate.

RE: cfmx service question

2004-06-25 Thread Tony Weeg
ok, thanks dave, ill talk with my networkHomey, and see what he has to say, and go from there, until them cflocation to the csv file will work for now ;) later. tw -Original Message- From: Dave Watts [mailto:[EMAIL PROTECTED] Sent: Friday, June 25, 2004 11:58 AM To: CF-Talk Subject: RE:

Re: how to open an attached file in its own application (ms-word, excel etc).. please read

2004-06-25 Thread cf coder
thank you guys for your help. Alistair, I now see why this is not allowed or not recommended. Given that this is not possible, is it possible to open the file that's sitting on the server. I've changed the cfcontent deletefile attribute to 'no' CFHEADER NAME=Content-Type VALUE=#mimetype#

Re: cfmx service question

2004-06-25 Thread Jochem van Dieten
Tony Weeg wrote: what are the implications of changing how the service logs in? It gets different permissions :-) if I wanted to change it from local system to lets say, a network admin acct? I think others have sufficiently explained why this usually is not a good idea. So maybe it is a

Re: how to open an attached file in its own application (ms-word, excel etc).. please read

2004-06-25 Thread cf coder
thank you guys for your help. Alistair, I now see why this is not allowed or not recommended. Given that this is not possible, is it possible to open the file that's sitting on the server. I've changed the cfcontent deletefile attribute to 'no' CFHEADER NAME=Content-Type VALUE=#mimetype#

RE: Image Issue

2004-06-25 Thread Greg.Morphis
I think what he means is there a way to check for the existence of that file FileExists -Original Message- From: Pascal Peters [mailto:[EMAIL PROTECTED] Sent: Friday, June 25, 2004 10:55 AM To: CF-Talk Subject: RE: Image Issue cfif IsDefined(form.field) ANDLen(form.field) -Original

RE: Image Issue

2004-06-25 Thread Douglas.Knudsen
you can also look at cffile.contenttype and cffile.contentsubtype for mimetype stuffs.Better than the extension. hmm...how does CF determine this though?anyone? Doug -Original Message- From: Dave Watts [mailto:[EMAIL PROTECTED] Sent: Friday, June 25, 2004 12:04 PM To: CF-Talk

RE: cfmx service question

2004-06-25 Thread Tony Weeg
need to write a csv file to a network shared drive. getting access denied due to cfmx service running under local system account :) me -Original Message- From: Jochem van Dieten [mailto:[EMAIL PROTECTED] Sent: Friday, June 25, 2004 12:06 PM To: CF-Talk Subject: Re: cfmx service

Re: OT: Measure Application Bandwidth

2004-06-25 Thread Chris McGrath
It's an http based coldfusion application. Basically what I am looking for is something I can put on a users machine and track how much bandwidth they use while they use the application. This is a multi-part message in MIME format. Chris McGrath wrote: I am in search of a tool that

Re: cfmx service question

2004-06-25 Thread Jochem van Dieten
Tony Weeg wrote: need to write a csv file to a network shared drive. getting access denied due to cfmx service running under local system account What I would do is: - create a normal user account on the domain - restrict that account to logging in on the webserver and the target server -

WOT: Getting started with ASP.NET

2004-06-25 Thread Jeff Chastain
Does anybody have any recommendations on where to get started in ASP.NET?I worked with ASP traditional years back, but have been entirely CF since.Now I am being drug kicking back into the ASP world and have to immediately understand .NET and be able to write decent code. So anybody have any

Re: OT: Measure Application Bandwidth

2004-06-25 Thread Brandon Harper
Chris, Ahh, so you want something on the client side.Check out NetStat Live by AnalogX: http://www.analogx.com/contents/download/network/nsl.htm - Brandon On Fri, 25 Jun 2004 11:23:08 -0500, Chris McGrath [EMAIL PROTECTED] wrote: It's an http based coldfusion application. Basically what I

Re: WOT: Getting started with ASP.NET

2004-06-25 Thread Ray Champagne
I would be interested in this too.Looks like I will HAVE to go the M$ route for some projects, as much as I hate it, concurrent with writing CF code for others.YUck! Ray At 12:23 PM 6/25/2004, you wrote: Does anybody have any recommendations on where to get started in ASP.NET?I worked with ASP

RE: cfmx service question

2004-06-25 Thread Tony Weeg
thanks jochem, will do, and actually, have my network admin do it ;) thanks again! tw -Original Message- From: Jochem van Dieten [mailto:[EMAIL PROTECTED] Sent: Friday, June 25, 2004 12:27 PM To: CF-Talk Subject: Re: cfmx service question Tony Weeg wrote: need to write a csv file to

Re: WOT: Getting started with ASP.NET

2004-06-25 Thread Dave Carabetta
On Fri, 25 Jun 2004 10:23:39 -0600, Jeff Chastain [EMAIL PROTECTED] wrote: Does anybody have any recommendations on where to get started in ASP.NET?I worked with ASP traditional years back, but have been entirely CF since.Now I am being drug kicking back into the ASP world and have to

RE: Getting started with ASP.NET

2004-06-25 Thread Robyn Follen
Check out the .NET-Talk group on House Of Fusion.This exact topic is being discussed today. Robyn -Original Message- From: Jeff Chastain [mailto:[EMAIL PROTECTED] Sent: Friday, June 25, 2004 12:24 PM To: CF-Talk Subject: WOT: Getting started with ASP.NET Does anybody have any

Re: WOT: Getting started with ASP.NET

2004-06-25 Thread Les Mizzell
Ray Champagne wrote: I would be interested in this too.Looks like I will HAVE to go the M$ route for some projects, as much as I hate it, concurrent with writing CF code for others.YUck! Heh Sure they don't have PHP on that server?I was in the same position - client wanted to keep their

Re: WOT: Getting started with ASP.NET

2004-06-25 Thread Michael Dinowitz
1. Go to asp.net and get the sample code and such. 2. Join the Net-Talk list on HoF. 3. Play with code and ask questions. - Original Message - From: Jeff Chastain [EMAIL PROTECTED] Date: Fri, 25 Jun 2004 10:23:39 -0600 Subject: WOT: Getting started with ASP.NET To: CF-Talk [EMAIL

RE: Image Issue

2004-06-25 Thread Milan Mushran
Basically, I do not want to upload a file if the user did not select an image on the form page and was just trying to update some text instead. So, How do I check for the existence of an image before file upload. Thanks a ton, Milan [EMAIL PROTECTED] wrote: I think what he means is there a way

Re: Image Issue

2004-06-25 Thread Joe Rinehart
...on action page cfif isDefined(form.image) and len(form.image) cffile action=""> /cfif -joe - Original Message - From: Milan Mushran [EMAIL PROTECTED] Date: Fri, 25 Jun 2004 09:53:01 -0700 (PDT) Subject: RE: Image Issue To: CF-Talk [EMAIL PROTECTED] Basically, I do not want to

Re: Image Issue

2004-06-25 Thread Jordan Michaels
Checking the fields length would work as described in the tag below. I've always checked to see if the field was empty though. EG: CFIF IsDefined(FORM.FileFIeld) AND FORM.FileFIeld NEQ !--- process image here --- /CFIF HTH, Jordan Milan Mushran wrote: Basically, I do not want to upload a

Re: Image Issue

2004-06-25 Thread Aaron Rouse
I would check to make sure someone did not just accidently hit the space bar in the FileFIeld. cfif IsDefined(FORM.FileFIeld) AND Len(Trim(FORM.FileFIeld)) !--- process image here --- /cfif On Fri, 25 Jun 2004 10:06:16 -0700, Jordan Michaels [EMAIL PROTECTED] wrote: Checking the fields length

mm bug db

2004-06-25 Thread Hugo Ahlenius
Is the Macromedia bug database publicly accessible? If so, does anyone have any link -- I can't seem to find any.. -- Hugo Ahlenius - Hugo AhleniusE-Mail: [EMAIL PROTECTED] Project Officer Phone:+46 8 230460 UNEP GRID-ArendalFax:+46 8

Re: Getting started with ASP.NET

2004-06-25 Thread Bruce Sorge
Beginning ASP.NET with C# from WROX, and Essential C# (if you want to use C#, otherwise VB.NET in place of C#). These helped me out when the decision in my company was made to abandon CF and go to .NET. - Original Message - From: Jeff Chastain To: CF-Talk Sent: Friday, June 25, 2004

RE: [ANN] BlueDragon 6.1 Released!

2004-06-25 Thread Rick Faircloth
Thanks for the explanation, Dick! Rick -Original Message- From: Dick Applebaum [mailto:[EMAIL PROTECTED] Sent: Friday, June 25, 2004 1:25 AM To: CF-Talk Subject: Re: [ANN] BlueDragon 6.1 Released! I hit the send button too soon! So, you can run a BD/CFML system from CD-ROM. You could

RE: WOT: Getting started with ASP.NET

2004-06-25 Thread Vince Bonfanti
I'd suggest starting with Microsoft's ASP.NET Quickstart tutorials: http://www.asp.net/tutorials/quickstart.aspx Of course, you'll want to watch for upcoming BlueDragon.NET release, which will allow you to natively deploy CFML pages as integrated parts of ASP.NET applications (sharing

Re: Image Issue

2004-06-25 Thread Milan Mushran
I had tried this before posting the question and for some reason it did not work..Now it is. Thank u very much. Jordan Michaels [EMAIL PROTECTED] wrote: Checking the fields length would work as described in the tag below. I've always checked to see if the field was empty though. EG: CFIF

RE: [ANN] BlueDragon 6.1 Released!

2004-06-25 Thread Rick Faircloth
Thanks for the info! Rick -Original Message- From: Vince Bonfanti [mailto:[EMAIL PROTECTED] Sent: Friday, June 25, 2004 12:52 AM To: CF-Talk Subject: RE: [ANN] BlueDragon 6.1 Released! Hi Rick, I'll let Dick answer about run read-only. Yes, there's a free standalone server edition of

Coding Standards Implementation

2004-06-25 Thread Candace Cottrell
Hello fam! I am drafting up a coding and design standards document for the hospital. Once it is complete, what do you suggest in terms if implementation? 1) Impose the standards only on newly created apps 2) Go back and implement the standards on apps that were built in the past

RE: Getting started with ASP.NET

2004-06-25 Thread Jeff Chastain
Thanks for the pointers.I will check out the different resources mentioned.I did subscribe to the .NET-Talk list, but I don't see any discussions going on today. Thanks -- Jeff Quoting Robyn Follen [EMAIL PROTECTED]: Check out the .NET-Talk group on House Of Fusion.This exact topic is being

Re: mm bug db

2004-06-25 Thread Dave Carabetta
On Fri, 25 Jun 2004 19:14:25 +0200, Hugo Ahlenius [EMAIL PROTECTED] wrote: Is the Macromedia bug database publicly accessible? If so, does anyone have any link -- I can't seem to find any.. No. Regards, Dave. [Todays Threads] [This Message] [Subscription] [Fast Unsubscribe] [User

RE: inventory management

2004-06-25 Thread Burns, John D
I've thought about doing something a bar-code scanner and a web app. Does it work well?What kind of hardware would I need to pick up and what would be the costs?Can you control where the scanner puts the info it reads or does the user have to position the cursor to the right text box, etc in order

RE: cfmx service question

2004-06-25 Thread Burns, John D
Tony, The only 2 things you need for CF to do this is: 1. CF to be running as an account that has access to the network share. Local accounts don't have this, so you'd need a domain account or something. 2. The account that CF is running as needs the access that Dave Watts described in his post.

RE: Image Issue

2004-06-25 Thread Burns, John D
You can also do a check to make sure that the file is of the correct type (image) here. cfif isDefined(form.fileField) and len(trim(form.fileField)) and (right(form.filefield,3) eq jpg or right(form.filefield,3) eq gif)) You can do checks for other extensions as well, but that's just an idea.

Re: cftransaction inside or outside cfloops?

2004-06-25 Thread Matt Robertson
Wouldn't the answer to this be akin to the standard advice of putting cfoutputs *outside* of a cfloop?In the given example, there is nothing meaningful going on in the loop other than stuff that needs a cftransaction applied to it.Wouldn't applying and reapplying such a block repeatedly be

RTF File Question

2004-06-25 Thread Eric Gyenes
I have RTF data in a database that I want to display in a text box. The only solution I have seen is to purchase a very expensive RTF WYSIWYG editor. Does anyone have any ideas? -Thanks [Todays Threads] [This Message] [Subscription] [Fast Unsubscribe] [User Settings] [Donations and

Re: Coding Standards Implementation

2004-06-25 Thread Matt Robertson
I use 2), but *try* to keep in mind the old adage if it ain't broke don't fix it.When you mess with production code it becomes dev server code again; mostly due to stoopid typos made inadvertently during the re-dev process.Very often I create more trouble for myself and wish I had left the code

  1   2   >