>>
hi,

we use IIS 5.0 and tomcat 3.0 on a windows 2000 pro. computer

We try to use isapi_redirect.dll of Tomcat for tunelling IIS to the TomCat
server
through a specific port 80.

we use the redirection with a get command and all works well.

When we try to use the Post method.
Unfortunately the parameters posted through the Post method are not viewed
on the TomCat server side.

Question : is it an IIS problem? Is it a redirection problem? If yes, is
there a new version of the isapi_redirect.dll or a specific configuration to
use? Is
there an alternative strategy?
>>
Are you trying to post to a servelt?  If so, make sure that you do this in
your servlet code:

   public void doPost(HttpServletRequest request, HttpServletResponse
response) throws ServletException, IOException
   {
      doGet(request,response);
   }

Meaning add a doPost to handle the post and then have it call the doGet
where all your code is.

Chistophe DENIARD
Kaidara
15, rue soufflot
75005 PARIS
FRANCE
tel: +33 (0) 1 56 24 22 00
fax:+33 (0) 1 56 24 22 66
[EMAIL PROTECTED]
http://www.kaidara.com


Reply via email to