RE: Can anyone help?? "Missing whitespace before SYSTEM literal URI."
Dave, Thank a million for trying that URL. I think you found the problem. May good things happen for you today ;) Brook At 02:25 PM 10/15/2003, Dave Watts wrote: > > I'm kinda desperate, I have a fast approaching deadline and > > all of sudden ANY and ALL webservices on my server do not > > work and all return this error when I try to call them! They > > worked yesterday and nothing was done on the server. What > > could this mean? The WSDL file is here > > > > .cfc?wsdl.>http://dev.logiforms.com/lfcomponents/lfbridge/ > > logiBridgetest.cfc?wsdl and is apparently malformed... > >When I go to that URL with a browser, I get an HTTP Basic Authentication >prompt. If you want someone to examine the WSDL to see if it is, in fact, >malformed, you'll have to deactivate authentication. Of course, perhaps the >authentication is the problem. > >Dave Watts, CTO, Fig Leaf Software >http://www.figleaf.com/ >voice: (202) 797-5496 >fax: (202) 797-5444 > >-- >[ [Todays Threads] [This Message] [Subscription] [Fast Unsubscribe] [User Settings]
RE: Can anyone help?? "Missing whitespace before SYSTEM literal URI."
> I'm kinda desperate, I have a fast approaching deadline and > all of sudden ANY and ALL webservices on my server do not > work and all return this error when I try to call them! They > worked yesterday and nothing was done on the server. What > could this mean? The WSDL file is here > > .cfc?wsdl.>http://dev.logiforms.com/lfcomponents/lfbridge/ > logiBridgetest.cfc?wsdl and is apparently malformed... When I go to that URL with a browser, I get an HTTP Basic Authentication prompt. If you want someone to examine the WSDL to see if it is, in fact, malformed, you'll have to deactivate authentication. Of course, perhaps the authentication is the problem. Dave Watts, CTO, Fig Leaf Software http://www.figleaf.com/ voice: (202) 797-5496 fax: (202) 797-5444 [Todays Threads] [This Message] [Subscription] [Fast Unsubscribe] [User Settings]
RE: [RE: IIS or Apache? (WAS RE: can anyone help?)]
Does IIS provide setting for how many connections it will allow? For example, in Apache, if you set one conenction and that one connection is being held by a slow CF query, then everything else backs up. Does IIS behave the same way, or does it establish separate connection queues for each virtual server? We were hitting situations where we would get hit with a burst of traffic, say 80 CF requests per second (about 7Mb of load), for a brief period. Each CF request has a corresponding 9 or so graphic requests. We are tuned for CF to only allow 10 concurrent connection (per web server to control database load), so we very quickly hit a backlog of requests in the web server waiting for the CF requests to finish. By serving the images out of a separate instance of Apache, we were able to make sure that once a CF page was returned, that the corresponding pieces were returned quickly and not stuck in the queue. Sounds like this might work in IIS by establishing a virtual server for static elements if the queueing structure is in fact separate. Justin -Original Message- From: Dave Watts [mailto:[EMAIL PROTECTED]] Sent: Monday, June 04, 2001 1:17 PM To: CF-Talk Subject: RE: [RE: IIS or Apache? (WAS RE: can anyone help?)] > I like to run different services because of the threading > issues. I do not know how virtual servers within IIS work, > but with this apache configuration, I pretty much guarantee > that one apache service bottlenecking (i.e. more CF requests > than it can handle) does not prevent the other for servicing > it's requests. This does break down eventually as the TCP > stack is still a bottleneck in the end. One IIS virtual server waiting on slow CF responses doesn't seem to affect another returning static files. Dave Watts, CTO, Fig Leaf Software http://www.figleaf.com/ voice: (202) 797-5496 fax: (202) 797-5444 ~~ Structure your ColdFusion code with Fusebox. Get the official book at http://www.fusionauthority.com/bkinfo.cfm Archives: http://www.mail-archive.com/cf-talk@houseoffusion.com/ Unsubscribe: http://www.houseoffusion.com/index.cfm?sidebar=lists
RE: [RE: IIS or Apache? (WAS RE: can anyone help?)]
> I like to run different services because of the threading > issues. I do not know how virtual servers within IIS work, > but with this apache configuration, I pretty much guarantee > that one apache service bottlenecking (i.e. more CF requests > than it can handle) does not prevent the other for servicing > it's requests. This does break down eventually as the TCP > stack is still a bottleneck in the end. One IIS virtual server waiting on slow CF responses doesn't seem to affect another returning static files. Dave Watts, CTO, Fig Leaf Software http://www.figleaf.com/ voice: (202) 797-5496 fax: (202) 797-5444 ~~ Structure your ColdFusion code with Fusebox. Get the official book at http://www.fusionauthority.com/bkinfo.cfm Archives: http://www.mail-archive.com/cf-talk@houseoffusion.com/ Unsubscribe: http://www.houseoffusion.com/index.cfm?sidebar=lists
RE: [RE: IIS or Apache? (WAS RE: can anyone help?)]
I do not know about IIS. With apache when you install as a service you can specify which config file to use (we also copy the apache exe to a new name so that we can tell the services apart in Perfmon). We install apache as a service twice with the config files listening on different ip/ports. If you have a load balancer I recommend the same IP for both services but different ports, if no load balancer then use different IP's. I like to run different services because of the threading issues. I do not know how virtual servers within IIS work, but with this apache configuration, I pretty much guarantee that one apache service bottlenecking (i.e. more CF requests than it can handle) does not prevent the other for servicing it's requests. This does break down eventually as the TCP stack is still a bottleneck in the end. It is correct (as mentioned below) that all instances of the apache service will use the same CF Service, so there is no value is having multiple instances and running CF from all of them. We do it specifically to allow static files to be served regardless of how jammed the CFserver is. On performance, We have found that we can generate enough static traffic on a dual PIII box running apache to saturate our 100MB LAN (service 14K files). Serving 1K files we are able to serve about 800 connections/sec. I do not believe that for most people the performance of the web server software itself is really an issue. The performance of Cold Fusion itself, the SQL code, etc are the bigger issues. As soon as you add any back end processing things really slow down. Justin -Original Message- From: Dave Watts [mailto:[EMAIL PROTECTED]] Sent: Monday, June 04, 2001 12:14 AM To: CF-Talk Subject: RE: [RE: IIS or Apache? (WAS RE: can anyone help?)] -- Spamex - Because sending you email is a privilege not a right. -- Replies will be sent to [EMAIL PROTECTED] -- Additional Info: http://www.spamex.com/i/?v=43 > > > 1. Run 2 instances of apache on each web server. > > > ... > > > > How did you configure this? Did the different instances > > have different ports? > > > > ALSO how did you get CF to run with all the instances? > > Did anyone ever answer this? I'm curious myself.. specifically > on IIS. I don't think anyone answered the question with regard to IIS - it was an Apache question. You can't run multiple instances on IIS on a single server. However, you can run multiple virtual servers within IIS, and each can have its own ISAPI configuration. You can get the same effect doing this as the original writer mentioned using Apache. With either IIS or Apache - or any other web server - all instances or virtual servers can use the same CF service, as long as they're configured to do so. Dave Watts, CTO, Fig Leaf Software http://www.figleaf.com/ voice: (202) 797-5496 fax: (202) 797-5444 ~~ Structure your ColdFusion code with Fusebox. Get the official book at http://www.fusionauthority.com/bkinfo.cfm Archives: http://www.mail-archive.com/cf-talk@houseoffusion.com/ Unsubscribe: http://www.houseoffusion.com/index.cfm?sidebar=lists
RE: [RE: IIS or Apache? (WAS RE: can anyone help?)]
Ah.. well it would be great to hear how it was done on Apache. I assume we were talking about the Win32 version of Apache? Noticed that 2.0 of Apache doesn't have any binaries for the latest beta. Or did I miss something? Lee Fuller Chief Technical Officer PrimeDNA Corporation / AAA Web Hosting Corporation "We ARE the net." http://www.aaawebhosting.com > -Original Message- > From: Zac [mailto:[EMAIL PROTECTED]] > Sent: Sunday, June 03, 2001 8:41 PM > To: CF-Talk > Subject: Re: [RE: IIS or Apache? (WAS RE: can anyone help?)] > > > > On Sunday, June 3, 2001, at 08:28 PM, Lee Fuller wrote: > > > Did anyone ever answer this? I'm curious myself.. specifically on IIS. > > I don't believe that this sort of thing is possible on IIS at all. It > works with Apache since you can run multiple instances of it and > configure them separately so that they handle different types of files. > > ~~ Structure your ColdFusion code with Fusebox. Get the official book at http://www.fusionauthority.com/bkinfo.cfm Archives: http://www.mail-archive.com/cf-talk@houseoffusion.com/ Unsubscribe: http://www.houseoffusion.com/index.cfm?sidebar=lists
RE: [RE: IIS or Apache? (WAS RE: can anyone help?)]
> > > 1. Run 2 instances of apache on each web server. > > > ... > > > > How did you configure this? Did the different instances > > have different ports? > > > > ALSO how did you get CF to run with all the instances? > > Did anyone ever answer this? I'm curious myself.. specifically > on IIS. I don't think anyone answered the question with regard to IIS - it was an Apache question. You can't run multiple instances on IIS on a single server. However, you can run multiple virtual servers within IIS, and each can have its own ISAPI configuration. You can get the same effect doing this as the original writer mentioned using Apache. With either IIS or Apache - or any other web server - all instances or virtual servers can use the same CF service, as long as they're configured to do so. Dave Watts, CTO, Fig Leaf Software http://www.figleaf.com/ voice: (202) 797-5496 fax: (202) 797-5444 ~~ Structure your ColdFusion code with Fusebox. Get the official book at http://www.fusionauthority.com/bkinfo.cfm Archives: http://www.mail-archive.com/cf-talk@houseoffusion.com/ Unsubscribe: http://www.houseoffusion.com/index.cfm?sidebar=lists
Re: [RE: IIS or Apache? (WAS RE: can anyone help?)]
On Sunday, June 3, 2001, at 08:28 PM, Lee Fuller wrote: > Did anyone ever answer this? I'm curious myself.. specifically on IIS. I don't believe that this sort of thing is possible on IIS at all. It works with Apache since you can run multiple instances of it and configure them separately so that they handle different types of files. ~~ Structure your ColdFusion code with Fusebox. Get the official book at http://www.fusionauthority.com/bkinfo.cfm Archives: http://www.mail-archive.com/cf-talk@houseoffusion.com/ Unsubscribe: http://www.houseoffusion.com/index.cfm?sidebar=lists
RE: [RE: IIS or Apache? (WAS RE: can anyone help?)]
Did anyone ever answer this? I'm curious myself.. specifically on IIS. Lee > -Original Message- > From: Alex [mailto:[EMAIL PROTECTED]] > Sent: Friday, June 01, 2001 5:26 PM > To: CF-Talk > Subject: Re: [RE: IIS or Apache? (WAS RE: can anyone help?)] > > > > > > 1. Run 2 instances of apache on each web server. One handles all CF > > requests and one handles all static requests (images mostly). We > > have found > > that apache can serve over 500 14K files per second on a dual > PIII 600 (we > > were actually bottlenecked by the 100mb network. With 1K files > > we hit about > > 750/sec). Running 2 instances of apache allows us to have cold > > fusion under > > load and not slow down the delivery of all the images required > to complete > > the page. > > How did you configure this? Did the different instances have different > ports? > > ALSO how did you get CF to run with all the instances? > ~~ Structure your ColdFusion code with Fusebox. Get the official book at http://www.fusionauthority.com/bkinfo.cfm Archives: http://www.mail-archive.com/cf-talk@houseoffusion.com/ Unsubscribe: http://www.houseoffusion.com/index.cfm?sidebar=lists
RE: IIS or Apache? (WAS RE: can anyone help?)
Oh, this reminds me. At my last setup, we had a cluster (hwlb) of servers for cf and a separate cluster for serving images. The reason for this is similar to below. For the image server, we stripped apache of all unnecessary modules and tweaked the threads/size parameters to optimize for normal image sizes. We kept all image paths in a separate application variable and could change it all will (useful for SSL when the image server doesn't have a certificate) - also setup up the image server to mount the web root (like the clustered cf servers do), but only to the images subdirectory. Kept that machine nice and basic and secure... > 1. Run 2 instances of apache on each web server. One handles all CF > requests and one handles all static requests (images mostly). We have found > that apache can serve over 500 14K files per second on a dual PIII 600 (we > were actually bottlenecked by the 100mb network. With 1K files we hit about > 750/sec). Running 2 instances of apache allows us to have cold fusion under > load and not slow down the delivery of all the images required to complete > the page. Tony Schreiber, Senior Partner Man and Machine, Limited mailto:[EMAIL PROTECTED] http://www.technocraft.com http://www.simplemessageboard.com ___Free Forum Software for Cold Fusion http://www.is300.net ___The Enthusiast's Home of the Lexus IS300 http://www.digitacamera.com __DigitA Camera Scripts and Tips http://www.linklabexchange.com _Miata Link ECU Data Exchange ~~ Structure your ColdFusion code with Fusebox. Get the official book at http://www.fusionauthority.com/bkinfo.cfm Archives: http://www.mail-archive.com/cf-talk@houseoffusion.com/ Unsubscribe: http://www.houseoffusion.com/index.cfm?sidebar=lists
RE: IIS or Apache? (WAS RE: can anyone help?)
You go dude! > We have been running Apache with CF 4.5 on NT 4 for the last 2 year under > very heavy load and have found no stability problems that were related to > Apache. Additionally, because of the open API of apache we have been able > to do some very interesting things for scale and reliability: > > 1. Run 2 instances of apache on each web server. One handles all CF > requests and one handles all static requests (images mostly). We have found > that apache can serve over 500 14K files per second on a dual PIII 600 (we > were actually bottlenecked by the 100mb network. With 1K files we hit about > 750/sec). Running 2 instances of apache allows us to have cold fusion under > load and not slow down the delivery of all the images required to complete > the page. > > 2. Create modules to handle high load. We build pages in CF, then if the > page is seeing more load than CF can handle, we write an apache module in > C++ to handle that one function and use the Apache handler to intercept the > ..cfm request, check if we have a custom handler for the page, handle it if > we do, and pass it on to CF if we do not. This is, BTW how we are able to > set cookies during a server side redirect. > > 3. Bind different virtual hosts to different ports (I do not use IIS so I do > not know if yuo can do this or not). Our webserver has a single IP and each > host is a different high port (8080, 8081,8082, etc). We handle the > redirection from different external IP's to a single Internal IP, different > port either in the firewall or the load balancer. This allows the > adding/removing of hosts without re-ip'ing the web server and limits the > number of IP addresses which is important for some firewall licensing > schemes. > > We are firm believers in the KISS principle (keep it simple stupid). Apache > is pretty simple, we upgrade when we want to, and it does not try to hook > into too many OS functions that may cause issues. > > The down side is that it requires a programmer to make the most of it and > the interface is config file based, which not everyone is comfortable with. > > My $.02 > > Justin > > Justin Greene > Co-CEO > ClicVU, Inc. > 216 West 18th St., Floor 12 - NYC 10011 > P: 212-629-8900 - F: 212-629-9860 > http://www.clicvu.com > > - > Sign up for your free Spamex account: > http://www.spamex.com > Protect your real email address forever > - > > > > -Original Message- > From: Zac [mailto:[EMAIL PROTECTED]] > Sent: Thursday, May 31, 2001 11:21 PM > To: CF-Talk > Subject: RE: IIS or Apache? (WAS RE: can anyone help?) > > > I would recomment sticking with IIS on an NT box. With CF > > and Apache, there > > were (at least for me) a bunch of bugs. > > Well I think this is one of those YMMV moments. I ran Apache, CF 4.5 and > mySQL on an NT4 server for months with no problems at all. And it was, YMMV > again, more stable than when I was running IIS. > ~~ Structure your ColdFusion code with Fusebox. Get the official book at http://www.fusionauthority.com/bkinfo.cfm Archives: http://www.mail-archive.com/cf-talk@houseoffusion.com/ Unsubscribe: http://www.houseoffusion.com/index.cfm?sidebar=lists
Re: [RE: IIS or Apache? (WAS RE: can anyone help?)]
> > 1. Run 2 instances of apache on each web server. One handles all CF > requests and one handles all static requests (images mostly). We > have found > that apache can serve over 500 14K files per second on a dual PIII 600 (we > were actually bottlenecked by the 100mb network. With 1K files > we hit about > 750/sec). Running 2 instances of apache allows us to have cold > fusion under > load and not slow down the delivery of all the images required to complete > the page. How did you configure this? Did the different instances have different ports? ALSO how did you get CF to run with all the instances? ~~ Structure your ColdFusion code with Fusebox. Get the official book at http://www.fusionauthority.com/bkinfo.cfm Archives: http://www.mail-archive.com/cf-talk@houseoffusion.com/ Unsubscribe: http://www.houseoffusion.com/index.cfm?sidebar=lists
RE: IIS or Apache? (WAS RE: can anyone help?)
My understanding was that Apache for NT used the POSIX subsystem, and took somewhat of a performance hit because of it. Is this not the case? Kevin >>> [EMAIL PROTECTED] 06/01/01 01:52PM >>> > -Original Message- > From: [EMAIL PROTECTED] > [mailto:[EMAIL PROTECTED]] > Sent: Friday, June 01, 2001 13:37 > To: CF-Talk > Subject: RE: IIS or Apache? (WAS RE: can anyone help?) > > > We have been running Apache with CF 4.5 on NT 4 for the last 2 year under > very heavy load and have found no stability problems that were related to > Apache. Additionally, because of the open API of apache we have been able > to do some very interesting things for scale and reliability: I was running Apache on my development machine for local testing. It was rather under-horsepowered for running as a CF server. But it ran better than PWS on NT 4.0 Workstation. > > 1. Run 2 instances of apache on each web server. One handles all CF > requests and one handles all static requests (images mostly). We > have found > that apache can serve over 500 14K files per second on a dual PIII 600 (we > were actually bottlenecked by the 100mb network. With 1K files > we hit about > 750/sec). Running 2 instances of apache allows us to have cold > fusion under > load and not slow down the delivery of all the images required to complete > the page. How did you configure this? Did the different instances have different ports? > > 2. Create modules to handle high load. We build pages in CF, then if the > page is seeing more load than CF can handle, we write an apache module in > C++ to handle that one function and use the Apache handler to > intercept the > ..cfm request, check if we have a custom handler for the page, > handle it if > we do, and pass it on to CF if we do not. This is, BTW how we are able to > set cookies during a server side redirect. Nice idea. I'm hoping the CFFLUSH tag will allow this to happen under IIS. If not, I am going to suggest that we switch to Apache and try something similar. I guess the module set the cookie and then let the CF server process the cfm page. > > 3. Bind different virtual hosts to different ports (I do not use > IIS so I do > not know if yuo can do this or not). Our webserver has a single > IP and each > host is a different high port (8080, 8081,8082, etc). We handle the > redirection from different external IP's to a single Internal IP, > different > port either in the firewall or the load balancer. This allows the > adding/removing of hosts without re-ip'ing the web server and limits the > number of IP addresses which is important for some firewall licensing > schemes. IIS has a variety of tools. You can set it either to answer on a specific IP address on multi-homed systems. When you set the IP address, you also can set the port that the web site (Virtual Server) answers. Though I have never tried it, I am told that you can even have IIS differentiate to different Virtual Servers answering on the same IP address and port based upon the domain name in the header. I don't think that is particularly efficient when it is pretty easy to either multi-home a NIC or have multiple NICs depending on bandwidth requirements. > > We are firm believers in the KISS principle (keep it simple > stupid). Apache > is pretty simple, we upgrade when we want to, and it does not try to hook > into too many OS functions that may cause issues. True, but we chose to use IIS since we all (the CF developers) knew how to administer it. Only I knew how to administer Apache. > > The down side is that it requires a programmer to make the most of it and > the interface is config file based, which not everyone is > comfortable with. Being on old SunOS (NOT Solaris) gearhead I can appreciate it. I still prefer to tweak my Win 2K box by editing the Win.ini file. > > My $.02 Thanks for sharing it. It gave me a few ideas to file away and suprise the CTO with. ;) > > Justin > > Justin Greene > Co-CEO > ClicVU, Inc. > 216 West 18th St., Floor 12 - NYC 10011 > P: 212-629-8900 - F: 212-629-9860 > http://www.clicvu.com > [snip] > ~~ Structure your ColdFusion code with Fusebox. Get the official book at http://www.fusionauthority.com/bkinfo.cfm Archives: http://www.mail-archive.com/cf-talk@houseoffusion.com/ Unsubscribe: http://www.houseoffusion.com/index.cfm?sidebar=lists
RE: IIS or Apache? (WAS RE: can anyone help?)
> -Original Message- > From: [EMAIL PROTECTED] > [mailto:[EMAIL PROTECTED]] > Sent: Friday, June 01, 2001 13:37 > To: CF-Talk > Subject: RE: IIS or Apache? (WAS RE: can anyone help?) > > > We have been running Apache with CF 4.5 on NT 4 for the last 2 year under > very heavy load and have found no stability problems that were related to > Apache. Additionally, because of the open API of apache we have been able > to do some very interesting things for scale and reliability: I was running Apache on my development machine for local testing. It was rather under-horsepowered for running as a CF server. But it ran better than PWS on NT 4.0 Workstation. > > 1. Run 2 instances of apache on each web server. One handles all CF > requests and one handles all static requests (images mostly). We > have found > that apache can serve over 500 14K files per second on a dual PIII 600 (we > were actually bottlenecked by the 100mb network. With 1K files > we hit about > 750/sec). Running 2 instances of apache allows us to have cold > fusion under > load and not slow down the delivery of all the images required to complete > the page. How did you configure this? Did the different instances have different ports? > > 2. Create modules to handle high load. We build pages in CF, then if the > page is seeing more load than CF can handle, we write an apache module in > C++ to handle that one function and use the Apache handler to > intercept the > ..cfm request, check if we have a custom handler for the page, > handle it if > we do, and pass it on to CF if we do not. This is, BTW how we are able to > set cookies during a server side redirect. Nice idea. I'm hoping the CFFLUSH tag will allow this to happen under IIS. If not, I am going to suggest that we switch to Apache and try something similar. I guess the module set the cookie and then let the CF server process the cfm page. > > 3. Bind different virtual hosts to different ports (I do not use > IIS so I do > not know if yuo can do this or not). Our webserver has a single > IP and each > host is a different high port (8080, 8081,8082, etc). We handle the > redirection from different external IP's to a single Internal IP, > different > port either in the firewall or the load balancer. This allows the > adding/removing of hosts without re-ip'ing the web server and limits the > number of IP addresses which is important for some firewall licensing > schemes. IIS has a variety of tools. You can set it either to answer on a specific IP address on multi-homed systems. When you set the IP address, you also can set the port that the web site (Virtual Server) answers. Though I have never tried it, I am told that you can even have IIS differentiate to different Virtual Servers answering on the same IP address and port based upon the domain name in the header. I don't think that is particularly efficient when it is pretty easy to either multi-home a NIC or have multiple NICs depending on bandwidth requirements. > > We are firm believers in the KISS principle (keep it simple > stupid). Apache > is pretty simple, we upgrade when we want to, and it does not try to hook > into too many OS functions that may cause issues. True, but we chose to use IIS since we all (the CF developers) knew how to administer it. Only I knew how to administer Apache. > > The down side is that it requires a programmer to make the most of it and > the interface is config file based, which not everyone is > comfortable with. Being on old SunOS (NOT Solaris) gearhead I can appreciate it. I still prefer to tweak my Win 2K box by editing the Win.ini file. > > My $.02 Thanks for sharing it. It gave me a few ideas to file away and suprise the CTO with. ;) > > Justin > > Justin Greene > Co-CEO > ClicVU, Inc. > 216 West 18th St., Floor 12 - NYC 10011 > P: 212-629-8900 - F: 212-629-9860 > http://www.clicvu.com > [snip] > ~~ Structure your ColdFusion code with Fusebox. Get the official book at http://www.fusionauthority.com/bkinfo.cfm Archives: http://www.mail-archive.com/cf-talk@houseoffusion.com/ Unsubscribe: http://www.houseoffusion.com/index.cfm?sidebar=lists
RE: IIS or Apache? (WAS RE: can anyone help?)
We have been running Apache with CF 4.5 on NT 4 for the last 2 year under very heavy load and have found no stability problems that were related to Apache. Additionally, because of the open API of apache we have been able to do some very interesting things for scale and reliability: 1. Run 2 instances of apache on each web server. One handles all CF requests and one handles all static requests (images mostly). We have found that apache can serve over 500 14K files per second on a dual PIII 600 (we were actually bottlenecked by the 100mb network. With 1K files we hit about 750/sec). Running 2 instances of apache allows us to have cold fusion under load and not slow down the delivery of all the images required to complete the page. 2. Create modules to handle high load. We build pages in CF, then if the page is seeing more load than CF can handle, we write an apache module in C++ to handle that one function and use the Apache handler to intercept the ..cfm request, check if we have a custom handler for the page, handle it if we do, and pass it on to CF if we do not. This is, BTW how we are able to set cookies during a server side redirect. 3. Bind different virtual hosts to different ports (I do not use IIS so I do not know if yuo can do this or not). Our webserver has a single IP and each host is a different high port (8080, 8081,8082, etc). We handle the redirection from different external IP's to a single Internal IP, different port either in the firewall or the load balancer. This allows the adding/removing of hosts without re-ip'ing the web server and limits the number of IP addresses which is important for some firewall licensing schemes. We are firm believers in the KISS principle (keep it simple stupid). Apache is pretty simple, we upgrade when we want to, and it does not try to hook into too many OS functions that may cause issues. The down side is that it requires a programmer to make the most of it and the interface is config file based, which not everyone is comfortable with. My $.02 Justin Justin Greene Co-CEO ClicVU, Inc. 216 West 18th St., Floor 12 - NYC 10011 P: 212-629-8900 - F: 212-629-9860 http://www.clicvu.com - Sign up for your free Spamex account: http://www.spamex.com Protect your real email address forever - -Original Message- From: Zac [mailto:[EMAIL PROTECTED]] Sent: Thursday, May 31, 2001 11:21 PM To: CF-Talk Subject: RE: IIS or Apache? (WAS RE: can anyone help?) > I would recomment sticking with IIS on an NT box. With CF > and Apache, there > were (at least for me) a bunch of bugs. Well I think this is one of those YMMV moments. I ran Apache, CF 4.5 and mySQL on an NT4 server for months with no problems at all. And it was, YMMV again, more stable than when I was running IIS. ~~ Structure your ColdFusion code with Fusebox. Get the official book at http://www.fusionauthority.com/bkinfo.cfm Archives: http://www.mail-archive.com/cf-talk@houseoffusion.com/ Unsubscribe: http://www.houseoffusion.com/index.cfm?sidebar=lists
RE: IIS or Apache? (WAS RE: can anyone help?)
That is true. Hopefully by the time it gets out of beta. :) Even the mod_php and mod_ssl don't work yet (as far as I know). Another nice thing I saw was that the new module API allows you to add protocols. Maybe someone can add FTP and SMTP modules and give Apache the functionality that IIS has. Russel Madere, Jr. Senior Web Developer ICQ: 5446158 http://www.TurboSquid.com Some days you eat the bear; some days the bear eats you. > -Original Message- > From: Dave Watts [mailto:[EMAIL PROTECTED]] > Sent: Friday, June 01, 2001 11:04 > To: CF-Talk > Subject: RE: IIS or Apache? (WAS RE: can anyone help?) > > > > I haven't had any problems myself, but I did see the > > performance degrade while Apache was under a load. I > > have read that this is because Apache 1.3 for NT is not > > multithreaded. Apparently this is fixed in Apache 2.0. I'm > > going to download the alpha version and test it out. I just > > need to figure out how to compile the bugger. I haven't > > worked with gcc for so long, I've fogotten how to use it. :) > > I don't know for sure, but I don't think the CF module for Apache > 1.3.x will > work with Apache 2. I don't know if and/or when Macromedia plans on > providing an Apache 2 compatible module. > > Dave Watts, CTO, Fig Leaf Software > http://www.figleaf.com/ > voice: (202) 797-5496 > fax: (202) 797-5444 > > ~~ Structure your ColdFusion code with Fusebox. Get the official book at http://www.fusionauthority.com/bkinfo.cfm Archives: http://www.mail-archive.com/cf-talk@houseoffusion.com/ Unsubscribe: http://www.houseoffusion.com/index.cfm?sidebar=lists
RE: IIS or Apache? (WAS RE: can anyone help?)
> I haven't had any problems myself, but I did see the > performance degrade while Apache was under a load. I > have read that this is because Apache 1.3 for NT is not > multithreaded. Apparently this is fixed in Apache 2.0. I'm > going to download the alpha version and test it out. I just > need to figure out how to compile the bugger. I haven't > worked with gcc for so long, I've fogotten how to use it. :) I don't know for sure, but I don't think the CF module for Apache 1.3.x will work with Apache 2. I don't know if and/or when Macromedia plans on providing an Apache 2 compatible module. Dave Watts, CTO, Fig Leaf Software http://www.figleaf.com/ voice: (202) 797-5496 fax: (202) 797-5444 ~~ Structure your ColdFusion code with Fusebox. Get the official book at http://www.fusionauthority.com/bkinfo.cfm Archives: http://www.mail-archive.com/cf-talk@houseoffusion.com/ Unsubscribe: http://www.houseoffusion.com/index.cfm?sidebar=lists
RE: IIS or Apache? (WAS RE: can anyone help?)
> -Original Message- > From: Dave Watts [mailto:[EMAIL PROTECTED]] > Sent: Friday, June 01, 2001 09:10 > To: CF-Talk > Subject: RE: IIS or Apache? (WAS RE: can anyone help?) > > > > Actually, I found CF made Apache a bit unstable... After I > > installed CF over Apache, I couldn't start Apache as a service > > any more - I had to run the command line version. Not good if > > you don't want the server to remain logged in. > > > > I would recomment sticking with IIS on an NT box. With CF > > and Apache, there were (at least for me) a bunch of bugs. > > You shouldn't be having these problems. To diagnose them, you can use the > same command line used by the service, and read the error message. > > I never had any bugs using Apache on NT, although I did see performance > problems under heavy load testing. I haven't had any problems myself, but I did see the performance degrade while Apache was under a load. I have read that this is because Apache 1.3 for NT is not multithreaded. Aparently this is fixed in Apache 2.0. I'm going to download the alpha version and test it out. I just need to figure out how to compile the bugger. I haven't worked with gcc for so long, I've fogotten how to use it. :) Russel ~~ Structure your ColdFusion code with Fusebox. Get the official book at http://www.fusionauthority.com/bkinfo.cfm Archives: http://www.mail-archive.com/cf-talk@houseoffusion.com/ Unsubscribe: http://www.houseoffusion.com/index.cfm?sidebar=lists
RE: IIS or Apache? (WAS RE: can anyone help?)
> Actually, I found CF made Apache a bit unstable... After I > installed CF over Apache, I couldn't start Apache as a service > any more - I had to run the command line version. Not good if > you don't want the server to remain logged in. > > I would recomment sticking with IIS on an NT box. With CF > and Apache, there were (at least for me) a bunch of bugs. You shouldn't be having these problems. To diagnose them, you can use the same command line used by the service, and read the error message. I never had any bugs using Apache on NT, although I did see performance problems under heavy load testing. Dave Watts, CTO, Fig Leaf Software http://www.figleaf.com/ voice: (202) 797-5496 fax: (202) 797-5444 ~~ Structure your ColdFusion code with Fusebox. Get the official book at http://www.fusionauthority.com/bkinfo.cfm Archives: http://www.mail-archive.com/cf-talk@houseoffusion.com/ Unsubscribe: http://www.houseoffusion.com/index.cfm?sidebar=lists
RE: IIS or Apache? (WAS RE: can anyone help?)
> I would recomment sticking with IIS on an NT box. With CF > and Apache, there > were (at least for me) a bunch of bugs. Well I think this is one of those YMMV moments. I ran Apache, CF 4.5 and mySQL on an NT4 server for months with no problems at all. And it was, YMMV again, more stable than when I was running IIS. ~~ Structure your ColdFusion code with Fusebox. Get the official book at http://www.fusionauthority.com/bkinfo.cfm Archives: http://www.mail-archive.com/cf-talk@houseoffusion.com/ Unsubscribe: http://www.houseoffusion.com/index.cfm?sidebar=lists
Re: can anyone help?
Thanks for all your help. I have got Apache working with ColdFusion. Sebastian on 5/31/01 4:39 PM, Dave Watts at [EMAIL PROTECTED] wrote: >> OK. I have ditched PWS. I have installed Apache and >> reinstalled ColdFusion and copied the DLL file and changed >> the httpd.conf file in apache. >> >> I cannot get the web server to start. When I click on start >> apache I get a dos command window that goes so fast I can't >> even read what it says. I was able to make out the following >> however, >> >> Apache.exe cannot determine local host name. > > If you want to find out exactly what error is being returned, you can simply > open a command prompt and run the command contained within the shortcut. > >> I think the httpd.conf files needs further editing but I'm >> not confident about what to change. I am guessing that the >> following lines at the end of the conf file need to be changed. >> I want to be able to have http://127.0.0.1/ > > If I recall correctly, when you set up Apache, all you should have to change > within httpd.conf is add the LoadModule directive, change the DocumentRoot > directive, and change the Directory directive, assuming you've got a > properly configured TCP/IP stack bound to your network card. > > Dave Watts, CTO, Fig Leaf Software > http://www.figleaf.com/ > voice: (202) 797-5496 > fax: (202) 797-5444 > > ~~ Structure your ColdFusion code with Fusebox. Get the official book at http://www.fusionauthority.com/bkinfo.cfm Archives: http://www.mail-archive.com/cf-talk@houseoffusion.com/ Unsubscribe: http://www.houseoffusion.com/index.cfm?sidebar=lists
Re: IIS or Apache? (WAS RE: can anyone help?)
I think Apache's site says it all: "However, due to the code's legacy, and use of metaphors and systems which are Unix-specific (such as, having multiple processes all accept()ing connections to the same port), the road to porting to Windows NT has not been a pretty one. Several attempts have been made, both by Apache Group members and outside folks, but due to a lack of stability and a clear consensus on how to manage a true cross-platform development project, NT is not yet a standard platform supported by Apache. " - Original Message - From: "Costas Piliotis" <[EMAIL PROTECTED]> To: "CF-Talk" <[EMAIL PROTECTED]> Sent: Thursday, May 31, 2001 5:39 PM Subject: RE: IIS or Apache? (WAS RE: can anyone help?) > Actually, I found CF made Apache a bit unstable... After I installed CF > over Apache, I couldn't start Apache as a service any more - I had to run > the command line version. Not good if you don't want the server to remain > logged in. > > I would recomment sticking with IIS on an NT box. With CF and Apache, there > were (at least for me) a bunch of bugs. > > -Original Message- > From: Dave Watts [mailto:[EMAIL PROTECTED]] > Sent: Thursday, May 31, 2001 10:47 AM > To: CF-Talk > Subject: RE: IIS or Apache? (WAS RE: can anyone help?) > > > > Well now, since you'all have brought it up, and I never > > really considered it, (big IIS fan)which is better on > > a Win2k (advanced server)? > > > > IIS or Apache? > > > > Pros - Cons? > > Good for both Development and Production? > > > > Would consider shelving IIS for Apache if there was good > > reason to > > >From a functional perspective, both will work fine on Win2K, especially for > development. I think that IIS will perform better in production than Apache > on Windows, based on my experiences. This shouldn't be a surprise, since > Microsoft has built IIS specifically to run very well on Windows. > > >From a security perspective, Apache is easier to secure than IIS, although > both can be secured adequately. Apache doesn't come with all kinds of extra > stuff like IIS does, so you don't have to remove and disable as much. There > are some people who think that IIS can't be secured > (http://www.securityportal.com/articles/iis20010521.html), but it can be > with a bit of diligence. The only "fatal flaw" with IIS, in my opinion, is > that the service must run as SYSTEM so that it can impersonate other users - > if I understand correctly, this is required to support the integration of > IIS authentication with NT authentication. So, if the IIS service gets > compromised through a buffer overflow, any code executed as a result will > run as SYSTEM. Actually, in Win2K, you might be able to change the IIS > services so that they run as individual users. I haven't tried this yet, > myself. > > If you're interested in taking advantage of Windows-specific functionality, > IIS will allow you to do that more easily and more often than Apache, > generally. > > Dave Watts, CTO, Fig Leaf Software > http://www.figleaf.com/ > voice: (202) 797-5496 > fax: (202) 797-5444 > ~~ Structure your ColdFusion code with Fusebox. Get the official book at http://www.fusionauthority.com/bkinfo.cfm Archives: http://www.mail-archive.com/cf-talk@houseoffusion.com/ Unsubscribe: http://www.houseoffusion.com/index.cfm?sidebar=lists
RE: IIS or Apache? (WAS RE: can anyone help?)
Actually, I found CF made Apache a bit unstable... After I installed CF over Apache, I couldn't start Apache as a service any more - I had to run the command line version. Not good if you don't want the server to remain logged in. I would recomment sticking with IIS on an NT box. With CF and Apache, there were (at least for me) a bunch of bugs. -Original Message- From: Dave Watts [mailto:[EMAIL PROTECTED]] Sent: Thursday, May 31, 2001 10:47 AM To: CF-Talk Subject: RE: IIS or Apache? (WAS RE: can anyone help?) > Well now, since you'all have brought it up, and I never > really considered it, (big IIS fan)which is better on > a Win2k (advanced server)? > > IIS or Apache? > > Pros - Cons? > Good for both Development and Production? > > Would consider shelving IIS for Apache if there was good > reason to >From a functional perspective, both will work fine on Win2K, especially for development. I think that IIS will perform better in production than Apache on Windows, based on my experiences. This shouldn't be a surprise, since Microsoft has built IIS specifically to run very well on Windows. >From a security perspective, Apache is easier to secure than IIS, although both can be secured adequately. Apache doesn't come with all kinds of extra stuff like IIS does, so you don't have to remove and disable as much. There are some people who think that IIS can't be secured (http://www.securityportal.com/articles/iis20010521.html), but it can be with a bit of diligence. The only "fatal flaw" with IIS, in my opinion, is that the service must run as SYSTEM so that it can impersonate other users - if I understand correctly, this is required to support the integration of IIS authentication with NT authentication. So, if the IIS service gets compromised through a buffer overflow, any code executed as a result will run as SYSTEM. Actually, in Win2K, you might be able to change the IIS services so that they run as individual users. I haven't tried this yet, myself. If you're interested in taking advantage of Windows-specific functionality, IIS will allow you to do that more easily and more often than Apache, generally. Dave Watts, CTO, Fig Leaf Software http://www.figleaf.com/ voice: (202) 797-5496 fax: (202) 797-5444 ~~ Structure your ColdFusion code with Fusebox. Get the official book at http://www.fusionauthority.com/bkinfo.cfm Archives: http://www.mail-archive.com/cf-talk@houseoffusion.com/ Unsubscribe: http://www.houseoffusion.com/index.cfm?sidebar=lists
RE: can anyone help?
> OK. I have ditched PWS. I have installed Apache and > reinstalled ColdFusion and copied the DLL file and changed > the httpd.conf file in apache. > > I cannot get the web server to start. When I click on start > apache I get a dos command window that goes so fast I can't > even read what it says. I was able to make out the following > however, > > Apache.exe cannot determine local host name. If you want to find out exactly what error is being returned, you can simply open a command prompt and run the command contained within the shortcut. > I think the httpd.conf files needs further editing but I'm > not confident about what to change. I am guessing that the > following lines at the end of the conf file need to be changed. > I want to be able to have http://127.0.0.1/ If I recall correctly, when you set up Apache, all you should have to change within httpd.conf is add the LoadModule directive, change the DocumentRoot directive, and change the Directory directive, assuming you've got a properly configured TCP/IP stack bound to your network card. Dave Watts, CTO, Fig Leaf Software http://www.figleaf.com/ voice: (202) 797-5496 fax: (202) 797-5444 ~~ Structure your ColdFusion code with Fusebox. Get the official book at http://www.fusionauthority.com/bkinfo.cfm Archives: http://www.mail-archive.com/cf-talk@houseoffusion.com/ Unsubscribe: http://www.houseoffusion.com/index.cfm?sidebar=lists
Re: can anyone help?
If you're having errors on startup with apache, run a dos window first, then the apache command line. Then you can see whatever errors occurs without the window disappearing. As for the cannot determine local host name: Set ServerName to 127.0.0.1 ie, ServerName 127.0.0.1 > OK. I have ditched PWS. I have installed Apache and reinstalled ColdFusion > and copied the DLL file and changed the httpd.conf file in apache. > > I cannot get the web server to start. When I click on start apache I get a > dos command window that goes so fast I can't even read what it says. I was > able to make out the following however, > > Apache.exe cannot determine local host name. > > I think the httpd.conf files needs further editing but I'm not confident > about what to change. I am guessing that the following lines at the end of > the conf file need to be changed. I want to be able to have > http://127.0.0.1/ > > Sebastian > > -- > > # If you want to use name-based virtual hosts you need to define at > # least one IP address (and port number) for them. > # > #NameVirtualHost 12.34.56.78:80 > #NameVirtualHost 12.34.56.78 > # > # VirtualHost example: > # Almost any Apache directive may go into a VirtualHost container. > # > # > # ServerAdmin [EMAIL PROTECTED] > # DocumentRoot /www/docs/host.some_domain.com > # ServerName host.some_domain.com > # ErrorLog logs/host.some_domain.com-error_log > # CustomLog logs/host.some_domain.com-access_log common > # > # > # > LoadModule coldfusion_module modules/ApacheModuleColdFusion.dll > > -- > > on 5/31/01 8:58 AM, Tony Schreiber at [EMAIL PROTECTED] wrote: > > > I know this isn't the answer to your question, but ditch PWS and run > > Apache for Win32. Works great. ;p I think I'm running 1.3.20 on my > > development machine. Easy install, SMALL footprint... > > > >> I have win2K professional with personal web server for development. > >> > >> PWS is hanging after any requests, whether with an htm or cfm file request. > >> When choosing any options in PWS I get the following message: > >> > >> Server is busy > >> This action cannot be completed because the other program is busy. Choose > >> 'Switch to' to activate the busy program and correct the problem. > >> > >> There are no other programs running. I have uninstalled and reinstalled PWS > >> and same problem. > >> > >> Can anyone help? > >> > >> Sebastian > >> > >> > >> > > > ~~ Structure your ColdFusion code with Fusebox. Get the official book at http://www.fusionauthority.com/bkinfo.cfm Archives: http://www.mail-archive.com/cf-talk@houseoffusion.com/ Unsubscribe: http://www.houseoffusion.com/index.cfm?sidebar=lists
RE: IIS or Apache? (WAS RE: can anyone help?)
> Well now, since you'all have brought it up, and I never > really considered it, (big IIS fan)which is better on > a Win2k (advanced server)? > > IIS or Apache? > > Pros - Cons? > Good for both Development and Production? > > Would consider shelving IIS for Apache if there was good > reason to >From a functional perspective, both will work fine on Win2K, especially for development. I think that IIS will perform better in production than Apache on Windows, based on my experiences. This shouldn't be a surprise, since Microsoft has built IIS specifically to run very well on Windows. >From a security perspective, Apache is easier to secure than IIS, although both can be secured adequately. Apache doesn't come with all kinds of extra stuff like IIS does, so you don't have to remove and disable as much. There are some people who think that IIS can't be secured (http://www.securityportal.com/articles/iis20010521.html), but it can be with a bit of diligence. The only "fatal flaw" with IIS, in my opinion, is that the service must run as SYSTEM so that it can impersonate other users - if I understand correctly, this is required to support the integration of IIS authentication with NT authentication. So, if the IIS service gets compromised through a buffer overflow, any code executed as a result will run as SYSTEM. Actually, in Win2K, you might be able to change the IIS services so that they run as individual users. I haven't tried this yet, myself. If you're interested in taking advantage of Windows-specific functionality, IIS will allow you to do that more easily and more often than Apache, generally. Dave Watts, CTO, Fig Leaf Software http://www.figleaf.com/ voice: (202) 797-5496 fax: (202) 797-5444 ~~ Structure your ColdFusion code with Fusebox. Get the official book at http://www.fusionauthority.com/bkinfo.cfm Archives: http://www.mail-archive.com/cf-talk@houseoffusion.com/ Unsubscribe: http://www.houseoffusion.com/index.cfm?sidebar=lists
Re: can anyone help?
on 5/31/01 9:40 AM, Arden Weiss at [EMAIL PROTECTED] wrote: > See Apache installation instructions paper "ColdFusion and Apache install > tips and tricks" by Mark Mathis on Annapolis Cold Fusion Users Group web > site (2/22/01 meeting) if you decide to go that route. It will help... > www.ancfug.com/meetings Arden, thanks. Those are the instructions I was looking for. Sebastian ~~ Structure your ColdFusion code with Fusebox. Get the official book at http://www.fusionauthority.com/bkinfo.cfm Archives: http://www.mail-archive.com/cf-talk@houseoffusion.com/ Unsubscribe: http://www.houseoffusion.com/index.cfm?sidebar=lists
Re: can anyone help?
OK. I have ditched PWS. I have installed Apache and reinstalled ColdFusion and copied the DLL file and changed the httpd.conf file in apache. I cannot get the web server to start. When I click on start apache I get a dos command window that goes so fast I can't even read what it says. I was able to make out the following however, Apache.exe cannot determine local host name. I think the httpd.conf files needs further editing but I'm not confident about what to change. I am guessing that the following lines at the end of the conf file need to be changed. I want to be able to have http://127.0.0.1/ Sebastian -- # If you want to use name-based virtual hosts you need to define at # least one IP address (and port number) for them. # #NameVirtualHost 12.34.56.78:80 #NameVirtualHost 12.34.56.78 # # VirtualHost example: # Almost any Apache directive may go into a VirtualHost container. # # # ServerAdmin [EMAIL PROTECTED] # DocumentRoot /www/docs/host.some_domain.com # ServerName host.some_domain.com # ErrorLog logs/host.some_domain.com-error_log # CustomLog logs/host.some_domain.com-access_log common # # # LoadModule coldfusion_module modules/ApacheModuleColdFusion.dll -- on 5/31/01 8:58 AM, Tony Schreiber at [EMAIL PROTECTED] wrote: > I know this isn't the answer to your question, but ditch PWS and run > Apache for Win32. Works great. ;p I think I'm running 1.3.20 on my > development machine. Easy install, SMALL footprint... > >> I have win2K professional with personal web server for development. >> >> PWS is hanging after any requests, whether with an htm or cfm file request. >> When choosing any options in PWS I get the following message: >> >> Server is busy >> This action cannot be completed because the other program is busy. Choose >> 'Switch to' to activate the busy program and correct the problem. >> >> There are no other programs running. I have uninstalled and reinstalled PWS >> and same problem. >> >> Can anyone help? >> >> Sebastian >> >> >> > ~~ Structure your ColdFusion code with Fusebox. Get the official book at http://www.fusionauthority.com/bkinfo.cfm Archives: http://www.mail-archive.com/cf-talk@houseoffusion.com/ Unsubscribe: http://www.houseoffusion.com/index.cfm?sidebar=lists
OT: IIS or Apache? (WAS RE: can anyone help?)
Well now, since you'all have brought it up, and I never really considered it, (big IIS fan)which is better on a Win2k (advanced server)? IIS or Apache? Pros - Cons? Good for both Development and Production? Would consider shelving IIS for Apache if there was good reason to Erika (with a *K*) "It is impossible to enjoy idling thoroughly unless one has plenty of work to do." - Jerome K. Jerome -- -Original Message- From: Arden Weiss [mailto:[EMAIL PROTECTED]] Sent: Thursday, May 31, 2001 10:40 AM To: CF-Talk Subject: RE: can anyone help? See Apache installation instructions paper "ColdFusion and Apache install tips and tricks" by Mark Mathis on Annapolis Cold Fusion Users Group web site (2/22/01 meeting) if you decide to go that route. It will help... www.ancfug.com/meetings ^ / \__ (@\___ / O /(_/ /_/ Whoof... 410-757-3487 -Original Message- From: Tony Schreiber [SMTP:[EMAIL PROTECTED]] Sent: Thursday, May 31, 2001 9:59 AM To: CF-Talk Subject: Re: can anyone help? I know this isn't the answer to your question, but ditch PWS and run Apache for Win32. Works great. ;p I think I'm running 1.3.20 on my development machine. Easy install, SMALL footprint... > I have win2K professional with personal web server for development. > > PWS is hanging after any requests, whether with an htm or cfm file request. > When choosing any options in PWS I get the following message: > > Server is busy > This action cannot be completed because the other program is busy. Choose > 'Switch to' to activate the busy program and correct the problem. > > There are no other programs running. I have uninstalled and reinstalled PWS > and same problem. > > Can anyone help? > > Sebastian > > > ~~ Structure your ColdFusion code with Fusebox. Get the official book at http://www.fusionauthority.com/bkinfo.cfm Archives: http://www.mail-archive.com/cf-talk@houseoffusion.com/ Unsubscribe: http://www.houseoffusion.com/index.cfm?sidebar=lists
RE: can anyone help?
See Apache installation instructions paper "ColdFusion and Apache install tips and tricks" by Mark Mathis on Annapolis Cold Fusion Users Group web site (2/22/01 meeting) if you decide to go that route. It will help... www.ancfug.com/meetings ^ / \__ (@\___ / O /(_/ /_/ Whoof... 410-757-3487 -Original Message- From: Tony Schreiber [SMTP:[EMAIL PROTECTED]] Sent: Thursday, May 31, 2001 9:59 AM To: CF-Talk Subject: Re: can anyone help? I know this isn't the answer to your question, but ditch PWS and run Apache for Win32. Works great. ;p I think I'm running 1.3.20 on my development machine. Easy install, SMALL footprint... > I have win2K professional with personal web server for development. > > PWS is hanging after any requests, whether with an htm or cfm file request. > When choosing any options in PWS I get the following message: > > Server is busy > This action cannot be completed because the other program is busy. Choose > 'Switch to' to activate the busy program and correct the problem. > > There are no other programs running. I have uninstalled and reinstalled PWS > and same problem. > > Can anyone help? > > Sebastian > > > ~~ Structure your ColdFusion code with Fusebox. Get the official book at http://www.fusionauthority.com/bkinfo.cfm Archives: http://www.mail-archive.com/cf-talk@houseoffusion.com/ Unsubscribe: http://www.houseoffusion.com/index.cfm?sidebar=lists
RE: can anyone help?
Alternatively, you could install IIS. It is an option under Windows Setup for Win2KPro. It is a watered down version, but it is IIS 5.0, much better than PWS. Marwan Saidi Webmaster CED - Concord IS [EMAIL PROTECTED] 407.741.8645 I know this isn't the answer to your question, but ditch PWS and run Apache for Win32. Works great. ;p I think I'm running 1.3.20 on my development machine. Easy install, SMALL footprint... ** This email and any files transmitted with it are confidential and intended solely for the use of the individual or entity to whom they are addressed. If you have received this email in error please notify the system manager. This footnote also confirms that this email message has been swept by MIMEsweeper for the presence of computer viruses. www.mimesweeper.com ** ~~ Structure your ColdFusion code with Fusebox. Get the official book at http://www.fusionauthority.com/bkinfo.cfm Archives: http://www.mail-archive.com/cf-talk@houseoffusion.com/ Unsubscribe: http://www.houseoffusion.com/index.cfm?sidebar=lists
RE: can anyone help?
Since you have Win2000, why not use IIS that is included? -Original Message- From: sebastian palmigiani [mailto:[EMAIL PROTECTED]] Sent: Thursday, May 31, 2001 6:29 AM To: CF-Talk Subject: can anyone help? I have win2K professional with personal web server for development. PWS is hanging after any requests, whether with an htm or cfm file request. When choosing any options in PWS I get the following message: Server is busy This action cannot be completed because the other program is busy. Choose 'Switch to' to activate the busy program and correct the problem. There are no other programs running. I have uninstalled and reinstalled PWS and same problem. Can anyone help? Sebastian ~~ Structure your ColdFusion code with Fusebox. Get the official book at http://www.fusionauthority.com/bkinfo.cfm Archives: http://www.mail-archive.com/cf-talk@houseoffusion.com/ Unsubscribe: http://www.houseoffusion.com/index.cfm?sidebar=lists
RE: can anyone help?
Win2k does not really support PWS it is no longer supported on this OS (legacy issues) - you should be using IIS5 (which will be on the CD) if you are using Professional, if you are using ME then use Apache instead. J -Original Message- From: sebastian palmigiani [mailto:[EMAIL PROTECTED]] Sent: 31 May 2001 14:29 To: CF-Talk Subject: can anyone help? I have win2K professional with personal web server for development. PWS is hanging after any requests, whether with an htm or cfm file request. When choosing any options in PWS I get the following message: Server is busy This action cannot be completed because the other program is busy. Choose 'Switch to' to activate the busy program and correct the problem. There are no other programs running. I have uninstalled and reinstalled PWS and same problem. Can anyone help? Sebastian ~~ Structure your ColdFusion code with Fusebox. Get the official book at http://www.fusionauthority.com/bkinfo.cfm Archives: http://www.mail-archive.com/cf-talk@houseoffusion.com/ Unsubscribe: http://www.houseoffusion.com/index.cfm?sidebar=lists
Re: can anyone help?
I know this isn't the answer to your question, but ditch PWS and run Apache for Win32. Works great. ;p I think I'm running 1.3.20 on my development machine. Easy install, SMALL footprint... > I have win2K professional with personal web server for development. > > PWS is hanging after any requests, whether with an htm or cfm file request. > When choosing any options in PWS I get the following message: > > Server is busy > This action cannot be completed because the other program is busy. Choose > 'Switch to' to activate the busy program and correct the problem. > > There are no other programs running. I have uninstalled and reinstalled PWS > and same problem. > > Can anyone help? > > Sebastian > > > ~~ Structure your ColdFusion code with Fusebox. Get the official book at http://www.fusionauthority.com/bkinfo.cfm Archives: http://www.mail-archive.com/cf-talk@houseoffusion.com/ Unsubscribe: http://www.houseoffusion.com/index.cfm?sidebar=lists
Re: can anyone help?
Great guys, Thanks. Jay Patton Web Design / Application Design Web Pro USA 406.549.3337 ext. 203 1.888.5WEBPRO www.webpro-usa.com - Original Message - From: "Chris Alvarado" <[EMAIL PROTECTED]> To: "CF-Talk" <[EMAIL PROTECTED]> Sent: Thursday, February 15, 2001 10:49 AM Subject: RE: can anyone help? > on line 98 you need to specify the Variable you are using the comparisn > operator on. > > in other words > > this is wrong: > > > > this is correct > > > > -chris.alvarado > [developer] - VerticalNet > > > > -Original Message- > From: Jay Patton [mailto:[EMAIL PROTECTED]] > Sent: Thursday, February 15, 2001 11:40 AM > To: CF-Talk > Subject: can anyone help? > > > Hello all, > > Im getting an error that i cant figure out here... everything looks fine to > me but maybe someone else can see something. here is the error.. > > Error Diagnostic Information > Just in time compilation error > > Invalid parser construct found on line 98 at position 30. ColdFusion was > looking at the following text: > > GTE > Invalid expression format. The usual cause is an error in the expression > structure. > The last successfully parsed CFML construct was a CFIF tag occupying > document position (98:2) to (98:6). > > AND HERE IS MY CODE: > > > SELECT * FROM SubCats > WHERE TopCatID = #URL.CategoryID# > ORDER BY SubCat > > > > #prodpage.Category# > > > > > > > > > > > !! this is line 98!! > > > > > > >href="Details.cfm?#URLToken#&ItemID=#ItemID#&CategoryID=#CategoryID#"> src="images/#ItemPic#" border="0"> > href="Details.cfm?#URLToken#&ItemID=#ItemID#&CategoryID=#CategoryID#">#ItemN > ame# > > > > > > > > > > > > > > >href="Details.cfm?#URLToken#&ItemID=#ItemID#&CategoryID=#CategoryID#"> src="images/#ItemPic#" border="0"> > href="Details.cfm?#URLToken#&ItemID=#ItemID#&CategoryID=#CategoryID#">#ItemN > ame# > > > > > > > > > > > > > > > > Any help would be much appreciated. > Thanks, > > Jay Patton > Web Design / Application Design > Web Pro USA > 406.549.3337 ext. 203 > 1.888.5WEBPRO > www.webpro-usa.com > ~~ Structure your ColdFusion code with Fusebox. Get the official book at http://www.fusionauthority.com/bkinfo.cfm Archives: http://www.mail-archive.com/cf-talk@houseoffusion.com/ Unsubscribe: http://www.houseoffusion.com/index.cfm?sidebar=lists
RE: can anyone help?
you need to put the lvalue in for both comparisons. like this: chris olive, cio cresco technologies [EMAIL PROTECTED] http://www.crescotech.com -Original Message- From: Jay Patton [mailto:[EMAIL PROTECTED]] Sent: Thursday, February 15, 2001 12:40 PM To: CF-Talk Subject: can anyone help? Hello all, Im getting an error that i cant figure out here... everything looks fine to me but maybe someone else can see something. here is the error.. Error Diagnostic Information Just in time compilation error Invalid parser construct found on line 98 at position 30. ColdFusion was looking at the following text: GTE Invalid expression format. The usual cause is an error in the expression structure. The last successfully parsed CFML construct was a CFIF tag occupying document position (98:2) to (98:6). AND HERE IS MY CODE: SELECT * FROM SubCats WHERE TopCatID = #URL.CategoryID# ORDER BY SubCat #prodpage.Category# !! this is line 98!! #ItemN ame# #ItemN ame# Any help would be much appreciated. Thanks, Jay Patton Web Design / Application Design Web Pro USA 406.549.3337 ext. 203 1.888.5WEBPRO www.webpro-usa.com ~~ Structure your ColdFusion code with Fusebox. Get the official book at http://www.fusionauthority.com/bkinfo.cfm Archives: http://www.mail-archive.com/cf-talk@houseoffusion.com/ Unsubscribe: http://www.houseoffusion.com/index.cfm?sidebar=lists
RE: can anyone help?
Try this instead HTH Jeff Garza Web Developer/Webmaster Spectrum Astro, Inc. 480.892.8200 [EMAIL PROTECTED] http://www.spectrumastro.com ~~ Structure your ColdFusion code with Fusebox. Get the official book at http://www.fusionauthority.com/bkinfo.cfm Archives: http://www.mail-archive.com/cf-talk@houseoffusion.com/ Unsubscribe: http://www.houseoffusion.com/index.cfm?sidebar=lists
Re: can anyone help?
Try doing - Original Message - From: "Jay Patton" <[EMAIL PROTECTED]> To: "CF-Talk" <[EMAIL PROTECTED]> Sent: Thursday, February 15, 2001 12:40 PM Subject: can anyone help? > Hello all, > > Im getting an error that i cant figure out here... everything looks fine to me but maybe someone else can see something. here is the error.. > > Error Diagnostic Information > Just in time compilation error > > Invalid parser construct found on line 98 at position 30. ColdFusion was looking at the following text: > > GTE > Invalid expression format. The usual cause is an error in the expression structure. > The last successfully parsed CFML construct was a CFIF tag occupying document position (98:2) to (98:6). > > AND HERE IS MY CODE: > > > SELECT * FROM SubCats > WHERE TopCatID = #URL.CategoryID# > ORDER BY SubCat > > > > #prodpage.Category# > > > > > > > > > > !! this is line 98!! > > > > > > > > #ItemN ame# > > > > > > > > > > > > > > > > #ItemN ame# > > > > > > > > > > > > > > > > Any help would be much appreciated. > Thanks, > > Jay Patton > Web Design / Application Design > Web Pro USA > 406.549.3337 ext. 203 > 1.888.5WEBPRO > www.webpro-usa.com > > > ~~ Structure your ColdFusion code with Fusebox. Get the official book at http://www.fusionauthority.com/bkinfo.cfm Archives: http://www.mail-archive.com/cf-talk@houseoffusion.com/ Unsubscribe: http://www.houseoffusion.com/index.cfm?sidebar=lists
Re: can anyone help?
Try this instead: The paren's aren't necessary, but might make it easier to see how cf actually evaluates this. -d Deanna Schneider Interactive Media Developer UWEX Cooperative Extension Electronic Publishing Group 103 Extension Bldg 432 N. Lake Street Madison, WI 53706 (608) 265-7923 ~~ Structure your ColdFusion code with Fusebox. Get the official book at http://www.fusionauthority.com/bkinfo.cfm Archives: http://www.mail-archive.com/cf-talk@houseoffusion.com/ Unsubscribe: http://www.houseoffusion.com/index.cfm?sidebar=lists
Re: can anyone help?
Just a few guesses, here. If you include the numbers in quotes, I believe ColdFusion looks at them as strings. Although, I don't think that is the error you are getting now. Try to rework your line like so: The parenthesis aren't needed, but sometimes it makes the code easier to read (especially when you are having problems). Jay Patton wrote: > Hello all, > > Im getting an error that i cant figure out here... everything looks fine to me but >maybe someone else can see something. here is the error.. > > Error Diagnostic Information > Just in time compilation error > > Invalid parser construct found on line 98 at position 30. ColdFusion was looking at >the following text: > > GTE > Invalid expression format. The usual cause is an error in the expression structure. > The last successfully parsed CFML construct was a CFIF tag occupying document >position (98:2) to (98:6). > > AND HERE IS MY CODE: > > > SELECT * FROM SubCats > WHERE TopCatID = #URL.CategoryID# > ORDER BY SubCat > > > > #prodpage.Category# > > > > > > > > > > !! this is line 98!! > > > > > > > src="images/#ItemPic#" border="0"> > href="Details.cfm?#URLToken#&ItemID=#ItemID#&CategoryID=#CategoryID#">#ItemName# > > > > > > > > > > > > > > > src="images/#ItemPic#" border="0"> > href="Details.cfm?#URLToken#&ItemID=#ItemID#&CategoryID=#CategoryID#">#ItemName# > > > > > > > > > > > > > > > > Any help would be much appreciated. > Thanks, > > Jay Patton > Web Design / Application Design > Web Pro USA > 406.549.3337 ext. 203 > 1.888.5WEBPRO > www.webpro-usa.com > > ~~ Structure your ColdFusion code with Fusebox. Get the official book at http://www.fusionauthority.com/bkinfo.cfm Archives: http://www.mail-archive.com/cf-talk@houseoffusion.com/ Unsubscribe: http://www.houseoffusion.com/index.cfm?sidebar=lists
RE: can anyone help?
should be Justin >-Original Message- >From: Jay Patton [mailto:[EMAIL PROTECTED]] >Sent: Thursday, February 15, 2001 5:40 PM >To: CF-Talk >Subject: can anyone help? > > >Hello all, > >Im getting an error that i cant figure out here... everything >looks fine to me but maybe someone else can see something. here is >the error.. > >Error Diagnostic Information >Just in time compilation error > >Invalid parser construct found on line 98 at position 30. >ColdFusion was looking at the following text: > >GTE >Invalid expression format. The usual cause is an error in the >expression structure. >The last successfully parsed CFML construct was a CFIF tag >occupying document position (98:2) to (98:6). > >AND HERE IS MY CODE: > > > SELECT * FROM SubCats > WHERE TopCatID = #URL.CategoryID# > ORDER BY SubCat > > > > #prodpage.Category# > > > > > > > > > > >!! this is line 98!! > > > > > > > href="Details.cfm?#URLToken#&ItemID=#ItemID#&CategoryID=#CategoryID >#"> > href="Details.cfm?#URLToken#&ItemID=#ItemID#&CategoryID=#CategoryID >#">#ItemName# > > > > > > > > > > > > > > > href="Details.cfm?#URLToken#&ItemID=#ItemID#&CategoryID=#CategoryID >#"> > href="Details.cfm?#URLToken#&ItemID=#ItemID#&CategoryID=#CategoryID >#">#ItemName# > > > > > > > > > > > > > > > >Any help would be much appreciated. >Thanks, > >Jay Patton >Web Design / Application Design >Web Pro USA >406.549.3337 ext. 203 >1.888.5WEBPRO >www.webpro-usa.com > > > ~~ Structure your ColdFusion code with Fusebox. Get the official book at http://www.fusionauthority.com/bkinfo.cfm Archives: http://www.mail-archive.com/cf-talk@houseoffusion.com/ Unsubscribe: http://www.houseoffusion.com/index.cfm?sidebar=lists
RE: can anyone help?
You need to add in the variable name: Hal Helms == See ColdFusionTraining.com for info on "Best Practices with ColdFusion & Fusebox" training == -Original Message- From: Jay Patton [mailto:[EMAIL PROTECTED]] Sent: Thursday, February 15, 2001 12:40 PM To: CF-Talk Subject: can anyone help? Hello all, Im getting an error that i cant figure out here... everything looks fine to me but maybe someone else can see something. here is the error.. Error Diagnostic Information Just in time compilation error Invalid parser construct found on line 98 at position 30. ColdFusion was looking at the following text: GTE Invalid expression format. The usual cause is an error in the expression structure. The last successfully parsed CFML construct was a CFIF tag occupying document position (98:2) to (98:6). AND HERE IS MY CODE: SELECT * FROM SubCats WHERE TopCatID = #URL.CategoryID# ORDER BY SubCat #prodpage.Category# !! this is line 98!! #ItemN ame# #ItemN ame# Any help would be much appreciated. Thanks, Jay Patton Web Design / Application Design Web Pro USA 406.549.3337 ext. 203 1.888.5WEBPRO www.webpro-usa.com ~~ Structure your ColdFusion code with Fusebox. Get the official book at http://www.fusionauthority.com/bkinfo.cfm Archives: http://www.mail-archive.com/cf-talk@houseoffusion.com/ Unsubscribe: http://www.houseoffusion.com/index.cfm?sidebar=lists
RE: can anyone help?
---> -Original Message- From: Jay Patton [mailto:[EMAIL PROTECTED]] Sent: Thursday, February 15, 2001 9:40 AM To: CF-Talk Subject: can anyone help? Hello all, Im getting an error that i cant figure out here... everything looks fine to me but maybe someone else can see something. here is the error.. Error Diagnostic Information Just in time compilation error Invalid parser construct found on line 98 at position 30. ColdFusion was looking at the following text: GTE Invalid expression format. The usual cause is an error in the expression structure. The last successfully parsed CFML construct was a CFIF tag occupying document position (98:2) to (98:6). AND HERE IS MY CODE: SELECT * FROM SubCats WHERE TopCatID = #URL.CategoryID# ORDER BY SubCat #prodpage.Category# !! this is line 98!! #ItemN ame# #ItemN ame# Any help would be much appreciated. Thanks, Jay Patton Web Design / Application Design Web Pro USA 406.549.3337 ext. 203 1.888.5WEBPRO www.webpro-usa.com ~~ Structure your ColdFusion code with Fusebox. Get the official book at http://www.fusionauthority.com/bkinfo.cfm Archives: http://www.mail-archive.com/cf-talk@houseoffusion.com/ Unsubscribe: http://www.houseoffusion.com/index.cfm?sidebar=lists
RE: can anyone help?
Try this instead !! this is line 98!! That should fix it for you! Allan Pichler -Original Message- From: Jay Patton [mailto:[EMAIL PROTECTED]] Sent: Thursday, February 15, 2001 9:40 AM To: CF-Talk Subject: can anyone help? Hello all, Im getting an error that i cant figure out here... everything looks fine to me but maybe someone else can see something. here is the error.. Error Diagnostic Information Just in time compilation error Invalid parser construct found on line 98 at position 30. ColdFusion was looking at the following text: GTE Invalid expression format. The usual cause is an error in the expression structure. The last successfully parsed CFML construct was a CFIF tag occupying document position (98:2) to (98:6). AND HERE IS MY CODE: SELECT * FROM SubCats WHERE TopCatID = #URL.CategoryID# ORDER BY SubCat #prodpage.Category# !! this is line 98!! #ItemN ame# #ItemN ame# Any help would be much appreciated. Thanks, Jay Patton Web Design / Application Design Web Pro USA 406.549.3337 ext. 203 1.888.5WEBPRO www.webpro-usa.com ~~ Structure your ColdFusion code with Fusebox. Get the official book at http://www.fusionauthority.com/bkinfo.cfm Archives: http://www.mail-archive.com/cf-talk@houseoffusion.com/ Unsubscribe: http://www.houseoffusion.com/index.cfm?sidebar=lists
Re: can anyone help?
try this: -- Clint Tredway www.factorxsoftware.com -- ~~ Structure your ColdFusion code with Fusebox. Get the official book at http://www.fusionauthority.com/bkinfo.cfm Archives: http://www.mail-archive.com/cf-talk@houseoffusion.com/ Unsubscribe: http://www.houseoffusion.com/index.cfm?sidebar=lists
RE: can anyone help?
on line 98 you need to specify the Variable you are using the comparisn operator on. in other words this is wrong: this is correct -chris.alvarado [developer] - VerticalNet -Original Message- From: Jay Patton [mailto:[EMAIL PROTECTED]] Sent: Thursday, February 15, 2001 11:40 AM To: CF-Talk Subject: can anyone help? Hello all, Im getting an error that i cant figure out here... everything looks fine to me but maybe someone else can see something. here is the error.. Error Diagnostic Information Just in time compilation error Invalid parser construct found on line 98 at position 30. ColdFusion was looking at the following text: GTE Invalid expression format. The usual cause is an error in the expression structure. The last successfully parsed CFML construct was a CFIF tag occupying document position (98:2) to (98:6). AND HERE IS MY CODE: SELECT * FROM SubCats WHERE TopCatID = #URL.CategoryID# ORDER BY SubCat #prodpage.Category# !! this is line 98!! #ItemN ame# #ItemN ame# Any help would be much appreciated. Thanks, Jay Patton Web Design / Application Design Web Pro USA 406.549.3337 ext. 203 1.888.5WEBPRO www.webpro-usa.com ~~ Structure your ColdFusion code with Fusebox. Get the official book at http://www.fusionauthority.com/bkinfo.cfm Archives: http://www.mail-archive.com/cf-talk@houseoffusion.com/ Unsubscribe: http://www.houseoffusion.com/index.cfm?sidebar=lists
Re: Can anyone help me to manage folder mail from houseoffusion In outlook 2000 ?
Phim, I don't have O2K in front of me, so I'm going from memory here. Create a folder (I call mine cf-talk, with a subfolder of New inside of that folder). Go to Tools, then Message Rules. From this point, it's a pretty user friendly wizard. What I do: I have all new cf-talk mail go to my New folder under cf-talk, and I also have another folder under cf-talk called "archived". When I read something, I move it. It's nice to have my own little cf-talk "Inbox", with just new mail. -- Billy Cravens [EMAIL PROTECTED] Phim wrote: > > > Hi Everyone , > > Can anyone help me to manage folder mail from houseoffusion In outlook = > 2000 ? , > > When email from cf-talk@houseoffusion come to me and I want all email in = > specific folder. > > Regards, > > Phim -- Archives: http://www.mail-archive.com/cf-talk@houseoffusion.com/ To Unsubscribe visit http://www.houseoffusion.com/index.cfm?sidebar=lists&body=lists/cf_talk or send a message to [EMAIL PROTECTED] with 'unsubscribe' in the body.
RE: Can anyone help me to manage folder mail from houseoffusion In outlook 2000 ?
you can create a new rule for all incoming msg which has "houseoffusion" in the To-addres, and move to the desired folder. Regards. Mike > -Mensaje original- > De: Phim [mailto:[EMAIL PROTECTED]] > Enviado el: lunes 24 de julio de 2000 10:59 > Para: [EMAIL PROTECTED] > Asunto: Can anyone help me to manage folder mail from houseoffusion In > outlook 2000 ? > > > This is a multi-part message in MIME format. > > --=_NextPart_000_0011_01BFF588.0EEFFEF0 > Content-Type: text/plain; > charset="iso-8859-1" > Content-Transfer-Encoding: quoted-printable > > Hi Everyone , > > Can anyone help me to manage folder mail from houseoffusion > In outlook = > 2000 ? , > > When email from cf-talk@houseoffusion come to me and I want > all email in = > specific folder. > > Regards, > > Phim > > > --=_NextPart_000_0011_01BFF588.0EEFFEF0 > Content-Type: text/html; > charset="iso-8859-1" > Content-Transfer-Encoding: quoted-printable > > > > http-equiv=3DContent-Type> > > > > > > Hi Everyone , > Can anyone help me to manage folder mail from houseoffusion In = > outlook 2000 ?=20 > , > When email from cf-talk@houseoffusion come to me and I > want all email = > in=20 > specific folder. > Regards, > Phim > > --=_NextPart_000_0011_01BFF588.0EEFFEF0-- > > -- > > Archives: http://www.mail-archive.com/cf-talk@houseoffusion.com/ > To Unsubscribe visit > http://www.houseoffusion.com/index.cfm?sidebar=lists&body=list s/cf_talk or send a message to [EMAIL PROTECTED] with 'unsubscribe' in the body. -- Archives: http://www.mail-archive.com/cf-talk@houseoffusion.com/ To Unsubscribe visit http://www.houseoffusion.com/index.cfm?sidebar=lists&body=lists/cf_talk or send a message to [EMAIL PROTECTED] with 'unsubscribe' in the body.