Corporate Intranet

2000-07-12 Thread Shrikumar R
Hi guys This may be outta context here, but since i am here I thought I would just ask. v r in the process of setting up a intranet server for our company. we have decided to host the site on a Unix box, but I am not sure what kinda software infrastructure we would require. Following are some of

How to call EJBean from JSP?

2000-07-12 Thread Diwakar Killamsetty
Hi, I am novice to these technologies. I have an EJBean on one machine and JSPs on other, now if I want to use the services of EJBean, I need to make a JNDI call. Can any one please let me know the procedure? And also how to write a deployment discriptor. Are they any tutorials on web to explain

Re: Sendredirect!!

2000-07-12 Thread Sanjay Kumar
You can send parameters through querystring or session variables using sendRedirect(). Cheers, Sanjay - Sanjay Kumar, Software Consultant, Addcon India Pvt Ltd. New Delhi. Emails : [EMAIL PROTECTED] [EMAIL PROTECTED]

Re: communication between jsp and servlet

2000-07-12 Thread Yasir Feroze Minhas
Hi there, I think both the functions take relative URLs instead of absolute URLs that you are giving. So try using relative URLs. You can set an attribute in "request" (not response) by setAttribute(String, Object) method and then you can use tag to go to the other page. Unlike sendRedirect() yo

Re: Extending JSP pages

2000-07-12 Thread Williams, Stephen
Hans -- that is exactly what I was looking for. Thanks for the excellent explanation! -- Stephen A. Williams HNC Telecommunications Solutions > -Original Message- > From: Hans Bergsten [mailto:[EMAIL PROTECTED]] > Sent: Wednesday, July 12, 2000 6:31 PM > To: [EMAIL PROTECTED] > Subjec

Re: HTML Parser

2000-07-12 Thread Craig J. Detter
We use WebWise at http://www.wisesystems.com. It's very robust, it could be simpler to use but it has a lot of function. -Original Message- From: job job [mailto:[EMAIL PROTECTED]] Sent: Friday, July 07, 2000 7:55 PM To: [EMAIL PROTECTED] Subject: HTML Parser Does anyone have suggestio

Tomcat 3.1 running as NT service

2000-07-12 Thread Cheong Takhoe
Hi, I have Tomcat installed now. How do I make it run as an NT service at the background when I log off? regards, Cheong Takhoe === To unsubscribe: mailto [EMAIL PROTECTED] with body: "signoff JSP-INTEREST". Some relevant F

Re: Extending JSP pages

2000-07-12 Thread Hans Bergsten
"Williams, Stephen" wrote: > > Jim Preston wrote: > > Jason's example shows adding an alias for "*.html" that maps > > to the file handler and then a Deblink servlet (an example > > servlet that just looks for "" tags and removes them). > > It doesn't look to me like there is any reason that you c

Re: Experienced JSP Developers

2000-07-12 Thread Kyle Cordes
I suspect he is hoping to avoid paying the significant fees associated with retaining the services of large consulting firms with significant JSP experience... :-) [ [EMAIL PROTECTED] |http://DiskWise.com : free ] [ BDE Alternatives Guide | internet-based file storage and ] [ www.kyleco

Re: Experienced JSP Developers

2000-07-12 Thread Jeff Petty
Paul, Are you considering a teaming arrangement? There are several large consulting firms with significant JSP experience... I'd be happy to discuss a few options with you... Jeff Petty --- Paul Tran <[EMAIL PROTECTED]> wrote: > Hello All, > > Sorry to be off-topics, but I'm looking for some

Re: Extending JSP pages

2000-07-12 Thread Williams, Stephen
Jim Preston wrote: > Jason's example shows adding an alias for "*.html" that maps > to the file handler and then a Deblink servlet (an example > servlet that just looks for "" tags and removes them). > It doesn't look to me like there is any reason that you can't > add a "/foo/*.jsp" and a "/bar/*

Re: Extending JSP pages

2000-07-12 Thread Hans Bergsten
Jim Preston wrote: > > I think that what you're currently doing for servlets under JRun is > essentially all there is to it. Jason's book gives an example using the Java > Web Server. I've used JRun myself and configuring aliases is done the same > way as in JWS. I'm not enough of a server expert

Re: JSP in linux

2000-07-12 Thread Andreas Hausleitner
Tomcat 3.1 available at http://jakarta.apache.org/ or LWS http://www.gefionsoftware.com Andreas Limberger Joao wrote: > Hi! > > What i´ll need to run JSP in Linux. (I have Red-Hat 6.2) > I wan´t to create a laboratory in my home. > > Regards, > Limberger > > ==

Re: about request.getparameter

2000-07-12 Thread Hans Bergsten
shu-chun wrote: > > hi, all, i have a question about getparameter > for example, i have the codes as below: > > 1.jsp > String selectdata="any"; > if (request.getParameter("selectdata").equals("submit")) { > jobs.selectsingledata(); > } > > i have two jsp pages, for example, A.jsp and B.jsp.

Re: Extending JSP pages

2000-07-12 Thread Jim Preston
I think that what you're currently doing for servlets under JRun is essentially all there is to it. Jason's book gives an example using the Java Web Server. I've used JRun myself and configuring aliases is done the same way as in JWS. I'm not enough of a server expert to know if this is true of al

Re: Sendredirect!!

2000-07-12 Thread Mohan Radhakrishnan
Hi, This is a guess. I think that you have to read about the TARGET property of html. If you specify the target properly then it should be redirected to the proper frame. bye, Mohan -Original Message- From: Wilson E. Lozano R. - Estudiante [mailto:[EMAIL PROTECTED]] Sent: Wednesday,

Re: JSP in linux

2000-07-12 Thread Louis
go to download jrun3.0 (http://www.allaire.com/) or resin (www.orianserver.com) - Original Message - From: "Limberger Joao" <[EMAIL PROTECTED]> To: <[EMAIL PROTECTED]> Sent: Wednesday, July 12, 2000 9:45 PM Subject: JSP in linux > Hi! > > What i´ll need to run JSP in Linux. (I have R

about request.getparameter

2000-07-12 Thread shu-chun
hi, all, i have a question about getparameter for example, i have the codes as below: 1.jsp String selectdata="any"; if (request.getParameter("selectdata").equals("submit")) { jobs.selectsingledata(); } i have two jsp pages, for example, A.jsp and B.jsp. both A and B go to 1.jsp, so i set o

JSP in linux

2000-07-12 Thread Limberger Joao
Hi! What i´ll need to run JSP in Linux. (I have Red-Hat 6.2) I wan´t to create a laboratory in my home. Regards, Limberger === To unsubscribe: mailto [EMAIL PROTECTED] with body: "signoff JSP-INTEREST". Some relevant FAQs

Re: how to detect a browser closing

2000-07-12 Thread M. Simms
You could place a Javascript function reference that calls a servlet in every page's "onunload" event handler. The trick would be to be sure to keep track of the number of open browser windows the user has. if there is only 1 and the "onunload" is triggered, then the session with that site ha

Re: communication between jsp and servlet

2000-07-12 Thread Brad Miley
req.setAttribute( "test", test); getServletConfig().getServletContext().getRequestDispatcher("/jsp/somepage.jsp").forward(req, res); Get Your Private, Free E-mail from MSN Hotmail at http://www.hotmail.com ==

Re: Thanks, and another newbie question...

2000-07-12 Thread Yasir Feroze Minhas
Hi there, You can use HttpUtils.getRequestURL(request); to get complete URL of your current page. getRequestURL is a static method of HttpUtils and it demands a request object as its parameter. regards Y >Thanks to those who responded to my character replace question, and I've got >another whi

Sendredirect!!

2000-07-12 Thread Wilson E. Lozano R. - Estudiante
Hi Java Gurus, Question: How can i send parameters to any .jsp when i use the tag sendRedirect, and how can i use the tag sendRedirect to especify a frame target??? I can do it? Wilson Lozano Bucaramanga-Colombia === To

Re: How work with combobox related in jsp

2000-07-12 Thread Wilson E. Lozano R. - Estudiante
I do it, i have the code, i can send it, if you want. Wilson Lozano Bucaramanga-Colombia On Wed, 12 Jul 2000, Pratik wrote: > I even can give you some code if you want > > - Original Message - > From: Hines, Bill <[EMAIL PROTECTED]> > To: <[EMAIL PROTECTED]> > Sent: Tuesday, July 11,

Re: Thanks, and another newbie question...

2000-07-12 Thread Nadler Paul
>Is there an expression that will return the name of the current page? Yes, use request.getServletPath() Paul Nadler Ken Martin <[EMAIL PROTECTED]> on 07/12/2000 02:03:43 PM Please respond to A mailing list about Java Server Pages specification and reference <[EMAIL PROTECTED]>

Re: jsp:getProperty

2000-07-12 Thread Mansfield, Wayne J.
I've had problems with similar examples in the same book. It's a scope problem, possibly a bug. If you examine the source code of the generated servlet, you'll probably find that the 'db = (DbProdBean)i.next();' line in the scriptlet is accessing a local variable 'db', while the action

Thanks, and another newbie question...

2000-07-12 Thread Ken Martin
Thanks to those who responded to my character replace question, and I've got another which I expect should be easier, but... Is there an expression that will return the name of the current page? Ken Martin P.S. I did try things like <%= (new HttpServletRequest.getRequestURI()) %> to no avail -

Re: who is the leader : Tomcat, Resin, orion, websphere ????

2000-07-12 Thread Jim Bailey
On the theory that "give a man a fish, he eats for a day, teach a man to fish, he eats ..." and Please use web resources that already exist for

communication between jsp and servlet

2000-07-12 Thread hua ge
Hi,all I have a jsp page which pass a value to a servlet, the servlet then need go to the database and select somevalues based on the parameter passed from the jsp page as the where clause. the values will be stored in a vector. after that, the servlet will be redirect back to the jsp and passing

Re: Including JSP file in a servlet

2000-07-12 Thread Stefan Renz
Hi, there such a thing: ServletRequest.getRequestDispatcher(String page).include(req, res); sr - Original Message - From: Jim Preston <[EMAIL PROTECTED]> To: <[EMAIL PROTECTED]> Sent: Wednesday, July 12, 2000 7:12 PM Subject: Re: Including JSP file in a servlet > No. A servlet is jus

Re: pick more than one parameter in request

2000-07-12 Thread Liart Martins
Thank's Liart Satiro Costa Martins WebDeveloper - Original Message - From: "Daryani Santosh" <[EMAIL PROTECTED]> To: <[EMAIL PROTECTED]> Sent: Wednesday, July 12, 2000 10:40 AM Subject: Re: pick more than one parameter in request > Use the method getParameterValues > > getParameterV

Re: pick more than one parameter in request

2000-07-12 Thread Daryani Santosh
Use the method getParameterValues getParameterValues(java.lang.String name) Returns an array of String objects containing all of the values the given request parameter has, or null if the parameter does not exist. Santosh Liart Martins <[EMAIL PROTECTED]> on 07/12/2000 05:21:28 PM Pl

Re: pick more than one parameter in request

2000-07-12 Thread Corey A. Johnson
Hello, If it is a mulit-select, the the value passed in the request parameter will be a comma separated list of all items selected... So then you could use a StringTokenizer to separate the values... Do you need an example to do this? Cj Liart Martins wrote: > > Yes, I have a listbox with mor

Re: pick more than one parameter in request

2000-07-12 Thread Liart Martins
Yes, I have a listbox with more than 10 selections and I need request all values. - Original Message - From: "Corey A. Johnson" <[EMAIL PROTECTED]> To: <[EMAIL PROTECTED]> Sent: Tuesday, July 11, 2000 4:36 PM Subject: Re: pick more than one parameter in request > Do you mean more than

Re: Including JSP file in a servlet

2000-07-12 Thread Jim Preston
No. A servlet is just a Java class, there's no such thing as an include. --Jim Preston -Original Message- From: A mailing list about Java Server Pages specification and reference [mailto:[EMAIL PROTECTED]]On Behalf Of Arnab Chatterjee Sent: Wednesday, July 12, 2000 3:47 AM To: [EMAIL PR

Re: who is the leader : Tomcat, Resin, orion, websphere ????

2000-07-12 Thread Mikael Moreira
Actually it's http://www.orionserver.com/ /Micke - Original Message - From: "Sven van 't Veer" <[EMAIL PROTECTED]> To: <[EMAIL PROTECTED]> Sent: Wednesday, July 12, 2000 6:44 PM Subject: Re: [JSP-INTEREST] who is the leader : Tomcat, Resin, orion, websphere > "RICHARDSON-SIMON (IT

Re: who is the leader : Tomcat, Resin, orion, websphere ????

2000-07-12 Thread Sven van 't Veer
"RICHARDSON-SIMON (IT)" wrote: > > Is there a link for orion / resin? www.orion.com -- == Sven van 't Veer http://www.cachoeiro.net Java Developer

Re: Extending JSP pages

2000-07-12 Thread Williams, Stephen
Jim Preston wrote: > Actually, I believe you CAN configure the web server so that > all requests for a "*.jsp" will be routed through a servlet > of your choice first. I was just reading about this in Jason > Hunter's Servlets book, but unfortunately I left it at home > today. If you have the book

Re: How work with combobox related in jsp

2000-07-12 Thread Sicaud Patrice
Bill, I would be very interested in that technology also. It would be wonderfuld if you could provide examples. Patrice -Original Message- From: Pratik [mailto:[EMAIL PROTECTED]] Sent: Wednesday, July 12, 2000 6:20 AM To: [EMAIL PROTECTED] Subject: Re: How work with combobox related in j

Re: who is the leader : Tomcat, Resin, orion, websphere ????

2000-07-12 Thread Sicaud Patrice
anyone has any comment on iPLanet 4.1? -Original Message- From: Phil Mak [mailto:[EMAIL PROTECTED]] Sent: Wednesday, July 12, 2000 12:23 AM To: [EMAIL PROTECTED] Subject: Re: who is the leader : Tomcat, Resin, orion, websphere Yes you can deploy EJB with jRun 3. You need to purch

Re: who is the leader : Tomcat, Resin, orion, websphere ????

2000-07-12 Thread Jaffa, Dan
Weblogic! -Original Message- From: keith kwiatek [mailto:[EMAIL PROTECTED]] Sent: Tuesday, July 11, 2000 9:59 PM To: [EMAIL PROTECTED] Subject: who is the leader : Tomcat, Resin, orion, websphere Hello, Which JSP engine to use ---Tomcat, Resin, orion, websphere ? Which is

Re: who is the leader : Tomcat, Resin, orion, websphere ????

2000-07-12 Thread RICHARDSON-SIMON (IT)
Is there a link for orion / resin? ** IMPORTANT NOTICE: This email is confidential, may be legally privileged, and is for the intended recipient only. Access, disclosure, copying, distribution or reliance on any of it by anyone

Re: another servlet error

2000-07-12 Thread Oren Klichevsky
Hi Doug, Error 500 Internal Server Error, is an error within your servlet/JSP that was not handled and was caught by the servlet container (the part of the server that actually runs the java program you write). In this case, servlet SurveyList has thrown a typical java.lang.NullPointerException t

getRowCount

2000-07-12 Thread Boyer, Todd
I am trying to out.println a recordcount from the following query. Any ideas? Thanks... <%@ page language = "java" import="java.sql.*,javax.sql.*,allaire.taglib.*" %> <%@ taglib uri = "jruntags" prefix = "jrun" %> <% String t = request.getParameter("type"); String f = r

Re: who is the leader : Tomcat, Resin, orion, websphere ????

2000-07-12 Thread Jim Bailey
If you don't need EJB built in to the application server then Resin is a great choice. Besides speed and stability, its other primary feature is that the source for Resin is freely available. That means that you can get it to work in almost any development environment. For example, we have a JSP d

"misuse" of tag

2000-07-12 Thread Tim Fox
My understanding is that the tag should be used to get a reference to a JavaBean from a jsp page. A side effect of this (or indeed is it a side-effect?) is that any class that has a default constructor can be used by the tag to obtain a reference to it. This means you can use jsp:useBean to obt

another servlet error

2000-07-12 Thread doug
Thanks for all the help on the path problem I have. You guys were right, it wasn't in my Jrun Class path. In any case, has anyone seen this error: 500 Internal Server Error SurveyList: java.lang.NullPointerException === T

Re: How work with combobox related in jsp

2000-07-12 Thread Pratik
I even can give you some code if you want - Original Message - From: Hines, Bill <[EMAIL PROTECTED]> To: <[EMAIL PROTECTED]> Sent: Tuesday, July 11, 2000 11:26 PM Subject: Re: How work with combobox related in jsp > If you have to go back to the server and read the database, just use so

Re: Replace a character (or group of characters)?

2000-07-12 Thread Pratik
use string tokenize - Original Message - From: Ken Martin <[EMAIL PROTECTED]> To: <[EMAIL PROTECTED]> Sent: Wednesday, July 12, 2000 12:16 AM Subject: Replace a character (or group of characters)? > Is there a way to take a string of text like: > > This~is~a test of~parsing text > > ...a

Re: 2 questions..

2000-07-12 Thread Sundaram Ramasamy
as far i know has lot of advantages. for more information read this artical. http://www.javaworld.com/javaworld/jw-03-2000/jw-0331-ssj-forms_p.html -Original Message- From: A mailing list about Java Server Pages specification and reference [mailto:[EMAIL PROTECTED]]On Behalf Of Rathin

running JSP tags in java web server

2000-07-12 Thread Sundaram Ramasamy
hi all, i want to run 'hello world' jsp tag example in java webserver. But i don't know where to place the .jar file. its giving me error. can any one help on this. Thanks === To unsubscribe: mailto [EMAIL PROTECTED] with b

Re: How to debug JSP, servlet

2000-07-12 Thread Daryani Santosh
Debugging possibilities are usually part of the development environment or editor used for writing JSPs. You can download an IDE like KAWA or FORTE for free. The debugging you will do will occur on the servlet that is generated.For a tutorial on debugging using KAWA , go to this link http://pengui

Re: call Custom Tag on an event

2000-07-12 Thread Scott Evans
This won't work. Custom tags evaluated on the server-side - Javascript events are on the browser. -Original Message- From: Herbert Pfleger [mailto:[EMAIL PROTECTED]] Sent: Wednesday, July 12, 2000 2:10 PM To: [EMAIL PROTECTED] Subject: call Custom Tag on an event Hi, how can I call a se

Re: where to place jsp file in webappcabaret.com

2000-07-12 Thread Scott Evans
Perhaps the administrator of webappcabaret.com can tell you??? -Original Message- From: Paras Sharma [mailto:[EMAIL PROTECTED]] Sent: Wednesday, July 12, 2000 6:13 PM To: [EMAIL PROTECTED] Subject: where to place jsp file in webappcabaret.com hi can some tell me where we have to put

where to place jsp file in webappcabaret.com

2000-07-12 Thread Paras Sharma
hi can some tell me where we have to put our jsp file in webappcabaret.com ( serlvet & JSP host) & what is the path to see that file also where to put class file ? thanx in advance paras Get free email and a per

Source Code

2000-07-12 Thread arun
Hi All, Can any body send some good mini project done in jsp from that can u please sent to me the source code. It will be very help for me start working in jsp. Thanks, Arun === To unsubscribe: mailto [EMAIL PROTEC

Re: who is the leader : Tomcat, Resin, orion, websphere ????

2000-07-12 Thread Sven van 't Veer
Jonas Larsson wrote: > > My absoulute favourite is orion since it is as fast as resin (at least) and it is >always the first application server to implement the latest specs.. And ofcourse, it >is a full application server including EJB (1.1 and 2.0 Public Draft), JMS, JSP. And >it doesn't rely

How to debug JSP, servlet

2000-07-12 Thread you sheng chang
Hi: I bring this question in order to hear some opions such as what debugging tools, or if you just have jdk, how you debug it, things like that for discussion. Thanks you sheng __ Do You Yahoo!? Get Yahoo! Mail – Free email you

Re: who is the leader : Tomcat, Resin, orion, websphere ????

2000-07-12 Thread Jonas Larsson
My absoulute favourite is orion since it is as fast as resin (at least) and it is always the first application server to implement the latest specs.. And ofcourse, it is a full application server including EJB (1.1 and 2.0 Public Draft), JMS, JSP. And it doesn't rely on anything else than stand

framesets and jsp

2000-07-12 Thread Grefe, Ralf
Hello, I have some trouble to target the output into different frames. -I have a page with a banner-, a task- and a main- frame. banner t a main s k - By using a link with a target attribut (within task) I can direct the output (into main). - The form in main is displayed and also the

Re: Passing paramters between two jsp files

2000-07-12 Thread Yasir Feroze Minhas
Namaste Rupali, First of all, response has no such method, so you should try request.setAttribute(); When you use response.sendRedirect(); the request's attributes are probably reset and you would not be able to get a value for your set attribute. However you can set your attribute in request and

Re: Passing paramters between two jsp files

2000-07-12 Thread Yasir Feroze Minhas
Namaste Rupali, First of all, response has no such method, so you should try request.setAttribute(); When you use response.sendRedirect(); the request's attributes are probably reset and you would not be able to get a value for your set attribute. However you can set your attribute in request and

call Custom Tag on an event

2000-07-12 Thread Herbert Pfleger
Hi, how can I call a selfmade Custom Tag on an Event ( for example onClick) ? onClick = "" or onClick = "callTag()" with function callTag(){ document.write(""); } are not working. Can anybody give me a hint? Thanks Herb.

Including JSP file in a servlet

2000-07-12 Thread Arnab Chatterjee
Can we include a jsp file in a servlet as we include a Jsp file in a jsp file with the following syntax <%@include file="/lds/homebt.jsp"%> Thanks === To unsubscribe: mailto [EMAIL PROTECTED] with body: "signoff JSP-INTEREST

Re: Special characters

2000-07-12 Thread Gilbert NGUYEN
Do JavaScript interpret HTML numeric codes? if yes, how can I do in order to make javascript interpret this code? > -Message d'origine- > De: Benoit Quette [SMTP:[EMAIL PROTECTED]] > Date: mercredi 12 juillet 2000 12:20 > À:[EMAIL PROTECTED] > Objet:Re: Special characters >

Special characters

2000-07-12 Thread Miguel Casado
> Hello! > > I have a problem with javascript in an jsp page. I use special characters > like "é" or "à" and when the html page is generated, i get the character > "?". > > example: > > alert("à"); > > I get the following code when I read my html source: > > alert("?"); > > Can you help me? > > th

Re: Special characters

2000-07-12 Thread Benoit Quette
Try to use HTML numeric codes: http://www.december.com/html/spec/codes.html > -Original Message- > From: Gilbert NGUYEN [mailto:[EMAIL PROTECTED]] > Sent: 12 July 2000 10:51 > To: [EMAIL PROTECTED] > Subject: Special characters > > > Hello! > > I have a problem with javascript in an jsp

Re: Special characters

2000-07-12 Thread Luis Navalpotro
Hi, use: alert(escape("á")); that should work, Regards, Luis Navalpotro Hello! I have a problem with javascript in an jsp page. I use special characters like "é" or "à" and when the html page is generated, i get the character "?". example: alert("à"); I get the following code when I re

Re: Tomcat failed to start

2000-07-12 Thread Oren Klichevsky
Hi, You could also use the command "netstat -a" and check if there is an active server socket that is listening to this port. Regards, O.K. -Original Message- From: A mailing list about Java Server Pages specification and reference [mailto:[EMAIL PROTECTED]]On Behalf Of Chao Chen Sent:

Re: Execute a servlet inside a servlet

2000-07-12 Thread Benoit Quette
The only way to achieve this would be to forward your req to the other servlet. But you would not get back to your first servlet. It sounds like a better solution would be a more conventional approach using RMI or Jini. Create a server on your NT box that would provide your servlet with whatever r

Special characters

2000-07-12 Thread Gilbert NGUYEN
Hello! I have a problem with javascript in an jsp page. I use special characters like "é" or "à" and when the html page is generated, i get the character "?". example: alert("à"); I get the following code when I read my html source: alert("?"); Can you help me? thanks!

Re: JSP Linux Install Questions

2000-07-12 Thread RICHARDSON-SIMON (IT)
>> WebLogic is good, but it cannot talk to the apache for linux. I believe there is an Apache extension called mod_proxy that you can use to proxy http requests to WebLogic. I also understand there is now a WLS 5.1 plug-in for Apache from BEA, but I cannot find any information on this on their we

Execute a servlet inside a servlet

2000-07-12 Thread Sylvain Roche
Sorry if this has already been discussed in the past. My problem is that I have a servlet which creates images. It uses the awt for printing fonts. As I use linux in my production environnment, I have to launch jrun in a X session, which is not very usefull. Plus I cannot remotely restart jrun in

Re: JSP Editors (was RE: Using Runtime.getRuntime().exec() function)

2000-07-12 Thread joydeep
Thanks, Andrew, for the tip!! -Original Message- From: Andrew Craig <[EMAIL PROTECTED]> To: [EMAIL PROTECTED] <[EMAIL PROTECTED]> Date: Wednesday, July 12, 2000 2:30 PM Subject: JSP Editors (was RE: Using Runtime.getRuntime().exec() function) >The only one that I know of off hand that

Re: JSP Editors (was RE: Using Runtime.getRuntime().exec() functi on)

2000-07-12 Thread Ritesh_Srivastava
why not use textpad.all the debugging editors r bullshit.forte startup takes lot of time, and running forte,any web server at the same time is not advisable as it drastically slows down the system. > -- > From: Andrew Craig[SMTP:[EMAIL PROTECTED]] > Reply To: A mailing list a

Re: who is the leader : Tomcat, Resin, orion, websphere ????

2000-07-12 Thread Mikael Moreira
Yes Resin works with Apache. /Micke On Wed, 12 Jul 2000, Louis wrote: > Hi Kevin, > >Can resin run with Linux Apache? > > > Louis > > - Original Message - > From: "Kevin Duffey" <[EMAIL PROTECTED]> > To: <[EMAIL PROTECTED]> > Sent: Wednesday, July 12, 2000 3:54 AM > Subject: Re: who

JSP Editors (was RE: Using Runtime.getRuntime().exec() function)

2000-07-12 Thread Andrew Craig
The only one that I know of off hand that is free is Forte (found at http://www.sun.com/forte/ffj/ce/ ). I am sure that there are many others though. A plain text editor is all that is really needed anyway, though the syntax highlighting in Forte is handy... Anyone know of any others easy/cheap

Re: who is the leader : Tomcat, Resin, orion, websphere ????

2000-07-12 Thread Louis
Hi Kevin, Can resin run with Linux Apache? Louis - Original Message - From: "Kevin Duffey" <[EMAIL PROTECTED]> To: <[EMAIL PROTECTED]> Sent: Wednesday, July 12, 2000 3:54 AM Subject: Re: who is the leader : Tomcat, Resin, orion, websphere > Resin is very fast indeed. Resin ha

Re: Passing paramters between two jsp files

2000-07-12 Thread Veronique Dupierris
I don't know if it's a error in your mail only or in your code but, if you write response.setAttribute I'm not sure you can get your value from the request object. In your servelt you have to write request.setAttribute then get it back with request.getAttribute in your JSP or if it's 2 JSP you can

Re: who is the leader : Tomcat, Resin, orion, websphere ????

2000-07-12 Thread Phil Mak
Yes you can deploy EJB with jRun 3. You need to purchase the Enterprise Edition of jRun 3.0 which costs $4,995. The Professional Edition supports JSP and servlets, but doesn't provide any EJB support. - Original Message - From: Senaka Suriyaarachchi <[EMAIL PROTECTED]> To: <[EMAIL PROT