where download

2000-09-11 Thread Wang Hui
HI,all i want to download a book named "core servlet and javaserver pages" who can help me === To unsubscribe: mailto [EMAIL PROTECTED] with body: "signoff JSP-INTEREST". Some relevant FAQs on JSP/Servlets can be found

To run JSP on apache what are all required??????????

2000-09-11 Thread Kotireddy Mutyam
hi all, i have small doubt about apache, what are all the required for jsp in apache server. what is the tomcat and what is the JServ. is it possible to run JSP on apache without TOMCAT by using JServ. please give me reply immediately kotireddy [EMAIL PROTECTED]

Re: To run JSP on apache what are all required??????????

2000-09-11 Thread Robuschi (Delfi)
To run JSP on Apache, you must use Tomcat because only Tomcat can run JSP pages. JServ is a only Servlet Engine (so JSP doesn't work). Bye Robuschi Roberto Delfi srl P.za Ravenet 1/b - 43100 PARMA Tel. 0521/932411 Fax 0521/989045 [EMAIL PROTECTED] --- http://www.delfi.it

Re: problem getting tomcat to run on win32 platform

2000-09-11 Thread Raja Nagendra Kumar
Hi! modify your classpath to include jdk's tools.jar file.. You can do this by editing tomcat.bat file in \bin directory Regards, Nagendra Placed At : Buster [EMAIL PROTECTED] on 09/10/2000 12:41:46 AM Please respond to A mailing list

Re: To run JSP on apache what are all required??????????

2000-09-11 Thread Jacek Laskowski
"Robuschi (Delfi)" wrote: To run JSP on Apache, you must use Tomcat because only Tomcat can run JSP pages. It's not true as there are many other servlet engines (Resin, Enhydra, Orion, Jetty, Jigsaw, etc.). JServ is a only Servlet Engine (so JSP doesn't work). Actually, Tomcat is *only*

JSP Visual Scripting Tool

2000-09-11 Thread Nanayakkara Piyal
Hi What is the best Scripting Tool (Editor) to Develop JSP based Web Applications on Win NT platform (except NotePad)?? Piyal === To unsubscribe: mailto [EMAIL PROTECTED] with body: "signoff JSP-INTEREST". Some relevant

Re: doubt about server

2000-09-11 Thread Jacek Laskowski
Sampa Das wrote: hi all, I am a newcommer in JSP .I am using JSWDK1.2 to run my program . I have a question which seems to be the hurdle in work. Could anyone guide me what to do. Why does the server closes down frequently on performing some database or redirecting a jsp page. That's

Re: JSP Visual Scripting Tool

2000-09-11 Thread Sampat Palani
Try Text pad or Edit plus both are shareware and not free though fully functional """ Sampat Palani USIT New Delhi India [EMAIL PROTECTED] --Ooo( ". | ." )ooO-- "Knowledge is the antidote to fear" -Ralph Waldo

Re: JSP Visual Scripting Tool

2000-09-11 Thread Sampa Das
hi , Why don't u try homeSite .It seems good but not sure about the best. sampa Nanayakkara Piyal wrote: Hi What is the best Scripting Tool (Editor) to Develop JSP based Web Applications on Win NT platform (except NotePad)?? Piyal

passing a bean instance via a servlet to a jsp

2000-09-11 Thread Tasneem
Hello everybody I had a query i wanted to know how can i pass a bean instance via a servlet to JSP page.And retrieve the necessary data from the bean. Please do reply Thanks in advance. === To unsubscribe: mailto [EMAIL

Re: Encoding the url parameters

2000-09-11 Thread SRINIVAS RAO
Hi guys, can somebody tell me how do i encode parameters in URL. ex: http://www.srinivas.com/test.jsp?name=srini+special=java here in the above example i wanna encode name=srini+special=java. I dont wanna use dopost but doget.Its very urgent. thnx in advance. srinivas.

Re: JSP Visual Scripting Tool

2000-09-11 Thread DeVoil, Nick
Why not download forte from Sun (free) Nick -Original Message- From: Nanayakkara Piyal [mailto:[EMAIL PROTECTED]] Sent: Monday, September 11, 2000 11:17 AM To: [EMAIL PROTECTED] Subject: JSP Visual Scripting Tool Hi What is the best Scripting Tool (Editor) to Develop JSP based Web

Re: JSP Visual Scripting Tool

2000-09-11 Thread Catarina Reis
There is UltraEdit 32 too... :) Sampat Palani wrote: Try Text pad or Edit plus both are shareware and not free though fully functional """ Sampat Palani USIT New Delhi India [EMAIL PROTECTED] --Ooo( ". | ."

Re: To run JSP on apache what are all required??????????

2000-09-11 Thread Robuschi (Delfi)
"Robuschi (Delfi)" wrote: To run JSP on Apache, you must use Tomcat because only Tomcat can run JSP pages. It's not true as there are many other servlet engines (Resin, Enhydra, Orion, Jetty, Jigsaw, etc.). Yes, sorry, I intended "ONLY TOMCAT" between Tomcat and JServ Roberto

Re: Encoding the url parameters

2000-09-11 Thread Stefan Bushev
parameter=valueotherparameter=othervalueanotheroneparameter=somevalue _ Get Your Private, Free E-mail from MSN Hotmail at http://www.hotmail.com. Share information about yourself, create your own public profile at

Re: passing a bean instance via a servlet to a jsp

2000-09-11 Thread Shehrawat, Rishi
bind it to the request object using setAttribute() at the servlet, it can be retrieved at the jsp from the request object with getAttribute() -Original Message- From: Tasneem [SMTP:[EMAIL PROTECTED]] Sent: Tuesday, September 12, 2000 4:28 AM To: [EMAIL PROTECTED] Subject:

Re: passing a bean instance via a servlet to a jsp

2000-09-11 Thread Veronique Dupierris
You have to use the session objet . In your servlet: HttpSession session = req.getSession(); BeanDef myBean = new BeanDef(); ... session.putValue("myBeanVal", myBean); or session.setAttribute("myBeanVal", myBean); // since servlet API 2.1 I think and in your jsp % BeanDef myNewBean =

passing a bean instance via a servlet to a jsp but not using a session

2000-09-11 Thread Tasneem
Hello thanks to to those who replied back but my question still holds cause if you keep puting it on the session the session will be a bit to heavy is there any other way. Thanks in Advance Tasneem === To unsubscribe:

Re: JSP Visual Scripting Tool

2000-09-11 Thread Sanjay Gomes
There is one at MultiEdit.com , which is a very good one ,gets the javac compiler settings done automatically also Sanjay -Original Message- From: A mailing list about Java Server Pages specification and reference [mailto:[EMAIL PROTECTED]]On Behalf Of Catarina Reis Sent: 11 September

Re: Encoding the url parameters

2000-09-11 Thread SRINIVAS RAO
Hi stefan, Hey thnx for the reply. But I wanted to encode the parameter in the URL not display it raw. I dont want to use dopost also. and encodeRedirectURL() is not working as well. pls help me. thnx srinivas. From: Stefan Bushev [EMAIL PROTECTED] Reply-To: A mailing list about Java Server

Can we have two actions in same jsp page

2000-09-11 Thread Prakash
Hi, Can we have two actions from one jsp page Prakash D. === To unsubscribe: mailto [EMAIL PROTECTED] with body: "signoff JSP-INTEREST". Some relevant FAQs on JSP/Servlets can be found at:

Re: Encoding the url parameters

2000-09-11 Thread Stefan Bushev
parameter=blaother=bla is the way of encoding... i cannot understand what are you gonna do?? regards, stefan bushev From: SRINIVAS RAO [EMAIL PROTECTED] Reply-To: A mailing list about Java Server Pages specification and reference [EMAIL PROTECTED] To: [EMAIL PROTECTED] Subject: Re:

Re: How to ...??

2000-09-11 Thread sufi malak
Hi, thanks for your help, could you please show me how to do it ? Thanks your help will be appreciated. Sufi From: "Antonio W. Lagnada" [EMAIL PROTECTED] Reply-To: A mailing list about Java Server Pages specification and reference [EMAIL PROTECTED] To: [EMAIL PROTECTED] Subject: Re: How to

Weblogic, oracle how to configurate thier log files ??

2000-09-11 Thread sufi malak
Hi, do you know how to configurate Weblogic and Oracle so you have controle what output should be in the log file of each server. Thanks _ Get Your Private, Free E-mail from MSN Hotmail at http://www.hotmail.com. Share

Re: Problem with jsp:param tag

2000-09-11 Thread Jim Huffsmith
The problem's in your opening tag: jsp:forward page="somejspfile.jsp"/. Delete the forward slash and it should work fine (jsp:forward page="somejspfile.jsp"). Jim Huffsmith Dove Solutions 641-469-5877 x103 -Original Message- From: /servlet-interest Vishwanath Naveen [mailto:[EMAIL

Re: where download

2000-09-11 Thread Zhu, Lei
Please go to the following page http://archive.coreservlets.com/ Lei Zhu Siemens Energy Automation -Original Message- From: Wang Hui [mailto:[EMAIL PROTECTED]] Sent: Monday, September 11, 2000 2:01 AM To: [EMAIL PROTECTED] Subject: where download HI,all i want to download a book

fixed RE: problem getting tomcat to run on win32 platform

2000-09-11 Thread Nimmons, Buster
After closer inspection of the contents of the java console I found the problem. All the configurations such as JAVA_HOME and TOMCAT_HOME were correct. however I noticed a bunch of "OUT OF ENVIRONMENT SPACE" errors so I edited my CONFIG.SYS file to up the amount of memory allocated to environment

Re: Encoding the url parameters

2000-09-11 Thread Narayanaswamy, Kumaran (CTS)
Hi encodeRedirectURL() will append the Session Id preceded by a semicolon so if u append the parameters first and encode the url it will be a problem, what you have to do is first encode your url with out parameters Path = res.sendRedirect(res.encodeRedirectURL(url); (url withour Parametrs)

Re: JSP Visual Scripting Tool

2000-09-11 Thread Anthony J. Barbaro
I like UltraEdit ( http://www.ultraedit.com) -Original Message- From: A mailing list about Java Server Pages specification and reference [mailto:[EMAIL PROTECTED]]On Behalf Of Sanjay Gomes Sent: Monday, September 11, 2000 2:05 PM To: [EMAIL PROTECTED] Subject: Re: JSP Visual Scripting

invoke excel/word from jsp/servlet

2000-09-11 Thread hua ge
Hi, I have a html search result page (done in jsp/servlet) containing lines of found records. our client like to set up a save button on this page and it will invoke word or excel window which will contain all the result data in Text(tab delimited .txt) format or in CSV(Comma delimited .csv).

Model 2, replacing servlet with an all-code JSP?

2000-09-11 Thread JavierG
Hi out there: When using Model 2, can’t I replace the servlet used as controller for an “all-code” JSP, that is, a JSP that begins with % and ends with % and no HTML or out statements whatsoever? My point is that coding that way could be easier and faster (much less typing) being as they are a

Re: session

2000-09-11 Thread Martin Cooper
I suggest you read the following article: http://www.javaworld.com/javaworld/jw-12-1999/jw-12-ssj-jspmvc.html This should help you understand some of the issues you are asking about. -- Martin Cooper Tumbleweed Communications - Original Message - From: "Rakesh Bhat" [EMAIL PROTECTED]

Re: Getting at the jspPage in a form's action servlet?

2000-09-11 Thread Andy Schmidt
Here is what you can do. Inherit your 'action servlet' from the HttpJspPage in question ( or vise versa), and then inherit your JSP page from that. Post your forms to 'self' (the default). You will have to add some logic to your service() method, or your doPost() etc. whichever you are using

Re: invoke excel/word from jsp/servlet

2000-09-11 Thread Bolt, Dave
The easiest approach would be to see the JSP pages MIME type to text/plain and then have a JSP page that delivers the data in tab or comma delimited format. The problem is that the browser is simply going to show the text vs. offering to save it as a file. Another approach would be to purchase

Re: Model 2, replacing servlet with an all-code JSP?

2000-09-11 Thread Lee Turner
I thought model 2 was designed with the intention of separating the presentation of the system from the backend processing of the system. Not a replacement for servlet programming, but a combination ?? http://www.javaworld.com/javaworld/jw-12-1999/jw-12-ssj-jspmvc.html Lee -Original

Re: Model 2, replacing servlet with an all-code JSP?

2000-09-11 Thread Bolt, Dave
The J2EE blueprints use this approach for the front component. You can download or purchase the J2EE blueprints book. The download is somewhere on the J2EE site at http://java.sun.com The Java Pet Store sample app uses an approach like this. Dave Bolt ATSC/SPAWAR ASAT Team Bolt's Law of

Re: JSP Visual Scripting Tool

2000-09-11 Thread Sicaud Patrice
We like Forte for Java Community Edition (available from Sun). It is free. -Original Message- From: Nanayakkara Piyal [mailto:[EMAIL PROTECTED]] Sent: Monday, September 11, 2000 3:17 AM To: [EMAIL PROTECTED] Subject: JSP Visual Scripting Tool Hi What is the best Scripting Tool

Re: JSP Visual Scripting Tool

2000-09-11 Thread Jackson, Corey
There is a JSP editor available on SilverStream's DevCenter. It is unsupported but is definately worth taking a look at. It's available free at http://devcenter.silverstream.com. -Corey -Original Message- From: A mailing list about Java Server Pages specification and reference

Re: Can we have two actions in same jsp page

2000-09-11 Thread Kevin Duffey
Yes. Use JavaScript. I assume your talking about the Struts framework..actions? input type="submit" onclick="this.form.action='/path.do'" value="Action 1" input type="submit" onclick="this.form.action='/path2.do'" value="Action 2" That should do it. You can also pass a COMMAND name. I wrote

XML/XSL transformation in the server also JSPs and custom tags

2000-09-11 Thread Tomasz Ratajczak
Hi All, I am struggling with XML / XSL transformation in the server. The scenario in which the transformation needs to take place is as follows: Model 2 web architecture - controller servlet forwards requests to main JSPs which in turn jsp:include mini JSPs. All pages generate XML. Transformation

JRun service Problem

2000-09-11 Thread Santapur, Rao
Hello Every One! Sorry this is a bit off topic. I am using JRun2.3.3 with IIS .I am facing a peculiar problem.I need to restart the JRun service every monday morning without which request.getRemoteUser() method won't work. This method returns a null value and hence application won't start. This

Re: JSP Visual Scripting Tool

2000-09-11 Thread Doshi, Gunjan
One Question on that. As usual does it produce proprietary code that only SilverStream can understand. SIlverstream products are well known for producing silverstream specific code -- From: Jackson, Corey[SMTP:[EMAIL PROTECTED]] Reply To: A mailing list about Java Server

Help needed..design issues..........

2000-09-11 Thread Raj S
Hi, I am making an address book application.I have some design issues which I have not been able to resolve. In this application a user would be able to view his personal address book,add addresses and modify or delete them. I am using JSP's and at the backened LDAP server. I have a list of

Re: Getting at the jspPage in a form's action servlet?

2000-09-11 Thread Robert Nicholson
I'm trying to decouple the existing dependencies to the abstract jspPage I don't want to create more by inheriting from it. -Original Message- From: A mailing list about Java Server Pages specification and reference [mailto:[EMAIL PROTECTED]]On Behalf Of Andy Schmidt Sent: Monday,

unescaping cookie information in jsp page.

2000-09-11 Thread Nimmons, Buster
I have jsp code which reads cookie information produced with javascript. when I do a cookie.getValue() in jsp how do I unescape the returned value Daniel (Buster) Nimmons Information Management Specialist Phone: (713) 845-4991 CELL #:(281) 224-8013 Fax #: (713) 640-8717 E-mail: [EMAIL

Re: Jsp engine compatible with Domino

2000-09-11 Thread Hines, Bill
I think that Domino already comes with some version of the WebSphere servlet engine. I think there is some option to replace the default sevlet engine with WebSphere if it isn't installed as the default. I'm pretty sure that it comes with Domino on the CD in case you want to do that. Bill Hines

Re: Unable to open taglibrary

2000-09-11 Thread Martin Cooper
You need a taglib directive in your JSP file. Try adding something like: %@ taglib uri="yourTagLibURI" prefix="yourTagPrefix" % at the beginning of your JSP. -- Martin Cooper Tumbleweed Communications At 06:27 PM 9/11/00 +0200, you wrote: Hi all, I have such an error and I don't know where

Re: JSP Visual Scripting Tool

2000-09-11 Thread Jackson, Corey
No it does not. This is simply an editor for you to type in your own code. It does color-coding of JSP syntax and java code and allows you to toggle that on and off. It also has support for Custom tags. This is a deploy feature in the tool that works with SilverStream app server, but you do not

Installing Tomcat on Linux

2000-09-11 Thread Lambert, Stephen : CO IR
I have a Redhat 6.2 /Apache web server with JRE1.2.2 installed. I have the following environment variables in my /root/.bash_profile TOMCAT_HOME=usr/local/jakarta-tomcat JAVA_HOME=usr/local/jre1.2.2/bin and /usr/local/jre1.2.2/bin has been added to the PATH. I am trying to install Tomcat.

Re: Installing Tomcat on Linux

2000-09-11 Thread Madigan, Brian
remove /bin from this line in your .bash_profile JAVA_HOME=usr/local/jre1.2.2/bin should be JAVA_HOME=usr/local/jre1.2.2 -Original Message- From: Lambert, Stephen : CO IR [mailto:[EMAIL PROTECTED]] Sent: Monday, September 11, 2000 3:07 PM To: [EMAIL PROTECTED] Subject: Installing Tomcat

Re: Installing Tomcat on Linux

2000-09-11 Thread Lambert, Stephen : CO IR
Thanks...I caught the typo in the JAVA_HOME variable soon after I sent the email. However, I'm still getting the same error when trying to run the startup.sh script! ./tomcat.sh: usr/local/jre1.2.2/bin/java: no such file or directory And yet when I change directory over to

Password Encryption.

2000-09-11 Thread Raj S
Hi, How can I store a password in LDAP?I have created an object class with mandatory attributes as Username and password.I just want to ensure that the passowrd is encrypted. I am using Netscape dir server4.1 and JSP's Any Suggestions. Thanks, Raj

Re: XML/XSL transformation in the server also JSPs and custom tags

2000-09-11 Thread Hans Bergsten
Tomasz Ratajczak wrote: Hi All, I am struggling with XML / XSL transformation in the server. The scenario in which the transformation needs to take place is as follows: Model 2 web architecture - controller servlet forwards requests to main JSPs which in turn jsp:include mini JSPs. All

Re: invoke excel/word from jsp/servlet

2000-09-11 Thread David M. Karr
"hua" == hua ge [EMAIL PROTECTED] writes: hua Hi, hua I have a html search result page (done in jsp/servlet) containing lines of hua found records. hua our client like to set up a save button on this page and it will invoke word hua or excel window which will contain all the result

Re: invoke excel/word from jsp/servlet

2000-09-11 Thread Antonio W. Lagnada
Also, make sure to read in the HTTP_ACCEPT client variables to find out whether the browser supports the type "application/vnd.ms-excel" -- Antonio W. Lagnada [EMAIL PROTECTED] - email This email address is specifically for JSP-Interest email list "David M. Karr" [EMAIL PROTECTED] wrote:

request.setAttribute + response.sendRedirect + JSP

2000-09-11 Thread Marc Krisjanous
Hi all, I have two Servlets: the first servlet (Servlet A) receives a request to increment a counter by a value given. Servlet A receives the request increments the counter and places the value in the HttpSession object. Servlet A then calls the Display Servlet (Servlet B) using

Re: session

2000-09-11 Thread Ming Owen
two differen session tomwang worte: hi ..guys. i get a question about session.i feel confused that when i open a browser,and the server make up a session object for it. then i open another new brower window,will the two browser hold the same session,or two differen session?