Hello!
I've finally installed WAS plugin for 64 bit z/linux successfully but now
I've another little problem.

I've configured in my plugin-cfg.xml with the <Uri Name="/oto/*"/>
directive.

I would like to serve al static elements as .sws file from my httpServer.
They are called in this way http://hostname/oto/htdocs/xxx.html for
example.
Then I've inserted in my httpd.conf:

Alias /oto/htdocs /opt/CHROOT/HTTPD-2.0.59/htdocs/atmweb/oto
<Directory "/opt/CHROOT/HTTPD-2.0.59/htdocs/atmweb/oto">
 AllowOverride none
 Order allow,deny
 Allow from all
</Directory>


I've inserted these directives before the LoadModule of WAS PlugIn but it
seems that WebSphere PlugIn has always priority and that the httpd.conf
file would not been read in a sequential way.


This configuration was ok without was plugin  but using proxy pass
directive in a way like this:

.........................................................................................................................................
Alias /oto/htdocs /opt/CHROOT/HTTPD-2.0.59/htdocs/atmweb/oto
<Directory "/opt/CHROOT/HTTPD-2.0.59/htdocs/atmweb/oto">
 AllowOverride none
 Order allow,deny
 Allow from all
</Directory>
ProxyPass /oto/htdocs !
ProxyPass /oto/ http://192.168.77.165:9080/oto/
ProxyPassReverse /oto/ http://192.168.77.165:9080/oto/
.........................................................................................................................................

In this way I could exclude /oto/htocs from the general /oto that was
passed to the remote WebSphere Application Server.

Is there a way to have a similar behaviour with the was plugin?
I'm thing about something to add in my plugin configuration file or....
another directive in my httpd.conf file.

Please let me know, in other ways I've to modify the context root for
static elements.


Thanks in advance.

MANUCIAO


----------------------------------------------------------------------
For LINUX-390 subscribe / signoff / archive access instructions,
send email to [EMAIL PROTECTED] with the message: INFO LINUX-390 or visit
http://www.marist.edu/htbin/wlvindex?LINUX-390

Reply via email to