Mantis - Resin
Viewing Issue Advanced Details
13 minor always 03-02-05 00:00 05-11-05 00:00
administrator  
 
urgent  
closed  
no change required  
none    
none  
0000013: Problem with Apache 2.x/Weblogic 8.x/Resin 3.x setup
RSN-3
example:

weblogic serves /app1 (Location /app1)
resin serves /app2 (Location /app2)

when we try /app1 or /app2 resin handles both requests.


We did not have this problem with resin 2.x
Linux Redhat 8.x
Apache 2.0.53
Resin 3.0.11
Weblogic 8.1 SP2

Notes
(0000006)
admin   
03-02-05 00:00   
There was not enough information provided in this bugreport.
At a minimum, the relevant sections of httpd.conf and resin.conf, is required.

The simplest solution is to check /caucho-status and your resin.conf to see why resin is getting the /app1 urls.
In particular, configure your backend resin instance so that it does not have a webapp deployed at the "/" context.

The <Location> directive in Apache allows for very customizable dispatching the the backend resin server.

ResinConfigServer localhost 6802

<Location /foo/*>
  SetHandler caucho-request
</Location>

or

<Location /foo/*>
  CauchoHost localhost 6802
  SetHandler caucho-request
</Location>