Piyush,

in a project i am working at, we try to do some tests with cactus.
To get a cactus test running for WSAD 4.0 you need to set the
correct URL for the servlet-redirector. 
1.) in your webApplications/WEB-INF: web.xml - file:
   <servlet>
       <servlet-name>ServletRedirector</servlet-name>
       <display-name>ServletTestRedirector</display-name>
       <servlet-class>org.apache.cactus.server.ServletTestRedirector</servlet-
class>       
    </servlet>

   in the mappings-section:
    <servlet-mapping>
       <servlet-name>ServletRedirector</servlet-name>
       <url-pattern>/ServletRedirector</url-pattern>
    </servlet-mapping>

2.) in the cacuts.properties file, ie:
   cactus.servletRedirectorURL = http://localhost:8080/myapp/ServletRedirector

> I want to know if anybody has experimented on trying to integrate Cactus
> into Websphere Studio Application Developer.
> I have got the classpaths and servlet engine configured, but i am not able
> to set the Servlet Redirector and also where to set the properties for the
> default servlet engine.
>

What i don't quite understand is how the initialization of my servlets
is done. When i created a servlet in a test routine, it doesn't seemed to
be automatically initialized, as it is done, when instanciated by the
AS.

Greetings,
Thomas

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

Reply via email to