No Subject

2001-05-30 Thread srinivas tadikonda
Hi Chintha Ratnasiri, You are calling java classes directly to JSP pages. This won't work. Instead of this you can folllow these steps. you write this code into your jsp page. jsp:useBean id="anyname" scope="request" class="pacakgename.classname" / then you can use this bean id. for example you

Re: URGENT How TO Handle (MULTIPLE FORMS)

2001-05-30 Thread Brad Cox
This is discussed at length at http://virtualschool.edu/wap. At 1:20 PM -0400 05/29/2001, jyothirmai porika wrote: Hi All, I have a jsp page with 3 forms. What i want to do is when the 2nd form is submitted, fist and third should not be submitted and vice versa. I tried to submit by calling

Please Help-me : TOMCAT startup error !

2001-05-30 Thread Gilson Nascimento D Elrei
Hello all, I'm receiving this error when i try to start my tomcat. I verified my TOMCAT_HOME and CLASSPATH and its ok. One week ago my installation was ok, coincidentally this problem has ocurred after i installed JSDK1.3.1 version. I tried to reinstall TOMCAT but i didn't get success. I have

Re: URGENT Multiple Forms

2001-05-30 Thread Jann VanOver
This is a HTML problem, not JSP. http://www.irt.org/ has a lot of answers to questions like this. -Original Message- From: jyothirmai porika [mailto:[EMAIL PROTECTED]] Sent: Tuesday, May 29, 2001 10:44 AM To: [EMAIL PROTECTED] Subject: URGENT Multiple Forms Hi All, I have a jsp page

Re: URGENT Multiple Forms

2001-05-30 Thread Nevarez, Benjamin
Do something like form action = /admin/controller method = post input type = submit value = Add input type = hidden name = action value = add /form form action = /admin/controller method = post input type = submit value = Logout input type = hidden name = action value =

New Windows

2001-05-30 Thread Wilhelm Colln
How can I submit a form into a new windows ? Wilhelm === To unsubscribe: mailto [EMAIL PROTECTED] with body: signoff JSP-INTEREST. For digest: mailto [EMAIL PROTECTED] with body: set JSP-INTEREST DIGEST. Some relevant FAQs

Database connection Pool in Tomcat

2001-05-30 Thread Chawla, Mehar
Hi all, Can anyone tell me how to implement JDBC connection pooling in Tomcat. Basically I want the following things : 1. Setup the connection pool in web.xml or server.xml with oracle user name and password set up in that file itself to avoid harcoding the username and password

Re: JSP compilation standardization ?

2001-05-30 Thread Joseph Ottinger
No, they don't all generate the same code, nor should they. They should, however, generate EQUIVALENT code. From: Bernard Granier [EMAIL PROTECTED] Reply-To: A mailing list about Java Server Pages specification and reference [EMAIL PROTECTED] To: [EMAIL PROTECTED] Subject: JSP compilation

CachedRowSet manipulation

2001-05-30 Thread Chris
Hi, I am creating a rowset in an sql database function. I then need to adjust each rows content and possible add extra columns before passing back to callable statement in my javabean. Can any one tell me what the sytax is to loop through my rowset and manipulate the rowset fields? Example

Parsing ..

2001-05-30 Thread Mayuresh Kadu
hello all, I am currently learning EJB's and tinkering around with J2EE. I have taken a small assignment onto myself. It goes as follows: To create a small web-based application (JSP/Servlets+EJB+Database) that does the following: 1) allows a user to upload the exported bookmarks (from IE/NN)

How to avoid the a line Break

2001-05-30 Thread matthias
Hy, please help me with this little problem. Everytime when i start a scriptlet % the compiled Sevlet from this jsp includes a line break out.write(\r\n);. Is it possible the avoid this behaviour. thank, in advance for your help Matthias

help

2001-05-30 Thread Sreenath Venkatramanappa
When will the session be removed from the server when the client left the page with out logoff, if it remains for specified amount of don't u think it is load on the server for that amount of time. Give me details. === To

Re: Database connection Pool in Tomcat

2001-05-30 Thread Brad Cox
See instructions and source code at http://virtualschool.edu. In particular Pool and PoolManager. At 4:41 PM -0400 05/29/2001, Chawla, Mehar wrote: Hi all, Can anyone tell me how to implement JDBC connection pooling in Tomcat. Basically I want the following things : 1. Setup the

Re: what's gnu/regexp/ ??

2001-05-30 Thread Christopher K. St. John
sufi malak wrote: Hi, could you please tell me what is the package gnu/regexp/ and where to find a the jar file. Go to: URL:http://www.google.com and enter gnu regexp into the text box, and then hit the Google Search button. Google is what's called a web search engine. Google is

No Subject

2001-05-30 Thread Geert Van Damme
Well, as always, it depends ;-) You might say that contract is used as a local variable and will never be accessed by 2 threads at the same time. However, several threads might use it: - If you store contracts in the application - If you store the contract in the session!!! - If you start using

mm.MySql jdbc driver for MySQL?

2001-05-30 Thread Clair e Simon
Hi, I would like to know where I could download mm.MySQL JDBC driver to connect to my mySQL with JSP? I'm on Windows 98. Bye Simon === To unsubscribe: mailto [EMAIL PROTECTED] with body: signoff JSP-INTEREST. For digest:

Re: Filtering Dynamic DropDownListBoxes

2001-05-30 Thread Gopi Mandava
This can be done with this JavaScript: http://www.hotscripts.com/Detailed/8140.html I would to solicit some advice on how to implement dynamic filtering of dropdown list boxes in my JSP. Here's the scenario, I have a form with 2 list boxes (listBoxA and listBoxB) whose contents is

Re: Database connection Pool in Tomcat

2001-05-30 Thread Daryani Santosh
Oracle provides classes for connection pooling. There is a good description of the classes and how to implement them. You can read more at http://technet.oracle.com/docs/products/oracle8i/doc_library/817_doc/java.817/a83724/connpoc2.htm Santosh Hans Bergsten [EMAIL PROTECTED] on

Re: How can I send a file from client to server?

2001-05-30 Thread srinivas tadikonda
Hi, You want to send a file from client machine to server machine for this you will use file upload component. If you want to download file Upload component go to http://www.servlets.com There free upload component is there. You can download upload zip file and change it ip address. Regards

Re: Database connection Pool in Tomcat

2001-05-30 Thread Hans Bergsten
Chawla, Mehar wrote: Hi all, Can anyone tell me how to implement JDBC connection pooling in Tomcat. Basically I want the following things : 1. Setup the connection pool in web.xml or server.xml with oracle user name and password set up in that file itself to avoid harcoding the

Re: URGENT How TO Handle (MULTIPLE FORMS)

2001-05-30 Thread Jann VanOver
Hmmm ... I don't see any JSP here. Please folks, let's try to re-route HTML and Javascript questions to other resources. We should all be learning to tell the difference between what can be done with JSP vs. what can be done with Javascript or HTML or Applets. Just answering these off topic

Excel and Servlets

2001-05-30 Thread Lorena Carlo
Hello all, Can yot tell me how can I construct an excel sheet with a servlet. I already know how to do it with jsp. I need to construct it with servlets, please help me if you know. Thanks in advance Lorena Carlo === To

Re: Good Afternoon

2001-05-30 Thread Jann VanOver
Is this JSP? -Original Message- From: Vadlmudi Harischandra [mailto:[EMAIL PROTECTED]] Sent: Tuesday, May 29, 2001 11:57 PM To: [EMAIL PROTECTED] Subject: Good Afternoon Hai Dear Bros sisters, Can Any one solve my problem..?? problem is.. I had one .html page ..

Re: what's gnu/regexp/ ??

2001-05-30 Thread srinivas tadikonda
Hi, The gnu.regexp package is a pure-Java implementation of a traditional (non-POSIX) NFA regular expression engine. Its syntax can emulate many popular development tools, including awk, sed, emacs, perl and grep You can download this the following link; http://www.cacas.org/~wes/java/

Re: what's gnu/regexp/ ??

2001-05-30 Thread Shawn Zhu
ditto, also the impression of being lazy, has no analytical skill, not self-motivated, lack of investigative skill, etc. =) -Original Message- From: Christopher K. St. John [mailto:[EMAIL PROTECTED]] Sent: Tuesday, May 29, 2001 11:36 PM To: [EMAIL PROTECTED] Subject: Re: what's

off topic( How to put package in JBuilder) ??

2001-05-30 Thread sufi malak
Hi, I am always using text editors and command line to write and compile java, and just installed JBuilder, because it's easy for managing and compiling classes within packages, I will applreciate if somebody can explain to me how (after creating a project myproject in JBuilder) and where to put

Re: execute a shell file from within a JSP page

2001-05-30 Thread Dmitry Namiot
check out Host scripts tag on http://coldjava.hypermart.net/jsp.htm -- Coldjava - server-side Java components http://coldjava.hypermart.net __ Get your own FREE, personal Netscape Webmail account today at

Good Afternoon

2001-05-30 Thread Vadlmudi Harischandra
Hai Dear Bros sisters, Can Any one solve my problem..?? problem is.. I had one .html page .. ther I had some code like this.. a href=http://ipaddr/subdir/.html...; onDblClick=function()img src=http://..;/a Now I want to go to next page , only on double clicking the

Re: Apache's problem

2001-05-30 Thread Mayuresh Kadu
i think the problem may be that u may have not added /WEB-INF/classes to the CLASSPATH Mayuresh -Original Message- From: A mailing list about Java Server Pages specification and reference [mailto:[EMAIL PROTECTED]]On Behalf Of Atilio Ranzuglia Sent: Thursday, May 24, 2001 10:28 PM To:

Re: New Windows

2001-05-30 Thread Erwin Kodiat
form action=anything.jsp target=_blank /form Erwin Kodiat Mitrais Software Development Center Bali, Indonesia Tel: +62 361 755025 Fax: +62 361 755024 http://www.mitrais.com This transmission is for the intended addressee only and is confidential information. If you have received this

No Subject

2001-05-30 Thread K.S.SREEDHAR KUMAR
hi buddies how to protect a jsp resource in tomcat 3.2.1? is there any way to protect the resource in some realms? do we have to fiddle with web.xml or server.xml , if tht's the case, plz specify the details. thanx in advance regards kasu

Re: signoff JSP-INTEREST

2001-05-30 Thread Athar, Zarina (MED, Exec Search)
signoff JSP-INTEREST -Original Message- From: Agarwal, Shekhar (MED, TCS America) Sent: Tuesday, May 29, 2001 5:03 AM To: [EMAIL PROTECTED] Subject: signoff JSP-INTEREST -Original Message- From: Narendra Kumar To: [EMAIL PROTECTED] Sent: 5/25/01 7:58 AM Subject: signoff

TOMCAT release 3.2.2 on older tomcat version

2001-05-30 Thread Gilson Nascimento D Elrei
Hello all, Is it possible to install tomcat 3.2.2 on my older tomcat installation without lost my settings, i don't want to setting cocoon on my environment again. If i install tomcat 3.2.2 on older tomcat directory it would work with my older settings ? thanks in advance.

Re: copy file from one loc to other

2001-05-30 Thread Hamid
Hi, I wanna copy a file/folder from one location to other. Is there any API or method available to do this. Hamid Hassan Software Engineer visualsoft -Original Message- From: A mailing list about Java Server Pages specification and reference [mailto:[EMAIL PROTECTED]]On Behalf Of Chris

Re: New Windows

2001-05-30 Thread Rodrigo Lopes
On Tue, 29 May 2001, Wilhelm Colln wrote: How can I submit a form into a new windows ? form name=form1 action=page.jsp target=new_window Wilhelm === To unsubscribe: mailto [EMAIL PROTECTED] with body: signoff

Re: Good Afternoon

2001-05-30 Thread Roger Cuddy
change the window.location as in: img src=print.gif ondblclick=window.location='http://localhost/test2.html' -Original Message- From: A mailing list about Java Server Pages specification and reference [mailto:[EMAIL PROTECTED]]On Behalf Of Vadlmudi Harischandra Sent: Wednesday, May 30,

Editor

2001-05-30 Thread Routledge, Carl
Does anyone have any suggestions on what Editor I should use to develop my JSP pages and Beans?? Cheers Carl === To unsubscribe: mailto [EMAIL PROTECTED] with body: "signoff JSP-INTEREST". For digest: mailto [EMAIL

Re: what's gnu/regexp/ ??

2001-05-30 Thread Stefán F. Stefánsson
the gnu.regexp package is a regular expression package. Regular expressions are useful in finding patterns in string. For example the regular expression a* finds zero or more occurrences of 'a' in the string. If you run the regular expression a* on the string bjklsdjlsdkjfd it would find

Re: mm.MySql jdbc driver for MySQL?

2001-05-30 Thread Paulo Chitas
Try http://mmmysql.sourceforge.net/ Paulo Chitas -Original Message- From: A mailing list about Java Server Pages specification and reference [mailto:[EMAIL PROTECTED]]On Behalf Of Clair e Simon Sent: quarta-feira, 30 de Maio de 2001 15:51 To: [EMAIL PROTECTED] Subject: mm.MySql jdbc

Re: Apache's problem

2001-05-30 Thread Rodrigo Lopes
On Wed, 30 May 2001, Mayuresh Kadu wrote: i think the problem may be that u may have not added /WEB-INF/classes to the CLASSPATH Tomcat does (or is supposed to do) this automatically when it runs. Mayuresh -Original Message- From: A mailing list about Java Server Pages

Re: execute a shell file from within a JSP page

2001-05-30 Thread Ling Ma[CONTRACTOR]
Try Runtime object. import java.io.*; String cmmd; Runtime rt = Runtime.getRuntime(); Process p = rt.exec( cmmd ); if( p.waitFor() != 0 ) { System.out.println(E, Error executing command Line: + cmmd); System.exit( -1 ); }

Re: what's gnu/regexp/ ??

2001-05-30 Thread Joseph Ottinger
There's no need to point all of this out. If it's not something that's obvious to everyone, then those blissfully unaware should be left in that condition. We've already tried to nudge *the unnamed person* in the direction of basic competence to no avail. Just my two cents. From: Shawn Zhu

JSP to javascript

2001-05-30 Thread Warty, Koustubh
Hello all, I am trying to show an alert box like ' This book already exists in the Cart ' . What I really want to do is to display the name of the book like - ' This book ABC already exists in the Cart ' . So I understand that I need to pass ABC from JSP to javascript ! But I am not able to

LDAP and JSP

2001-05-30 Thread Blaney, Colin (CAP, CORP Contractor)
I am trying to figure out how to plug into an LDAP using JSP. The ultimate goal is to extract the users and related info if anyone knows any better way. I've tried using various examples, including the WROX one, but to no avail. Anyone have an easier way to do this? ---

Re: Good Afternoon

2001-05-30 Thread Rafiq, Bobby S. (CORP)
Hi, one suggestion.. u could try to cancel the default behavior by setting the RETURN VALUE property of the event object ( in this case single click) to FALSE. And then use the double-click event to call another page. Hope that helps. -Original Message- From: Vadlmudi Harischandra

Re: mm.MySql jdbc driver for MySQL?

2001-05-30 Thread Christopher K. St. John
Clair e Simon wrote: I would like to know where I could download mm.MySQL JDBC driver to connect to my mySQL with JSP? URL:http://www.google.com Google is a search engine. It lets you search the web for keywords. Turn out, Google is currently the best engine for programming-related

Re: mm.MySql jdbc driver for MySQL?

2001-05-30 Thread Christopher K. St. John
Clair e Simon wrote: I would like to know where I could download mm.MySQL JDBC driver to connect to my mySQL with JSP? Also: a good rule of thumb is that if your post doesn't use the phrase JSP, then it might not really be on-topic for JSP-INTEREST. My bad. The message _did_ include

INFORMIX JDBC DRIVER

2001-05-30 Thread Diana Luz Buitrago B.
Hi, i installed the informix jdbc driver on a linux web server to make a connection to an informix database server and get results from queries for my jsp pages but the connection failed, i need to know if any software should be installed on the informix database server to make the connection

Re: Excel and Servlets

2001-05-30 Thread Shawn Zhu
write the exact syntax in a JSP first. Then I'll tell you. -Original Message- From: Lorena Carlo [mailto:[EMAIL PROTECTED]] Sent: Wednesday, May 30, 2001 1:24 AM To: [EMAIL PROTECTED] Subject: Excel and Servlets Hello all, Can yot tell me how can I construct an excel sheet

Re: URGENT How TO Handle (MULTIPLE FORMS)

2001-05-30 Thread jyothirmai porika
Well i think you dint understand the question. Let me explain you in detail. I have a JSP page which also as HTML in it(I think we all know that) and in that i have 3 forms(there are no 3 different submit button's it should get submitted based on some action/conditions). And each form talk's to

Re: JSP to javascript

2001-05-30 Thread Hans Bergsten
Warty, Koustubh wrote: Hello all, I am trying to show an alert box like ' This book already exists in the Cart ' . What I really want to do is to display the name of the book like - ' This book ABC already exists in the Cart ' . So I understand that I need to pass ABC from JSP to

Re: Editor

2001-05-30 Thread Erwin Kodiat
Initially consider JBuilder and/ or UltraEdit/ TextPad/EditPlus Erwin Kodiat Mitrais Software Development Center Bali, Indonesia Tel: +62 361 755025 Fax: +62 361 755024 http://www.mitrais.com http://www.mitrais.com/ This transmission is for the intended addressee only and is confidential

Corrupted or Missing JRE Servlet files

2001-05-30 Thread Celeste Haseltine
We recently had a problem with a virus on our development machines. After dealing with it, we began getting the following error when attempting to run any of our JSP pages on our local machines, ie //localhost. Even the simple Hello.jsp, which I use to test after setting up and configuring a

Re: Problems with for loop (!)

2001-05-30 Thread Ashish Shrestha
just replace Integer.valueOf(...) with Integer.parseInt(...) horwat wrote: If you look at the JDK API docs: http://java.sun.com/j2se/1.3/docs/api/index.html You will notice that Integer.valueOf() returns a new Integer object initialized to the value of the specified String. You're

Re: Database connection Pool in Tomcat

2001-05-30 Thread Ashish Shrestha
You can also try PoolMan (forgot the URL). You just use jdbc:poolman://yourdatabase instead of the real url. Configure poolman using the poolman.xml code the program as you normally do without a connection pool or cache. when you do someConnection.close() instead of closing it just returns it

Re: Database connection Pool in Tomcat

2001-05-30 Thread Franck Rasolo
--- Ashish Shrestha [EMAIL PROTECTED] wrote: You can also try PoolMan (forgot the URL). = http://www.codestudio.com/ __ Do You Yahoo!? Get personalized email addresses from Yahoo! Mail - only $35 a year! http://personal.mail.yahoo.com/

SDK 2 (HP-UX) installation

2001-05-30 Thread Nguyen, Thang P
Hi, Has anyone successfully installed SDK 2 (HP-UX) without being a root user? what would be the main difficulty? Thanks, tn === To unsubscribe: mailto [EMAIL PROTECTED] with body: signoff JSP-INTEREST. For digest: mailto

Re: mm.MySql jdbc driver for MySQL?

2001-05-30 Thread EJB ForAll
You can download it from http://mysql.com/downloads/contrib.html Regards Deepak Kumar http://www.geocities.com/deepak_38 --- Christopher K. St. John [EMAIL PROTECTED] wrote: Clair e Simon wrote: I would like to know where I could download mm.MySQL JDBC driver to connect to my mySQL

Re: Excel and Servlets

2001-05-30 Thread Surender Rana
please tell me how to do it with jsp. - Original Message - From: Lorena Carlo [EMAIL PROTECTED] To: [EMAIL PROTECTED] Sent: Wednesday, May 30, 2001 1:54 PM Subject: Excel and Servlets Hello all, Can yot tell me how can I construct an excel sheet with a servlet. I already know how

Re: Excel and Servlets

2001-05-30 Thread Aneesha
In JSP %@ page contentType=application/vnd.excel % Monthly Sales MonthsJanFebMar Sales12050130 In Servlet response.setContentType(application/vnd.excel) please tell me how to do it with jsp. - Original Message - From: Lorena Carlo [EMAIL PROTECTED] To:

Re: Excel and Servlets

2001-05-30 Thread K.S.SREEDHAR KUMAR
hey could u please let me know that how could u make excel sheets thru' jsp ks -Original Message- From: A mailing list about Java Server Pages specification and reference [mailto:[EMAIL PROTECTED]] Sent: Wednesday, May 30, 2001 1:54 PM To: [EMAIL PROTECTED] Subject: Excel and Servlets

Re: Editor

2001-05-30 Thread Jain Sharad
Hi although there r many editor which can be used. but try to use TextPad or EditPlus for developing yr beans and jsp's. regards sharad Sharad Jain [[EMAIL PROTECTED]] Siemens Information Systems Ltd. Plot 6A , Tower B, HUDA Sector 18. Gurgaon Haryana 122015 Tel. 916- 6343618-22. Ext.

Re: Editor

2001-05-30 Thread Chandralal Aruketty Velayudhan
try Forte for Java CE from sun -Original Message- From: Jain Sharad [mailto:[EMAIL PROTECTED]] Sent: Thursday, May 31, 2001 10:14 AM To: [EMAIL PROTECTED] Subject: Re: Editor Hi although there r many editor which can be used. but try to use TextPad or EditPlus for developing yr beans

Re: Excel and Servlets

2001-05-30 Thread Sachin S. Khanna
Amazing ! As we all know, Jsp's are Compiled into Servlets. If you can construct an excel sheet with a jsp (well thats not recommended though), you shouldn't be facing any problem doing the same with servlets. In case you still can't do that post the problem you are facing and someone would

[ANN] Coldjava's taglib ver. 1.1

2001-05-30 Thread Dmitry Namiot
Coldjava has released a new version for custom JSP taglib. You are welcome to check out the largest JSP tags collection here: http://coldjava.hypermart.net/jsp.htm -- Coldjava - server-side Java components http://coldjava.hypermart.net

Re: Excel and Servlets

2001-05-30 Thread EJB ForAll
Hi its easy, use out.println() method in servelet and print the content of the the jsp file in servelt. if you find any problem you can concat me at [EMAIL PROTECTED] Regards Deepak Kuamr http://www.geocities.com/deepak_38 --- Sachin S. Khanna [EMAIL PROTECTED] wrote: Amazing ! As we all

Re: Excel and Servlets

2001-05-30 Thread Arnab Nandi
Hi, I am creating a connection to an Oracle database from a JSP. The problem is I need to create a stored procedure, which I can do very easily, but after the procedure has been created the first time, how do I check whether it is there in the database when I run the JSP again? Thanks, Arnab

Re: Excel and Servlets

2001-05-30 Thread Panayotou, Michael
I think that you can execute a query on view user_objects like select 'x' fromuser_objects where object_name = 'myobject' regards Michael Panagiotou -Original Message- From: Arnab Nandi [mailto:[EMAIL PROTECTED]] Sent: Thursday, May 31, 2001 8:28