Folks:

I am trying to chain servlets so output of one is directed to next servlet.

Lacking information, I have tried modifying web.xml and made the following 
entries -- ofcourse, it didn't work!

<servlet>
        <servlet-name>ServletChain</servlet-name>
        <servlet-class>SimpleTextServlet,UpperCaseServlet</servlet-class>
    </servlet>

    <servlet-mapping>
        <servlet-name>ServletChain</servlet-name>
        <url-pattern>/cha</url-pattern>
    </servlet-mapping>

Output of SimpleTextServlet is supposed to go to UpperCaseServlet.

Any suggestions on how to make this work ?

Thanks,
Rk

_____________________________________________________________________________________
Get more from the Web.  FREE MSN Explorer download : http://explorer.msn.com

Reply via email to