Re: JSP to JSP

2002-11-12 Thread Wilhelm Colln
Yes I did it once, but some servers gives you limited permissions, so that the database can only be accessed locally. Wilhelm Colln Peru Sudhir Kumar wrote: i need to communicate between two jsp's which are running on 2 remote machines. both the jsp's are running on tomcat. i need to pass some

Re: JSP to JSP

2002-11-12 Thread Kris Schneider
Erg - change that to ... Quoting Kris Schneider <[EMAIL PROTECTED]>: > If all you want to do is include the output of a JSP, you might want to check > > into JSTL's action. Unlike the standard JSP action, > > it can access external resources. You can provide nested actions to > > add reques

Re: JSP to JSP

2002-11-12 Thread Kris Schneider
If all you want to do is include the output of a JSP, you might want to check into JSTL's action. Unlike the standard JSP action, it can access external resources. You can provide nested actions to add request paramaters. If you need to process the output before displaying it, allows you to

AW: JSP to JSP

2002-11-12 Thread Power-Netz \(Schwarz\)
> is it possible to get the data of a remote database by invoking the jsp > running at that location ???. Any help in this regard will be helpfull.. Why don't you connect to the other database directly ??? If you won't do that, send your data via a normal POST form to the other JSP M.Schwarz

JSP to JSP

2002-11-12 Thread Sudhir Kumar
i need to communicate between two jsp's which are running on 2 remote machines. both the jsp's are running on tomcat. i need to pass some data between these jsp's. both the jsp's are connected to two seperate databases. is it possible to get the data of a remote database by invoking the jsp running