1 Reply Latest reply on Oct 31, 2003 1:08 PM by lblacksh

    Netscape Enterprise Server

    kiranvuppala

      Does NES work with JBoss?? i.e I want to use NES running on a different machine to act as a WebServer...

      If..YES....then how do I configure it??

        • 1. Re: Netscape Enterprise Server
          lblacksh

          Yes, I was able to get it working. You need libpassthrough plugin. I added the following lines to the magnus.conf

          Init fn="load-modules" shlib="/whereever/lib/libpassthrough.so" funcs="init-passthrough,auth-passthrough,check-passthrough,service-passthrough" NativeThread="no"

          Init fn="init-passthrough"

          In obj.conf
          ---add the following "Object Name" before the "Object name=default"


          ObjectType fn="force-type" type="magnus-internal/passthrough"
          PathCheck fn="deny-existence" path="*/WEB-INF/*"
          Service-type="magnus-internal/passthrough" fn="service-passthrough" servers="htt
          p://10.0.140.121:8080"
          Error reason="Bad Gateway" fn="send-error" uri="$docroot/badgateway.html"



          -- add just after the "Object name=default"

          NameTrans fn="assign-name" from="(/jboss.war/*|jboss/*)" name="passthrough"
          NameTrans fn="assign-name" from="(*.jsp)" name="passthrough"


          What this will do is pass and jboss or jsp files on to the jboss/jetty server.