The servlet (and sslservlet) transport tests require a web container.  Currently, these tests have to be run
manually (JBREM-139 has been created to automate this).  Until then, here are the instructions for running
the tests manually.

servlet

1. Get JBossAS and copy remoting's servlet-invoker.war (from distro or build) to the deploy directory.
2. Copy the WEB-INF/web.xml under this directory into the that of the servlet-invoker.war/WEB-INF directory.
3. Copy remoting-servlet-invoker-service.xml to deploy directory.
4. Copy jboss-remoting-tests.jar to server lib directory
5. Start web container (JBossAS).
6. Run ServletInvokerTestClient.

sslservlet

1. Steps 1-4 above, except use the WEB-INF/web.xml and remoting-servlet-invoker-service.xml that is under the
servlet/ssl directory.
2. Copy the servlet/ssl/.keystore file to the server conf directory
3. Edit jbossweb-tomcat55.sar/server.xml to enable ssl connector.  It should look like following:

      <!-- SSL/TLS Connector configuration using the admin devl guide keystore -->
      <Connector port="8443" address="${jboss.bind.address}"
           maxThreads="100" strategy="ms" maxHttpHeaderSize="8192"
           emptySessionPath="true"
           scheme="https" secure="true" clientAuth="false"
           keystoreFile="${jboss.server.home.dir}/conf/.keystore"
           keystorePass="unit-tests-server" sslProtocol = "TLS" />

4. Start web container (JBossAS).
5. Run SSLServletInvokerTestClient.



