Re: methods other than GET or POST

2009-09-26 Thread Claude Schneegans
All that said, you should be able to do this from CF in Application.cfc/cfm, which could be shared across multiple websites if you choose to set it up that way. Just look at CGI.REQUEST_METHOD. Yeah, this is the way I finally went. Especially that I can use the same code to return errors to

cf 9 memory

2009-09-26 Thread John Barrett
Does ColdFusion 9 use a lot of the Mac's memory? I need to design some 3D assets in illustrator (want to play with flash catalyst), and the system is running so slow, but I do have JRun CF 9 running always. I just ask as at a friends house(no CF on the machine) the same tasks were done in

Re: methods other than GET or POST

2009-09-26 Thread Dave Watts
Yes, PUT and DELETE are both WebDAV commands, and they'll both run if you've enabled WebDAV (the write access mentioned above) and the user's permissions are appropriate. HTTP verbs like PUT and DELETE are used in RESTful applications as well. You often set up a URI for a piece of content

Re: methods other than GET or POST

2009-09-26 Thread Claude Schneegans
Have you tested this? Actually not really tested, but at least experimented. Sometimes I get errors in my error log table caused by pages requested with OPTIONS or HEAD. Apparently, the CF template is run just like the method was GET. The error is actually caused by url parameters that would

Re: cf 9 memory

2009-09-26 Thread Dave Watts
Does ColdFusion 9 use a lot of the Mac's memory? It can. It's a server, and servers can use a lot of memory on any platform. CF is limited by default to only using the memory that the Java runtime can support, but that can be a significant amount. I need to design some 3D assets in

Re: (ot) Detect OS and CPU Architecture

2009-09-26 Thread Don L
Barney, thank you for your input. I ran CGI.HTTP_USER_AGENT (cf) for it. Here's what I got. With Firefox 3.5 I get: Mozilla/5.0 (Windows; U; Windows NT 6.0; en-US; rv:1.9.1.3) Gecko/20090824 Firefox/3.5.3 (.NET CLR 3.5.30729) With IE7 I get: Mozilla/4.0 (compatible; MSIE 7.0; Windows NT 6.0;

Re: (ot) Detect OS and CPU Architecture

2009-09-26 Thread Barney Boisvert
Windows only runs on Intel, and I says windows right in the UA string. What else do you need? -- Barney Boisvert bboisv...@gmail.com http://www.barneyb.com/ On Sep 26, 2009, at 11:23 AM, Don L do...@yahoo.com wrote: Barney, thank you for your input. I ran CGI.HTTP_USER_AGENT (cf) for

Re: (ot) Detect OS and CPU Architecture

2009-09-26 Thread Dave l
Common sense would dictate that you just maybe want to get this info from a system that actually runs in the os and not a client-side solution. Ok so what runs on pretty much every OS and integrates with coldfusion? Well hopefully even you can figure it out but here is the variables you'd

Re: methods other than GET or POST

2009-09-26 Thread Judah McAuley
On Sat, Sep 26, 2009 at 8:27 AM, Dave Watts dwa...@figleaf.com wrote: All that said, sometimes oversimplification is a good idea. Claude is using IIS, so I didn't figure it was worth going into all this in detail. Sure, I just am a fan of Services Oriented Architecture models for development

Re: (ot) Detect OS and CPU Architecture

2009-09-26 Thread Don L
You are a disgusting and despicable being and your rigidness is beyond words. The question was to detect a user's OS and its CPU architecture not the server's. Do you know how my app is run??? Got it now? f off! Told you a 100 times! f off! I'll hunt you down one day, you fker! Common

Re: (ot) Detect OS and CPU Architecture

2009-09-26 Thread Charlie Griefer
Actually I've heard he's quite flexible. On Sat, Sep 26, 2009 at 4:23 PM, Don L do...@yahoo.com wrote: You are a disgusting and despicable being and your rigidness is beyond words. The question was to detect a user's OS and its CPU architecture not the server's. Do you know how my app is

Re: (ot) Detect OS and CPU Architecture

2009-09-26 Thread Francois Levesque
This has gone on for far too long. This kind of behavior / language is completely inappropriate. People come to this list to learn CF and ask for help, not to be witnesses to this school-yard level of bickering and insulting. If you have nothing good to say in response to someone's post, please

CFBuilder not stopping at breakpoints.

2009-09-26 Thread Mallory Woods
Hello all, I have been wrestling with CFBuilder and trying to get debugging setup. A few facts: Setup locally using WAMP (Apache) CF8 on a windows laptop. CF is working fine along with everything else. I have CFBuilder setup with a project and when I set a break point and try to debug the

Re: (ot) Detect OS and CPU Architecture

2009-09-26 Thread Claude Schneegans
The question was to detect a user's OS and its CPU architecture I don't know about your CPU architecture, but I'm pretty sure about what you smoke ;-) ~| Want to reach the ColdFusion community with something they want? Let

Re: (ot) Detect OS and CPU Architecture

2009-09-26 Thread Gerald Guido
This has gone on for far too long. This kind of behavior / language is completely inappropriate. +1 Enough is enough already. This is the public face of the CF support community. This sort of behavior does nothing to foster the growth of CF, the CF community, nor does it help with stifling CF's

Re: (ot) Detect OS and CPU Architecture

2009-09-26 Thread Matt Quackenbush
I know I shouldn't, but I'm going to have to respectfully disagree with G! on this one. :D If this sort of behavior were the norm, then I could and would fully agree. But we're talking about one particular poster who just happens to do it on every list he's on. I see it as a source of

Re: (ot) Detect OS and CPU Architecture

2009-09-26 Thread Francois Levesque
The problem with that reasoning is that this list is also available offline and is indexed by search engines. Most people won't know the rest of the story and could interpret it as the norm. Francois Levesque http://blog.critical-web.com/ On Sat, Sep 26, 2009 at 11:27 PM, Matt Quackenbush

Re: (ot) Detect OS and CPU Architecture

2009-09-26 Thread Francois Levesque
Obviously by offline I meant ONline, it must be the time of day (or night, whatever) Francois Levesque http://blog.critical-web.com/ On Sat, Sep 26, 2009 at 11:30 PM, Francois Levesque cfab...@gmail.comwrote: The problem with that reasoning is that this list is also available offline and is

Re: (ot) Detect OS and CPU Architecture

2009-09-26 Thread Matt Quackenbush
Heh. Offline. Online. Meh. No worries. :-) Everyone is certainly entitled to their opinion, but I would argue that those very same search engines that index a few posts here and there of this sort are also indexing hundreds of thousands of the normal, average, every day post. Therefore, it

Re: (ot) Detect OS and CPU Architecture

2009-09-26 Thread Dave Watts
Preferably do it with javascript. Did a bit of digging myself, neither navigator.userAgent nor navigator.appVersion command would suffice for the CPU part.  Hmm, is javascript simply unable to or I simply don't know better? JavaScript is unable to access this sort of information. If you

Re: (ot) Detect OS and CPU Architecture

2009-09-26 Thread Dave Watts
Well, windows only runs on Intel, and it states 32/64 bit in the user agent.  Linux usually has an architecture in the user agent.  OSX is a wildcard, but universal binaries make it no big deal if it's PPC or Intel. Keep in mind that this might not be entirely reliable anyway. For example,

Re: (ot) Detect OS and CPU Architecture

2009-09-26 Thread Dave Watts
Common sense would dictate that you just maybe want to get this info from a system that actually runs in the os and not a client-side solution. Ok so what runs on pretty much every OS and integrates with coldfusion? Well hopefully even you can figure it out but here is the