Re: TAGLIB - Output doesn't seem to work

2001-11-22 Thread Mattias Jiderhamn
This isn't really an answer to your question, but a tip anyway. If you don't plan to manipulate the body of the tag, which you do not in the code below, you can consider inheriting TagSupport instead of BodyTagSupport. A normal (TagSupport) tag can have a body, but you can not get the contents of

ISP for jsp and MySQL - recommendations?

2001-11-22 Thread James Towell
Dear All As a new jsp programmer I want somewhere to try out some applications. I have used www.mycgiserver.com which is free to use, runs servlets, javabeans and jsp. It has helpful examples too, and a front page with all the FTP details etc. that a new subscriber needs. It also supports

Offtopic: Java class to Windows EXE

2001-11-22 Thread Hardeep Singh
Hi, I want to convert a java class file to a windows exe. Are there any free tools available for this (I have already looked at jexegen that packages with MS Java toolkit, but dont want to do a 19MB download, for a 1MB thing, mu connection is really slow!)? Thanx Hardeep Singh

Re: ISP for jsp and MySQL - recommendations?

2001-11-22 Thread David S. Moss
http://www.jwebhosting.net/service.jsp is a good one. -Original Message- From: A mailing list about Java Server Pages specification and reference [mailto:[EMAIL PROTECTED]]On Behalf Of James Towell Sent: 22 November 2001 11:34 To: [EMAIL PROTECTED] Subject: ISP for jsp and MySQL -

Tomcat

2001-11-22 Thread Henrik Johansson
How do I create a new webbapp? So that I can write http://localhost:8080/henke/ /Henke === To unsubscribe: mailto [EMAIL PROTECTED] with body: signoff JSP-INTEREST. For digest: mailto [EMAIL PROTECTED] with body: set

Re: Happy TurkeyDay

2001-11-22 Thread Jean-Francois Pinero
Title: RE: Happy TurkeyDay Sorry dude, us Canadians have already had our turkeyDay! :) -Original Message- From: Daniel Jaffa [mailto:[EMAIL PROTECTED]] Sent: Wednesday, November 21, 2001 6:35 PM To: [EMAIL PROTECTED] Subject: Happy TurkeyDay I know this is off topic. And it might

Please give me ideas on this

2001-11-22 Thread Lorena Carlo
Hello All, I have a problem, please give me some ideas to solve it. I have a web application that I have to modify, but I don't have the source code (.java), I just have the classes. I need to do some validations before calling the servlets on the web application. I can not change the

Re: Tomcat

2001-11-22 Thread Tom Troonbeeckx
read the tomcat manual! -Original Message- From: A mailing list about Java Server Pages specification and reference [mailto:[EMAIL PROTECTED]]On Behalf Of Henrik Johansson Sent: jeudi 22 novembre 2001 16:12 To: [EMAIL PROTECTED] Subject: Tomcat How do I create a new webbapp? So that I

Re: Please give me ideas on this

2001-11-22 Thread Jean-Francois Pinero
Title: RE: Please give me ideas on this What kind of validations do you need to do? Do you need to validate a form? If so just simple javascript will do depending on what do you want to validate... -Original Message- From: Lorena Carlo [mailto:[EMAIL PROTECTED]] Sent: Thursday,

SV: Tomcat

2001-11-22 Thread Henrik Johansson
I've tried that...I've copied an existing context parameter, and just changed the docbase and the path attribute... But I only get a 404 msg.. /Henke -Ursprungligt meddelande- Från: A mailing list about Java Server Pages specification and reference [mailto:[EMAIL PROTECTED]]För Tom

Re: Tomcat

2001-11-22 Thread Tom Troonbeeckx
You skipped the part to alter server.xml to configure tomcat nicely. -Original Message- From: A mailing list about Java Server Pages specification and reference [mailto:[EMAIL PROTECTED]]On Behalf Of Henrik Johansson Sent: jeudi 22 novembre 2001 16:45 To: [EMAIL PROTECTED] Subject: SV:

Re: Please give me ideas on this

2001-11-22 Thread David S. Moss
you can decompile class files with jad. make a web search for it as I don't know where you can get it from. This will output a *.jad file, just rename it to *.java and you're off. David -Original Message- From: A mailing list about Java Server Pages specification and reference

Re: Please give me ideas on this

2001-11-22 Thread Lorena Carlo
Title: RE: Please give me ideas on this Hello, The validations are that I have to do are not in the form. I have to do validations withsome values of the input with a database. Thanks in advance, Lorena Carlo - Original Message - From: Jean-Francois Pinero To: [EMAIL

Re: Please give me ideas on this

2001-11-22 Thread Lorena Carlo
Hi, Thanks for your idea, I am going to try it, but what do I do if the java classes are obfuscated? (when you decompile a Java class and it has some private funtions, simbols that change, and is difficult to read the code). Is there another servlet interaction tecnique that I can use to call

Re: Please give me ideas on this

2001-11-22 Thread David S. Moss
You spend an awful lot of time working them out. David. -Original Message- From: A mailing list about Java Server Pages specification and reference [mailto:[EMAIL PROTECTED]]On Behalf Of Lorena Carlo Sent: 22 November 2001 16:31 To: [EMAIL PROTECTED] Subject: Re: Please give me ideas on

Re: Please give me ideas on this

2001-11-22 Thread Carlos Vicente
Why not you make a class for every servlet wich extends it. In your servlet you make the validations, next you call the doPost o doGet of the parent original servlet. Next you remap the servlets in the xeb.xml in order to substitute the old servlet by the new. Youn must'n decompile the

Re: Please give me ideas on this

2001-11-22 Thread Lorena Carlo
Hello Carlos, Thanks for your idea, I use Websphere Application Server (Application Server) and I don't have the web.xml file, do you know how can I remap my servlets in websphere?. Any body know?. Thanks in advance Lorena - Original Message - From: Carlos Vicente [EMAIL PROTECTED]

session bean

2001-11-22 Thread Ricardo Rocha
I have a bean Im putting in the client session that I use to access the db In my web application, I use other beans that need to query the db and that should do it using the session bean all these other beans are called in jsp pages. My question is, how can I have my beans accessing

Re: Simple java question

2001-11-22 Thread Muneeswaran, Paramasivan (Cognizant)
Hi The following function in java.lang.Math can be more appropriate. i = java.lang.Math.round(( i * 100.0 ) ) / 100.0; Regards P a r a m. -Original Message- From: Antoni Reus [mailto:[EMAIL PROTECTED]] Sent: Wednesday, November 21, 2001 8:38 PM To: [EMAIL PROTECTED] Subject: Re:

input type=submit doesn't work....

2001-11-22 Thread Elisabete Cerqueira
Hello, could someone tell me why when I use: input type="image" name="submitFormButton" value="SUBMIT" src="javascript:void(0);" and submit this button, "submitFormButton" is different than null (which is correct) but if I use input type="submit" name="submitFormButton"

Re: Please give me ideas on this

2001-11-22 Thread Mattias Jiderhamn
Is there another servlet interaction tecnique that I can use to call first my validation servlet and then the other?. This is a good example of where you want to use a Filter. Have a look at http://java.sun.com/products/servlet/Filters.html By the way: So I don't know what to do, please

Re: Please give me ideas on this

2001-11-22 Thread Mattias Jiderhamn
Title: RE: Please give me ideas on this JavaScript validation of forms will definitely not be sufficient in all applications. JavaScript can almost always be maniupulated or bypassed. If the data is business critical you have to validate it on the server side also. An example from