On Tuesday, Aug 12, 2003, at 11:09 US/Pacific, Stacy Young wrote: > Appears the mime type handler in Apache doesn't really do anything > > AddHandler jrun-handler .cfm .cfc .jsp .cfml .jws
That isn't a MIME type handler and, as Dave pointed out, mod_jrun actually runs per server, not per VirtualHost so you typically cannot run multiple connectors to different J2EE servers. One option is to use mod_proxy and mod_rewrite instead of mod_jrun and have a RewriteRule that catches .cfm / .cfc URLs and rewrites them to proxy to the JWS. Several downsides: you lose JRun's clustering, you have to enable JWS(!). However, for a number of other reasons, that's what macromedia.com does - sort of. We actually have a hardware load balancer in front of JRun / CFMX (as well as in front of our web servers) and we have a rewrite rule that proxies ColdFusion requests to the back end load balancer (which then distributes it to one of the multiple instances of CFMX for J2EE we run). Sean A Corfield -- http://www.corfield.org/blog/ "If you're not annoying somebody, you're not really alive." -- Margaret Atwood ~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~| Archives: http://www.houseoffusion.com/cf_lists/index.cfm?forumid=4 Subscription: http://www.houseoffusion.com/cf_lists/index.cfm?method=subscribe&forumid=4 FAQ: http://www.thenetprofits.co.uk/coldfusion/faq Your ad could be here. Monies from ads go to support these lists and provide more resources for the community. http://www.fusionauthority.com/ads.cfm Unsubscribe: http://www.houseoffusion.com/cf_lists/unsubscribe.cfm?user=89.70.4

