Re: Add or Multiply as a Variable - Question Repharased

2003-10-23 Thread Dirk De Bock - Lists
You could maybe provide two fields in the database, one for multiply/divide (default to 1) and one for add/substract (default to 0), and just perform both operations, if the values are at default the result is unchanged - Original Message - From: Les Mizzell To: CF-Talk Sent: Thursday,

RE: Change default editor for view source

2003-10-23 Thread Tim Blair
Does anyone know how to turn off HomeSite+ 5.5 as the default view source editor in IE? Modify the following registry key: HKEY_LOCAL_MACHINE\SOFTWARE\Microsoft\Internet Explorer\View Source Editor\Editor Name And stick the notepad .exe in there.That should do the job. Tim.

SOT: String hashCode() value range

2003-10-23 Thread Tim Blair
Just a quick one: Is the range for the value of a string.hashCode() that of a 4-byte int (i.e. -2147483648 to 2147483647 inclusive)? Cheers, Tim. --- RAWNET LTD - Internet, New Media and ebusiness Gurus. Visit our new website at

Mappoint with COLDFUSION or JAVA WEB SERVICES API's

2003-10-23 Thread John McCosker
Hi, I know this topic has been online before but, has anyone got the webservice off the ground with either of these technologies. I would be very interested to here from you. I have done no research as off yet on the MWS, my project manager has just asked me to prioritise my development time

RE: ASP to CF5

2003-10-23 Thread Tangorre, Michael
just a quick side note... why the heck do people make cryptic variable names and column names... vn, tn, cfn back when space was expensive and memory was limited, no prob... but these days, come on... be a little descriptive! -Original Message- From: Stan Winchester [mailto:[EMAIL

RE: ASP to CF5

2003-10-23 Thread Tangorre, Michael
I understand now... Job Security. :-) -Original Message- From: Tangorre, Michael [mailto:[EMAIL PROTECTED] Sent: Thursday, October 23, 2003 7:02 AM To: CF-Talk Subject: RE: ASP to CF5 just a quick side note... why the heck do people make cryptic variable names and column names... vn,

RE: ASP to CF5

2003-10-23 Thread Adrian Lynch
Also, taken out of context a lot of variable names could be described as cryptic. Ade -Original Message- From: Tangorre, Michael [mailto:[EMAIL PROTECTED] Sent: 23 October 2003 12:04 To: CF-Talk Subject: RE: ASP to CF5 I understand now... Job Security. :-) -Original Message-

RE: ASP to CF5

2003-10-23 Thread Tangorre, Michael
Well no matter what context, those names are not informative. We used to have a guy around here name everything some variation of foo! His code was very unmanageable because by the time someone deciphered what his variables meant or referred to, they could have rewritten the code.

OT: Strange behaviour from Outlook2002

2003-10-23 Thread Michael Kear
Off Topic, so I'm sorry but I think you people know more than any other group I know of... I'm getting some aberrant behaviour from MS Outlook2002 - lately it's been popping up the invalid password dialog box when I collect mail, but if I just click OK it goes away and gets the mail.Next time I

RE: ASP to CF5

2003-10-23 Thread Adrian Lynch
Of course more descriptive names are better, but vn and tn may well be obvious to people at a certain company or on a certain project. foo is always a big no no for me, but then I've also had to look at code with Rod, Jane and Freddy as var names (people in the UK will know the significance :O)

RE: ASP to CF5

2003-10-23 Thread Tangorre, Michael
Are those the lead singers in the group WHAM?:-) -Original Message- From: Adrian Lynch [mailto:[EMAIL PROTECTED] Sent: Thursday, October 23, 2003 7:29 AM To: CF-Talk Subject: RE: ASP to CF5 Of course more descriptive names are better, but vn and tn may well be obvious to people at a

re: Stripping extra backslashes from URLDecode from UNC path

2003-10-23 Thread Bushy
Hi, I can't seem to get rid of an extra backslash when I'm outputting from my cfdirectory. Below is an example output and the code I'm using to try and get rid of the extra slash. cfset sr = #URLDecode(URLEncodedFormat(dir))# The above outputs the following: \\MYSERVER\test\ I then do a

RE: Stripping extra backslashes from URLDecode from UNC path

2003-10-23 Thread Tangorre, Michael
How about just a normal replace as apposed to a REReaplce.? -Original Message- From: Bushy [mailto:[EMAIL PROTECTED] Sent: Thursday, October 23, 2003 7:36 AM To: CF-Talk Subject: re: Stripping extra backslashes from URLDecode from UNC path Hi, I can't seem to get rid of an extra

RE: Strange behaviour from Outlook2002

2003-10-23 Thread Tim Laureska
Mike... I don't have a solution but experience this from time to time also... in addition, sometimes outlook refuses to send messages the first time... they get stuck in the outbox and I have to shut down outlook then reopen it to get the messages to go I thought doing the Office 2002 service

RE: Stripping extra backslashes from URLDecode from UNC path

2003-10-23 Thread Bushy
That was it! Thanks. Whats the difference? --Original Message Text--- From: Tangorre, Michael Date: Thu, 23 Oct 2003 07:35:51 -0400 How about just a normal replace as apposed to a REReaplce.? -Original Message- From: Bushy [mailto:[EMAIL PROTECTED] Sent: Thursday, October 23, 2003

RE: Stripping extra backslashes from URLDecode from UNC path

2003-10-23 Thread Tangorre, Michael
The REReplace is used for pattern matching replaces (regular expressions) whereas the Replace is used for known patterns such as yours (you knew you wanted to strip out all the \ no matter where they were). If you wanted to strip out slashes that only appeared after a certain character you would

OT: SQL Assistance

2003-10-23 Thread Tangorre, Michael
I have two tables: tbl_user and tbl_news In the tbl_user table I have 3 columns (among others): userId, firstName, lastName In tbl_news I have two columns (among others): creatorId, updaterId both of which relate back to the tbl_user table. In a query, how would I get the first name and last

RE: SQL Assistance (SOLVED)

2003-10-23 Thread Tangorre, Michael
Never mind... join again using another alias.. -Original Message- From: Tangorre, Michael [mailto:[EMAIL PROTECTED] Sent: Thursday, October 23, 2003 8:32 AM To: CF-Talk Subject: OT: SQL Assistance I have two tables: tbl_user and tbl_news In the tbl_user table I have 3 columns (among

RE: SQL Assistance

2003-10-23 Thread Mike Townend
you could potentially alias the tables, something like SELECT * FROM news, users creator, users updater WHERE news.creatorid = creator.userid AND news.updaterid = updater.userid -Original Message- From: Tangorre, Michael [mailto:[EMAIL PROTECTED] Sent: Thursday, October 23, 2003

Re: OT: SQL Assistance

2003-10-23 Thread Gyrus
At 08:31 23/10/2003 -0400, you wrote: I have two tables: tbl_user and tbl_news In the tbl_user table I have 3 columns (among others): userId, firstName, lastName In tbl_news I have two columns (among others): creatorId, updaterId both of which relate back to the tbl_user table. In a query, how

RE: Stripping extra backslashes from URLDecode from UNC path

2003-10-23 Thread Pascal Peters
Replace(sr,\\MYSERVER,,ALL) OR REReplace(sr,^MYSERVER,) \ is a special character in RegExp and has to be escaped to \\ If you want to strip the server from the path, and you don't have the server name, you could do REReplace(sr,^[^\]+,) -Original Message- From: Bushy

Re: SQL Assistance

2003-10-23 Thread Dirk De Bock - Lists
Join twice on the user table and differentiate by an alias select newsID, c.firstName creatorFirstName, c.lastName creatorLastName, u.firstName updaterFirstName, u.lastName updaterLastName from tbl_news n join tbl_user c on n.creatorID = c.userID join tbl_user u on n.updaterID = u.userID -

OT: SQL Query

2003-10-23 Thread Ryan Roskilly
I have the following query cfquery name=qryEvent datasource=#request.ds# SELECTtbl_event.Event_ID, tbl_event.Event_LocationID, tbl_event.Event_Date, tbl_event.Event_Title, tbl_location.location_Name FROM tbl_event, tbl_location WHERE1 = 1 AND (tbl_event.Event_LocationID =

Re:What CMS do you use?

2003-10-23 Thread Robert Everland III
To add some fule to this fire, it looks like Spectra will be open source here in the near future. What does everyone have to say to that. Neil what do you think in your opinion. Farcry or Spectra? http://spectrasource.macromedia.com/active/ Bob Everland [Todays Threads] [This Message]

Re: Macromedia to acquire eHelp.

2003-10-23 Thread Kevin Graeme
Hopefully they don't use the buyout as a way to kill RoboPDF. -Kevin - Original Message - From: Ciliotta, Mario [EMAIL PROTECTED] To: CF-Talk [EMAIL PROTECTED] Sent: Wednesday, October 22, 2003 5:15 PM Subject: SOT: Macromedia to acquire eHelp. Just saw this while looking at the eHelp

JS help - select all checkboxes

2003-10-23 Thread Tim Laureska
This is probably old hat for most, but it's a first for me I have a page of records laid out in a table that results from a query ... I want the option to delete all records or individual ones. Therefore, I have checkboxes next to each record.. deleting individual records was not a problem...

Re: JS help - select all checkboxes

2003-10-23 Thread Randell B Adkins
function CheckAll(){ for( i=0 ; idocument.FileListing.elements.length; i++) { document.FileListing.elements[i].checked=1; } } something like that. [EMAIL PROTECTED] 10/23/03 09:36AM This is probably old hat for most, but it's a first for me I have a page of records laid out in a table

Re: JS help - select all checkboxes

2003-10-23 Thread Deanna Schneider
I've used this code before (it works on all checkboxes, regardless of name): SCRIPT LANGUAGE=_javascript_ !-- Begin function checkAll() { var el = document.forms[0].elements; for(var i = 0 ; i el.length ; ++i) { if(el[i].type == checkbox) { el[i].checked = true; } } return true; } //End --

RE: JS help - select all checkboxes

2003-10-23 Thread Ryan Roskilly
The following works in IE 6 I haven't tested in any other environment though. a href="" fncSelectAll();Select All/a | a href=""> fncClearCheck();Deselect All/a script language=_javascript_ function fncSelectAll() { var CollInput = document.all.tags('INPUT') for ( i = 0 ; i CollInput.length;

RE: JS help - select all checkboxes

2003-10-23 Thread Tim Laureska
Deanna... thanks... your script doesn't throw any errors, but only puts a check in the first record checkbox for some strange reason -Original Message- From: Deanna Schneider [mailto:[EMAIL PROTECTED] Sent: Thursday, October 23, 2003 9:40 AM To: CF-Talk Subject: Re: JS help - select all

Re: OT: SQL Query

2003-10-23 Thread Jochem van Dieten
Ryan Roskilly said: cfquery name=qryEvent datasource=#request.ds# SELECTtbl_event.Event_ID, tbl_event.Event_LocationID, tbl_event.Event_Date, tbl_event.Event_Title, tbl_location.location_Name FROM tbl_event, tbl_location WHERE1 = 1 AND (tbl_event.Event_LocationID = tbl_location.location_ID

CF5 Special Characters issue

2003-10-23 Thread Justin Jefferson
When a user enters a special character like '' from 'Asistente de Programas para Aprendices de Ingls, is giving a error of Error,31,10/20/03,17:46:17,,ODBC Error Code = 37000 (Syntax error or access violation)P [MERANT][ODBC SQL Server Driver][SQL Server]Unclosed quotation mark before the

Re:RegExp puzzle

2003-10-23 Thread Don
Almost there.Now, I see why initially I was confused.Initially, the RegExp syntax like [EMAIL PROTECTED] was in SQL STMT, and I simply copied it to CF without realizing the fact that CF's implementation of RegExp differs from that of SQL (in MS SQL Server case) . the ^[:alnum:] part works in the

Re: [cftalk] CF5 Special Characters issue

2003-10-23 Thread Allan Cliff
Use CFQUERYPARAM. - Original Message - From: Justin Jefferson To: CF-Talk Sent: Thursday, October 23, 2003 4:11 PM Subject: [cftalk] CF5 Special Characters issue When a user enters a special character like '' from 'Asistente de Programas para Aprendices de Ingls, is giving a error of

RE: RegExp puzzle

2003-10-23 Thread Pascal Peters
What you are saying with the regexp is that you want to match all characters except: letters, numbers and _ @ % $ (these are your valid characters) As your string only contains valid characters (see above), the cfif block will not execute. Your original regexp would have the same result.

Re: CF5 Special Characters issue

2003-10-23 Thread Jochem van Dieten
Justin Jefferson said: When a user enters a special character like '' from 'Asistente de Programas para Aprendices de Ingls, is giving a error of Error,31,10/20/03,17:46:17,,ODBC Error Code = 37000 (Syntax error or access violation)P [MERANT][ODBC SQL Server Driver][SQL Server]Unclosed

Re:RegExp puzzle

2003-10-23 Thread Don
Sorry, I haven't made my question clear in the beginning.The goal is, to skip letters and numbers, find/match/see if a string that contains any of the following characters: _, @, %, $ and white space. Thanks. What you are saying with the regexp is that you want to match all characters except:

RE: SQL Assistance

2003-10-23 Thread Eric Creese
You would need to do something like this. select a.lastname as creator ,b.lastname as Updater from tbl_user a, tbl_user b, tbl_news c where c.creatorId = a.userId and c.updaterId = b.userId -Original Message- From: Tangorre, Michael [mailto:[EMAIL PROTECTED] Sent: Thursday, October 23,

RE: SQL Assistance

2003-10-23 Thread Eric Creese
Forgot to add the following select a.firstname +' '+a.lastname as creator ,b.firstname +' '+b.lastname as Updater from tbl_user a, tbl_user b, tbl_news c where c.creatorId = a.userId and c.updaterId = b.userId where c.newsID = ??? -Original Message- From: Eric Creese Sent: Thursday,

Re: Add or Multiply as a Variable - Question Repharased

2003-10-23 Thread Les Mizzell
Dirk De Bock - Lists wrote: You could maybe provide two fields in the database, one for multiply/divide (default to 1) and one for add/substract (default to 0), and just perform both operations, if the values are at default the result is unchanged Seems the best idea so far!They could, if

RE: RegExp puzzle

2003-10-23 Thread Pascal Peters
cfif ReFind([EMAIL PROTECTED]:space:]],str) -Original Message- From: Chunshen (Don) Li [mailto:[EMAIL PROTECTED] Sent: donderdag 23 oktober 2003 16:36 To: CF-Talk Subject: Re:RegExp puzzle Sorry, I haven't made my question clear in the beginning.The goal is, to skip letters and numbers,

RE: OT: SQL Query

2003-10-23 Thread Ryan Roskilly
Thanks Jochem, following worked correctly, I'm only dealing with about 100 records so I does not appear to hinder performance at all. SELECTtbl_event.Event_ID, tbl_event.Event_LocationID, tbl_event.Event_Date, tbl_event.Event_Title, tbl_location.location_Name FROM tbl_event, tbl_location

RE: RegExp puzzle

2003-10-23 Thread [EMAIL PROTECTED]
I think you can just negate Pascal's regexp using the ^ symbol. [EMAIL PROTECTED]:space:]] Give that a whirl see if it works. I have a love hate relationship with RegExps,I love the thought of them but I hate using them *L* -Darren -Original Message- From: Pascal Peters [mailto:[EMAIL

Hidden variables and passing data from one page to another

2003-10-23 Thread Allan Clarke
Hello Everybody, I desperately need someone to help me. I am working on a Order Form, users can rent or buy desktops. I have a form with a couple of text fields and drop downs common to users renting and ordering desktops. There are two submit buttons rent and buy. The user fills in the textboxes

CF Studio: Drag and Drop from file window and cfinclude

2003-10-23 Thread d.a.collie
Hullo, Didn't get any joy in the archives... is there anyway that you can make CF Studio auto put cfinclude instead of an HTML anchor tag when dragging and dropping from the resource window? Cheers -dc [ cf5, iis5, oracle8.1.6 ] [Todays Threads] [This Message] [Subscription] [Fast

Re: JS help - select all checkboxes

2003-10-23 Thread Deanna Schneider
Huh...I just looked at someplace the I implemented it, and the only difference was that I didn't have a return true included. Here's the code from a page it's actually used on (with the bonus uncheck script) (as opposed to my snippets). SCRIPT LANGUAGE=_javascript_ !-- Begin function checkAll() {

Re: Hidden variables and passing data from one page to another

2003-10-23 Thread Thomas Chiverton
On Thursday 23 Oct 2003 16:24 pm, Allan Clarke wrote: To: CF-Talk I am not using any server side language, only _javascript_ and html. Ermm... ? -- Tom Chiverton Advanced ColdFusion Programmer Tel: +44(0)1749 834997 email: [EMAIL PROTECTED] BlueFinger Limited Underwood Business Park Wookey

Re:Hidden variables and passing data from one page to another

2003-10-23 Thread ColdFusion Programmer
yes that's correct, I am not using ColdFusion to do this, I have been asked to do this in html and _javascript_. Is it possible to do pass hidden form variables from one page to another using html and _javascript_? Are there any other ways to do this? On Thursday 23 Oct 2003 16:24 pm, Allan

Re: Re:Hidden variables and passing data from one page to another

2003-10-23 Thread Charlie Griefer
the only way to do it using JS would be to use a GET method on your form, which will pass the hidden form field values in your URL. on the action page, you can use JS to parse those values out (the location.search object). messy, and insecure...but that's really the only way (that i know of)

Re: Re:Hidden variables and passing data from one page to another

2003-10-23 Thread Bryan Stevenson
just post the form to the next pageno JS required...basic HTMLunless I'm missing your point?? - Original Message - From: ColdFusion Programmer To: CF-Talk Sent: Thursday, October 23, 2003 8:40 AM Subject: Re:Hidden variables and passing data from one page to another yes that's

Re:Hidden variables and passing data from one page to another

2003-10-23 Thread ColdFusion Programmer
On the next page how do I get the get the value stored in the hidden variable. Can I use form.hidVariable when the method is post? just post the form to the next pageno JS required...basic HTML unless I'm missing your point?? - Original Message - From: ColdFusion Programmer

RE: Hidden variables and passing data from one page to another

2003-10-23 Thread Pascal Peters
You can't get them in JS with method post. Your only options AFAIK are to use the method get or to set them as cookies before posting. -Original Message- From: ColdFusion Programmer [mailto:[EMAIL PROTECTED] Sent: donderdag 23 oktober 2003 17:49 To: CF-Talk Subject: Re:Hidden variables

Re:Hidden variables and passing data from one page to another

2003-10-23 Thread ColdFusion Programmer
Can you post few examples of storing the values in cookies? I would really appreciate your help. You can't get them in JS with method post. Your only options AFAIK are to use the method get or to set them as cookies before posting. -Original Message- From: ColdFusion Programmer

sot-Creating a webservice......

2003-10-23 Thread Prince Critter
oi CF-Talk,!! creatingthe webservice itself is pretty cut/dry, but I have to have users pass their account and password to us and I need to cover for incase they can only pass it in the browseretc anyideason what I can give to the clients to encrypt the url coming over and decrypt it

RE: Hidden variables and passing data from one page to another

2003-10-23 Thread Pascal Peters
http://www.webreference.com/js/column8/functions.html OR just type _javascript_ cookies in GOOGLE -Original Message- From: ColdFusion Programmer [mailto:[EMAIL PROTECTED] Sent: donderdag 23 oktober 2003 17:55 To: CF-Talk Subject: Re:Hidden variables and passing data from one page to

Re: Re:Hidden variables and passing data from one page to another

2003-10-23 Thread Bryan Stevenson
ahhh...I was missing somethingyou need to use them on the next page...LOL!! Do a search on Google for _javascript_ based shopping cartsI would bet you'll find all your answers in one of those (wow...haven't built one of those in 5 yearsyikes) HTH Cheers - Original Message -

Re: Re:Hidden variables and passing data from one page to another

2003-10-23 Thread Kevin Graeme
What's the business process of how ordering is supposed to work? When a person orders something through the web interface is it supposed to notify somebody at the company that an order was placed? If so, then AFAIK there is going to have to be a server-side something. A client-side only solution

Re:CFMX 6.1 bug? server variable disappeared after upgrade!

2003-10-23 Thread Kate Johnson
I just sent in a bug report to Macromedia about this problem. Kate Johnson, Web Developer [EMAIL PROTECTED] Linn Benton Community College Media Services 541-917-4656 6500 SW Pacific Blvd. Albany, OR 97321 [Todays Threads] [This Message] [Subscription] [Fast Unsubscribe] [User Settings]

RE: CFMX 6.1 bug? server variable disappeared after upgrade!

2003-10-23 Thread Dave Watts
Has anyone noticed the variable server.coldfusion.serialnumber disappearing after upgrading from CFMX 6.0 (or earlier version) to CFMX 6.1? We have servers running CF 4.5, CF 5 and CFMX 6.1. On versions of CF prior to 6.1, the server variable is available, but not on 6.1. Did a test

RE: CFMX 6.1 bug? server variable disappeared after upgrade!

2003-10-23 Thread cf-talk
It wouldn't surprise me if they did it intentionally.I recall complaints in the past that people could buy ColdFusion hosting... get the hosting company's serial number and then install their own server. -Novak -Original Message- From: Kate Johnson [mailto:[EMAIL PROTECTED] Sent:

Credit Card processing- Address Verification (AVS) w/ Verisign

2003-10-23 Thread J E VanOver
Repost with subject heading changed -- I'll have to implement something today whether I get advice or not -- I'll do option 4) unless I get better advice.I have asked VeriSign customer service the same question and if anyone else is interested will pass on their advice. ---

Re:Hidden variables and passing data from one page to another

2003-10-23 Thread ColdFusion Programmer
yes when the form is submitted an email is sent to the manager to inform him that a customer has ordered for a desktop. There is no transaction involved. What's the business process of how ordering is supposed to work? When a person orders something through the web interface is it supposed to

EXECUTING EXTERNAL PROGRAM

2003-10-23 Thread Gunny
Really trying day, today.Will someone please think for me. I think I've lost my mind. I need to execute the dtsrun.exe SQL Server command line utility from within CF. I'm using CF 4.0 (Yeah, I know). Please help me. I'm almost ready to reach for the gun. gunny [Todays Threads] [This

RE: Hidden variables and passing data from one page to another

2003-10-23 Thread Pascal Peters
And how do you send the email? -Original Message- From: ColdFusion Programmer [mailto:[EMAIL PROTECTED] Sent: donderdag 23 oktober 2003 18:29 To: CF-Talk Subject: Re:Hidden variables and passing data from one page to another yes when the form is submitted an email is sent to the manager

Re:ASP to CF5

2003-10-23 Thread Stan Winchester
There has been a lot of talk of the cryptic variable names, and I apologize for not providing the documentation for the variables. (see the below argument description or for the complete documentation:http://www.softcomplex.com/products/tigra_menu_gold/docs/) build_hierarchy_var(vn, dbl, tn,

RE: Credit Card processing- Address Verification (AVS) w/ Verisign

2003-10-23 Thread Mark W. Breneman
Hello Jann, I am looking to maybe upgrade to cfx_payflowpro from CFX_paymentnet. What did you have to do to get cfx_payflowpro to work with CFMX? Are you using MX?The instructions I read through seemed to indicate that I needed to replace the version of java that CF runs to use cfx_payflowpro. Is

Re: sot-Creating a webservice......

2003-10-23 Thread Jochem van Dieten
Prince Critter wrote: creatingthe webservice itself is pretty cut/dry, but I have to have users pass their account and password to us and I need to cover for incase they can only pass it in the browseretc anyideason what I can give to the clients to encrypt the url coming over and

Translation please: CFC::CF as ???:ASP

2003-10-23 Thread powell
Hi guys!I have a client who is dealing with a software development company that supplies a VB-based client application, which also has a web component.They do their web work in ASP.My client has another vendor that prefers to use CF for their work, and needs to talk to the ASP oriented vendor.I'm

Re:Change default editor for view source

2003-10-23 Thread Stan Winchester
Tim, Thanks for the help! Now I got notepad back; actually TextPad http://www.textpad.com/ (awesome editor!) Stan Winchester Does anyone know how to turn off HomeSite+ 5.5 as the default view source editor in IE? Modify the following registry key:

Re: Translation please: CFC::CF as ???:ASP

2003-10-23 Thread Tom Kitta
I am not an ASP person, but as far as I know ASP is an interpreted language and in its capabilities similar to CF5 (through CF has way more futures). There is no equivalent of components for ASP AFAIK. I think CFMX is more like .net. I would suggest that you use web services for communication

RE: Translation please: CFC::CF as ???:ASP

2003-10-23 Thread Ben Densmore
ASP is not object oriented so you won't get anything like components. ASP is procedural. If you want something OO based then maybe the ASP guys can change over to ASP.NET which is OO. It sounds like web services would be the best way to go for what you want to do. Ben -Original Message-

RE: EXECUTING EXTERNAL PROGRAM

2003-10-23 Thread Scott Mulholland
Have you tried calling it with cfexecute? -Original Message- From: Gunny [mailto:[EMAIL PROTECTED] Sent: Thursday, October 23, 2003 11:35 AM To: CF-Talk Subject: EXECUTING EXTERNAL PROGRAM Really trying day, today.Will someone please think for me. I think I've lost my mind. I need to

OT: IIS 5 perfomance

2003-10-23 Thread Jeff Beer
Does anyone know how to determine how much memory and/or cpu an individual web site instance is using under IIS 5/Win2K? Performance monitor doesn't show memory/cpu for individual sites..A couple sites are bogging down the entire server but I have no clue which ones.It's not a bandwidth or

Re:RegExp puzzle

2003-10-23 Thread Don
Great.Exp [EMAIL PROTECTED]:space:]] solves the specific problem I raised in my last posting.However, I'd like to go a step further, Exp [^[:alnum:]] seems to cover a broder scope (find all nonAlphaNumeric) as in the following cfif REfind('[^[:alnum:]]',str) ... /cfif Does it make sense?

Re:RegExp puzzle

2003-10-23 Thread Don
Darren, I share your sentiment. Don I think you can just negate Pascal's regexp using the ^ symbol. [EMAIL PROTECTED]:space:]] Give that a whirl see if it works. I have a love hate relationship with RegExps,I love the thought of them but I hate using them *L* -Darren [Todays Threads]

RE: EXECUTING EXTERNAL PROGRAM

2003-10-23 Thread Gunny
CFEXECUTE would be a snap, but it didn't exist in CFD 4.0. Gunny -Original Message- From: Scott Mulholland [mailto:[EMAIL PROTECTED] Sent: Thursday, October 23, 2003 1:37 PM To: CF-Talk Subject: RE: EXECUTING EXTERNAL PROGRAM Have you tried calling it with cfexecute? -Original

RE: EXECUTING EXTERNAL PROGRAM

2003-10-23 Thread Bryan F. Hogan
You can create a store procedure and call it from there. CREATEPROCEDURE yourprocedurename AS DECLARE @dtscmd varchar(500) SELECT @dtscmd = exec master..xp_cmdshell 'dtsrun /SYOURSERVERNAME /NYOURDTSNAME /E ' EXEC(@dtscmd) GO [Todays Threads] [This Message] [Subscription] [Fast

RE: IIS 5 perfomance

2003-10-23 Thread Mark A. Kruger - CFG
Beg to differ click on ADD then choose web service from the list.You will see a list of all your web sites. Pick the one(s) you want and add the counters you are interested in. -Mark -Original Message- From: Jeff Beer [mailto:[EMAIL PROTECTED] Sent: Thursday, October 23, 2003 12:50

Re: EXECUTING EXTERNAL PROGRAM

2003-10-23 Thread Tom Kitta
Is there some CFX module for CF4 that mimicks cfexecute? There must be one, just have to search for it. TK - Original Message - From: Gunny To: CF-Talk Sent: Thursday, October 23, 2003 2:02 PM Subject: RE: EXECUTING EXTERNAL PROGRAM CFEXECUTE would be a snap, but it didn't exist in

RE: IIS 5 perfomance

2003-10-23 Thread Mark A. Kruger - CFG
Sorry... I see now that you were specifically looking for memory and cpu counters - my bad.You should still be able to determine this by finding the number of running requests for each web site. -Original Message- From: Jeff Beer [mailto:[EMAIL PROTECTED] Sent: Thursday, October 23, 2003

RE: IIS 5 perfomance

2003-10-23 Thread Jeff Beer
I must be blind, but I see no memory or CPU counters for the Web Service object, or for the IIS Global Object. -Original Message- From: Mark A. Kruger - CFG [mailto:[EMAIL PROTECTED] Sent: Thursday, October 23, 2003 2:11 PM To: CF-Talk Subject: RE: IIS 5 perfomance Beg to

RE: IIS 5 perfomance

2003-10-23 Thread Jeff Beer
Assuming the problem is caused by an excess number of requests.It doesn't seem to be. -Original Message- From: Mark A. Kruger - CFG [mailto:[EMAIL PROTECTED] Sent: Thursday, October 23, 2003 2:14 PM To: CF-Talk Subject: RE: IIS 5 perfomance Sorry... I see now that you were

RE: Translation please: CFC::CF as ???:ASP

2003-10-23 Thread Samuel Neff
ASP's equivalent of a CFC would be a VB based COM object. If you need two way communications and they're stuck with traditional ASP, then WDDX may be the best approach.There's a WDDX COM object they can use to serialize/deserialize ASP variables the same way we do with CF. If they were to use

RE: EXECUTING EXTERNAL PROGRAM

2003-10-23 Thread Gunny
I already tried to use the stored proc approach. That's what I really wanted to do. I couldn't get it to work. When I run it from the MSSQL Query Analyzer, I get no errors, but I get no file output from the DTS package I'm trying to execute, either. I have set all the permissions I can think of,

Re: EXECUTING EXTERNAL PROGRAM

2003-10-23 Thread Calvin Ward
This thread makes me think about this: October 16, 2003Hey, If You Need to Upgrade, Upgrade! ref: http://www.forta.com/blog/ - Calvin - Original Message - From: Gunny To: CF-Talk Sent: Thursday, October 23, 2003 2:02 PM Subject: RE: EXECUTING EXTERNAL PROGRAM CFEXECUTE would be a

RE: EXECUTING EXTERNAL PROGRAM

2003-10-23 Thread Dave Watts
Is there some CFX module for CF4 that mimicks cfexecute? There must be one, just have to search for it. Yes, there is. I believe it's called CFX_EXECUTE: http://www.google.com/search?q=cfx_executesourceid=mozilla-searchstart=0s tart=0ie=utf-8oe=utf-8 Dave Watts, CTO, Fig Leaf Software

RE: IIS 5 perfomance

2003-10-23 Thread Dave Watts
Does anyone know how to determine how much memory and/or cpu an individual web site instance is using under IIS 5/Win2K? Performance monitor doesn't show memory/cpu for individual sites.. A couple sites are bogging down the entire server but I have no clue which ones. It's not a bandwidth

RE: Translation please: CFC::CF as ???:ASP

2003-10-23 Thread Dave Watts
So, my question is, what do ASP people refer to components as? Within a well-designed classic ASP application, business logic is separated from ASP scripting by putting it within COM (or COM+ or MTS) objects. Classic ASP development best practices recommend the use of COM for any significant

Re: Translation please: CFC::CF as ???:ASP

2003-10-23 Thread brob
COM OBJECTS? - Original Message - From: [EMAIL PROTECTED] [EMAIL PROTECTED] To: CF-Talk Sent: Thursday, October 23, 2003 12:15 PM Subject: Translation please: CFC::CF as ???:ASP Hi guys!I have a client who is dealing with a software development company that supplies a VB-based client

Re: Re:RegExp puzzle

2003-10-23 Thread Joshua Miller
You could also write it as: REFind('[^[a-zA-Z0-9]]',str) On Thu, 2003-10-23 at 13:58, Chunshen Li wrote: Darren, I share your sentiment. Don I think you can just negate Pascal's regexp using the ^ symbol. [EMAIL PROTECTED]:space:]] Give that a whirl see if it works. I have a

RE: EXECUTING EXTERNAL PROGRAM

2003-10-23 Thread Gunny
Hey Calvin, great idea. Too bad I can't stop development right now and convert the legacy application to MX compatibility. -Original Message- From: Calvin Ward [mailto:[EMAIL PROTECTED] Sent: Thursday, October 23, 2003 2:48 PM To: CF-Talk Subject: Re: EXECUTING EXTERNAL PROGRAM This

Re: Switch:Case Differs in CFMX from CF5?

2003-10-23 Thread Patricia G . L . Hall
That sounds about right.I'll test, but I'm pretty sure it is the case. As to your suggested resolution:I'll have to rewrite the script to use if/else since the point of the udf IS to resolve the differences of target.I have to work with existing data and sometimes I'll get Y, yes 1, etc... so

RE: CFMX WebService w/ Multirefs - STILL SHOWS MULTIREFS?

2003-10-23 Thread Tom Jordahl
Sam is correct.Axis is sending the data using multrefs because it is using SOAP encoding for the data. You can turn off multirefs in Axis by editing the server-config.wsdd file found in C:\CFusionMX\wwwroot\WEB-INF. Add the following line under the globalConfiguration element:

OT: Web Reports

2003-10-23 Thread Emmet McGovern
I need to buy a new reports application.Anyone have any good suggestions? Anything but webtrends. Emmet [Todays Threads] [This Message] [Subscription] [Fast Unsubscribe] [User Settings]

RE: CFMX WebService w/ Multirefs - STILL SHOWS MULTIREFS?

2003-10-23 Thread Brook Davies
Okay, I will look at disabling the multi-refs thanks for the tip. After I defined a custom data type using cfproperty my C++ developer said this about accessingthe service: With this service everything was much better. I could successfully generate proxy class for your wsdl ( There was only 1

RE: Web Reports

2003-10-23 Thread Dan Phillips \(CFXHosting.com\)
Anything specific you looking for in the reports? Also, if you use dynamically created URLs be careful, some stats programs have trouble recording them. Dan Phillips www.CFXHosting.com 1-866-239-4678 x105 [EMAIL PROTECTED] Join us at the 2003 Macromedia MAX November 18-21, 2003 Salt Lake

Re: Web Reports

2003-10-23 Thread brob
hows about livestats - Original Message - From: Emmet McGovern To: CF-Talk Sent: Thursday, October 23, 2003 2:35 PM Subject: OT: Web Reports I need to buy a new reports application.Anyone have any good suggestions? Anything but webtrends. Emmet [Todays Threads] [This Message]

RE: Web Reports

2003-10-23 Thread Dan Phillips \(CFXHosting.com\)
Does not do dynamic URLs that good. You have to manually config a watch for each URL. That can take a lot of time. -Original Message- From: brob [mailto:[EMAIL PROTECTED] Sent: Thursday, October 23, 2003 4:17 PM To: CF-Talk Subject: Re: Web Reports hows about livestats - Original

PayflowPro CFMX (was RE: Credit Card processing- Address Verification (AVS) w/ Verisign)

2003-10-23 Thread J E VanOver
Sorry - can't help directly.For two reasons: 1) I came into the job when the system was already well established - wasn't involved in any upgrades or installations and 2) we're NOT running CMX for my project. My customer is already a Verisign customer and I found cfx_payflowpro on

RE: Web Reports

2003-10-23 Thread Eric Creese
I just purchased Statistex. I really like it so far. -Original Message- From: Dan Phillips (CFXHosting.com) [mailto:[EMAIL PROTECTED] Sent: Thursday, October 23, 2003 3:16 PM To: CF-Talk Subject: RE: Web Reports Does not do dynamic URLs that good. You have to manually config a watch for

  1   2   >