0 Replies Latest reply on Sep 2, 2003 11:51 AM by cst97025

    IIS with JBoss3.2.1/Tomcat 4.1.24

    cst97025

      I'm using:
      -Win XP Pro
      -Jboss 3.2.1/Tomcat 4.1.24 bundle
      -IIS 5

      I can't seem to get IIS to redirect jsp/servlet requests to Tomcat. I'm using isapi_redirect.dll. The isapi.log looks as though the request is recognized as being for tomcat and I think it's sent to tomcat, but tomcat doesn't seem to do anything with it. There is no activity in the jboss/tomcat server.log or localhost_accessxxx.log.

      I have no trouble going directly to tomcat (localhost:8080) from a browser.

      I've read the IIS HowTo on the jakarta site. I'm really new to jboss/tomcat and everything I read on newsgroups has to do with Apache and tomcat or IIS and the standalone tomcat. I must use IIS for my current job.

      Any help is appreciated. Some log entries and config info are below.

      --------------isapi.log
      [jk_isapi_plugin.c (696)]: HttpFilterProc started
      [jk_isapi_plugin.c (759)]: In HttpFilterProc Virtual Host redirection of /localhost/timtest/TimTestServlet
      [jk_uri_worker_map.c (460)]: Into jk_uri_worker_map_t::map_uri_to_worker
      [jk_uri_worker_map.c (477)]: Attempting to map URI '/localhost/timtest/TimTestServlet'
      [jk_uri_worker_map.c (599)]: jk_uri_worker_map_t::map_uri_to_worker, done without a match
      [jk_isapi_plugin.c (765)]: In HttpFilterProc test Default redirection of /timtest/TimTestServlet
      [jk_uri_worker_map.c (460)]: Into jk_uri_worker_map_t::map_uri_to_worker
      [jk_uri_worker_map.c (477)]: Attempting to map URI '/timtest/TimTestServlet'
      [jk_uri_worker_map.c (502)]: jk_uri_worker_map_t::map_uri_to_worker, Found a context match worker1 -> /timtest/
      [jk_isapi_plugin.c (775)]: HttpFilterProc [/timtest/TimTestServlet] is a servlet url - should redirect to worker1
      [jk_isapi_plugin.c (838)]: HttpFilterProc check if [/timtest/TimTestServlet] is points to the web-inf directory
      ---------------

      ---------------excerpt from jboss-service.xml
      <!-- A HTTP/1.1 Connector on port 8080 -->


      <!-- A AJP 1.3 Connector on port 8009 -->

      ----------------

      --------------workers.properties:
      workers.tomcat_home=C:\Java\jboss-3.2.1_tomcat-4.1.24\bin
      workers.java_home=C:\Java\j2sdk1.4.2
      ps=\

      worker.list=worker1

      worker.worker1.type=ajp13
      worker.worker1.host=localhost
      worker.worker1.port=8009
      worker.worker1.lbfactor=50
      --------------

      --------------uriworkermap.properties:
      default.worker=worker1

      /timtest=$(default.worker)
      /timtest/*=$(default.worker)
      --------------