Trouble running Lucee and Adobe Coldfusion 9 on same server

I want to transfer my site from coldfusion 9 to the latest stable lucee
version. currently my site is running on coldfusion 9, when i downloaded
the latest lucee with tomcat msi and installed it on the server. with iis
connector support. this interfered with my existing site.

I am using helicon ape for ISAPI rewriting URLs and all functionality
failed when i stalled the tomcat to iis connector.

as soon as i uninstalled the the connector things run fine.

is it possible to start up an instance of lucee with out tomcat. and
configure the IIS server to run my cfml pages on lucee?

my web config file looks like this for coldfusion9:

  add name="AboMapperCustom-22491493" path="*.cfm" verb="GET,POST,HEAD" 

modules=“IsapiModule”
scriptProcessor=“C:\ColdFusion9\runtime\lib\wsconfig\1\jrun_iis6_wildcard.dll”
resourceType=“Unspecified” requireAccess=“Script” preCondition=“bitness64”
responseBufferLimit=“0” />
add name=“AboMapperCustom-22491495” path=“.cfc" verb=“GET,POST,HEAD”
modules=“IsapiModule”
scriptProcessor=“C:\ColdFusion9\runtime\lib\wsconfig\1\jrun_iis6_wildcard.dll”
resourceType=“Unspecified” requireAccess=“Script” preCondition=“bitness64”
responseBufferLimit=“0” />
add name=“AboMapperCustom-22491494” path="
.cfml”
verb=“GET,POST,HEAD” modules=“IsapiModule”
scriptProcessor=“C:\ColdFusion9\runtime\lib\wsconfig\1\jrun_iis6_wildcard.dll”
resourceType=“Unspecified” requireAccess=“Script” preCondition=“bitness64”
responseBufferLimit=“0” />
add name=“AboMapperCustom-22491496” path=“.cfr" verb="
modules=“IsapiModule”
scriptProcessor=“C:\ColdFusion9\runtime\lib\wsconfig\1\jrun_iis6_wildcard.dll”
resourceType=“Unspecified” requireAccess=“Script” preCondition=“bitness64”
responseBufferLimit=“0” />
add name=“AboMapperCustom-22491497” path=“.cfswf" verb="
modules=“IsapiModule”
scriptProcessor=“C:\ColdFusion9\runtime\lib\wsconfig\1\jrun_iis6_wildcard.dll”
resourceType=“Unspecified” requireAccess=“Script” preCondition=“bitness64”
responseBufferLimit=“0” />
add name=“AboMapperCustom-22491491” path=“*.jsp”
verb=“GET,POST,HEAD” modules=“IsapiModule”
scriptProcessor=“C:\ColdFusion9\runtime\lib\wsconfig\jrun_iis6.dll”
resourceType=“Unspecified” requireAccess=“Script” responseBufferLimit=“0” />===
how can i do this with lucee and not install tomcat at all. is there a DLL
for lucee that i can just swap out and get up and running just like adobe
coldfusion does with jrun_iis6_wildcard.dll

any suggestions would be greatly appreciated. thank you.

We’ve successfully run Lucee and ACF9 on the same IIS installation. It
was Railo at the time, but here are my notes on how I got it working:

http://cfsimplicity.com/82/installing-railo-on-iis-alongside-coldfusion-9

Main thing I found was to not install the BonCode connector
automatically, but set it up manually for each Railo/Lucee site by
copying the BIN folder to the root folder and editing the handler
mappings in each site’s web.config. That way you’re not touching the
existing CF9 handlers in any way.

JulianOn 26 September 2015 at 17:21, Darrell Miller <@Darrell_Miller> wrote:

I want to transfer my site from coldfusion 9 to the latest stable lucee
version. currently my site is running on coldfusion 9, when i downloaded
the latest lucee with tomcat msi and installed it on the server. with iis
connector support. this interfered with my existing site.