You are viewing a plain text version of this content. The canonical link for it is here.
Posted to dev@tomcat.apache.org by "Wang, Dapeng" <Da...@Dresdner-Bank.com> on 2000/03/16 10:51:26 UTC

Netscape Connector for Salaris.

Hi,

is there any connectors for netscape server on solaris OS available? Where
can I find it?

thanks.
Dapeng Wang

Re: sendRedirect in a JSP page

Posted by "Craig R. McClanahan" <cm...@mytownnet.com>.
Milan Duriancik wrote:

> Hello,
>
> I repost my earlier question:
>
> Is it leagal to call sendRedirect in a JSP page. (I need it for authorisation
> purpouses)
> When I do it I get  IllegalStateException.
> Is it my fault or is it a bug?
>

It is not legal to call sendRedirect() in a JSP if the output has already been
"committed", meaning that the HTTP headers and the beginning of the current
output page has already been sent back to the client browser.  You can make it
work by doing one of the following:

* Move the call to sendRedirect() further up your
  page, so that it's encountered before the number
  of bytes specified by your buffer size have been
  accumulated.

* Change the buffer size in the <%@ page %>
  directive to a larger value.

Also, please start using the brand new TOMCAT-USERS@JAKARTA.APACHE.ORG mailing
list for usage questions like this.  The TOMCAT-DEV list is intended to support
discussion among those developing Tomcat itself.  Subscription information is at
the Jakarta web site <http://jakarta.apache.org>.

>
>                                                             Milan
>

Craig McClanahan



sendRedirect in a JSP page

Posted by Milan Duriancik <mi...@tempest.sk>.
Hello,

I repost my earlier question:

Is it leagal to call sendRedirect in a JSP page. (I need it for authorisation
purpouses)
When I do it I get  IllegalStateException.
Is it my fault or is it a bug?

                                                            Milan


--
----------------------
Milan Duriancik
Tempest s.r.o., Hanulova 5/B,
Bratislava, Slovakia
GSM: ++421 905 466 201
Work: ++421 7 69 25 41 24



Re: Netscape Connector for Salaris.

Posted by Gal Shachor <sh...@il.ibm.com>.
 There is a connector, but you will need to build it...

Get the latest tomcat source distribution and fo to the 
jakarta-tomcat/src/native/iis_netscape directory. 
You should see Makefile.solaris.

To use it:

Set JAVA_HOME to point to your JDK directory
Set SUITSPOT_HOME to point to your Netscape Suitspot directory
execute make -f Makefile.solaris

	Gal Shachor

"Wang, Dapeng" wrote:
> 
> Hi,
> 
> is there any connectors for netscape server on solaris OS available? Where
> can I find it?
> 
> thanks.
> Dapeng Wang
> 
> ---------------------------------------------------------------------
> To unsubscribe, e-mail: tomcat-dev-unsubscribe@jakarta.apache.org
> For additional commands, e-mail: tomcat-dev-help@jakarta.apache.org