Re: Pre-Setting Browser-Passwords with JSP?

2001-05-29 Thread Dmitry Namiot
check out Authorization taglib 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

Re: JSP compilation standardization ?

2001-05-29 Thread Petr Jiricka
Bernard, the JSP specification does not prescribe how JSPs should be translated into servlets. It is completely up to the server what servlet code is generated. This supposedly allows servers to generate more efficient JSPs which take advantage of specific server features. I think the best

JSP Course

2001-05-29 Thread Routledge, Carl
Does anybody know of any Companies provide JSP training?? Carl Routledge Tel: +44 (0) 1697341322 Email: [EMAIL PROTECTED] === To unsubscribe: mailto [EMAIL PROTECTED] with body: "signoff JSP-INTEREST". For digest:

Re: Just say no to JSP

2001-05-29 Thread Joseph Ottinger
Examine your JSP pages for where they generate links to other pages. You'll find a href=filename.jsp strings there which is precisely my complaint. JSP treats pages the way html does, as filenames, not objects, which automatically prevents compile time link checking from working. I will? Ah, I

Re: jrun:sendmail

2001-05-29 Thread Jim Rueschhoff
You need to use the mail server address (URL). If you are going to handle email you MUST have an email server to connect to the internet somewhere. How are you handling email now (any email, not just Java email)? However you connect to get email now is what you need to use as the mail server

signoff JSP-INTEREST

2001-05-29 Thread Agarwal, Shekhar (MED, TCS America)
-Original Message- From: Narendra Kumar To: [EMAIL PROTECTED] Sent: 5/25/01 7:58 AM Subject: signoff JSP-INTEREST On Thu, 24 May 2001, Sreemushta, Santhosh (c) wrote: -Original Message- From: Mahale, Mahesh [mailto:[EMAIL PROTECTED]] Sent: Thursday, May 24, 2001 2:16 PM To:

Re: Pre-Setting Browser-Passwords with JSP?

2001-05-29 Thread Niraj Soni
visit this link http://www.tapsellferrier.co.uk/Servlets/FAQ/authentication.html hope this helps - Original Message - From: Frank R. Gross [EMAIL PROTECTED] To: [EMAIL PROTECTED] Sent: Monday, May 28, 2001 4:24 PM Subject: Pre-Setting Browser-Passwords with JSP? Hi there, Does

what's gnu/regexp/ ??

2001-05-29 Thread sufi malak
Hi, could you please tell me what is the package gnu/regexp/ and where to find a the jar file. Thanks _ Get your FREE download of MSN Explorer at http://explorer.msn.com

URGENT Multiple Forms

2001-05-29 Thread jyothirmai porika
Hi All, I have a jsp page with 3 forms. What i want to do is when the 2nd form is submited, fist and third should not be submited and vice varsa. I tried to submit by calling each submit based on condition, But it's not working. How can i handle multiple forms. Thank's -Jyothi

Re: JSP compilation standardization ?

2001-05-29 Thread Athar, Zarina (MED, Exec Search)
-Original Message- From: Bernard Granier [mailto:[EMAIL PROTECTED]] Sent: Tuesday, May 29, 2001 6:24 AM To: [EMAIL PROTECTED] Subject: Re: JSP compilation standardization ? signoff JSP-INTEREST Hi Petr, Great thanks for the answer. I read (too quickly ?) the specification 1.2 but I did

No Subject

2001-05-29 Thread chintha ratnasiri
Hi, I am developing a multi - user application using jsp, some java classes(eg.Contract) which I have in a package and import into the jsp page. Contract has methods for adding, updating, deleting etc. This is how I use this class in my jsp page. % Contract mycontract = new Contract();

execute a shell file from within a JSP page

2001-05-29 Thread Porta Joseph
Hi friends, sorry if the question isn't new but is there a way of executing a shell script (or another executable) from within a JSP page (like exec or system in Perl), get the result back and include it in the result stream from the JSP page to the webbrowser. thankyou, Joseph Porta

Re: URGENT How TO Handle (MULTIPLE FORMS)

2001-05-29 Thread Julian Doherty
Have separate form tags for each form. eg, form action=your1stActionHere 1st form fields go here. input type=submit /form form action=your2ndActionHere 2nd form fields go here. input type=submit /form form action=your3rdActionHere 3rd form fields go here.

Re: jrun:sendmail

2001-05-29 Thread Yee, Hung
Access to a mail server is required in order for JavaMail to work. See this particular faq below from Sun which is an answer to the question Does JavaMail include all the necessary mail servers?: http://www.java.sun.com/products/javamail/FAQ.html#incservers Other faq's about javamail:

Re: URGENT How TO Handle (MULTIPLE FORMS)

2001-05-29 Thread James Childers
jyothirmai porika wrote: 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 each submit based on condition, But it's not working. How can i handle multiple forms.

Re: Just say no to JSP

2001-05-29 Thread Brad Cox
Fields are to ease input validation, and don't apply to transport mechanisms at all. WAP applications send plain old html to browsers, not objects. Fields are a better way of building web applications, not a new transport protocol for driving browsers. For background tune into

Filtering Dynamic DropDownListBoxes

2001-05-29 Thread Randy San Miguel
Greetings! 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 retrieved from a JavaBean. What I want to accomplish is to dynamically filter

Re: JSP compilation standardization ?

2001-05-29 Thread Bernard Granier
Hi Petr, Great thanks for the answer. I read (too quickly ?) the specification 1.2 but I did not notice some things about JSP compilation. Bernard Granier Mr Ted 115 rue du Fbg Poissonniere 75009 Paris www.MrTed.com Tel : 33 1 55 31 02 65 mail : [EMAIL PROTECTED]

How can I send a file from client to server?

2001-05-29 Thread Pablo Sanchez
Hello, I want to send a file from client to server but the file is not in the hard drive of the client it is in a frame in the browser. The complete senquence is. 1. Send a file from server to client machine. 2. User modifies the file (for example a word file ) directly in the browser. 3. User

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

2001-05-29 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: URGENT How TO Handle (MULTIPLE FORMS)

2001-05-29 Thread K.S.SREEDHAR KUMAR
hey try to keep forms in 3 different frames and try out.. (i'm not sure about it's feasibility) ks -Original Message- From: A mailing list about Java Server Pages specification and reference [mailto:[EMAIL PROTECTED]] Sent: Tuesday, May 29, 2001 10:51 PM To: [EMAIL PROTECTED]

URGENT How TO Handle (MULTIPLE FORMS)

2001-05-29 Thread jyothirmai porika
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 each submit based on condition, But it's not working. How can i handle multiple forms. Thank's -Jyothi

Retrieving Primary Key after insert

2001-05-29 Thread Aneesha
Hi I have done this sucessfully with mySQL but was recently asked about whether this can be done in Microsoft Access. I don't think it can be done with the ODBC-JDBC Bridge. Can anybody prove me wrong? Is there another driver that will provide this functionality when working with Access? Many

Re: Just say no to JSP

2001-05-29 Thread Brad Cox
Thanks for the useful comments. I do wonder, however, what JSP was designed for unless for building dynamic web applications (aka server pages), but I'll let that pass. Based on this and other feedback, I've just added a The Problem link in the left column that focuses on describing the problem