• Debian 11 is approaching its end-of-life (vendor EOL date - August 31, 2026). Plesk Obsidian 18.0.80 will be the last release to support it.
    If you are running Plesk Obsidian on Debian 11, we recommend you upgrade those servers to Debian 12 using our dist-upgrade tool.
  • We plan to deprecate and remove the support for XML RPC protocol versions earlier than 1.6.9.1 in Plesk Obsidian 18.0.82. We strongly recommend that you update all existing integrations using earlier versions of the XML RPC protocol to comply with the version 1.6.9.1 specification.

Coldfusion Tomcat compatibility problem

C

cichlidguru

Guest
I am running Plesk Reloaded 7.5.4 for Linux and am trying to get Coldfusion and Tomcat to both be enabled for a single domain without conflicting.

Coldfusion works great for all domains I enable it for. The problem is I can't get Tomcat 4.1 to handle JSP requests because Coldfusion intercepts all my JSP requests.

CF is intercepting the JSP requests because that's how the apache connector for Coldfusion is setup. If you open a httpd.include file for a vhost, there is an entry like so:

<IfModule mod_jrun20.c>
JRunConfig Verbose false
.....
.....
AddHandler jrun-handler .jsp .jws .cfm .cfml .cfc .cfr .cfswf
</IfModule>

As you can see, the last entry in this configuration tells apache to send all requests for .JSP (and .jws .cfm .cfml .cfc .cfr .cfswf) files to Coldfusion to be processed.

This is a problem because I need Tomcat to handle my JSP requests. If I disable Coldfusion support for a domain, Tomcat DOES handle JSP requests, just like it should. But I can't get a domain to be BOTH Coldfusion enabled AND Tomcat enabled without Coldfusion intercepting JSP requests.

Does anybody know where the master apache configuration for the Apache/Coldfusion integration is stored at so I can remove the .jsp extension from the jrun-handler direcive?

p.s. I tried creating a custom vhosts.conf file for the domain I am working with, which re-defines the apache/CF handler without the .jsp extension for the jrun-handler, and that did NOT work.

I need to remove the .jsp extension from the jrun-handler directive in the MASTER apache/coldufusion confiugration.
 
Back
Top