I have successfully run Apache SOAP with Jetty.  Here's what I did.

1. Download and install Jetty 1.4.1
2. Edit %JETTY_HOME%\bin\jetty.bat, adding two lines after line 117
(the location of activation.jar and mail.jar will vary)

    set CP=%CP%;j:\jakarta-tomcat-4.0.1\common\lib\activation.jar
    set CP=%CP%;j:\jakarta-tomcat-4.0.1\common\lib\mail.jar

3. Copy soap.war to %JETTY_HOME%\webapps
4. From %JETTY_HOME%\bin, run

    jetty etc\jetty.xml

Step 2 adds the necessary jars to the classpath used by jetty.  Step 3
adds the soap webapp.  Step4 starts jetty with a configuration file that
will unpack war files and create a webapp context for each directory.

Note: because jetty.bat does not put ant in the jetty classpath, JSPs
are not enabled in the configuration I've described.

Scott Nichol

----- Original Message -----
From: "Scott Nichol" <[EMAIL PROTECTED]>
To: <[EMAIL PROTECTED]>
Sent: Tuesday, October 08, 2002 9:36 AM
Subject: Re: soap, Jetty


> Apache SOAP should be able to work with any servlet container.  The
only
> thing that changes from container to container is the way in which
> Apache SOAP is installed.  Doing a Google search, I found some info on
> installing Apache SOAP 2.0 on Jetty 3.0, but the current Apache
versions
> install differently.  I did not look past the first page of results,
so
> there may be something better.
>
> Scott Nichol
>
> ----- Original Message -----
> From: "Emma Johansson" <[EMAIL PROTECTED]>
> To: <[EMAIL PROTECTED]>
> Sent: Tuesday, October 08, 2002 9:01 AM
> Subject: soap, Jetty
>
>
> > Hi!
> >
> > Is there some way to create a client that communicates with a
servlet
> > where Jetty is the servlet container and all messages should be
> > transmitted as SOAP messages over HTTP? If so, please tell me how.
> >
> > I have just found tutorials when Tomcat is the server.
> >
> > / Emma
> >
> >
> > --
> > To unsubscribe, e-mail:
<mailto:[EMAIL PROTECTED]>
> > For additional commands, e-mail:
<mailto:[EMAIL PROTECTED]>
> >
> >
>
>
> --
> To unsubscribe, e-mail:   <mailto:[EMAIL PROTECTED]>
> For additional commands, e-mail: <mailto:[EMAIL PROTECTED]>
>
>


--
To unsubscribe, e-mail:   <mailto:[EMAIL PROTECTED]>
For additional commands, e-mail: <mailto:[EMAIL PROTECTED]>

Reply via email to