Re: OT: ColdFusion + ASP without IIS?

2005-09-18 Thread HOFLee _
For ASP.NET check out mono. Do you know if mono works on windows? ~| Find out how CFTicket can increase your company's customer support efficiency by 100% http://www.houseoffusion.com/banners/view.cfm?bannerid=49 Message:

RE: OT: ColdFusion + ASP without IIS?

2005-09-18 Thread Dave Watts
For ASP.NET check out mono. Do you know if mono works on windows? If you're running on Windows, and you want to run ASP and ASP.NET, why not just run IIS? It will be exponentially easier, and I would bet good money that it'll also run those programs a lot better than any alternative you

Re: OT: ColdFusion + ASP without IIS?

2005-09-18 Thread HOFLee _
why not just run IIS? IIS doesn't run on XP Home afaik. In order to install IIS I would have to upgrade that machine. It isn't worth it for something I am only playing around with. ~| Logware (www.logware.us): a new and

Re: XML / XSLT / XPath

2005-09-18 Thread S . Isaac Dealey
I don't have any real experience with XML other than editing some config files, parsing some xml docs and tinkering with XSLT over the last couple weekends. I guess I am looking for a book that hits on all the topics but not too deep. I can then get more specific books as the need arises.

Re: OT: ColdFusion + ASP without IIS?

2005-09-18 Thread S . Isaac Dealey
why not just run IIS? IIS doesn't run on XP Home afaik. In order to install IIS I would have to upgrade that machine. It isn't worth it for something I am only playing around with. I hate that... MS did the same thing with Win2K... In the ad copy on their site (specifically the version

Re: OT: ColdFusion + ASP without IIS?

2005-09-18 Thread Claude Schneegans
I wonder whether it is even worth building CFX tags anymore I need a CFX tag to grab information from JDBC and be compatible with a previous ODBC version. Beleive me, if I could do it in C, I would! have you tried the CF Admin Clear Template Cache option? I see no Clear Template Cache option

RE: using an xml file for cfc settingsray style

2005-09-18 Thread Andy
Dave, I have just started to use XML for file settings, so take this as a bigger's stab. I have about 80 lines in my application.cfc that sets things like file locations, menus, security context, etc. I am in the process of moving them into XML files, one for each environment (dev, test,

RE: OT: ColdFusion + ASP without IIS?

2005-09-18 Thread Mark Fuqua
Don't know what version you are using, but on mx7 under settings then under Caching at the very bottom of the page is a button that says clear template cache now. Mark -Original Message- From: Claude Schneegans [mailto:[EMAIL PROTECTED] Sent: Sunday, September 18, 2005 10:57 AM To:

Re: OT: ColdFusion + ASP without IIS?

2005-09-18 Thread Claude Schneegans
Don't know what version you are using 7,0,0,91690 Edition Developer I just download it last week. May be there is an update I sould get? -- ___ REUSE CODE! Use custom tags; See http://www.contentbox.com/claude/customtags/tagstore.cfm (Please send any spam to

RE: using an xml file for cfc settingsray style

2005-09-18 Thread Andy
Wow, I just read what I wrote...it is like English but different. But if you lower your intelligence by a few notches, you just might get the jist. Sorry. Andy -Original Message- From: Andy [mailto:[EMAIL PROTECTED] Sent: Sunday, September 18, 2005 12:49 PM To: CF-Talk Subject: RE:

Re: Developing a CFX tag in Java

2005-09-18 Thread Claude Schneegans
Hi, Ok, I finally found my problem, I was actually runing the CF 6 Administrator under CF 7 ;-) The system said that the CF version was 7, but I was in the CF6 administrator. Just a virtual path problem (I have CF 5, 6 and 7 runing on the same machine). Now I see the button, I tried it,...

RE: Developing a CFX tag in Java

2005-09-18 Thread Guy Rish
Claude, Have you considered creating a main in your tag and using the DebugRequest and DebugResponse classes to test your tag? rish -Original Message- From: Claude Schneegans [mailto:[EMAIL PROTECTED] Sent: Sunday, September 18, 2005 2:34 PM To: CF-Talk Subject: Re: Developing a

Re: Developing a CFX tag in Java

2005-09-18 Thread Claude Schneegans
Have you considered creating a main in your tag and using the DebugRequest and DebugResponse classes to test your tag? How can this work? A CFX is supposed to be called by CF, get its parameters from attributes from CF, and the results sent to CF via a query created in CF. If I run the tag

Re: using an xml file for cfc settingsray style

2005-09-18 Thread Will Tomlinson
Wow, I just read what I wrote...it is like English but different. But if you lower your intelligence by a few notches, you just might get the jist. Sorry. I've been testing different ways of doin this. Ray tipped me off to a new feature of XMLParse() in mx7 which lets you use filenames and

RE: Developing a CFX tag in Java

2005-09-18 Thread Guy Rish
Claude, The DebugRequest, DebugResponse and DebugQuery classes were made to do exactly this sort of thing. You setup a (static) main within the tag class as you would during normal test development. Create instances of a DebugRequest, DebugResponse and, if necessary, a DebugQuery. The

RE: using an xml file for cfc settingsray style

2005-09-18 Thread Andy
Nice trick on xmlParse. You don't Get variables into a CFC, that is a SET. You get from a CFC. I SET some of the application variables in each of my CFC's, rather then referencing an application variable in the CFC's. This is to create fully encapsulated objects (no outside references). I also

Flash validation before submit

2005-09-18 Thread Chris Brandt
Is there a way to tell flash forms to do a quick validation check and report any errors without submitting the form? I'm trying to do the submission via Flash Remoting (versus regular form submission) -- but I want to make sure that all of the fields validate properly. Thanks, Chris

Flash CFForm enter to submit

2005-09-18 Thread Michael Dinowitz
Is there a function in actionscript or javascript which will allow a Flash CFFORM to be submitted when someone hits enter rather than pressing on a submit button? ~| Find out how CFTicket can increase your company's customer

re: Flash validation before submit

2005-09-18 Thread dave
you can use validateat=onblurĀ  not perfect but if you add that with some as code to not show submit button till all is good then it might work ~Dave the disruptor~ Some people just don't appreciate how difficult it is to dispense wisdom and abuse at the same time.

RE: using an xml file for cfc settingsray style

2005-09-18 Thread dave
so basically it's right on my level!! :) thanks for your input I will be going through these to figure out how i'm gunna do this ~Dave the disruptor~ Some people just don't appreciate how difficult it is to dispense wisdom and abuse at the same time.

Re: Flash CFForm enter to submit

2005-09-18 Thread Ryan Guill
_root.submitForm(); not sure of the capitolization (and it matters!), i know the _root. part is right, but if that doesnt work, try capitolizing it differently. On 9/18/05, Michael Dinowitz [EMAIL PROTECTED] wrote: Is there a function in actionscript or javascript which will allow a Flash

Re: Flash validation before submit

2005-09-18 Thread Ryan Guill
this article from asfusion.com might help you figure something out http://www.asfusion.com/blog/index.cfm?mode=search On 9/18/05, dave [EMAIL PROTECTED] wrote: you can use validateat=onblur not perfect but if you add that with some as code to not show submit button till all is good then it

Re: Site-wide error handler?

2005-09-18 Thread Mary Jo Sminkey
The problem is my pretty error page does not get display, the egenric ugly coldfusion page always appears and I do not know why. Have you tried using a cferror tag in your application.cfm page? That will also help isolate whether the problem is the error handler, or the call to it.

Re: using an xml file for cfc settingsray style

2005-09-18 Thread Will Tomlinson
Can we please get some more input on this topic guys? I'd just like to know how some of you handle these things. Thanks, Will ~| Discover CFTicket - The leading ColdFusion Help Desk and Trouble Ticket application

Re: Developing a CFX tag in Java

2005-09-18 Thread Claude Schneegans
The DebugRequest, DebugResponse and DebugQuery classes were made to do exactly this sort of thing. Thanks, I.ll look into this direction. -- ___ REUSE CODE! Use custom tags; See http://www.contentbox.com/claude/customtags/tagstore.cfm (Please send any spam

Re: using an xml file for cfc settingsray style

2005-09-18 Thread Kym Kovan
Will Tomlinson wrote: Can we please get some more input on this topic guys? I'd just like to know how some of you handle these things. Umm, we are still use ini rather than xml files but the overall architecture is much the same. A lot of our sites use code that dates back to CF 5 or even

Re: OT: ColdFusion + ASP without IIS?

2005-09-18 Thread HOFLee _
I hate that... MS did the same thing with Win2K... In the ad copy on their site (specifically the version comparison no less) they said to help support web developers who work on their home machines, we're including a FULL, UNALTERED copy of IIS in Win2K Pro... So I installed it... and found the

RE: OT: ColdFusion + ASP without IIS?

2005-09-18 Thread Jeff Garza
If you have a copy of XP Pro and/or a copy of Server 2000, you can execute a hack to install IIS on the Home edition of XP. There are numerous tutorials on how to do this... Just do a Google search. http://www.google.com/search?hl=enq=IIS+on+XP+HomebtnG=Google+Search Cheers, Jeff

Re: OT: ColdFusion + ASP without IIS?

2005-09-18 Thread Stan Winchester
The best investment I have made is the The Microsoft Action Pack Subscription found a: https://partner.microsoft.com/global/40009735/ You get many flavors of Server 2003, SQL Server, Office, Virtual PC, and much more... If you have a copy of XP Pro and/or a copy of Server 2000, you can execute

Re: Developing a CFX tag in Java

2005-09-18 Thread Douglas Knudsen
I googled on jrun class reload out of curiosity http://www.macromedia.com/cfusion/knowledgebase/index.cfm?id=tn_18228 first hit talks about modding your jurun-web.xml file refactoring my Google phrase to: jrun Dynamic class reloading returned good info. I have not tried the approaches yet, so

missing template handler

2005-09-18 Thread dan martin
I am trying to setup my 404 handler in CFMX 7 and cannot seem to get it to take. The administrator keeps saying the file does not exist. It says to specify the relative path to the template. What does that mean? I tried putting the file in the root and just specifying the page, putting in the

Re: missing template handler

2005-09-18 Thread dan martin
I am trying to setup my 404 handler in CFMX 7 and cannot seem to get it to take. The administrator keeps saying the file does not exist. It says to specify the relative path to the template. What does that mean? I tried putting the file in the root and just specifying the page, putting in

Re: using an xml file for cfc settingsray style

2005-09-18 Thread dave
well heres why I ask I havent found a good way to pull in mainly application vars like dsn, username passwords that consistantly work. and I am working on 2 sites right now that basically are the same, one uses part of the products, the other uses the rest of it (these will be 2 diff urls)