OFF-TOPIC : tool to generate JSP pages for a DB table

2004-12-02 Thread Sreejith
Hi all,

Is there a tool that can generate JSP pages for a given
table. It would be ideal if it can generate a insert, modify, delete and one
search page (based on primary key or some indexes)

Any pointers?

Thanks
Sreejith


Server side redirect

2004-09-08 Thread Sreejith
Hi all,
It is possible to do a server side redirect to another Tomcat Server
(any other web server)? I dont want to use status codes 3xx, as this
involves the user agent in redirection.

Sreejith


RE: Server side redirect

2004-09-08 Thread Sreejith
Thanks for the reply Sjoerd..

I am trying to write a framework over Tomcat, which can be used to manage
the web apps.
The framework maintains certain access levels based on the request data
(from client). Following certains buisness rules, framework does forwarding
(server side, using req Despatcher) to the appropriate web apps. In certain
scenarios, it may be required to redirect to a third party (remotely hosted)
web application. Can you tellme, what is the best approach to implement this
with out using 3xx response codes?

Thanks
Sreejith

-Original Message-
From: Sjoerd van Leent [mailto:[EMAIL PROTECTED]
Sent: Wednesday, September 08, 2004 4:41 PM
To: Tomcat Users List
Subject: Re: Server side redirect


Sreejith wrote:

Hi all,
It is possible to do a server side redirect to another Tomcat Server
(any other web server)? I dont want to use status codes 3xx, as this
involves the user agent in redirection.

Sreejith


What you are asking is to locate a resource on another server. If you
want to do this you need to route the request to another server (setting
tomcat as a proxy). You are more or less making the server the
browser-client is talking to another client of a deeper server. More or
less like the following illustration:

browser -- tomcat -- another tomcat

In most cases it would be more wise to setup another webserver (such as
apache) that routes your requests to different tomcat servers (using the
mod_jk extension or something like that), which looks more like the
following:

-- first tomcat
browser -- proxy (apache for instance) -- second tomcat
-- third tomcat

May I ask what you are actually trying to do?

Regards,
Sjoerd


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



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



SocketException while writing to Outputstream

2004-07-27 Thread Sreejith
$ControlRunnable.run(ThreadPool.jav
a:619)
 at java.lang.Thread.run(Thread.java:534)

Thanks
Sreejith