Re: Gasp! XML XSL transform with params!

2008-05-12 Thread Andre Turrettini
Sighh. Thanks Dominic. That was hours of wasted time. Tho it makes sense. xslt is case sensitive and passing a dot notation structure thru coldfusion upercases it. My xslt was looking for lowercase but getting passed uppercase named variables. Criminy. Andre http://livedocs.adobe.

Gasp! XML XSL transform with params!

2008-05-09 Thread Andre Turrettini
Crimminy, Why am I having trouble passing parameters in xmltransform? cfsavecontent variable=x?xml version=1.0 encoding=UTF-8? article/article /cfsavecontent cfsavecontent variable=l xsl:transform version=1.0 xmlns:xsl=http://www.w3.org/1999/XSL/Transform; xsl:param name=mpath

Re: How would you handle this...

2004-05-13 Thread Andre Turrettini
update your _javascript_ data instead of reloading the whole = massive data package.Make sense? Andre Turrettini www.WebMachineInc.com 303.882.9803 [Todays Threads] [This Message] [Subscription] [Fast Unsubscribe] [User Settings]

RE: Script vs Tags (was Re: ColdFusion Coding Contest)

2004-04-06 Thread Andre Turrettini
agreed. I'm praying that a major improvment in the next cf will be that all (or as many as possible) tags and functions are available within cfscript. -Original Message- From: Howard Fore [mailto:[EMAIL PROTECTED] Sent: Tuesday, April 06, 2004 6:14 AM To: CF-Talk Subject: Re: Script vs

RE: ColdFusion Coding Contest

2004-04-06 Thread Andre Turrettini
Can we switch it to monday?I dont think I'll have much time till the weekend. DRE -Original Message- From: Kazmierczak, Kevin [mailto:[EMAIL PROTECTED] Sent: Monday, April 05, 2004 8:18 PM To: CF-Talk Subject: RE: ColdFusion Coding Contest Contest is still open until Friday April

RE: desktop application

2004-04-06 Thread Andre Turrettini
potent stuff isnt it?Kinda makes you rethink application design and chucks out the window the need to learn flash to make a ria. DRE -Original Message- From: Dick Applebaum [mailto:[EMAIL PROTECTED] Sent: Tuesday, April 06, 2004 4:31 AM To: CF-Talk Subject: Re: desktop application I

RE: desktop application

2004-04-05 Thread Andre Turrettini
Check out xul.You can write an application in and write a delimited file to the harddrive each time someone enters their email.Its kind fo an xml _javascript_ approach to writing web apps.Similar to the approach used by longhorn and breeze.Its got a pretty sick grid bult in.I dont think its much

RE: ColdFusion Coding Contest

2004-04-05 Thread Andre Turrettini
oops. I forgot to send in my entry last time.Where are the rules so that I can make sure it conforms? DRE -Original Message- From: Kazmierczak, Kevin [mailto:[EMAIL PROTECTED] Sent: Monday, April 05, 2004 11:50 AM To: CF-Talk Subject: RE: ColdFusion Coding Contest Hahahahaha, last time

RE: CF 6.1 simultaneous requests - optimum guesstimate?

2004-04-05 Thread Andre Turrettini
I load tested our app adn found that upwards of 40, everything fell apart. I set it to 35.Our app does a lot of sitting around waiting for long db requests so I always theorized that processes in this state werent using many recources.Sadly, I found out that mod perl comes set at 200!I havent

RE: ECommerce practices

2004-03-26 Thread Andre Turrettini
I've always thougth writing to the db is a good idea to track abandoned carts.Sometimes, you can glean info on when and then why people are abandoning their carts. DRE -Original Message- From: Cutter (CF-Talk) [mailto:[EMAIL PROTECTED] Sent: Wednesday, March 24, 2004 6:10 PM To: CF-Talk

RE: failing when query is named.

2004-03-17 Thread Andre Turrettini
I think theres some confusion by your cf guy and I think I see the root of the confusion. If a cfoutput tag has a query attribute, then its sensitive to the recordcount of the query. However, if there is no query attribute, then it will always execute whats inside it. DRE -Original

RE: using web services the raw way

2004-03-16 Thread Andre Turrettini
Hi Rob, I was wondering if you could email me the js that youre talking about?I'm pretty curious to see what youre up to?For instance, how do you set the headers in js? DRE -Original Message- From: Rob [mailto:[EMAIL PROTECTED] Sent: Tuesday, March 16, 2004 3:24 PM To: CF-Talk Subject:

RE: Checking strings

2004-02-23 Thread Andre Turrettini
Hmm, what do you mean 5 digits?Youre string cant be converted to a number with that T in there. I'm guessing that T is a mistake so then the string would be a number and you could just say select count(*) from numbers where number between #number - 5# and #number + 5# and if the return is

RE: A tough query... Can CFML help?

2004-02-20 Thread Andre Turrettini
You can use a sub query select id from table1 where id not in (select id from table2) or perhaps a minus select id from table1 minus select id from table2 DRE -Original Message- From: Merritt Chapman [mailto:[EMAIL PROTECTED] Sent: Friday, February 20, 2004 2:15 PM To: CF-Talk

RE: Looking for someone who knows CFMX AND PHP

2004-02-16 Thread Andre Turrettini
Google?? php web services tutorial http://aspn.activestate.com/ASPN/WebServices/SWSAPI/phptut http://aspn.activestate.com/ASPN/WebServices/SWSAPI/phptut http://www.zend.com/zend/tut/tutorial-campbell.php http://www.zend.com/zend/tut/tutorial-campbell.php http://php.weblogs.com/xml-rpc

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: CFMX - best way to strip content from html page

2004-02-11 Thread Andre Turrettini
this is a bit radical and probably pretty frigin slow but I thought I saw some website that would take a pic of your site.Then maybe you could ocr the image dynamically?? DRE -Original Message- From: Rob Rohan [mailto:[EMAIL PROTECTED] Sent: Monday, February 09, 2004 9:18 AM To:

RE: Client vars won't go into the db....?

2004-02-06 Thread Andre Turrettini
Hmm, nother long shot.Do you have the trusted cache set to yes?It migth be remembering an old setting? DRE -Original Message- From: Evan Lavidor [mailto:[EMAIL PROTECTED] Sent: Friday, February 06, 2004 11:45 AM To: CF-Talk Subject: Re:Client vars won't go into the db? Yep.I'm

RE: Client vars won't go into the db....?

2004-02-05 Thread Andre Turrettini
Are you absolutely sure you have only one application.cfm? DRE -Original Message- From: Evan Lavidor [mailto:[EMAIL PROTECTED] Sent: Thursday, February 05, 2004 9:16 AM To: CF-Talk Subject: Re:Client vars won't go into the db? ...and a as followup, client variables on our MX servers

simultaneous requests on j2ee?

2004-02-03 Thread Andre Turrettini
Hi Where did simultaneous requests go on the j2ee version of cfmx?I can bet that theres a xml file somewhere that replaces it but where? I've looked at all the ones I could think of.tomcat 4.1. Thanks DRE -Original Message- From: Rob Rohan [mailto:[EMAIL PROTECTED] Sent: Tuesday,

RE: CF Eclipse plug-in sourceforge

2004-01-29 Thread Andre Turrettini
they gave no reason?I've seen a couple of cf and non cf projects far less deserving. How hard is it to code for eclipse? Whats the language? DRE -Original Message- From: Rob Rohan [mailto:[EMAIL PROTECTED] Sent: Thursday, January 29, 2004 12:29 PM To: CF-Talk Subject: CF Eclipse plug-in

RE: CF Start a process - don't wait for it to finish

2004-01-22 Thread Andre Turrettini
make it an attribute of a cfc?Give it its own scope and perhaps an optional callback function.Maybe cfevent and cfcallback.That would be nice if used properly.Just because its complex doesnt mean it should be avoided. DRE -Original Message- From: Thomas Chiverton [mailto:[EMAIL PROTECTED]

RE: Fancy a ColdFusion Challenge?

2004-01-16 Thread Andre Turrettini
I just did it without googling!Damn I'm a nerd! DRE -Original Message- From: Jochem van Dieten [mailto:[EMAIL PROTECTED] Sent: Friday, January 16, 2004 3:35 PM To: CF-Talk Subject: Re: Fancy a ColdFusion Challenge? Casey C Cook wrote: I figured someone would post this

RE: Cfqueryparam bug and finding it globally.

2004-01-07 Thread Andre Turrettini
In cf5, you can do a search and then save it as a text file.Right click on your search and say save as.Then you could loop that list in coldfusion, do a cffile on that file, do a substring to the position given in the text file, then count the chr13s that occur in that substring.I think that would

RE: Cfqueryparam bug and finding it globally.

2004-01-07 Thread Andre Turrettini
er, studio 5 DRE -Original Message- From: Andre Turrettini [mailto:[EMAIL PROTECTED] Sent: Wednesday, January 07, 2004 10:01 AM To: CF-Talk Subject: RE: Cfqueryparam bug and finding it globally. In cf5, you can do a search and then save it as a text file.Right click on your search

RE: Recursion and Breadcrumbs

2003-12-03 Thread Andre Turrettini
Jake, I did something that might help you.Its a recursive function that uses one db call.You can see it at work by creating an account and creating a survey here.www.surveys.theanticool.com http://www.surveys.theanticool.com .The interface to create the survey uses only ie at this point(I know I

RE: Outputting an XML Object to browser

2003-11-11 Thread Andre Turrettini
I think its tostring(xml) or something like that. DRE -Original Message- From: Jeff Beer [mailto:[EMAIL PROTECTED] Sent: Tuesday, November 11, 2003 3:09 PM To: CF-Talk Subject: Outputting an XML Object to browser [sorry for the dupe post - the original got chopped off at the line of

sql difficulty

2003-10-30 Thread Andre Turrettini
set?Or is there another way? Thanks in advance DRE [Andre Turrettini]-Original Message- From: Chunshen Li [mailto:[EMAIL PROTECTED] Sent: Thursday, October 30, 2003 8:23 AM To: CF-Talk Subject: UniData ODBC connectivity Hi, I've posted a similar question some time ago about UniData

RE: sql difficulty

2003-10-30 Thread Andre Turrettini
The idea is that you have a case statement that yields 1 or 0 depending on the particular state you want to count and use sum() to count them. Mark -Original Message- From: Andre Turrettini [mailto:[EMAIL PROTECTED] Sent: Thursday, October 30, 2003 12:42 PM To: CF-Talk Subject: sql

RE: Import of Text File

2003-10-30 Thread Andre Turrettini
this goes quite a bit faster if you turn your return seperated list into an array.listtoarray.then just loop thru the array. DRE -Original Message- From: Bruce, Rodney S HQISEC/Veridian IT Services [mailto:[EMAIL PROTECTED] Sent: Thursday, October 30, 2003 1:24 PM To: CF-Talk Subject: RE:

RE: Scope Locking (RE: Blue Dragon and Fusebox)

2003-10-28 Thread Andre Turrettini
Ray, I'm interpreting your statment that if indeed a race condition occurs and that a variable is overwritten at the same time as its being written, that it simply uses the second value??I havent seen anyting to suggest this anywhere(do you have more info?). The problem would seem to me to be

RE: Scope Locking (RE: Blue Dragon and Fusebox)

2003-10-28 Thread Andre Turrettini
Ray, i believe what macromedia is refering to is the variable being written and overwritten at the same time.Not a variable being written, then overwritten after its set. See the note: Race condition is a term that is not specific to ColdFusion programming, but refers to a common issue that

RE: Scope Locking (RE: Blue Dragon and Fusebox)

2003-10-28 Thread Andre Turrettini
--- -Original Message- From: Andre Turrettini [mailto:[EMAIL PROTECTED] Sent: Tuesday, October 28, 2003 8:47 AM To: CF-Talk Subject: RE: Scope Locking (RE: Blue Dragon and Fusebox) Ray, i believe what macromedia is refering to is the variable being written and overwritten

RE: list, adding to

2003-10-16 Thread Andre Turrettini
A list is not a special datatype, its just a simple string.There happen to be some functions that operate on strings assuming certain delimiters but its still just a string. However, it looks like youre sticking dates into the IN parameter of your query which wont work.So, this is a sql problem

RE: list, adding to

2003-10-16 Thread Andre Turrettini
Message- From: Andre Turrettini [mailto:[EMAIL PROTECTED] Sent: Thursday, October 16, 2003 10:53 AM To: CF-Talk Subject: RE: list, adding to A list is not a special datatype, its just a simple string.There happen to be some functions that operate on strings assuming certain delimiters but its

RE: Sessions - won't stick around

2003-10-10 Thread Andre Turrettini
Paul, it appears youre not having cf send cookies to the browser.So, in this case you would have to add the cfid and token to your url string.Are you doing this?If not, I'd try setting setclientcookies = 'yes'. DRE -Original Message- From: Paul Giesenhagen [mailto:[EMAIL PROTECTED]

RE: Help with CF and modal window

2003-10-10 Thread Andre Turrettini
We use this extensively.I got stuck on that submit thing for a bit.Since youre already stuck on ie with the modal window thing, you can also use MSXML2.XMLHTTP to do submits. Works quite well.I can email you an example if you like.Its also decently documented on msdn. DRE -Original

RE: Sessions - won't stick around

2003-10-10 Thread Andre Turrettini
QuillDesign - Original Message - From: Andre Turrettini To: CF-Talk Sent: Friday, October 10, 2003 3:16 PM Subject: RE: Sessions - won't stick around Paul, it appears youre not having cf send cookies to the browser.So, in this case you would have to add the cfid and token to your url

RE: Bots / spiders finding unlinked pages... How?

2003-10-08 Thread Andre Turrettini
does the program tell you the refering pages?On google you can find out how many sites have links to yours. Also, you might want to check that none of your hidden files are the folder default files as well. DRE -Original Message- From: Ian Skinner [mailto:[EMAIL PROTECTED] Sent:

RE: Bots / spiders finding unlinked pages... How?

2003-10-08 Thread Andre Turrettini
Message- From: Andre Turrettini [mailto:[EMAIL PROTECTED] Sent: Wednesday, October 08, 2003 3:22 PM To: CF-Talk Subject: RE: Bots / spiders finding unlinked pages... How? does the program tell you the refering pages?On google you can find out how many sites have links to yours. Also, you might

RE: problems maintaining db connection to remote server (full msg ?) :)

2003-10-06 Thread Andre Turrettini
My guess is that sometimes the server gets disconnected, cf tries to call the access db and fails and then doesnt try again. I'd try to reproduce this by disconnecting the server that is hosting the access db and then trying to use the site that calls that db.Maybe that will reproduce the

RE: Re[4]: query string recognition

2003-09-29 Thread Andre Turrettini
Look in your cgi variables.You may have to parse it out of a string. DRE -Original Message- From: Ubqtous [mailto:[EMAIL PROTECTED] Sent: Monday, September 29, 2003 4:22 PM To: CF-Talk Subject: Re[4]: query string recognition [EMAIL PROTECTED], On 9/29/2003 at 17:32, you wrote:

RE: CFMAIL TO param problems with large queries

2003-09-25 Thread Andre Turrettini
thats the right track though, i'd loop over your query with a proper email regex. Where it doestn match, output the record key. Then you should be able to make short work of the problem records. DRE -Original Message- From: J E VanOver [mailto:[EMAIL PROTECTED] Sent: Wednesday,

RE: Recursion and Scope problem?

2003-09-18 Thread Andre Turrettini
basically, you call the function once and the vars are declared in the global scope, when that function calls itself, it redeclares them again in that same global scope, so they are overwritten. So, when the top function continues, its variables are no longer the ones it set. Using the var

RE: advice

2003-09-17 Thread Andre Turrettini
Puuuhhhlze! We've added so much to the genre. Go to any of the major american cities (or at least the ones I've lived in) and you'll find pizza thats pretty close to what you find in italy. And it only starts there. Theres so many other wonderful kinds of pizzas that you'll only find in

RE: CFC-based GPL web HTML editor

2003-09-16 Thread Andre Turrettini
I'll definetly check it out. I had thought of doing the same. Thanks MGA. DRE -Original Message- From: Adam Wayne Lehman [mailto:[EMAIL PROTECTED] Sent: Tuesday, September 16, 2003 7:36 AM To: CF-Talk Subject: RE: CFC-based GPL web HTML editor Win IE5.5 required = unusable. Adam Wayne

RE: CFC-based GPL web HTML editor

2003-09-16 Thread Andre Turrettini
No one is disregarding. The opposite. Its providing the best functionality you can within reason for each browser. Example, Yahoo uses it for their email program. The wysiwig doesnt show up on a mac or netscape browser but plenty of people use yahoo with macs and with netscape. DRE

RE: Paging Principals

2003-09-10 Thread Andre Turrettini
You could download the whole thing and stick it in a wddx or javascript array. Then when the user clicks next, you just use the info from the javascript array. Also, if youre on ie, you can do this with tdc. Very slick. Then you can incorporate sorting. TDC sorts 5 records (yes our users

RE: Paging Principals

2003-09-10 Thread Andre Turrettini
My understanding of a view is that it is recreated when you run your query. At least in Oracle it does the joins under the hood at the time you request your data. Thus, there should be no performance gains there. DRE -Original Message- From: Mark Stewart [mailto:[EMAIL PROTECTED] Sent:

RE: Paging Principals

2003-09-10 Thread Andre Turrettini
Nice!!! -Original Message- From: jon hall [mailto:[EMAIL PROTECTED] Sent: Wednesday, September 10, 2003 12:36 PM To: CF-Talk Subject: Re: Paging Principals What Mark says is correct, but SQL Server (not familiar with Oracle) can index views as well, offering performance gains.

RE: Multiple sites...

2003-08-28 Thread Andre Turrettini
You can keep a cfroot variable similar to your docroot variable. It simply contains the path to your application from the / cf mapping. So, if your hosting provider had / mapped to c:/www but your site is c:/www/foldername/yoursite, you would keep request.cfmapping = /foldername. Then you

RE: Dreamweaver and include files

2003-08-26 Thread Andre Turrettini
Just wondering why you didnt use ssi? DRE -Original Message- From: Gyrus [mailto:[EMAIL PROTECTED] Sent: Monday, August 18, 2003 4:41 PM To: CF-Talk Subject: OT: Dreamweaver and include files I'm just knocking together a basic PHP-based site for a friend/client, just

RE: CFCLIENTSTORAGE

2003-08-14 Thread Andre Turrettini
that user has read AND write to that db and table? DRE -Original Message- From: Harold Brauer [mailto:[EMAIL PROTECTED] Sent: Wednesday, August 06, 2003 10:42 PM To: CF-Talk Subject: CFCLIENTSTORAGE Getting the following error when I try to run a script where the DB is in SQL2K

RE: CFMX performance issue

2003-08-14 Thread Andre Turrettini
Heres what I was hinting at. instead of cffile action=READ file=c:/somwhere/maybe/abc.txt variable=def you might try cfsavecontent var=defcfinclude template=/maybe/abc.txt/cfsavecontent for a possible speed increase. DRE -Original Message- From: Alan Ford [mailto:[EMAIL PROTECTED]

RE: CFMX performance issue

2003-08-14 Thread Andre Turrettini
Hi Alan, this may interest you. Perhaps what youre seeing with the threading is described here in which case 6.1 may solve your problems. http://www.macromedia.com/support/coldfusion/ts/documents/cfmx_hang_issues. htm DRE -Original Message- From: Alan Ford [mailto:[EMAIL PROTECTED]

RE: CFMX performance issue

2003-08-14 Thread Andre Turrettini
See, I've already forgotten about that 6.0 time lag. How quickly I forget. DRE -Original Message- From: Tim Blair [mailto:[EMAIL PROTECTED] Sent: Tuesday, August 12, 2003 8:41 AM To: CF-Talk Subject: RE: CFMX performance issue instead of cffile action=READ

RE: CFMX performance issue

2003-08-14 Thread Andre Turrettini
Alan be reasonable, lower your thread count man!! Hee hee, just kidding. I've had the same issue as you. You can have lots of threads waiting for something to happen. In my case, a slow expensive database. In your case, cflocks or whatever. We had to raise our threads a fair bit higher than

RE: CFMX 6.1 upgrade - 'smooth as butter'

2003-08-12 Thread Andre Turrettini
seems 15% - 20% faster on my first test too! sweet. -Original Message- From: Peter Tilbrook [mailto:[EMAIL PROTECTED] Sent: Tuesday, August 05, 2003 9:52 PM To: CF-Talk Subject: RE: CFMX 6.1 upgrade - 'smooth as butter' Same here for the JRun/j2EE installation. Peter

RE: CFMX performance issue

2003-08-11 Thread Andre Turrettini
Worth a try. Good luck. DRE -Original Message- From: Alan Ford [mailto:[EMAIL PROTECTED] Sent: Monday, August 11, 2003 11:16 AM To: CF-Talk Subject: CFMX performance issue Hi Alan, this may interest you. Perhaps what youre seeing with the threading is described here in which case 6.1

RE: CFMX performance issue

2003-08-10 Thread Andre Turrettini
It sounds to me as if you've done your homework and got a pretty well tuned setup. It also sounds as if youre approaching the limit of this configuration. 6.1 is an obvious answer. I've noted speed and stability improvements. Short of that, you probably want some stopgap solution that is low

RE: The Ongoing Saga of the Dead Session Variable

2003-07-31 Thread Andre Turrettini
Hmm, thats a fun one. I've heard of people trying to do strange things with session management. Like trying to keep the user on the same cfid/cftoken forever by looking at their login and finding a cfid that matches then resetting the cfid for the user. Stuff like that. I would see if you can

RE: The Ongoing Saga of the Dead Session Variable

2003-07-31 Thread Andre Turrettini
then use this: cfset session['spanish1#cfid##cftoken#'] = 1 Still not sure why you wouldnt just use session.spanish1 as your var name. . . ? DRE -Original Message- From: Richard Crawford [mailto:[EMAIL PROTECTED] Sent: Thursday, July 31, 2003 11:10 AM To: CF-Talk Subject: RE: The

RE: Mach-II

2003-07-30 Thread Andre Turrettini
Oooh, it is funny. Probably not what Hal expected when he wrote: (Please, God, don't let this degenerate into yet another pro/con Fusebox debate...) DRE (ps: comic troll??) -Original Message- From: Mark Stewart [mailto:[EMAIL PROTECTED] Sent: Wednesday, July 30, 2003 3:03 PM To:

tomcat and mxj2ee ???

2003-07-25 Thread Andre Turrettini
Anybody have any experience with tomcat and the j2ee mx server? Tips and tricks and pitfalls. -Original Message- From: James Johnson [mailto:[EMAIL PROTECTED] Sent: Thursday, July 24, 2003 5:34 PM To: CF-Talk Subject: National EFT Hello, Has anyone had any experience

RE: tomcat and mxj2ee ???

2003-07-25 Thread Andre Turrettini
PM To: CF-Talk Subject: Re: tomcat and mxj2ee ??? On Friday, Jul 25, 2003, at 12:56 US/Pacific, Andre Turrettini wrote: Anybody have any experience with tomcat and the j2ee mx server? Yeah, I run four different installs of CFMX on Tomcat and it's fine. Do you have some specific

RE: Unwanted control characters in text area

2003-07-24 Thread Andre Turrettini
fields on the page present this problem, and I have never seen it before in any other application. -Original Message- From: Andre Turrettini [mailto:[EMAIL PROTECTED] Sent: Wednesday, July 23, 2003 1:58 PM To: CF-Talk Subject: RE: Unwanted control characters in text area it does not appear

RE: Unwanted control characters in text area

2003-07-23 Thread Andre Turrettini
it does not appear from an input text box with everything else the same? DRE -Original Message- From: Shawn Grover [mailto:[EMAIL PROTECTED] Sent: Wednesday, July 23, 2003 1:41 PM To: CF-Talk Subject: RE: Unwanted control characters in text area Thanks Tony. But the problem is that

RE: Anyone using Jakarta Struts for cfmx?

2003-07-15 Thread Andre Turrettini
Hi Joe, That sounds really interesting. Any way I can convince you to make a mini example that I could look at. DRE -Original Message- From: Joe Eugene [mailto:[EMAIL PROTECTED] Sent: Monday, July 14, 2003 4:01 PM To: CF-Talk Subject: Re: Anyone using Jakarta Struts for cfmx?

RE: Client variable problem -- duplicates in CDATA

2003-06-24 Thread Andre Turrettini
I've heard of people doing weird things like trying to keep a client on a single cfid token set of numbers. I'd check if something like this is going on. They may of tried to finagle some stuff with cfapplication. DRE -Original Message- From: John Paul Ashenfelter [mailto:[EMAIL

RE: Problem SQL CF 5

2003-06-19 Thread Andre Turrettini
I think I have the same problem!! Havent found a solution either. DRE -Original Message- From: Jodie A [mailto:[EMAIL PROTECTED] Sent: Thursday, June 19, 2003 11:51 AM To: CF-Talk Subject: Re: Problem SQL CF 5 Thank you Jochem - Any other takers able to answer my questions: Thank

RE: weird error

2003-06-19 Thread Andre Turrettini
I've had coldfusion errors get stuck on some users computers. It seems to be related to the browser pagecache and clearing that often fixed similar problems for me. DRE -Original Message- From: Tim Do [mailto:[EMAIL PROTECTED] Sent: Thursday, June 19, 2003 11:59 AM To: CF-Talk Subject:

RE: Getting IE to accept XML from ColdFusion

2003-06-16 Thread Andre Turrettini
sometimes in ie, when you know you have xml but it wont display it, click on the e symbol in the location bar and drag it a few pixels and let it go. Ie may render your xml as xml. Its kind of a funny beast. DRE -Original Message- From: Ian Skinner [mailto:[EMAIL PROTECTED] Sent:

RE: OT: SQL--Recursive Query Question

2003-06-03 Thread Andre Turrettini
I've dumped query results into a complex array of structures. Then I wrote a recursive function to loop thru it. Works very well. DRE -Original Message- From: Jochem van Dieten [mailto:[EMAIL PROTECTED] Sent: Friday, May 30, 2003 4:00 PM To: CF-Talk Subject: Re: OT:

RE: Web Server Machine Specs

2003-05-31 Thread Andre Turrettini
I'd check your database. It may of grown and slowed down. Make sure any client var table isnt too big and not in registry. If the code hasnt changed and there arent more users and the apps on the server havent changed, then its either something accumulating on the server or something external

RE: Calendar recommendations?

2003-05-31 Thread Andre Turrettini
I've made one thats worked quite well. I create an array of events for each day. then I query as many db tables as I like and simply append to the arrays. Then when I loop thru my month to output each day, I simply write out the array for that day. DRE -Original Message- From: Austin

RE: Scheduler is about to be SHOT!

2003-05-29 Thread Andre Turrettini
I heard somewhere that you have to have the cfregistry enabled in the administrator for cfschedule to work. Check to see if thats on. -Original Message- From: Randell B Adkins [mailto:[EMAIL PROTECTED] Sent: Wednesday, May 28, 2003 12:39 PM To: CF-Talk Subject: RE: Scheduler is

RE: Client variables and SSL problem

2003-05-29 Thread Andre Turrettini
you might try appending the cfidtoken to the url on the links that move to ssl. This would only fix it if indeed the cookie is getting lost or something. This would probably be cleint specific and explain why it only happens to certain accounts. DRE -Original Message- From: John Paul

RE: Block Competitors from Web site

2003-05-29 Thread Andre Turrettini
Can someone educate me on how you would spoof an ip and then get back content. I always understood that the server returned info to your ip, thus if you spoofed it, sure, the server would do its thing but then it would nt come back to you because you provided a different ip than your own. . . ?

RE: Grab ColdFusion's root?

2002-09-19 Thread Andre Turrettini
Tyler, if youre asking for the root of your application, then stick this in application.cfm. cfset toppath=ListDeleteAt(GetCurrentTemplatePath(), listlen(GetCurrentTemplatePath(),'\'),'\') If you actually want the webroot, then you have to fiddle with one of the cgi vars and compare it to your

RE: Technology?

2002-09-12 Thread Andre Turrettini
J, you should patent that!!! . . Sorry. Moving to cfcommunity. Couldn't help it! -Original Message- From: [EMAIL PROTECTED] [mailto:[EMAIL PROTECTED]] Sent: Thursday, September 12, 2002 9:46 AM To: CF-Talk Subject: OT: Technology? Oops. I didn't make it clear -- the functionality

RE: Large Corporations that use ColdFusion

2002-09-11 Thread Andre Turrettini
Anybody have a similar list for the blue dragon alternative? -Original Message- From: [EMAIL PROTECTED] [mailto:[EMAIL PROTECTED]] Sent: Wednesday, September 11, 2002 8:11 AM To: CF-Talk Subject: RE: Large Corporations that use ColdFusion I also know Novell uses it internally as well.

RE: Jsp Vs Cfm (CFMX) -- Code

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

RE: Jsp Vs Cfm (CFMX) -- Code

2002-09-10 Thread Andre Turrettini
Anybody? -Original Message- From: Andre Turrettini [mailto:[EMAIL PROTECTED]] Sent: Tuesday, September 10, 2002 8:55 AM To: CF-Talk Subject: RE: Jsp Vs Cfm (CFMX) -- Code Hey Joe, I'm a bit new to this java stuff but I would of thought that I could simply run it. What do I have to do

RE: Stupid SQL Problem (in oracle)

2002-09-10 Thread Andre Turrettini
Use the decode function. DRE -Original Message- From: Edwards Robert (air0rae) [mailto:[EMAIL PROTECTED]] Sent: Tuesday, September 10, 2002 1:18 PM To: CF-Talk Subject: OT: Stupid SQL Problem (in oracle) I need some way to convert a word into a number. I know I've done it once

RE: Cfmodule and Links

2002-09-06 Thread Andre Turrettini
I see three solutions. On is to use an absolute path which is fairly obvious. Second is to pass the relative path into the custom tag. This might be dynamically generated by the calling template. Third is to use the var getBaseTemplatePath in the custom tag. You'll have to do a bit of

RE: Client Vars again

2002-09-06 Thread Andre Turrettini
Hi Susan, Can you give full details. Db, os, whats the applciation, intranet/extranet/web,cfserver details,cluster/singleserver? Have you tried session vars or homegrown client vars? Can you consistently set a cookie and across page requests read it properly? DRE -Original Message-

RE: Deleting Cookie Name/Value Pairs

2002-09-06 Thread Andre Turrettini
To kill a cookie, youset expires to the current moment via cf or via js. cfcookie name=klj value=lkj expires=NOW -Original Message- From: Susan Hamilton-Allen [mailto:[EMAIL PROTECTED]] Sent: Friday, September 06, 2002 1:59 PM To: CF-Talk Subject: Deleting Cookie Name/Value Pairs Is

RE: Client Vars again

2002-09-06 Thread Andre Turrettini
Programmer Pfingsten Publishing, L.L.C. Seven Hills, OH 44131 -Original Message- From: Andre Turrettini [mailto:[EMAIL PROTECTED]] Sent: Friday, September 06, 2002 3:51 PM To: CF-Talk Subject: RE: Client Vars again Hi Susan, Can you give full details. Db, os, whats the applciation

RE: Deleting Cookie Name/Value Pairs

2002-09-06 Thread Andre Turrettini
fax: 216.328.9452 -Original Message- From: Andre Turrettini [mailto:[EMAIL PROTECTED]] Sent: Friday, September 06, 2002 3:53 PM To: CF-Talk Subject: RE: Deleting Cookie Name/Value Pairs To kill a cookie, youset expires to the current moment via cf or via js. cfcookie name=klj value=lkj

RE: Statement of Work

2002-09-04 Thread Andre Turrettini
Thanks Michael, I was just looking for examples myself. Actually, anybody got a sample hosting contract? Thanks. DRE -Original Message- From: Michael Wilson [mailto:[EMAIL PROTECTED]] Sent: Wednesday, September 04, 2002 7:53 AM To: CF-Talk Subject: RE: Statement of Work Hi,

RE: CF_EmbedFields and Double Quotes

2002-09-03 Thread Andre Turrettini
Just urlencodedformat them when you put them back in the form fields. You may need to modify your custom tag a bit. DRE -Original Message- From: Kamie Curfman [mailto:[EMAIL PROTECTED]] Sent: Tuesday, September 03, 2002 1:01 PM To: CF-Talk Subject: CF_EmbedFields and Double Quotes I

RE: Session problem

2002-09-03 Thread Andre Turrettini
I think you can avoid the proxy server issues by adding a random url var. Then it thinks it's a different page. Maybe like index.cfm?r=#getTickCount()# or such. DRE -Original Message- From: Everett, Al [mailto:[EMAIL PROTECTED]] Sent: Tuesday, September 03, 2002 3:18 PM To: CF-Talk

RE: CF_EmbedFields and Double Quotes

2002-09-03 Thread Andre Turrettini
(I'm using Fusebox): CFLOOP LIST=#StructKeyList(attributes)# INDEX=ii CFIF IsDefined(#ii#) AND Find('%22', Evaluate(#ii#)) NEQ 0 CFSET SetVariable('attributes.' #ii#, #URLDecode(Evaluate(ii))#) /CFIF /CFLOOP and all appears well. Thanks! Kamie --- Andre Turrettini [EMAIL PROTECTED

RE: programmer vs. developer

2002-08-29 Thread Andre Turrettini
Don't forget, you'll be spending lots of time with this person if you work directly with them. If they are equal in every way, wouldn't you take the bonus of being able to have interesting conversations as opposed to talking only about code? Whatcha gonna do on thanksgiving weekend? Go over to

RE: Hover doesn't work with CFMX?

2002-08-16 Thread Andre Turrettini
I've noted that javascript behavior links(htc I think) didnt work either. DRE -Original Message- From: Ryan Kime [mailto:[EMAIL PROTECTED]] Sent: Friday, August 16, 2002 10:24 AM To: CF-Talk Subject: RE: Hover doesn't work with CFMX? No Ben, the way James is doing it is correct too.

RE: rotating mail servers - cfmail...

2002-08-16 Thread Andre Turrettini
you could have a mailserver recordset listing your mailservers, then use a counter in your loop that gets reset when it reaches the mailserverrecordcount. Then your loop would write the mailserver into the cfmail tag. DRE -Original Message- From: Buddy [mailto:[EMAIL PROTECTED]] Sent:

RE: Hover doesn't work with CFMX?

2002-08-16 Thread Andre Turrettini
using the built in webserver only hitting port 8500? Hmm. Thats interesting. -Original Message- From: Jesse Houwing [mailto:[EMAIL PROTECTED]] Sent: Friday, August 16, 2002 11:11 AM To: CF-Talk Subject: Re: Hover doesn't work with CFMX? Andre Turrettini wrote: I've noted

RE: Article: A Wealth of Woe at Macromedia

2002-08-13 Thread Andre Turrettini
I'd hate to be in that profession! In one sentence he says macromedia experienced a 5 % revenue decline. Then adobe announced that demand had been much weaker than expected across all products and geographic areas. This sounds like more than a 5% revenue decline. But then he makes adobe look

RE: Deployment software?

2002-08-02 Thread Andre Turrettini
Brian , The most interesting solution I've heard about is having a single server as the source for the code for all your machines. So, you have your laod balancing as usual but cfm maps its file requests to this one machine. Eventually however all of your servers have the pcode in their own

RE: How to append a string to a string?

2002-07-29 Thread Andre Turrettini
Cfsavebodycontent will do this nicely with a bunch less fuss! DRE -Original Message- From: S. Isaac Dealey [mailto:[EMAIL PROTECTED]] Sent: Monday, July 29, 2002 3:35 PM To: CF-Talk Subject: Re: How to append a string to a string? whats an easy way to append a string to a string?

  1   2   >