Re: Farcry?

2004-06-28 Thread Mark Drew
I worked (investigaged it) and it is an interesting implementation of something called a COAPI (content object API) which is a way of storing different types of content. The interesting way that FarCry does this is by extending an existing type(farcry.type) component with your own types simply by

RE: Farcry?

2004-06-28 Thread Robertson-Ravo, Neil (RX)
Yeah, FarCry was born from the smouldering ruins of ideas gone by...i.e. Spectra...(for those that can access memories that far back it was an overweight application Framework)one diff is that FarCry is far superior! It does allow for custom application, even more so that some other limited

dumb regex question

2004-06-28 Thread Paul Hastings
how do you escape a : as in h:mm in regex? i'm trying to replace that string with a var i'm getting h:replacementVar rather than the whole h:mm string being replaced with replacementVar (i guess the : is being interpretted as set of something, [:upper:]). also any idea what the equivalent in js

Re: dumb regex question

2004-06-28 Thread Stephen Moretti (cfmaster)
Paul Hastings wrote: how do you escape a : as in h:mm in regex? \:(back-slash colon) i'm trying to replace that string with a var i'm getting h:replacementVar rather than the whole h:mm string being replaced with replacementVar (i guess the : is being interpretted as set of something,

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

2004-06-28 Thread cf coder
Hi Guys, I posted this thread on Friday. Can someone please answer my last query. Best regards, cfcoder [Todays Threads] [This Message] [Subscription] [Fast Unsubscribe] [User Settings] [Donations and Support]

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

2004-06-28 Thread Stephen Moretti (cfmaster)
cf coder wrote: Hi Guys, I posted this thread on Friday. Can someone please answer my last query. What ever happens the user will need to download the file.You can't leave it on the server and open it from there.Your only option is to educate the user on the use of Save to Disk and Open .

RE: dumb regex question

2004-06-28 Thread Pascal Peters
: shouldn't be escaped. What is your regexp? What do you mean by equivalent in JS? You can always escape a character by putting a \ in front of it (not for alnum or you can get strange results), but there is only a limited number of characters tht need escaping. Another thing you can do is make

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

2004-06-28 Thread Pascal Peters
I was teaching, but I think a lot of people replied. In short: This is a client thing and you can't force it. You can try by serving the file with cfcontent: cfheader name=Content-Disposition value=attachment; filename=#filename# cfcontent type=application/unknown file=#pathToFile# deletefile=No

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

2004-06-28 Thread WebSite CFtalk
Hello, You should have a look at webdav / webfolders etc. (www.webdav.org is one place to start..) It enables users to save (work with) documents via the http server, and it's also possible to check out/in documents. As far as I've found out webdaw in IIS requires authentication to the

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

2004-06-28 Thread cf coder
I'll have a word with my manager and see what he says. Thank you guys for your help. Much appreciated! regards, cfcoder [Todays Threads] [This Message] [Subscription] [Fast Unsubscribe] [User Settings] [Donations and Support]

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

2004-06-28 Thread mavinson
As this issue is ultimately a client-thing, here's what we do (part of a help doc): - right click My Computer - click Explore - click Tools - click Folder Options - click File Types tab - scroll down to .DOC - click Advanced button - make sure Browse in Same Window checkbox is de-selected.

Re: dumb regex question

2004-06-28 Thread Paul Hastings
how do you escape a : as in h:mm in regex? \:(back-slash colon) thanks but i tried that (h\:mm). i've never been able to get regex working fully for me. I guess the whole thing is ^[0-9]{1}(\:)[0-9]{2}$ well i want to replace the literal string h:mm with another value. i'm building an i18n

RE: dumb regex question

2004-06-28 Thread Pascal Peters
Can you give us the code snippet that is not working (and maybe a description of what you want to achieve with that particular snippet)? As I said in my previous mail, : doesn't need escaping, so there is probably another problem with your regexp. Pascal PS Learn regexp and love it

Re: Unicode, Access, and 6.1

2004-06-28 Thread Jake .
But the new server upgrade only has the old without Unicode option. Am I missing a preference in the CF Admin for how to enable the Unicode support option? it should just be there. are you sure the other server is 6.1? Yes, I've verified in the System Info area that the server upgraded to the

Re: dumb regex question

2004-06-28 Thread Paul Hastings
: shouldn't be escaped. What is your regexp? What do you mean by equivalent in JS? forgetting cf for the moment (the js is probably more important anyway).i mean what would the requivalent in js .replace or RegExp() be? for example, dateString = dateString.replace( new RegExp(h:mm, g),

RE: dumb regex question

2004-06-28 Thread Pascal Peters
This is how I tested and it has the desired result!!! localeTime = 12:30; dateString = testing h:mm for JS; dateString = dateString.replace( new RegExp(h:mm, g), localeTime); alert(dateString); You can also use the shorthand for regexp creation dateString = dateString.replace(/h:mm/g,

cfloop and cfscript

2004-06-28 Thread jean-marc bottin
Hi, I have been looking at the documentation at macormedai but i didi not find any clear explaination on how to do a cfloop for a list in a cfscript. How can i do cfloop index = theIndex list = theList delimiters = theDelimiter in a cfscript Thanks, Jean-Marc [Todays Threads] [This

Cheap hosting

2004-06-28 Thread Mark Drew
Can anyone recomend a cheap coldfusion hosting company (for personal use)? -- Mark Drew mailto:[EMAIL PROTECTED] [Todays Threads] [This Message] [Subscription] [Fast Unsubscribe] [User Settings] [Donations and Support]

Re: Cheap hosting

2004-06-28 Thread Stephen Moretti (cfmaster)
Mark Drew wrote: Can anyone recomend a cheap coldfusion hosting company (for personal use)? http://www.cfmxhosting.co.uk You can get free hosting with options to pay for additional services. Stephen [Todays Threads] [This Message] [Subscription] [Fast Unsubscribe] [User Settings]

RE: Cheap hosting

2004-06-28 Thread Trevor Holm-Laursen
I use www.mediumcube.com http://www.mediumcube.com/, 12.95 per month for mx 6.1.It's less if you pay them quarterly or a year in advance. Trevor _ From: Mark Drew [mailto:[EMAIL PROTECTED] Sent: Monday, June 28, 2004 10:29 AM To: CF-Talk Subject: Cheap hosting Can anyone recomend a cheap

Re: cfloop and cfscript

2004-06-28 Thread Thomas Chiverton
On Monday 28 Jun 2004 14:06 pm, jean-marc bottin wrote: cfloop index = theIndex list = theList delimiters = theDelimiter in a cfscript for(i=1;i lte listLen(theList);i=i+1) -- Tom Chiverton Advanced ColdFusion Programmer Tel: +44(0)1749 834997 email: [EMAIL PROTECTED] BlueFinger Limited

Re: cfloop and cfscript

2004-06-28 Thread Joe Rinehart
This should get you there: cfset list=apple,orange,pear cfscript for (i = 1; i lte listLen(list); i = i + 1) { element = listGetAt(list, i); writeOutput(element); } /cfscript - Original Message - From: jean-marc bottin [EMAIL PROTECTED] Date: Mon, 28 Jun 2004 09:06:30 -0400 Subject:

RE: cfloop and cfscript

2004-06-28 Thread Jean-Marc Bottin
Thanks guys, Jean-Marc -Message d'origine- De : Joe Rinehart [mailto:[EMAIL PROTECTED] Envoy : lundi 28 juin 2004 15:40 : CF-Talk Objet : Re: cfloop and cfscript This should get you there: cfset list=apple,orange,pear cfscript for (i = 1; i lte listLen(list); i = i + 1) { element =

RE: Cheap hosting

2004-06-28 Thread Kevin Cundick
Try CFDynamics!(www.cfdynamics.com http://www.cfdynamics.com/ ) For about $20/mo. they offer a lot including access to SQL Server.Worth looking into. -Original Message- From: Mark Drew [mailto:[EMAIL PROTECTED] Sent: Monday, June 28, 2004 7:29 AM To: CF-Talk Subject: Cheap hosting Can

Server use / stability

2004-06-28 Thread Burns, John D
i'm trying to figure out a good reliable way to measure statistically how much my server is being taxed with the multiple sites I have running on it.The server has about 10 sites on it and a management system that is CF intensive.Is there a program that I can set on the server to give me some good

RE: Server use / stability

2004-06-28 Thread Tony Weeg
I assume windows (iis was a dead giveaway, I know im on top of it this morning) and with that you can use performance monitoring, to watch this...on a on-the-fly type basis... just a small tip on this iceberg of GREAT help we call cftalk -Original Message- From: Burns, John D

Re: Server use / stability

2004-06-28 Thread Adrocknaphobia
Well the cheapest tool is... Ctrl+Alt+Delete --- Task Manager to keep an eye on how much memory you have free and how frequently jrun is eating cpu. -Adam - Original Message - From: Burns, John D [EMAIL PROTECTED] Date: Mon, 28 Jun 2004 09:57:11 -0400 Subject: Server use / stability To:

Re: Server use / stability

2004-06-28 Thread Thomas Chiverton
On Monday 28 Jun 2004 14:57 pm, Burns, John D wrote: is CF intensive.Is there a program that I can set on the server to give me some good feedback throughout the day or is it just best to examine the IIS logs? I basically want to stay on top of the hardware You can install an SNMP module into

Re: Cheap hosting

2004-06-28 Thread Doug White
$9.95 mo.less on annual basis - SQL2k, CFMX 6.1 on a win2003 Enterprise server. For non-commercial personal sites - 100 MB storage == Our Anti-spam solution works!! http://www.clickdoug.com/mailfilter.cfm For hosting solutions http://www.clickdoug.com

RE: Server use / stability

2004-06-28 Thread Burns, John D
I considered that, but are there any tricks to using Task Manager or Performance Monitor to log that information or something so I can see the highpoints throughout the days (without having to watch it all the time)? John -Original Message- From: Adrocknaphobia [mailto:[EMAIL PROTECTED]

RE: Server use / stability

2004-06-28 Thread Tony Weeg
I think perfmon can keep some stats on that... -Original Message- From: Burns, John D [mailto:[EMAIL PROTECTED] Sent: Monday, June 28, 2004 10:16 AM To: CF-Talk Subject: RE: Server use / stability I considered that, but are there any tricks to using Task Manager or Performance Monitor

Raymond's Blog for Bluedragon

2004-06-28 Thread Rick Root
Raymond Camden gave me permission at CFUN to distribute my version of his Blog, which is modified to work with Bluedragon, and ever so slightly enhanced.It should still work with CFMX as well of course. Anyway, you can download it from my blog.

Re: Raymond's Blog for Bluedragon

2004-06-28 Thread Thomas Chiverton
On Monday 28 Jun 2004 15:24 pm, Rick Root wrote: entry=A896645C-136D-B771-EF3FC724A19B7071 I've said it before, I'll say it again: Is that a [G|U]UID ? Eww... :-) -- Tom Chiverton Advanced ColdFusion Programmer Tel: +44(0)1749 834997 email: [EMAIL PROTECTED] BlueFinger Limited Underwood

HTTP 405 - resource not allowed

2004-06-28 Thread stas
I am migrating one application to another server. The entrance to this app is always from an external site via a POST. All of a sudden I'm getting a 405... the site itself is up if I hit it directly via URL and the mappings for .cfm are set to all verb. I'd appreciate some pointers, thanks! This

Re: HTTP 405 - resource not allowed

2004-06-28 Thread JediHomer
Have you got URL Scan installed? Sometimes by default on a lockdown it may restrict POST and so give you an error like this? HTH Mike - Original Message - From: stas [EMAIL PROTECTED] Date: Mon, 28 Jun 2004 10:39:35 -0400 Subject: HTTP 405 - resource not allowed To: CF-Talk [EMAIL

Bug in CFMX's arithmetic functions

2004-06-28 Thread Damien McKenna
I just discovered a weird bug in CFMX 6.0's arithmetic functions. I'm adding a checksum to a form.Its a simple function, I concatenate two numbers separated by a decimal, encrypt then urlencode it.On the subsequent page it decodes then decrypts the string.This part works fine.However, when I

RE: Server use / stability

2004-06-28 Thread Burns, John D
Actually, an even cheaper tool is Ctrl+Shift+Escape :-)Saves you a step. John -Original Message- From: Adrocknaphobia [mailto:[EMAIL PROTECTED] Sent: Monday, June 28, 2004 10:02 AM To: CF-Talk Subject: Re: Server use / stability Well the cheapest tool is... Ctrl+Alt+Delete --- Task

Re: HTTP 405 - resource not allowed

2004-06-28 Thread stas
One more thing. If the form's action tag is an absoluting path including the CFM file, it works, that is: This works - form action="" method=post This doesn't - form action="" method=post Anyway to get the latter to work? That's what I have it set up as on the older server, no issues, but

Re: HTTP 405 - resource not allowed

2004-06-28 Thread stas
Mike, no I don't have iislock installed yet. - Original Message - From: JediHomer [EMAIL PROTECTED] To: CF-Talk [EMAIL PROTECTED] Sent: Monday, June 28, 2004 10:42 AM Subject: Re: HTTP 405 - resource not allowed Have you got URL Scan installed? Sometimes by default on a lockdown it

Re: HTTP 405 - resource not allowed

2004-06-28 Thread JediHomer
Make sure the default document is set to the correct document...As my first guess is that its not pointing to index.cfm? HTH Mike - Original Message - From: stas [EMAIL PROTECTED] Date: Mon, 28 Jun 2004 10:45:30 -0400 Subject: Re: HTTP 405 - resource not allowed To: CF-Talk [EMAIL

Re: Server use / stability

2004-06-28 Thread Adrocknaphobia
Snap. Learn somthing new everyday. -Adam - Original Message - From: Burns, John D [EMAIL PROTECTED] Date: Mon, 28 Jun 2004 10:44:11 -0400 Subject: RE: Server use / stability To: CF-Talk [EMAIL PROTECTED] Actually, an even cheaper tool is Ctrl+Shift+Escape :-)Saves you a step. John

Re: Bug in CFMX's arithmetic functions

2004-06-28 Thread JediHomer
You could try treating that number as a list? The you could do something like... CFSET iCheck = ListFirst(DecryptedData, .) - ListRest(DecryptedData, .) HTH Mike - Original Message - From: Damien McKenna [EMAIL PROTECTED] Date: Mon, 28 Jun 2004 10:43:24 -0400 Subject: Bug in CFMX's

Problem with multipart forms on Mac

2004-06-28 Thread Claude Schneegans
Hi, I have a form to send some newa on a site. The user may optionnally send a photo, so the form is multipart. The problem is when the user send the form from a Mac with no image attached. It appears that the server still thinks there IS an image, and of course it fails when trying to store it

Re: HTTP 405 - resource not allowed

2004-06-28 Thread stas
No, that's not it. Moreover, I removed the index.cfm and made a plain text index.html file and still the same behavior... - Original Message - From: JediHomer [EMAIL PROTECTED] To: CF-Talk [EMAIL PROTECTED] Sent: Monday, June 28, 2004 10:53 AM Subject: Re: HTTP 405 - resource not allowed

Re: Cheap hosting

2004-06-28 Thread Greg Stewart
Depending on how much effort you are willing to put in I can seriously recommend Linode.com. for $19.95 you get a UML (User Mode Linux) account (i.e. root access to your VPS) and basically can do whatever you like with it. Install Apache, BlueDragon and MySQL and you are off! Downside is you have

Re: Problem with multipart forms on Mac

2004-06-28 Thread JediHomer
Try trimming the field... so somthing like CFIF StructKeyExists(Form, File_Name) AND Len(Trim(Form.File_Name)) CFTRY CFFILE HTH Mike - Original Message - From: Claude Schneegans [EMAIL PROTECTED] Date: Mon, 28 Jun 2004 11:06:14 -0400 Subject: Problem with multipart forms on Mac

Re: HTTP 405 - resource not allowed

2004-06-28 Thread JediHomer
Not really sure, my first thoughts were that IIS was serving up a htm as the default so you might get that... Is there any reason why you cant point the action directly to the index.cfm file? HTH Mike - Original Message - From: stas [EMAIL PROTECTED] Date: Mon, 28 Jun 2004 11:19:24

Re: Cheap hosting

2004-06-28 Thread Nathan Strutz
www.2globalmart.com $40/yr (plan 06/windows) that comes to just $3.33/month, but only payable yearly. -nathan strutz Mark Drew wrote: Can anyone recomend a cheap coldfusion hosting company (for personal use)? -- Mark Drew mailto:[EMAIL PROTECTED] [Todays Threads] [This Message]

login methods

2004-06-28 Thread George Abraham
Hi all, Rick Root's statement that he doesn't see the point of a cflogin tag for applications made me think of this. What login methods/processes do most people use? OK, that's too generic a question! In a multi-environment situation (where people from different organizations have to use the same

Re: HTTP 405 - resource not allowed

2004-06-28 Thread Mark Drew
I think that is your problem right there you should make the default document index.cfm and not index.html or default.htm then you will be able to run it Hope that helps Regards Mark Drew On Mon, 28 Jun 2004 11:19:24 -0400, stas [EMAIL PROTECTED] wrote: No, that's not it. Moreover, I

Re: Server use / stability

2004-06-28 Thread Doug White
On a Windows 2003 server, running IIS 6.0, you can go into computer management and set up a number of performance monitoring tasks (PerfMon) which will create logs that should give you what you want. There are so many log files created at the server level, it does get confusing from time to

RE: Bug in CFMX's arithmetic functions

2004-06-28 Thread Nathan Mische
Any reason you are not using CFMX 6.1? I just ran the following in CFMX 6.1 and got the expected result, 0.123. cfscript DecryptedData = 123.123; x = Evaluate(Val(#DecryptedData#) - Fix(Val(#DecryptedData#))); writeOutput(x); /cfscript Also, there is no need for the Evaluate function, Val

Re: Bug in CFMX's arithmetic functions

2004-06-28 Thread Damien McKenna
In the end I just changed it from a period (.) to a colon (:) and used a series of Finds to do the work. As JediHomer said I could just use lists... probably would be much cleaner...I'll probably change that later today. -- Damien McKenna - Web Developer - [EMAIL PROTECTED] The Limu Company -

Re: Cheap hosting

2004-06-28 Thread Mark Drew
The LINODE thing looks super.. I was looking at something REAL cheap as it is for mypersonal stuf i.e. nothing inportant :) or money earning. What is the deal with blue dragon and linux? surely you have to pay a licence even on linode? and how would THAT work? MD On Mon, 28 Jun 2004 08:26:57

Re: Bug in CFMX's arithmetic functions

2004-06-28 Thread Damien McKenna
On Jun 28, 2004, at 11:36 AM, Nathan Mische wrote: Any reason you are not using CFMX 6.1? Because the sysadmin at our host is unresponsive.. I've been attempting to talk to him since last week.Ack. -- Damien McKenna - Web Developer - [EMAIL PROTECTED] The Limu Company -

Apache and CF

2004-06-28 Thread Mark Drew
Talking about http://www.linode.com made me think about something. how many people are running CF (5 or MX) on Apache (1 or 2) on production servers? I love apache for my laptop/development environments and I swear by OS X (and swear at PC's!) but I havent come across many production environments

Re: HTTP 405 - resource not allowed

2004-06-28 Thread stas
Mark, I am not sure I understand you... but I did have index.cfm before. Just to take CF out of the equation I replaced it with index.html and am still receiving 405. Also, when I have index.cfm set up as the default document, if I just go to the site normally by typing the full address in the

Re: HTTP 405 - resource not allowed

2004-06-28 Thread JediHomer
hmm... so just to get this straight... You have a .htm page that posts to action=""> The Default document in the IIS settings ranks index.cfm above any other page. You go to http://somedomain.com and you get the .cfm page served But the POST 405's What do the IIS logs say for the post ? HTH

RE: login methods

2004-06-28 Thread Shawn Grover
I've been thinking on this for some time... In the past, we put the username/password into a database (properly encrypted of course), and checked login's against that table.However it quickly became an issue where each application had it's own login system.My thoughts on this are to create an

SOT: Blackstone @ CF-FUN '04

2004-06-28 Thread Alexander Sherwood
Slight OT here: Anyone catch Ben's Blackstone keynote(s) at CF-FUN? It was rumored that he was going to demo some features not previously shown on the User Group tour this summer. Anyone have the details?!;-) Thanks! -- Alex [Todays Threads] [This Message] [Subscription] [Fast

Re: Apache and CF

2004-06-28 Thread Thomas Chiverton
On Monday 28 Jun 2004 16:43 pm, Mark Drew wrote: Talking about http://www.linode.com made me think about something. how many people are running CF (5 or MX) on Apache (1 or 2) on production servers? We certainly are. good or bad Longer uptimes, more responsive, better support and ease of

Re: Apache and CF

2004-06-28 Thread Doug White
Runs solid as a rock with CFMX 6.1 on Apache2.x == Our Anti-spam solution works!! http://www.clickdoug.com/mailfilter.cfm For hosting solutions http://www.clickdoug.com http://www.forta.com/cf/isp/isp.cfm?isp_id=1069 ==

Re: Cheap hosting

2004-06-28 Thread Rick Root
Mark Drew wrote: What is the deal with blue dragon and linux? surely you have to pay a licence even on linode? and how would THAT work? Not if you run the free version of Bluedragon.The main features you don't get with the free version is the ability to deploy servlets/jsps and JDBC support

RE: Blackstone @ CF-FUN '04

2004-06-28 Thread Sandy Clark
See my blog. http://www.shayna.com/blog _ From: Alexander Sherwood Slight OT here: Anyone catch Ben's Blackstone keynote(s) at CF-FUN? It was rumored that he was going to demo some features not previously shown on the User Group tour this summer. Anyone have the details?!;-) Thanks! --

Re: Apache and CF

2004-06-28 Thread Dave Carabetta
On Mon, 28 Jun 2004 17:43:16 +0200, Mark Drew [EMAIL PROTECTED] wrote: Talking about http://www.linode.com made me think about something. how many people are running CF (5 or MX) on Apache (1 or 2) on production servers? I love apache for my laptop/development environments and I swear by OS

Re: HTTP 405 - resource not allowed

2004-06-28 Thread stas
That's correct, and here's the log entry: 2004-06-28 16:04:08 x.x.x.x - y.y.y.y 80 POST / - 405 Mozilla/4.0+(compatible;+MSIE+6.0;+Windows+NT+5.1;+.NET+CLR+1.1.4322;+.NET+C LR+1.0.3705) 2004-06-28 16:04:08 x.x.x.x - y.y.y.y 80 GET /favicon.ico - 404

Re: login methods

2004-06-28 Thread Rick Root
George Abraham wrote: Rick Root's statement that he doesn't see the point of a cflogin tag To be clear, it may be that I simply don't know enough about it :) Honestly, I haven't researched it and I haven't attended any sessions at MAX or CFUN that talked about it. - Rick [Todays Threads]

Re: Bug in CFMX's arithmetic functions

2004-06-28 Thread Rick Root
Damien McKenna wrote: Because the sysadmin at our host is unresponsive.. I've been attempting to talk to him since last week.Ack. you mean like a hosting company?You use a hosting company that's using CFMX 6.0? If that's the case, God help you, and you might consider doing everything

RE: Mailing to email list using CF

2004-06-28 Thread Barney Boisvert
I don't get it. If you check the addresses first, why check again? If an existing list, just check the format once. Mostly for the PHB's satisfaction.Back before I was around, the guys who originally built the system didn't bother to do ANY validation, at input or send time.They had lots of

Re: Apache and CF

2004-06-28 Thread Rick Root
For my own company, I've been using Apache so long with CF on both Windows and Linux that I can't remember the last time I used CF on IIS. We still use IIS here at Duke but I've been very tempted to switch it to Apache, except I've never done Apache with SSL on Windows and I'm afraid I might

Re: HTTP 405 - resource not allowed

2004-06-28 Thread JediHomer
Then I dont know I'm afraid :( Mike - Original Message - From: stas [EMAIL PROTECTED] Date: Mon, 28 Jun 2004 12:05:58 -0400 Subject: Re: HTTP 405 - resource not allowed To: CF-Talk [EMAIL PROTECTED] That's correct, and here's the log entry: [Todays Threads] [This Message]

Re: Apache and CF

2004-06-28 Thread Mark Drew
This was the response I was expecting (I am won over by apache) I can even run different versions using the virtual hosts (rather than needing to haev windows server to do that in IIS!!!) When I used to run apache on a broadband connection (home machine) I took joy in looking through the logs and

RE: Blackstone @ CF-FUN '04

2004-06-28 Thread Paul Kenney
New feature: ColdFusion Event Gateway. ColdFusion is no longer tied to the web server.Not exactly sure how to describe it just yet, but basically you can use ColdFusion to do all sort of asynchronous processing of anything you can interact with in Java--JMS, IM, SMS, filesystem change

Re: Cheap hosting

2004-06-28 Thread Paul Hastings
Other than that, I think the free bluedragon has all the CFML functionality that the JX version has. even createObject to java objects? did you use this version porting ray's blog? [Todays Threads] [This Message] [Subscription] [Fast Unsubscribe] [User Settings] [Donations and

Re: CFFUN 04 - He3

2004-06-28 Thread C. Hatton Humphrey
Hey CFFUN attendees, how does He3 look? Very nice!I've already set it up as my pimary editor for CF files... looking forward to some of the updates that Matt L talked about at the conference! Hatton [Todays Threads] [This Message] [Subscription] [Fast Unsubscribe] [User Settings]

Re: HTTP 405 - resource not allowed

2004-06-28 Thread Mark Drew
In IIS, when you point to the root can you create an application? sometimes this helps it (it is for ASP generally) but it does the trick On Mon, 28 Jun 2004 17:16:04 +0100, JediHomer [EMAIL PROTECTED] wrote: Then I dont know I'm afraid :( Mike - Original Message - From: stas

Re: login methods

2004-06-28 Thread Rick Root
Oh, and by the way, to answer your question.. I have one web site that I maintain with a lot of different CF and flash apps that all authenticate against a DB2 mainframe, and I'm using a CFC to do it.. basically doing my own session management, storing a session ID and userID in a local oracle

Re: Apache and CF

2004-06-28 Thread Stephen Moretti (cfmaster)
good or bad Longer uptimes, more responsive, better support and ease of configuration than IIS ? How can you resist :-) But then I find that getting help with apache when there is problem is extremely poor (usually I get sarcastic script kiddies or no response), responsiveness is about

Re: login methods

2004-06-28 Thread George Abraham
Yeah, about that AOL thing. I remember seeing server logs where one person surfing from an AOL IP basically jumped IPs about 10 times in a period of 15 minutes and for about 15 page requests, including refreshes. I'm not real sure what's happening either. Thanks for your thoughts though! George

RE: Apache and CF

2004-06-28 Thread Barney Boisvert
We've been running CF behind apache for years, with no issues.Started with Apache 1.3 and CF 4.5 (at my current employers), then 2.0 and 6.0, and currently running 2.0 and 6.1.Never had a bit of problems with the setup. We just cycled CFMX when we applied a large update on June 1, and before that

CFDIRECTORY filter to get just directories

2004-06-28 Thread Burns, John D
Is there a filter that can be used in cfdirectory action=""> filter= to only get directories?Any help would be appreciated. John [Todays Threads] [This Message] [Subscription] [Fast Unsubscribe] [User Settings] [Donations and Support]

Re: Apache and CF

2004-06-28 Thread Mark Drew
I do think Stephen has a point, about learning curve, althought I have been won over by the easy config as I can port it across development servers and backup configuration changes On Mon, 28 Jun 2004 09:30:38 -0700, Barney Boisvert [EMAIL PROTECTED] wrote: We've been running CF behind apache

timed events

2004-06-28 Thread Coleman, Brian
How would you go about creating events that happen outside the page loading and processing...mainly I use SQL 2000 for my db, so it could be something set up inside the db, I guess Here are a few examples of what I'm wanting to do Let's say a user wants to create an event and have it show up on

Re: CFFUN 04 - He3

2004-06-28 Thread Stephen Hait
What's He3, please? Hey CFFUN attendees, how does He3 look? Very nice!I've already set it up as my pimary editor for CF files... looking forward to some of the updates that Matt L talked about at the conference! Hatton [Todays Threads] [This Message] [Subscription] [Fast

Re: CFFUN 04 - He3

2004-06-28 Thread Joe Eugene
Didnt attend CFFUN... what is He3? - Original Message - From: Dan O'Keefe To: CF-Talk Sent: Sunday, June 27, 2004 1:31 PM Subject: CFFUN 04 - He3 Hey CFFUN attendees, how does He3 look? Dan O'Keefe [Todays Threads] [This Message] [Subscription] [Fast Unsubscribe] [User

Re: CFDIRECTORY filter to get just directories

2004-06-28 Thread JediHomer
Or you could do a Query of a Query so that it only contains what you need. HTH Mike - Original Message - From: [EMAIL PROTECTED] [EMAIL PROTECTED] Date: Mon, 28 Jun 2004 11:40:55 -0500 Subject: RE: CFDIRECTORY filter to get just directories To: CF-Talk [EMAIL PROTECTED] No filter that

Re: login methods

2004-06-28 Thread Rick Root
George Abraham wrote: Yeah, about that AOL thing. I remember seeing server logs where one person surfing from an AOL IP basically jumped IPs about 10 times in a period of 15 minutes and for about 15 page requests, including refreshes. I'm not real sure what's happening either. Makes it

RE: CFFUN 04 - He3

2004-06-28 Thread Tangorre, Michael
What's He3, please? RTFA:-) [Todays Threads] [This Message] [Subscription] [Fast Unsubscribe] [User Settings] [Donations and Support]

Re: CFFUN 04 - He3

2004-06-28 Thread Adrocknaphobia
http://richpalette.com/ - Original Message - From: Stephen Hait [EMAIL PROTECTED] Date: Mon, 28 Jun 2004 12:42:37 -0400 Subject: Re: CFFUN 04 - He3 To: CF-Talk [EMAIL PROTECTED] What's He3, please? Hey CFFUN attendees, how does He3 look? Very nice!I've already set it up as my

RE: SOT: Blackstone @ CF-FUN '04

2004-06-28 Thread Tony Weeg
wow. adam.major statement .NET and puny. really? tw -Original Message- From: Adrocknaphobia [mailto:[EMAIL PROTECTED] Sent: Monday, June 28, 2004 12:45 PM To: CF-Talk Subject: Re: SOT: Blackstone @ CF-FUN '04 I'm quite suprised this thread hadnt been started yet. I'm pretty sure

Re: timed events

2004-06-28 Thread Mark Drew
In coldfusion you have a cfschedule. Or in the administration you can add a schedule that at a certain date/time with some repetition it will run some code. look into that my friend and you shall find the answer MD On Mon, 28 Jun 2004 11:38:23 -0500, Coleman, Brian [EMAIL PROTECTED] wrote:

Re: Cheap hosting

2004-06-28 Thread Mark Drew
O.. sounds too good to be true!a great competition to PHP based stuff.. too tempting! On Mon, 28 Jun 2004 12:01:35 -0400, Rick Root [EMAIL PROTECTED] wrote: Mark Drew wrote: What is the deal with blue dragon and linux? surely you have to pay a licence even on linode? and how would

Re: CFFUN 04 - He3

2004-06-28 Thread Mark Drew
I belive it is an extension to eclipse? http://eclipse.org that allows coldfusion to be edited. Eclipse is nearly the de-facto editor for java, very nice MD On Mon, 28 Jun 2004 12:49:27 -0400, Tangorre, Michael [EMAIL PROTECTED] wrote: What's He3, please? RTFA:-) [Todays Threads]

RE: CFFUN 04 - He3

2004-06-28 Thread Tim Blair
Didnt attend CFFUN... what is He3? A ColdFusion IDE based around Eclipse[1], developed by RichPalette[2], a joint venture between R337 Consulting and Gestaltech Inc.[3].There have been numerous articles and threads on CF-Talk about it [4][5]. Tim. [1] http://www.eclipse.org/ [2]

Re: Cheap hosting

2004-06-28 Thread Mark Drew
I had a look at cf-developer.net... GREAT idea. fantastic! wonderful! BUT I am living now in Spain (I am a brit, work for brit companies... speak english, look like a lobster in the sun) and thus cannot sign up... so close.. yet... so far... On Mon, 28 Jun 2004 17:37:01 +0100, Stephen Moretti

Re: SOT: Blackstone @ CF-FUN '04

2004-06-28 Thread Rick Root
Adrocknaphobia wrote: I'm quite suprised this thread hadnt been started yet. I'm pretty sure we are allowed to talk about it 'in our own words'. Although I dont think I can convey the new gateway functionality nearly as well as Ben. But yeah. excuse the language but there just isnt a

Re: CFFUN 04 - He3

2004-06-28 Thread Critter
Didnt attend CFFUN... what is He3? http://www.richpalette.com -- =-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-[ Ctz Consulting ]-= =-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-[ http://ctzconsulting.com ]-= [Todays Threads] [This Message] [Subscription] [Fast Unsubscribe] [User

Re: SOT: Blackstone @ CF-FUN '04

2004-06-28 Thread Adrocknaphobia
well... that is mho. I think that value proposition for companys who dont want to shell out that extra money for CF will need to rethink (i think right now they are pretty equal in what they can do on the web side of things), but blackstone is loaded with a bunch of 'key' features that will make

Re: SOT: Blackstone @ CF-FUN '04

2004-06-28 Thread Paul Kenney
Its not listening on different ports. It is actually listening for event announcements from a custom telnet gateway Java component.The gateway interacts with the OS and calls the appropriate CFC when it needs to.So actually, the gateway listens for telnet connections and passes the requests into

Re: SOT: Blackstone @ CF-FUN '04

2004-06-28 Thread Adrocknaphobia
true. the file thing was pretty simple and could be done with a schedule task... that ran every 15 seconds. but in the bigger picture its opening up a whole new world of applications development to cf. -adam On Mon, 28 Jun 2004 13:03:43 -0400, Adrocknaphobia [EMAIL PROTECTED] wrote: well...

  1   2   3   >