Re: the oracle, the stored procedure and the cfstoredproc

2004-02-13 Thread Thomas Chiverton
On Thursday 12 February 2004 17:50 pm, Plunkett, Matt wrote: What version of CF are you using? MX6.1 via Weblogic. -- Tom Chiverton Advanced ColdFusion Programmer Tel: +44(0)1749 834997 email: [EMAIL PROTECTED] BlueFinger Limited Underwood Business Park Wookey Hole Road, WELLS. BA5 1AF Tel:

Re: the oracle, the stored procedure and the cfstoredproc

2004-02-13 Thread Thomas Chiverton
On Thursday 12 February 2004 20:16 pm, Plunkett, Matt wrote: Unless it changed from 6.1 to 6.0, you do not have to have a cfprocparam for the ref cursor as someone else suggested. Didn't think so - there is a technote about that change in 6.1. We put our Oracle stored procedures in this

Re: got post rejection-hehe

2004-02-13 Thread Thomas Chiverton
On Thursday 12 February 2004 17:38 pm, [EMAIL PROTECTED] wrote: You probably said one of those words that one person thins might be offensive but, which nobody else would care about. Yeah, like when I'm doing some DIY and spend hours screwing things together :waits for bounce -- Tom

RE: Fancy a ColdFusion Challenge?

2004-02-13 Thread Tim Blair
Morning all... If anyone's still intested in taking part in the CF_CodingContest then you're running out of time!Entries are due by this afternoon, 4pm GMT.So far I've had (quick count) 23 entries... Full details here: http://tech.badpen.com/cfcontest/ + the original mail is copied below. Tim.

ATN: Admin (filter)

2004-02-13 Thread Thomas Chiverton
On Friday 13 February 2004 09:31 am, Thomas Chiverton wrote: :waits for bounce Yup, got one :-) Seriously - keyword based filters are useless. You just make people write winker or scr3w instead. I'm going to look silly if this bounces too :-) -- Tom Chiverton Advanced ColdFusion Programmer

Stuck on CF5 :Structure to XML

2004-02-13 Thread Robertson-Ravo, Neil (RX)
Hey, What are the options (Custom Tags or whatever) or converting a valid ColdFusion Structure to an XML document? TIA N This e-mail is from Reed Exhibitions (Oriel House, 26 The Quadrant, Richmond, Surrey, TW9 1DL, United Kingdom), a division of Reed Business, Registered in England, Number

Re: Stuck on CF5 :Structure to XML

2004-02-13 Thread Thomas Chiverton
On Friday 13 February 2004 09:49 am, Robertson-Ravo, Neil (RX) wrote: What are the options (Custom Tags or whatever) or converting a valid ColdFusion Structure to an XML document? CFWDDX -- Tom Chiverton Advanced ColdFusion Programmer Tel: +44(0)1749 834997 email: [EMAIL PROTECTED]

RE: Stuck on CF5 :Structure to XML

2004-02-13 Thread Pascal Peters
cfwddx -Original Message- From: Robertson-Ravo, Neil (RX) [mailto:[EMAIL PROTECTED] Sent: vrijdag 13 februari 2004 10:49 To: CF-Talk Subject: Stuck on CF5 :Structure to XML Hey, What are the options (Custom Tags or whatever) or converting a valid ColdFusion Structure to an

RE: Stuck on CF5 :Structure to XML

2004-02-13 Thread Robertson-Ravo, Neil (RX)
very good, I wish! :-) nah, it needs to be a standard XML doc, not WDDX. _ From: Thomas Chiverton [mailto:[EMAIL PROTECTED] Sent: 13 February 2004 10:04 To: CF-Talk Subject: Re: Stuck on CF5 :Structure to XML On Friday 13 February 2004 09:49 am, Robertson-Ravo, Neil (RX) wrote: What

Re: Stuck on CF5 :Structure to XML

2004-02-13 Thread Thomas Chiverton
On Friday 13 February 2004 10:00 am, Robertson-Ravo, Neil (RX) wrote: very good, I wish! :-) nah, it needs to be a standard XML doc, not WDDX. WDDX is a standard. It's got a valid schema doc and everything. There is no One True Standard xml format, only schemas which define what tags,

RE: Stuck on CF5 :Structure to XML

2004-02-13 Thread Kola Oyedeji
Neil There is a custom tag on the exchange: http://www.macromedia.com/cfusion/exchange/index.cfm?view=sn131 http://www.macromedia.com/cfusion/exchange/index.cfm?view=sn131extID=1 002218 extID=1002218 You can use the xml tools created for Fusebox 4 which I believe mirror the xml functions found

RE: Stuck on CF5 :Structure to XML

2004-02-13 Thread Robertson-Ravo, Neil (RX)
Yep WDDX is a standard (not been worked on since 1997 AFAIK!) - www.openwddx.org http://www.openwddx.orgis as bare as anything! I needed a particular format of XML...I will probably have to work with MSXML or something. Thanks Anyway. N _ From: Thomas Chiverton

RE: [cftalk] RE: Importing CSV into Database - Update

2004-02-13 Thread Hugo Ahlenius
That would be dependent on locale/ODBC settings. In locales where comma is a decimal separator, semi-colon would be used as a field delimiter instead (in that case, you might have commas in the fields, if there are figures with decimals). /Hugo

RE: cf app: inventory and software mgt tool

2004-02-13 Thread Hugo Ahlenius
How about an internal wiki for that? Does it need to be database driven? - Hugo AhleniusE-Mail: [EMAIL PROTECTED] Project Officer Phone:+46 8 230460 UNEP GRID-ArendalFax:+46 8 230441 Stockholm OfficeMobile:+46 733 467111 WWW:

RE: Contribution: Capturing Standard Error for use with CFEXECUTE

2004-02-13 Thread Hugo Ahlenius
Beware: I don't know how it works on linux (I assume you are there), but there is a reported bug in cfexecute on Solaris -- if there is more than one argument, then they are not passed properly (CFMX6.1). /Hugo - Hugo AhleniusE-Mail:

RE: Cookie handling in older versions?

2004-02-13 Thread Hugo Ahlenius
That would be cf_dump, since there is no built in cfdump in CF4.5... - Hugo AhleniusE-Mail: [EMAIL PROTECTED] Project Officer Phone:+46 8 230460 UNEP GRID-ArendalFax:+46 8 230441 Stockholm OfficeMobile:+46 733 467111 WWW:

SQL UDF's and CFQUERYPARAM?

2004-02-13 Thread [EMAIL PROTECTED]
Has anyone come across any problems with SQL 2000 UDF's and CFQueryparam (CFQP)? We have had a couple of instances now where we have a query that fails with the JDBC error Unexpected SortID:255.It appears to be related to a combination of things, namely SQL UDF's, CFQP and the first argument of

RE: Stuck on CF5 :Structure to XML

2004-02-13 Thread Raymond Camden
For a flat structure, it's pretty simple. You could write a tag or udf that takes the struct as an org, and perhaps second arg to define the top level element. Here is some sample code: !--- assume s has some keys --- cfsavecontent variable=packet cfoutput root cfloop item=key collection=#s#

RE: Stuck on CF5 :Structure to XML

2004-02-13 Thread Raymond Camden
Here is an example @ cflib.org: http://www.cflib.org/udf.cfm?ID=573 [Todays Threads] [This Message] [Subscription] [Fast Unsubscribe] [User Settings]

RE: Stuck on CF5 :Structure to XML

2004-02-13 Thread Robertson-Ravo, Neil (RX)
AhhThe Jedi Master prevails;-) nice _ From: Raymond Camden [mailto:[EMAIL PROTECTED] Sent: 13 February 2004 12:26 To: CF-Talk Subject: RE: Stuck on CF5 :Structure to XML Here is an example @ cflib.org: http://www.cflib.org/udf.cfm?ID=573 http://www.cflib.org/udf.cfm?ID=573 _

RE: inserting into multiple tables

2004-02-13 Thread mayo
ths, looks as if I'll have to migrate to MySQL or MSSQL as Access doesn't seem to have anything of the kind. Gil -Original Message- From: Taco Fleur [mailto:[EMAIL PROTECTED] Sent: Friday, February 13, 2004 2:42 AM To: CF-Talk Subject: RE: inserting into multiple tables cfquery

RE: inserting into multiple tables

2004-02-13 Thread Pascal Peters
I do this all the time without any problem. Do you have a cftransaction around the queries? -Original Message- From: mayo [mailto:[EMAIL PROTECTED] Sent: vrijdag 13 februari 2004 13:29 To: CF-Talk Subject: RE: inserting into multiple tables ths, looks as if I'll have to

OT- Sort of Loop in SQL

2004-02-13 Thread Mickael
Hi All, I know how complete the following task in CF and SQL but I was wondering if there is a way to do it with only SQL.What I am trying to do is modify records sequentially in my database. I have a field in my database called destination, this is an office location.And I have many records in

RE: OT- Sort of Loop in SQL

2004-02-13 Thread MILAN MUSHRAN
You can use cursors. From: Mickael [EMAIL PROTECTED] Reply-To: [EMAIL PROTECTED] To: CF-Talk [EMAIL PROTECTED] Subject: OT- Sort of Loop in SQL Date: Fri, 13 Feb 2004 08:23:04 -0500 Hi All, I know how complete the following task in CF and SQL but I was wondering if there is a way to do it with

Re: Custom WSDL

2004-02-13 Thread Dave Carabetta
This is undoubtedly a total noob question, but not in my general realm of operations, so I'm totally clueless. I'm writing custom WSDL for a couple web services that return complex types and need to be consumable by .NET clients.So far, so good.As long as the wsdl file is a static file on

correct cfupdate syntax for SQL server

2004-02-13 Thread Tim Laureska
I'm trying to use cfupdate with a new MS SQL server database... I'm getting the error below(I'm brand new to SQL server) THIS IS THE CFUPDATE STATEMENT: cfupdate datasource=customers dbtype=odbc TABLENAME= testdatabase.myusername.customers THIS IS THE ERROR: The Primary key for table agents was

Re: OT- Sort of Loop in SQL

2004-02-13 Thread Mickael
What are cursors?Could you show me some sample code? - Original Message - From: MILAN MUSHRAN To: CF-Talk Sent: Friday, February 13, 2004 8:30 AM Subject: RE: OT- Sort of Loop in SQL You can use cursors. From: Mickael [EMAIL PROTECTED] Reply-To: [EMAIL PROTECTED] To: CF-Talk [EMAIL

RE: OT- Sort of Loop in SQL

2004-02-13 Thread Robertson-Ravo, Neil (RX)
A cursor is the SQL Ability to performa a loop etc...Are you on SQL Server? If so, open up Query Analyser and select Help Books Online. Search for Cursors This will give you all the info you need! _ From: Mickael [mailto:[EMAIL PROTECTED] Sent: 13 February 2004 13:51 To: CF-Talk

RE: correct cfupdate syntax for SQL server

2004-02-13 Thread Tony Weeg
why not use simply the cfquery tag? cfquery name= datasource= /cfquery tony -Original Message- From: Tim Laureska [mailto:[EMAIL PROTECTED] Sent: Friday, February 13, 2004 8:57 AM To: CF-Talk Subject: correct cfupdate syntax for SQL server I'm trying to use cfupdate with a new MS

RE: correct cfupdate syntax for SQL server

2004-02-13 Thread Tim Laureska
I could... but just trying to quickly convert from an Access scenario to sql server and stumbled on this error... is the cfquery tag a better way to go? -Original Message- From: Tony Weeg [mailto:[EMAIL PROTECTED] Sent: Friday, February 13, 2004 9:01 AM To: CF-Talk Subject: RE: correct

cfhttp and regex...help please

2004-02-13 Thread Critter
oi CF-Talk,!! I am retrieving a bit of html and want to grab the value of a specific hidden input in the .filecontent input type=hidden name=userName value=Critter any ideas or suggestions as to the best way to grab the value?? ta /crit -- =-=-=-=-=-=-=-=-=-=-=-=-=-[ Help me fight to keep

RE: correct cfupdate syntax for SQL server

2004-02-13 Thread Tony Weeg
I cant say 100% for sure that either is BETTER?I think that for my own sake I prefer to see the sql, as sql, with no tags to interpret anything that I am doing. but that's just me. tony -Original Message- From: Tim Laureska [mailto:[EMAIL PROTECTED] Sent: Friday, February 13, 2004

RE: Site Compiler that will handle CF

2004-02-13 Thread Ben Densmore
Can't you just install IIS and CF on the laptop? That way the presentations can run locally. Ben -Original Message- From: Parker, Kevin [mailto:[EMAIL PROTECTED] Sent: Thursday, February 12, 2004 6:07 PM To: CF-Talk Subject: Site Compiler that will handle CF Does any one know of a web

cflogin question

2004-02-13 Thread Tony Weeg
hi all. quick question. how long does the logged in status of cfloginuser persist? until browser close?in accordance with session management? I got it working, just wondering how long the status of logged in will persist. thanks ...tony tony weeg senior web applications architect navtrak,

RE: cfhttp and regex...help please

2004-02-13 Thread Pascal Peters
If you know this is the format of your hidden: regexp = 'input type=hidden name=userName value=([^]*)'; stTmp = REFindNoCase(regexp,cfhhtp.filecontent,1,true); if(stTmp.pos[1]){ val = Mid(cfhhtp.filecontent,stTmp.pos[2],stTmp.len[2]); } else{ // tag not found } Pascal -Original

RE: correct cfupdate syntax for SQL server

2004-02-13 Thread Pascal Peters
The table owner (the sql user that created the table) -Original Message- From: Tim Laureska [mailto:[EMAIL PROTECTED] Sent: vrijdag 13 februari 2004 14:57 To: CF-Talk Subject: correct cfupdate syntax for SQL server I'm trying to use cfupdate with a new MS SQL server

Re: XML storage

2004-02-13 Thread Matt Liotta
I was meaning to respond to this sooner, but have been away from email. You can find the CFC wrapper for the Xindice class created in that article at the following URL. http://devilm.com/code/DBManager.txt You can also find the Java class file at the following URL.

Re: Stuck on CF5 :Structure to XML

2004-02-13 Thread stas
Use SOXML http://www.macromedia.com/cfusion/exchange/index.cfm?view=sn131extID=1003618 - Original Message - From: Robertson-Ravo, Neil (RX) To: CF-Talk Sent: Friday, February 13, 2004 4:49 AM Subject: Stuck on CF5 :Structure to XML Hey, What are the options (Custom Tags or whatever)

RE: Stuck on CF5 :Structure to XML

2004-02-13 Thread Robertson-Ravo, Neil (RX)
AFAIK soXML does not parse Structures to XML? it does Queries.well thats what I have seen from examples etc.. _ From: stas [mailto:[EMAIL PROTECTED] Sent: 13 February 2004 14:36 To: CF-Talk Subject: Re: Stuck on CF5 :Structure to XML Use SOXML

Re: OT- Sort of Loop in SQL

2004-02-13 Thread G
Cursors are rather clunky and not particularly efficient. I suspect a primary reason for converting SQL/CF functions to a pure SQL environment would be for the increased efficiency. However, in order to realize this advantage fully, you really need to work within the SQL world. This means applying

Re: cfhttp and regex...help please

2004-02-13 Thread Critter
oi Pascal!! aye. that'll do it. thanks /crit -- =-=-=-=-=-=-=-=-=-=-=-=-=-[ Help me fight to keep my son in the US ]-= =-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-[ http://keepmysoninthe.us ]-= Friday, February 13, 2004, 9:30:02 AM, you wrote: PP If you know this is the format of your hidden:

RE: Windows NT source code

2004-02-13 Thread cfhelp
Even though I am going to probably have to deal with an increase in Hacks I think this may be a good thing, as it will force M$ to get off there a$$ and fix more in OS. Well then again I could see them saying Windows 2003 fix’s all. Rick -Original Message- From: Rob Rohan

Re:ATN: Admin (filter)

2004-02-13 Thread Michael Dinowitz
Just as a heads up for everyone, I don't filter the lists based on content. Look at the CF-Community list and you'd be shocked at what goes on and what is said. If your getting a filter message, it's coming from a subscribed member, not the HoF system. On Friday 13 February 2004 09:31 am, Thomas

OT: image map

2004-02-13 Thread Robert Orlini
This is OT sorry. But I have a CF pop-up page and I'm using an image map code for a close button located on an image (used FP 200 for this). It doesn't seem to work. The code is: map name=FPMap0 area href="" shape=rect coords=228, 10, 275, 30/mapimg height=46 alt=bottom src="" width=297 border=0

Re:ATN: Admin (filter)

2004-02-13 Thread Dave Carabetta
Just as a heads up for everyone, I don't filter the lists based on content. Look at the CF-Community list and you'd be shocked at what goes on and what is said. If your getting a filter message, it's coming from a subscribed member, not the HoF system. I keep getting warnings from System

Re: correct cfupdate syntax for SQL server

2004-02-13 Thread Ubqtous
Tim, On Friday, February 13, 2004, 9:09:02 AM, you wrote: TL is the cfquery tag a better way to go? CFINSERT and CFUPDATE are generally looked down upon thanks to various glitches the can occur (search Google Groups for either tag and you'll see some examples). Then there's Tony's notion that

Re:OT- Sort of Loop in SQL

2004-02-13 Thread Jeremy Brodie
Could you tell us what database you are using? There are major differences between Oracle and SQL Server for the strategy and syntax to use in this case. Jeremy Brodie Edgewater Technology web: http://www.edgewater.com phone:(703) 815-2500 email: [EMAIL PROTECTED] What are cursors?Could you

RE: Can't maintain Oracle connectivity - CF 5.0

2004-02-13 Thread Earl, George
George said: All of a sudden we cannot maintain our Oracle connectivity using the native drivers . . . All data sources using these drivers are failing, even ones that we have not used when the failures occur. If we restart the ColdFusion Application service we get back our

RE: correct cfupdate syntax for SQL server

2004-02-13 Thread Tim Laureska
Yeah, after thinking about what Tony said, there's no point going thru a script... I'm going to use straight SQL from now on -Original Message- From: Ubqtous [mailto:[EMAIL PROTECTED] Sent: Friday, February 13, 2004 10:01 AM To: CF-Talk Subject: Re: correct cfupdate syntax for SQL server

Update query record count?

2004-02-13 Thread ChrisWD40
Is there a way to see how many (if any) records an update query has updated after it runs? Recordcount doesn't work.. Is there a way without doing another query? Thanks, Chris [Todays Threads] [This Message] [Subscription] [Fast Unsubscribe] [User Settings]

Re: Re:OT- Sort of Loop in SQL

2004-02-13 Thread Mickael
I am using SYBASE and ACCESS.Thanks for the help - Original Message - From: Jeremy Brodie To: CF-Talk Sent: Friday, February 13, 2004 9:04 AM Subject: Re:OT- Sort of Loop in SQL Could you tell us what database you are using? There are major differences between Oracle and SQL Server for

Re: image map

2004-02-13 Thread Mickael
Have you tried it without any # signs? - Original Message - From: Robert Orlini To: CF-Talk Sent: Friday, February 13, 2004 9:46 AM Subject: OT: image map This is OT sorry. But I have a CF pop-up page and I'm using an image map code for a close button located on an image (used FP 200

RE: Can't maintain Oracle connectivity - CF 5.0

2004-02-13 Thread John Cummings
George, Make sure there's not a timeout issue or a connection limit on the db server itself.One important test to run is finding out if disabling Maintain database connections to Oracle resolved the problem.This will tell you that the problem isn't connectivity to the db, but the time the

RE: image map

2004-02-13 Thread Robert Orlini
Just did..Mike to no avail. RO -Original Message- From: Mickael [mailto:[EMAIL PROTECTED] Sent: Friday, February 13, 2004 10:09 AM To: CF-Talk Subject: Re: image map Have you tried it without any # signs? - Original Message - From: Robert Orlini To: CF-Talk Sent: Friday,

RE: Update query record count?

2004-02-13 Thread Smith, Matthew P -CONT(CSC)
I don't believe so.If you are using a db that supports multiple SQL comands in onf cfquery tag, you could: 1.do a select instead of the update first 2.set an int(say, @myRowcount to @@rowcount 3.run your update 4.return @myRowcount AS RecordsUpdated This is off the top of my head and there might

RE: XML storage

2004-02-13 Thread Rich Ziade
Thanks very much. Much appreciated. _ From: Matt Liotta [mailto:[EMAIL PROTECTED] Sent: Friday, February 13, 2004 9:35 AM To: CF-Talk Subject: Re: XML storage I was meaning to respond to this sooner, but have been away from email. You can find the CFC wrapper for the Xindice class

RE: image map

2004-02-13 Thread Tony Weeg
you have to have the #'s can you show a url where this is live and we can see? tony -Original Message- From: Robert Orlini [mailto:[EMAIL PROTECTED] Sent: Friday, February 13, 2004 10:11 AM To: CF-Talk Subject: RE: image map Just did..Mike to no avail. RO -Original

RE: the oracle, the stored procedure and the cfstoredproc

2004-02-13 Thread Plunkett, Matt
-Original Message- From: Thomas Chiverton Sent: Friday, February 13, 2004 4:30 AM To: CF-Talk Subject: Re: the oracle, the stored procedure and the cfstoredproc We put our Oracle stored procedures in this format: It seems very similar to yours, so not sure if that is any help.

Re: Update query record count?

2004-02-13 Thread ChrisWD40
I had in working in a 2 part w/ select, but was hoping to cut down to 1 query since it's being hit on every page to lower the DB load if possible. [Todays Threads] [This Message] [Subscription] [Fast Unsubscribe] [User Settings]

RE: Re:OT- Sort of Loop in SQL

2004-02-13 Thread Robertson-Ravo, Neil (RX)
Well, you do not have the option of cursors in Access. _ From: Mickael [mailto:[EMAIL PROTECTED] Sent: 13 February 2004 15:09 To: CF-Talk Subject: Re: Re:OT- Sort of Loop in SQL I am using SYBASE and ACCESS.Thanks for the help - Original Message - From: Jeremy Brodie To: CF-Talk

Re: the oracle, the stored procedure and the cfstoredproc

2004-02-13 Thread Thomas Chiverton
On Friday 13 February 2004 15:19 pm, Plunkett, Matt wrote: IS possible though, we use Oracle stored procs extensively from CF MX and 5.0. That return ref cursor-type result sets ? If so, could you just c+p one so I can check neither of us is going mad... -- Tom Chiverton Advanced ColdFusion

Re: the oracle, the stored procedure and the cfstoredproc

2004-02-13 Thread Thomas Chiverton
If so, could you just c+p one so I can check neither of us is going mad... Including the Oracle spec for the procedure ? -- Tom Chiverton Advanced ColdFusion Programmer Tel: +44(0)1749 834997 email: [EMAIL PROTECTED] BlueFinger Limited Underwood Business Park Wookey Hole Road, WELLS. BA5 1AF

RE: image map

2004-02-13 Thread Robert Orlini
Can't -- it's only on development. RO -Original Message- From: Tony Weeg [mailto:[EMAIL PROTECTED] Sent: Friday, February 13, 2004 10:19 AM To: CF-Talk Subject: RE: image map you have to have the #'s can you show a url where this is live and we can see? tony -Original

RE: Homesite namespaced custom tags

2004-02-13 Thread Rich Ziade
It worked. SAWEET! Thanks much. _ From: Raymond Camden [mailto:[EMAIL PROTECTED] Sent: Thursday, February 12, 2004 12:08 PM To: CF-Talk Subject: RE: Homesite namespaced custom tags Rich, I spoke w/ two members of the HS team, Farah Gron and Darin Cayon, shared the following with me:

RE: image map

2004-02-13 Thread Nando
Robert, Did you take a good look at the browser source code yet to confirm that you're getting the correct output? Sometimes that the best way to sort out pound sign uncertainty ... Once you get CF's output correct, HTML / _javascript_ features are unaffected by CF. :) nando -Original

Re: image map

2004-02-13 Thread Mickael
It should work fine without the pound signs, I have code that does the same thing and works.Have you tried removing the _javascript_ and just trying an regular link, this shouldn't make a difference but try making the map name without numbers (I just don't have any map names with numbers) -

RE: image map

2004-02-13 Thread Tony Weeg
ok, how about all the code associated? -Original Message- From: Robert Orlini [mailto:[EMAIL PROTECTED] Sent: Friday, February 13, 2004 10:24 AM To: CF-Talk Subject: RE: image map Can't -- it's only on development. RO -Original Message- From: Tony Weeg [mailto:[EMAIL

RE: cflogin question

2004-02-13 Thread Raymond Camden
how long does the logged in status of cfloginuser persist? until browser close?in accordance with session management? I got it working, just wondering how long the status of logged in will persist. It's a cookie that lasts for 30 minutes unless you mod idletimeout. In CFMX 6.1, you can

RE: cflogin question

2004-02-13 Thread Tony Weeg
thanks ray. what tag is idletimeout a parameter of? tony -Original Message- From: Raymond Camden [mailto:[EMAIL PROTECTED] Sent: Friday, February 13, 2004 10:37 AM To: CF-Talk Subject: RE: cflogin question how long does the logged in status of cfloginuser persist? until browser

RE: the oracle, the stored procedure and the cfstoredproc

2004-02-13 Thread Plunkett, Matt
-Original Message- From: Thomas Chiverton Sent: Friday, February 13, 2004 10:24 AM To: CF-Talk Subject: Re: the oracle, the stored procedure and the cfstoredproc On Friday 13 February 2004 15:19 pm, Plunkett, Matt wrote: IS possible though, we use Oracle stored procs extensively

RE: cflogin question

2004-02-13 Thread Raymond Camden
cflogin. -ray -Original Message- From: Tony Weeg [mailto:[EMAIL PROTECTED] Sent: Friday, February 13, 2004 9:40 AM To: CF-Talk Subject: RE: cflogin question thanks ray. what tag is idletimeout a parameter of? tony -Original Message- From: Raymond Camden

Re:OT- Sort of Loop in SQL

2004-02-13 Thread Jeremy Brodie
Mickael, You'll need to find out what rights you have to create stored proceedures/user defined functions/triggers on Sybase. Then you'll need to create the program directly on Sybase. Unfortunally, my database knowledge is limited to Access/SQL Server/Oracle/MySQL. As Neil noted, Access does

RE: cflogin question

2004-02-13 Thread Nando
Ray, how do you tie cflogin to the session scope so they both timeout at the same time ? just by setting the timeouts to the same value? -Original Message- From: Raymond Camden [mailto:[EMAIL PROTECTED] Sent: Friday, February 13, 2004 4:37 PM To: CF-Talk Subject: RE: cflogin question

RE: cflogin question

2004-02-13 Thread Dave Carabetta
how do you tie cflogin to the session scope so they both timeout at the same time ? just by setting the timeouts to the same value? The cfapplication tag's loginStorage attribute with values of either cookie (default, I believe) or session. Regards, Dave. [Todays Threads] [This Message]

RE: cflogin question

2004-02-13 Thread Raymond Camden
In MX, yes, in CFMX 6.1, use the loginstorage=session attribute of cfapplication. [Todays Threads] [This Message] [Subscription] [Fast Unsubscribe] [User Settings]

RE: cflogin question

2004-02-13 Thread Tony Weeg
I don't have my code, its at my house, but what I did was set the value of getAuthUser() to session.isUserValid or something like that, then if they logged out, remove that var. tw -Original Message- From: Nando [mailto:[EMAIL PROTECTED] Sent: Friday, February 13, 2004 10:47 AM To:

strip javascript

2004-02-13 Thread Ketan Patel
Hi All, Does anybody know about any custom tag or function which can strip _javascript_. I have used striphtml function from cflib.orgbut it does not strip the _javascript_. Ketan Patel [Todays Threads] [This Message] [Subscription] [Fast Unsubscribe] [User Settings]

RE: cflogin question

2004-02-13 Thread Tony Weeg
ahhh I didn't know 'bout that one :) but I think my way works too! tw -Original Message- From: Dave Carabetta [mailto:[EMAIL PROTECTED] Sent: Friday, February 13, 2004 10:55 AM To: CF-Talk Subject: RE: cflogin question how do you tie cflogin to the session scope so they both timeout

RE: XML storage

2004-02-13 Thread Andre Turrettini
Hi, I'm wondering a bit about this. I've perused the code but since its called a DB manager, I'm thinking it can act like a database.How would one execute a join between two tables or whatever they are called since they are clearly not tables.Is this contained in xindice that simply has to be

RE: image map

2004-02-13 Thread Robert Orlini
Guess what. I added the one pound sign to : usemap=""> refreshed and then it worked. I don't get it sometimes. Sorry folks-but thanks for the brainstorming. Robert O. -Original Message- From: Tony Weeg [mailto:[EMAIL PROTECTED] Sent: Friday, February 13, 2004 10:33 AM To: CF-Talk

RE: strip javascript

2004-02-13 Thread Pascal Peters
First REReplaceNocase(str,script[^]*/,,all); Then On cfmx: REReplaceNocase(str,script.*?/script,,all); On CF5 Start = 1; While(true){ start = FindNoCase(str,script,start); if(start){ end = FindNoCase(str,/script,start) + Len(/script); str = RemoveChars(str,start,start-end); } else

Re: OT- Sort of Loop in SQL

2004-02-13 Thread Jochem van Dieten
Mickael wrote: I have a field in my database called destination, this is an office location.And I have many records in my database that I would like to assign 1/3 of the records to each of the three offices.I don't want to just do an update top (then 1/3) and set the office to each of the

RE: strip javascript

2004-02-13 Thread Raymond Camden
One issue though - this wont get things like, Remove Footer Here--> [Todays Threads] [This Message] [Subscription] [Fast Unsubscribe] [User Settings]

Re:Oracle Error

2004-02-13 Thread Shawn McKee
Did anyone ever come up for a solution for this on CF5? We're getting the Oracle error ORA-24334: no descriptor for this position with the following query. Not having much luck finding out what's going on, or getting info from the MM CF forum, CF-Talk archives, or Google.Any ideas?(CF

Re: strip javascript

2004-02-13 Thread Ben Doom
http://www.fusionauthority.com/Article.cfm?ArticleID=3908 By one of the coolest guys I know.:-) --Ben Doom Raymond Camden wrote: One issue though - this wont get things like, > [Todays Threads] [This Message] [Subscription] [Fast Unsubscribe] [User Settings]

RE: Favorite CF Variable Tricks and Techniques

2004-02-13 Thread Matt Robertson
Jim, Plz publish it when you're done.If your previous stuff is any gauge it'll be a corker. Cheers, Matt Robertson [EMAIL PROTECTED] MSB Designs, Inc.http://mysecretbase.com -Original

Administrator mapping not working

2004-02-13 Thread Thomson, Alisa
Our web document root is linked symbolically - /httpd/htdocs is linked to /space/httpd/htdocs.In the cf administrator, the mapping for CFIDE is to /space/httpd/htdocs/CFIDE, but our cfform tags do NOT work because cfform.js cannot be found.We have tried other mappings in the administrator and it

RE: XML storage

2004-02-13 Thread Rob Rohan
On Fri, 2004-02-13 at 08:12, Andre Turrettini wrote: Hi, I'm wondering a bit about this. I've perused the code but since its called a DB manager, I'm thinking it can act like a database.How would one execute a join between two tables or whatever they are called since they are clearly not

RE: OT - Windows NT source code

2004-02-13 Thread Rob Rohan
Riddle me this: If you can get Linux, FreeBSD, etc source code 24 hours a day 7 days a week and that is not a security risk, why is a leak of ( | )icrosoft code such a huge security leak? Could it be they have really bad code, or perhaps they don't want you to see the back door they put in to all

RE: OT - Windows NT source code

2004-02-13 Thread Schuster, Steven
How many companies with over 1,000 employees (and PC's) have you been with that ran Linux, FreeBSD or something similar on the desktop? The answer is: Not a whole lot. So, if most business runs MS on the desktop they rely on it. There are enough hacks out there now without the source code

RE: Update query record count?

2004-02-13 Thread Smith, Matthew P -CONT(CSC)
as long as you are using a db that supports multiple sql statements per cfquery tag, you really aren't killing your db that bad.move it to a stored proc and you are really g2g. I had an app using a self-referncing table that had to do ton of recursive loops with recordsets looping and doing a

Scanning Bar Codes

2004-02-13 Thread Mark Leder
Hi All, Conceptually, I'm looking at building a web interface that permits the user to scan bar codes on a wearable badge and match the badge code with a membership number contained in SQL 2000.Looking for advice, ideas on the following: 1) Other than the bar code hand scanner is there interface

RE: OT - Windows NT source code

2004-02-13 Thread cfhelp
I am sure there are some back doors in the code and MS doesn’t want you to know about them. I like Linux and I have been working toward moving to a Linux environment. But Linux has security holes in it as well and it’s not free of bugs. RedHat publishes updates almost daily. Rick

RE: OT - Windows NT source code

2004-02-13 Thread Tom Kitta
I disagree, open source makes OS much safer than closed source OS. Everyone can inspect the code and point out problems with open source, not so when it is closed. Thus, MS has a problem when its source gets suddenly released -- people will most likely find a lot of holes in it which were long

Re: OT - Windows NT source code

2004-02-13 Thread Jochem van Dieten
Schuster, Steven wrote: If Linux was the most used OS in the world you better bet it wouldn't take long for exploit after exploit to hit that platform. With it being open source that simply makes the job that much easier. If Apache was the most used webserver in the world, you better bet

RE: Custom WSDL

2004-02-13 Thread Barney Boisvert
Thanks Dave, worked like a charm.I tried CFCONTENT to set the content type, but didn't try the reset attribute.Interestingly, when viewing the returned data without the CFCONTENT tag, there isn't any extra whitespace that I can detect (I used a raw telnet connection so I could see everything), so

RE: OT - Windows NT source code

2004-02-13 Thread Rob Rohan
On Fri, 2004-02-13 at 09:00, Schuster, Steven wrote: How many companies with over 1,000 employees (and PC's) have you been with that ran Linux, FreeBSD or something similar on the desktop? Not many on the U.S. desktop, no - but for back end systems open source OSs are used quite a bit - In

RE: OT - Windows NT source code

2004-02-13 Thread Schuster, Steven
Ummm, that's like apples and oranges...Last time I checked Apache was not an OS! What OS is it running on? -Original Message- From: Jochem van Dieten [mailto:[EMAIL PROTECTED] Sent: Friday, February 13, 2004 12:19 PM To: CF-Talk Subject: Re: OT - Windows NT source code Schuster,

Re: strip javascript

2004-02-13 Thread Nick Han
Assuming JS is coded inline on the page.You can find all the open 'script' and close '/script' tags and strip the middle parts out? Nick Han [EMAIL PROTECTED] 02/13/04 08:03AM Hi All, Does anybody know about any custom tag or function which can strip _javascript_. I have used striphtml

RE: OT - Windows NT source code

2004-02-13 Thread Schuster, Steven
That sounds like a mile high view of the situation. MS, MAC and others were around before the net was what it is today thus the security dictated that it was closed source. MAC just recently got into open-source with X and eventually MS will as well. I do think that it may make for a more

  1   2   >