Re: mach II or fusebox?

2005-06-15 Thread Sean Corfield
On 6/15/05, Barney Boisvert <[EMAIL PROTECTED]> wrote: > In general, Mach-II is better suited for larger projects Mostly it's an issue of whether the application has a lot of dynamic state transitions. If you have an application where the control flow is known at design time and can be expressed s

Re: mach II or fusebox?

2005-06-15 Thread dave
The reason is that I will be building our new cfug site so I want it easily delt with by others if I am not around also I am going to be building an xhtml/cssp/cfm/mysql cart/site system and want something easily adaptable by most anyone. this outta be a dandy huh lol ~Dave the disruptor~ "A

Re: mach II or fusebox?

2005-06-15 Thread James Holmes
Ah, good points. Looks like fusebox is the go, so far. On 6/16/05, dave <[EMAIL PROTECTED]> wrote: > no, because plum is limited to ms sql and I would like something a lil bit > more main frain then onTap for what I will be using it for. ~~

Re: mach II or fusebox?

2005-06-15 Thread dave
no, because plum is limited to ms sql and I would like something a lil bit more main frain then onTap for what I will be using it for. ~Dave the disruptor~ "A criminal is a person with predatory instincts who has not sufficient capital to form a corporation." --

Re: mach II or fusebox?

2005-06-15 Thread dave
hum thats totally the opposite of what I thought. Thanks Barney :) ~Dave the disruptor~ "A criminal is a person with predatory instincts who has not sufficient capital to form a corporation." From: Barney Boisvert <[EMAIL PROTECTED]> Sent: Thursday, Jun

Re: mach II or fusebox?

2005-06-15 Thread dave
ok thats in the running ~Dave the disruptor~ "A criminal is a person with predatory instincts who has not sufficient capital to form a corporation." From: Eddie <[EMAIL PROTECTED]> Sent: Thursday, June 16, 2005 12:59 AM To: CF-Talk Subject: Re: mach II

Re: mach II or fusebox?

2005-06-15 Thread Barney Boisvert
In general, Mach-II is better suited for larger projects, as it's more complex, and designed at enforced abstraction. For smaller projects, that can get in the way, but it's very helpful when you got a zillion components and a bajillion lines of code to manage. Mach-II is almost always slower tha

Re: mach II or fusebox?

2005-06-15 Thread Eddie
On 6/15/05, dave <[EMAIL PROTECTED]> wrote: > what are your opinions on these. While you're at it, why don't you check the newest OO framework: Model Glue at http://www.model-glue.com/ -- Eddie. http://awads.net/ ~| Logware (ww

Re: mach II or fusebox?

2005-06-15 Thread James Holmes
Should we throw OnTap, PLUM and any others into this discussion? I know that they aren't all directly competing, but they are all ways of streamlining/organising apps. On 6/16/05, dave <[EMAIL PROTECTED]> wrote: > what are your opinions on these. Keep in mind I am not Micha and an not > working o

mach II or fusebox?

2005-06-15 Thread dave
what are your opinions on these. Keep in mind I am not Micha and an not working on any bigger than the universe projects, just little quick jobs. I tend to like how mach ii is laid out but there isn't much in the way of decent tuts, I haven't looked for fusebox ones yet. Further, I have a hesit

Re: Subscription problems

2005-06-15 Thread James Holmes
Thanks Mike. Finally, my cf-newbie subscriptions come only to the other address (not Gmail) so I get three different behaviours from the list. On 6/16/05, Michael Dinowitz <[EMAIL PROTECTED]> wrote: > This is on my list for today. > > > >I just changed my emaill address over to my gmail account

RE: Looking for a usability expert

2005-06-15 Thread Dawson, Michael
http://www.usablenet.com/ We are getting a sales conf call with this group next week. They contacted us, but I think we, being a university, should really make better use of usability and accessibility. M!ke -Original Message- From: Rey Bango [mailto:[EMAIL PROTECTED] Sent: Wednesday,

RE: Looking for a usability expert

2005-06-15 Thread Parker, Kevin
Where are you located ++ Kevin Parker Web Services Consultant WorkCover Corporation p: 08 8233 2548 m: 0418 806 166 e: [EMAIL PROTECTED] w: www.workcover.com ++ -Original Message- From: Rey Bango [mailto:[EMAIL PROTECTED] Sent: Thursday, 16 June 2005 12:48 PM To: CF-

Looking for a usability expert

2005-06-15 Thread Rey Bango
Hi all. My company is looking for a usability expert to review our shopping process and make recommendations on how to improve it. Could anyone make some recommendations? Rey.. -- http://www.ReyBango.com ~| Find out how CFTic

executing windows scheduled tasks through CF

2005-06-15 Thread One User
If the problem is in executing a task under another account, use this: http://www.cftagstore.com/tags/cfxexec.cfm This is a replacement for CFEXECUTE that allows account switching. ~| Logware (www.logware.us): a new and convenie

RE: stuck on regex

2005-06-15 Thread Matthew Walker
Not tested: [0-9]{1,5}(\-[0-9]{3})? You may need to wrap in slashes: /[0-9]{1,5}(\-[0-9]{3})?/ -Original Message- From: Rebecca Wells [mailto:[EMAIL PROTECTED] Sent: Thursday, 16 June 2005 11:57 a.m. To: CF-Talk Subject: OT: stuck on regex I'm having a heck of a time with this... trying

OT: stuck on regex

2005-06-15 Thread Rebecca Wells
I'm having a heck of a time with this... trying to build a javascript regExp for the following pattern: [1-5 digits] [optional hyphen and 3 digits] If anyone can help, I'd give you a big hug. ~| Find out how CFTicket can increase

Re: CF, doctypes, and quirks mode?

2005-06-15 Thread S . Isaac Dealey
Geez... a guy can't even make the obvious pun... :P I guess it makes more sense given coming from C ... the days of scarce system resources... like using 2 digit years... > I suspect it's a holdover from C/C++, where you've got > STDIN, STDOUT, > and STDERR. In Java, you've got System.in, System

Re: getBaseTagList() bug?!?

2005-06-15 Thread Barney Boisvert
On 6/15/05, Dave Watts <[EMAIL PROTECTED]> wrote: > My presumption about why it works this way, is that each function is > compiled as a separate Java class. That goes for every CFM file too. Though I do agree with your supposition that function classes are "special" in some way, and that special

RE: CF, doctypes, and quirks mode?

2005-06-15 Thread Dave Watts
> Okay... so I'm surprised some Java programmer who preceeded the > convention didn't make it more descriptive. It's analogous to STDOUT - it isn't just within servlets, but is available if you run a Java program from the command line or anywhere else for that matter. So, the convention they follo

Re: CF, doctypes, and quirks mode?

2005-06-15 Thread Barney Boisvert
I suspect it's a holdover from C/C++, where you've got STDIN, STDOUT, and STDERR. In Java, you've got System.in, System.out, and System.err. It's not particularly descriptive, no, but the names have been around longer than Java has. And then JSP/Servlets continued on the tradition based on the S

RE: getBaseTagList() bug?!?

2005-06-15 Thread Dave Watts
> I just ran a quick test, and it appears that getBaseTagList only > returns things inside the most recent CFFUNCTION invocation (be it a > UDF or a CFC method). So bascially each method runs inside a tag > sandbox that getBaseTagList can't jump out of. > > Not sure why it works that way, but it

RE: reverse compliment a sequence

2005-06-15 Thread Dave Watts
> I wish that intelligence and laziness were mutually exclusive! To hell with that! Dave Watts, CTO, Fig Leaf Software http://www.figleaf.com/ Fig Leaf Software provides the highest caliber vendor-authorized instruction at our training centers in Washington DC, Atlanta, Chicago, Baltimore, Nor

RE: Cold Fusion Crashes

2005-06-15 Thread Dave Watts
> > An error occurred while evaluating the expression: > > #HTTP_REFERER# Error near line 293, column > > ITYM cgi.HTTP_REFERER > I'd wrap the relevant code in an existence check. It's worth pointing out that if you explicitly use the CGI scope prefix, you needn't test for the existence of the va

Re: CF, doctypes, and quirks mode?

2005-06-15 Thread S . Isaac Dealey
Okay... so I'm surprised some Java programmer who preceeded the convention didn't make it more descriptive. > It matches the System.out property. And it's convention to > name it > 'out' in your servlet code as well. > cheers, > barneyb > On 6/15/05, S. Isaac Dealey <[EMAIL PROTECTED]> wrote: >>

RE: J2EE Session Sharing without Cluster?

2005-06-15 Thread Dave Watts
> Anyway, say I've got CFMX clustered--one instance on Machine > A and another on Machine B: > > If something hoses up CF on Machine B (an endless loop, for > instance), I don't want Machine A's cluster to keep trying to > serve up my CF app from Machine B. If this is a JRun cluster, it should

Re: CF, doctypes, and quirks mode?

2005-06-15 Thread Barney Boisvert
It matches the System.out property. And it's convention to name it 'out' in your servlet code as well. cheers, barneyb On 6/15/05, S. Isaac Dealey <[EMAIL PROTECTED]> wrote: > > S. Isaac Dealey wrote: > > >>You didn't! Get out! :P > > > Yeah, believe it or not. Probably the oldest trick in the

Re: Transaction History File

2005-06-15 Thread Jochem van Dieten
S.Isaac Dealey wrote: >> S.Isaac Dealey wrote: Files: use the snapshot capabilities from your OS/FS >>> >>> For an application that might be deployed on any given >>> OS/FS? >> >> Which OS/FS on which CFMX is supported does not have >> snapshot capabilities? > > Don't they vary from o

Re: CF, doctypes, and quirks mode?

2005-06-15 Thread S . Isaac Dealey
> S. Isaac Dealey wrote: >>You didn't! Get out! :P > Yeah, believe it or not. Probably the oldest trick in the > book, but where's a person supposed to learn things they > didn't know they were supposed to learn? Sorry... I just couldn't resist the pun... because of getPageContext().getOut() ...

Re: ColdFusion Version historical timeline?

2005-06-15 Thread John Dowdell
Ian Skinner wrote: > I am not being sucusfull in finding a simple listing on when the various > versions of ColdFusion where offically released. Anybody here have a > link for that information? Sometimes, on mailing lists, you may not get a custom reply within the first hour ;-) For those

Re: ColdFusion Version historical timeline?

2005-06-15 Thread John Dowdell
Ian Skinner wrote: > I am not being sucusfull in finding a simple listing on when the various > versions of ColdFusion where offically released. Anybody here have a > link for that information? I'm not sure how far back you need to go, or the level of detail needed, but one of the strongest su

RE: CF7 Flash Remoting

2005-06-15 Thread Mark A Kruger
Ray, I would add to that, that I have had to rerun the connector script (iisconnector.bat I think) after adding a new site and wanting to use remoting. The only visible change that it affected was a Jrunscripts directory. So the next time it happened I simply added a virutal map to the Jrunscripts

RE: Cold Fusion Crashes

2005-06-15 Thread Mark A Kruger
Carl, There are a number of things that can go wrong on a CF 5 server. As some have suggested your code (particularly locking) is a good place to start. Tuning the server itself and the dreaded "zero length mail file" bug are other possibilities. Here's a blog entry that applies from some time ago

RE: CF7 Flash Remoting

2005-06-15 Thread Kevin Aebig
Did you include the Remoting objects from the common library? Kevin -Original Message- From: Dave Carabetta [mailto:[EMAIL PROTECTED] Sent: Wednesday, June 15, 2005 1:57 PM To: CF-Talk Subject: Re: CF7 Flash Remoting On 6/15/05, Ben Forta <[EMAIL PROTECTED]> wrote: > Add a ? to the end

Re: ColdFusion Version historical timeline?

2005-06-15 Thread Ian Skinner
Is the release history of ColdFusion some kind or secret. I can not find anything searching Google or Macromedia that lists when the versions where released. I would think somebody made note of this somewhere. ~| Logware (www.

Re: J2EE Session Sharing without Cluster?

2005-06-15 Thread jacksonj
>Ok, I see, I think I get it. :D > >You've got A and B. A is the primary and it is offloading some >processing to B through your JRun cluster. In this case, you don't need >a hardware load balancer, as your site is on one real server. > >Right now, server B doesn't have/need/use an HTTP server. R

ColdFusion Version historical timeline?

2005-06-15 Thread Ian Skinner
I am not being sucusfull in finding a simple listing on when the various versions of ColdFusion where offically released. Anybody here have a link for that information? Ian Skinner ~| Logware (www.logware.us): a new and conve

Re: cfeclipse and cfmx7

2005-06-15 Thread David Brown
com.rohanclan.cfml_1.1.18.12 - Original Message - From: "Mark Drew" <[EMAIL PROTECTED]> To: "CF-Talk" Sent: Wednesday, June 15, 2005 10:21 AM Subject: Re: cfeclipse and cfmx7 > Before I put down my wrath, which version of CFEclipse plugin are you > using? > just so that I dont abuse t

Re: J2EE Session Sharing without Cluster?

2005-06-15 Thread Nathan Strutz
Ok, I see, I think I get it. :D You've got A and B. A is the primary and it is offloading some processing to B through your JRun cluster. In this case, you don't need a hardware load balancer, as your site is on one real server. Right now, server B doesn't have/need/use an HTTP server. Run a ne

Re: CF7 Flash Remoting

2005-06-15 Thread Dave Carabetta
On 6/15/05, Ben Forta <[EMAIL PROTECTED]> wrote: > Add a ? to the end of that URL. > > See: http://www.forta.com/blog/index.cfm?mode=e&entry=1579 > I thought that with the latest hotfix rollup this wasn't needed anymore? Regards, Dave. ~~

Re: CF, doctypes, and quirks mode?

2005-06-15 Thread Nathan Strutz
S. Isaac Dealey wrote: >You didn't! Get out! :P > > Yeah, believe it or not. Probably the oldest trick in the book, but where's a person supposed to learn things they didn't know they were supposed to learn? -nathan strutz http://www.dopefly.com/

Re: CF7 Flash Remoting

2005-06-15 Thread dave
http://flashforservergeeks.com/fsg/ ~Dave the disruptor~ "A criminal is a person with predatory instincts who has not sufficient capital to form a corporation." From: Felipe Fernandes <[EMAIL PROTECTED]> Sent: Wednesday, June 15, 2005 3:18 PM To: CF-Talk

Flash CFForm 32k limit?

2005-06-15 Thread Mike Klostermeyer
Anyone have any experience with the 32k limit in flash-based CFForms (and Flex)? See error below: Error generated version of _watcherSetup:738 Branch between 71782 and 104556 around line 0 exceeds 32K span. If possible, please refactor this component. Mike

Re: CF7 Flash Remoting

2005-06-15 Thread Raymond Camden
Aldon, I'm not sure if this will help, but... I noticed on two machines (running IIS), that Flash Remoting wouldn't work until I added a real folder called /flashservices/gateway. Why? I had tweaked my settings to do a Check for script in the CFM mappings. I had to do this to override CF's built in

Re: Unclickable input text in flash forms

2005-06-15 Thread Fabio Terracini
We're making some tests, and suprising, we're able to reproduce this problem in our development server (which haven't happend before)! We're playing with screen resolutions (frequency and bit depth), and some it happens, some times not. Also, I forgot to mention that the fields (not all field i

Re: J2EE Session Sharing without Cluster?

2005-06-15 Thread jacksonj
>Let me know if I'm "getting it." ;) Yes, and thanks a ton for sticking with this thread... >I think the problem boils down to your HW LB device being smart enough. >I am guessing you have layer 4 monitoring on your servers, aka, "If I >can ping it, it's alive." That's not usually good enough.

Re: CF7 Flash Remoting

2005-06-15 Thread Felipe Fernandes
Talking about flash remoting, I´m a coldfusion developer and i would like to learn actionscript. I don´t know much about flash. I want to buy a book, any sugestion? Felipe On 6/15/05, Ben Forta <[EMAIL PROTECTED]> wrote: > Add a ? to the end of that URL. > > See: http://www.forta.com/blog/inde

RE: DNS query with ColdFusion

2005-06-15 Thread Dawson, Michael
Well, sure. *If* you know Java. ;^) M!ke -Original Message- From: Barney Boisvert [mailto:[EMAIL PROTECTED] Sent: Wednesday, June 15, 2005 1:58 PM To: CF-Talk Subject: Re: DNS query with ColdFusion Surely that's simpler than doing a CFEXECUTE call and parsing the result, let alone

Re: J2EE Session Sharing without Cluster?

2005-06-15 Thread Nathan Strutz
Let me know if I'm "getting it." ;) I think the problem boils down to your HW LB device being smart enough. I am guessing you have layer 4 monitoring on your servers, aka, "If I can ping it, it's alive." That's not usually good enough. Use layer 7 monitoring, make a test CF page that says "ok"

RE: CF7 Flash Remoting

2005-06-15 Thread Ben Forta
Add a ? to the end of that URL. See: http://www.forta.com/blog/index.cfm?mode=e&entry=1579 --- Ben -Original Message- From: Aldon [mailto:[EMAIL PROTECTED] Sent: Wednesday, June 15, 2005 3:06 PM To: CF-Talk Subject: RE: CF7 Flash Remoting I have been making attempts to connect to the

Re: DNS query with ColdFusion

2005-06-15 Thread Barney Boisvert
Surely that's simpler than doing a CFEXECUTE call and parsing the result, let alone the zero-dependancy nature of it. cheers, barneyb On 6/15/05, Dawson, Michael <[EMAIL PROTECTED]> wrote: > I didn't say it was preferable in any way. If I were on a Windows box, > which I am, I would probably j

RE: CF7 Flash Remoting

2005-06-15 Thread Aldon
I have been making attempts to connect to the gateway using http://127.0.0.1:8500/flashservices/gateway is this method still applicable? Aldon -Original Message- From: Ben Forta [mailto:[EMAIL PROTECTED] Sent: Wednesday, June 15, 2005 2:37 PM To: CF-Talk Subject: RE: CF7 Flash Rem

RE: Transaction History File

2005-06-15 Thread Andy
> Which OS/FS on which CFMX is supported does not have > snapshot capabilities? Don't they vary from one OS to the next? ... Granted, Andy's probably only looking to make this work for the one application (os/database/platform), YUP. NOT TRYING TO MAKE IT COMPLICATED OR PORTABLE. THAT SAID,

Re: CF7 Flash Remoting

2005-06-15 Thread Clint Tredway
true, but in my exp, flash remoting is different going from flex as opposed straight from flash... that was the basis for my comment. On 6/15/05, Ben Forta <[EMAIL PROTECTED]> wrote: > Um, no, not to be picky either ... it is Flash accessing a CFC in ColdFusion > MX 7 via AMF (Flash Remoting). The

RE: DNS query with ColdFusion

2005-06-15 Thread Dawson, Michael
I didn't say it was preferable in any way. If I were on a Windows box, which I am, I would probably just use CFEXECUTE. Fortunately, I don't have to worry about portability here. M!ke -Original Message- From: Barney Boisvert [mailto:[EMAIL PROTECTED] Sent: Wednesday, June 15, 2005 1:4

Re: DNS query with ColdFusion

2005-06-15 Thread Barney Boisvert
And that's preferable how? The java method is guarenteed to work on any CF install, while using nslookup not only requires CFEXECUTE access, but also requires nslookup to be installed, and for the format of it's output to never change. cheers, barneyb On 6/15/05, Dawson, Michael <[EMAIL PROTECTE

Unclickable input text in flash forms

2005-06-15 Thread Fabio Terracini
Hello all, I've already posted this here, and after a while, we figured out a fix - not a real solution. For some unknow reason, sometimes parts of the flash form generated by CF7 becames unclickable/unselectable/inaccessable. We edited the form a bit (only positions and so), deleted the .clas

RE: DNS query with ColdFusion

2005-06-15 Thread Dawson, Michael
If you don't "need" to use Java, you can CFEXECUTE the "nslookup" command, then parse the results. M!ke -Original Message- From: wolf2k5 [mailto:[EMAIL PROTECTED] Sent: Wednesday, June 15, 2005 1:31 PM To: CF-Talk Subject: DNS query with ColdFusion Hi all, I need to make a DNS query f

RE: CF7 Flash Remoting

2005-06-15 Thread Ben Forta
Um, no, not to be picky either ... it is Flash accessing a CFC in ColdFusion MX 7 via AMF (Flash Remoting). The question was "Has any one been able to connect to Flash Remoting in CFMX 7?", and that is exactly what that is doing. ;-) --- Ben -Original Message- From: Clint Tredway [mailto

Re: CF7 Flash Remoting

2005-06-15 Thread Clint Tredway
not to be picky, but that app is a flex app and not just flash remoting... On 6/15/05, Ben Forta <[EMAIL PROTECTED]> wrote: > Sure have. That's how this page talks to CF: > http://www.forta.com/cf/isp/ > > --- Ben > > > -Original Message- > From: Aldon Moore [mailto:[EMAIL PROTECTED] >

DNS query with ColdFusion

2005-06-15 Thread wolf2k5
Hi all, I need to make a DNS query from within ColdFusion MX 6.1 to figure out the Active Directories servers for a domain name (TXT records) . I am looking for some example code to do that using the underlying Java classes. Any link? Thanks a lot. ~

RE: CF7 Flash Remoting

2005-06-15 Thread Ben Forta
Sure have. That's how this page talks to CF: http://www.forta.com/cf/isp/ --- Ben -Original Message- From: Aldon Moore [mailto:[EMAIL PROTECTED] Sent: Wednesday, June 15, 2005 2:16 PM To: CF-Talk Subject: CF7 Flash Remoting Has any one been able to connect to Flash Remoting in CFMX 7?

CF7 Flash Remoting

2005-06-15 Thread Aldon Moore
Has any one been able to connect to Flash Remoting in CFMX 7? ~| Logware (www.logware.us): a new and convenient web-based time tracking application. Start tracking and documenting hours spent on a project or with a client with L

Re: CF, doctypes, and quirks mode?

2005-06-15 Thread S . Isaac Dealey
> One thing I've been doing lately is: > It clears everything before the doctype and gives you a > blank sheet. > This is a nice shortcut that I didn't know existed. I used > to run > getPageContext().getOut().clearBuffer() instead. Same > thing. You didn't! Get out! :P s. isaac dealey 954.

Re: Transaction History File

2005-06-15 Thread S . Isaac Dealey
> S.Isaac Dealey wrote: >>> >>> Files: use the snapshot capabilities from your OS/FS >> >> For an application that might be deployed on any given >> OS/FS? > Which OS/FS on which CFMX is supported does not have > snapshot capabilities? Don't they vary from one OS to the next? ... Granted, Andy's

Re: J2EE Session Sharing without Cluster?

2005-06-15 Thread jacksonj
Thanks for the reply, Nathan. Let's say that I've considered those options (and I actually have), but decided to try J2EE session sharing. The session sharing part works great, however, I *think* I don't want the "application sharing" bit, but maybe someone can talk me out of my reservations a

Re: CF, doctypes, and quirks mode?

2005-06-15 Thread Nathan Strutz
One thing I've been doing lately is: http://www.dopefly.com/ Will Tomlinson wrote: >Hello, > >This evening a friend told me if you place your cfquery tags above a header, >or doctype dec., the browser would go into quirks mode because CF moves the >doctype dec. down. > >What's the deal with

Re: Need a copy of CF5

2005-06-15 Thread Rey Bango
I emailed you off list Matthew. Rey... Matthew Friedman wrote: > I am in need of a copy of CF5 (Standard edition). > > We have sold some of our technology that currently is running under CF5 the > client want to host it themselves. > > Does anyone know where we can purchase a copy and a ball pa

RE: CF Server not responding (anyone?)

2005-06-15 Thread Adkins, Randy
-Original Message- From: Adkins, Randy [mailto:[EMAIL PROTECTED] Sent: Wednesday, June 15, 2005 11:12 AM To: CF-Talk Subject: CF Server not responding We have CFMX 6.1 Updater installed and I noticed yesterday that now it seems to have stop responding to CFM pages. It will process H

Re: CF7 Install woes....

2005-06-15 Thread jonese
Damon, Is this a known issue? or is there a way around the corrupted download? jonese On 6/15/05, dcooper @ macromedia. com dcooper @ macromedia. com < [EMAIL PROTECTED]> wrote: > > Signs of a corrupt installer download, unfortunately. We're exploring a > possible FATP site that might have

Re: J2EE Session Sharing without Cluster?

2005-06-15 Thread Nathan Strutz
You could use client variables (but I don't recommend it). You could put your session data into a database. It's about the same, but gives you more control and doesn't require clustering (or the expensive CF Enterprise ed.) You could roll your own clustering type of software... serializing and

Re: Transaction History File

2005-06-15 Thread Jochem van Dieten
Andy wrote: > > I need to read up on MS SQL Transaction logs and discuss options with my > host. Should I also read-up on snapshots? Outside of UML, I don't know > what they are. Snapshots is just for files, not for databases. Jochem ~~~

Re: get user and pass from url

2005-06-15 Thread Jochem van Dieten
Mark W. Breneman wrote: > Can CF (I'm running cfmx7) get the username and password from HTTP > Authentication? I think that is the correct name for that. > User:[EMAIL PROTECTED] If the webserver is configured properly (to *not* touch the authorization header) that would be: Jochem ~~~

Re: Subscription problems

2005-06-15 Thread Michael Dinowitz
This is on my list for today. >I just changed my emaill address over to my gmail account to deal with > the cf-community posts I just signed up for. However, I'm still getting > cf-talk at this address (cf-community goes to the right place). > > How do I get this sorted out? > > > ~

Re: Subscription problems

2005-06-15 Thread James Holmes
And just to make things really weird, they are now coming here too. On 6/16/05, James Holmes <[EMAIL PROTECTED]> wrote: > I just changed my emaill address over to my gmail account to deal with > the cf-community posts I just signed up for. However, I'm still getting > cf-talk at this address (cf-c

get user and pass from url

2005-06-15 Thread Mark W. Breneman
Can CF (I'm running cfmx7) get the username and password from HTTP Authentication? I think that is the correct name for that. User:[EMAIL PROTECTED] I thought I had bookmarked a note on this but, now I can't find it. Yes, I am aware that a security update for IE has disabled IE from using this.

RE: Transaction History File

2005-06-15 Thread Andy
Jochem, I need to read up on MS SQL Transaction logs and discuss options with my host. Should I also read-up on snapshots? Outside of UML, I don't know what they are. Andy >> >> Files: use the snapshot capabilities from your OS/FS > > For an application that might be deployed on any given OS/

CF7 Install woes....

2005-06-15 Thread dcooper
Signs of a corrupt installer download, unfortunately. We're exploring a possible FATP site that might have better results. Sorry about that. >Any run across this problem. When installing CF7 i get an error messge, very >early on (after the preparing to install screen), that tells me "please >

Subscription problems

2005-06-15 Thread James Holmes
I just changed my emaill address over to my gmail account to deal with the cf-community posts I just signed up for. However, I'm still getting cf-talk at this address (cf-community goes to the right place). How do I get this sorted out? ~~~

J2EE Session Sharing without Cluster?

2005-06-15 Thread jacksonj
Is it possible to share sessions without clustering? (I'd like to be able to know that when I'm hitting Server A, that the application I'm seeing is coming from Server A. This is for hardware load-balancing and fail-over reasons.) Thanks, Jamie ~

CF7 Install woes....

2005-06-15 Thread jonese
Any run across this problem. When installing CF7 i get an error messge, very early on (after the preparing to install screen), that tells me "please select another location to extract the installer to" I've checked my system and the HD has plenty of space (5GB on one drive and 50GB on another).

Re: (Admin) list changes

2005-06-15 Thread Claude Schneegans
>>due to people using spam catchers Yeah, those "spam catchers" are just creating pollution, and prove they are not catching the right thing. -- ___ REUSE CODE! Use custom tags; See http://www.contentbox.com/claude/customtags/tagstore.cfm (Please send any sp

Re: (Admin) list changes

2005-06-15 Thread Ben Doom
Oops. Sorry. I try to catch that, but I don't always. Ironically, this message was marked [QUARRANTINE]. --Ben Michael Dinowitz wrote: > I'm adding some features to the list due to people using spam catchers and > not removing the spam response message. Things like: > [QUARRANTINE] - which is

CF Server not responding

2005-06-15 Thread Adkins, Randy
We have CFMX 6.1 Updater installed and I noticed yesterday that now it seems to have stop responding to CFM pages. It will process HTM files but is very slow in responding. When calling a CFM page, it just churns and never stops attempting to access the page. It is as if it does not exists but

Re: (Admin) list changes

2005-06-15 Thread Ray Champagne
awesome! that has bugging me for quite some time now. TY Michael Dinowitz wrote: > I'm adding some features to the list due to people using spam catchers and > not removing the spam response message. Things like: > [QUARRANTINE] - which is spelled wrong > [SCANNED] > SPAM-LOW > and the like w

(Admin) list changes

2005-06-15 Thread Michael Dinowitz
I'm adding some features to the list due to people using spam catchers and not removing the spam response message. Things like: [QUARRANTINE] - which is spelled wrong [SCANNED] SPAM-LOW and the like will automatically be removed from message subjects. This may cause a small hiccup in the lists bu

RE: New ColdFusion shirts available...

2005-06-15 Thread James Holmes
Here you go: http://www.cafepress.com/geeque/ Last post for me in this one - I'll move it to community. -Original Message- From: Damien McKenna [mailto:[EMAIL PROTECTED] Sent: Wednesday, 15 June 2005 10:01 To: CF-Talk Subject: RE: New ColdFusion shirts available... If you don't mind

Re: Need a copy of CF5

2005-06-15 Thread Marc Campeau
> Does anyone know where we can purchase a copy and a ball park price. Try Macromedia, tell them you really badly need it and maybe they'll generate a serial number for you. They probably won't like it but it's better than having no sell I guess. Marc

Re: Unable to create Verity Collection

2005-06-15 Thread John Beynon
nope, but I'm getting it now too! have tried uninstalled verity and reinstalling but no joy! On 4/15/05, Paul Wilson <[EMAIL PROTECTED]> wrote: > Every time I try and create a Verity Collection I get the following > error. > > Unable to create collection test. > Unable to create collection tes

Re: Transaction History File

2005-06-15 Thread Jochem van Dieten
S.Isaac Dealey wrote: >> >> Files: use the snapshot capabilities from your OS/FS > > For an application that might be deployed on any given OS/FS? Which OS/FS on which CFMX is supported does not have snapshot capabilities? >> Database: use the native tools from your database > > For an appli

Re: Need a copy of CF5

2005-06-15 Thread Mark Drew
eBay? MD On 15/06/05, Matthew Friedman <[EMAIL PROTECTED]> wrote: > > I am in need of a copy of CF5 (Standard edition). > > We have sold some of our technology that currently is running under CF5 > the > client want to host it themselves. > > Does anyone know where we can purchase a copy and

Re: cfeclipse and cfmx7

2005-06-15 Thread Mark Drew
Before I put down my wrath, which version of CFEclipse plugin are you using? just so that I dont abuse the innocent MD On 15/06/05, David Brown <[EMAIL PROTECTED]> wrote: > > Thanks... and take no prisoners.. > - Original Message - > From: "Mark Drew" <[EMAIL PROTECTED]> > To: "CF-Talk"

Need a copy of CF5

2005-06-15 Thread Matthew Friedman
I am in need of a copy of CF5 (Standard edition). We have sold some of our technology that currently is running under CF5 the client want to host it themselves. Does anyone know where we can purchase a copy and a ball park price. Thanks Matthew Friedman ~

Re: New ColdFusion shirts available...

2005-06-15 Thread Adrocknaphobia
Uhhh yeah I'm going, there is an open bar on the first night! -Adam On 6/15/05, Tony Weeg <[EMAIL PROTECTED]> wrote: > my whole idea with "www.fucknerd.com" was to make alternative geekwear. > > :) so that would be right up that alley ad-rock-izzle > > btw, you gwaaan a cfunited? > > tw > > O

Re: New ColdFusion shirts available...

2005-06-15 Thread Michael Dinowitz
Yes, this topic is OT for CF-Talk. Yes, it was posted despite that and no it is not labled OT. Please move it to CF-Community. Thank you ~| Discover CFTicket - The leading ColdFusion Help Desk and Trouble Ticket application htt

RE: New ColdFusion shirts available...

2005-06-15 Thread James Holmes
Done. I'll get to work on the shirt. -Original Message- From: Damien McKenna [mailto:[EMAIL PROTECTED] Sent: Wednesday, 15 June 2005 10:01 To: CF-Talk Subject: RE: New ColdFusion shirts available... If you don't mind waiting 'til Christmas?

RE: New ColdFusion shirts available...

2005-06-15 Thread Matt Osbun
A few years back, I offered to buy a pair of shirts from thinkgeek.com- one for me, one for the desktop support tech. Mine was "Don't ask me- it's a hardware problem". His was "Don't ask me- it's a software problem." Matt Osbun Web Developer Health Systems, International -Original Message--

RE: New ColdFusion shirts available...

2005-06-15 Thread Damien McKenna
If you don't mind waiting 'til Christmas? -- Damien McKenna - Web Developer - [EMAIL PROTECTED] The Limu Company - http://www.thelimucompany.com/ - 407-804-1014 #include > -Original Message- > From: James Holmes [mailto:[EMAIL PROTECTED] > Sent: Wednesday, June 15, 2005 9:57 AM > To:

RE: New ColdFusion shirts available...

2005-06-15 Thread James Holmes
I'll volunteer to make that shirt available if you promise to buy it :-) -Original Message- From: Damien McKenna [mailto:[EMAIL PROTECTED] Sent: Wednesday, 15 June 2005 9:54 To: CF-Talk Subject: RE: New ColdFusion shirts available... > would you buy a Tee with "I'm A Geek"? Only if it

RE: New ColdFusion shirts available...

2005-06-15 Thread Damien McKenna
> would you buy a Tee with "I'm A Geek"? Only if it said "no I won't fix your broken computer" on the back. -- Damien McKenna - Web Developer - [EMAIL PROTECTED] The Limu Company - http://www.thelimucompany.com/ - 407-804-1014 #include ~~

  1   2   >