Re: Model 3 architecture + custom tags

2001-03-04 Thread Mayuresh Kadu
Kapil, please do try search engines. No offense meant but also make it a point to mark posts as OT (for OFF TOPIC) if they are so. Mayuresh -Original Message- From: A mailing list about Java Server Pages specification and reference [mailto:[EMAIL PROTECTED]]On Behalf Of Kapil Khanna Se

Re: Model 3 architecture + custom tags

2001-03-04 Thread Martin Cooper
This is NOT off-topic. Model 3 is an extension of Model 2 JSP architecture (surprise!). A good place to start would be the archives of this list: http://archives.java.sun.com/archives/jsp-interest.html You can read the original (as far as I'm aware) description of what Model 3 might mean here:

Re: Help: JSP Custom Tags

2001-03-04 Thread Craig R. McClanahan
Kapil Khanna wrote: > I intend to have very clean MVC separation in our web application. > > 1. Would it be wise to use Custom JSP tags ? > 2. Could you inform me about the pros and cons of using Custom JSP tags? > Although you can use custom tags with an MVC-organized applications, they are not

Re: nested taglibs

2001-03-04 Thread Craig R. McClanahan
Anoop Thyagarajan wrote: > is it possible to access the inner tags properties from the outer tag. > If possibe please tell me how to do it. > Not directly. In the doStartTag() method of the outer tag, the system has no knowledge of what the body content is going to be. Likewise, by the time th

Re: jsp:setProperty

2001-03-04 Thread Craig R. McClanahan
"Siegel, Craig" wrote: > In a jsp page, one can say > > Is there an equivalent way to do this from a servlet ? > The Struts Framework includes utility methods that perform this same task. Struts uses this to automatically populate the properties of form bean

Can you help with JSP example?

2001-03-04 Thread Roland Dong
Hi, I am trying to run an examples using beans from the book JavaServr Pages by larne Pekowsky. Could not get it work. I am using Tomcat3.21. Basically, beanexample1.jsp tries to get properties from Bean1.java. When I run it I got Error 500: Internal Servlet Error: org.apache.jasper.JasperExcept

Re: OT:rs.first()

2001-03-04 Thread Balkrishna R.Parab
Either you JDK or Database driver doesnot support JDBC2 API . -Original Message- From: Nishit Trivedi [SMTP:[EMAIL PROTECTED]] Sent: Friday, March 02, 2001 1:50 PM To: [EMAIL PROTECTED] Subject:[JSP-INTEREST] OT:rs.first()

Help : Urgent

2001-03-04 Thread kuttappan
Dear all, I am having trouble debugging this bean code which is in my = c:\tomcat\webapps\scjd\ShoppingCart folder: package ShoppingCart; import java.sql.*; public class PersistentConnection11 { private static Connection cn; private static String url; private s

Can anybody give me info about the Translator Object?

2001-03-04 Thread Sujoy Kumar Bose
Dear All, I need some information about the Translator object . It would be very helpful if you could provide me some URL to download the package of Translator Object developed at IBM website. For your information , Translator is a java package that helps in impl

JSP Enabled Server

2001-03-04 Thread iZone Infotech
Hi, I have made a LINUX server with Apache installed. What is the best solution to make it JSP enabled? Regards, Dantus === To unsubscribe: mailto [EMAIL PROTECTED] with body: "signoff JSP-INTEREST". For digest: mailto [E

Re: Can anybody give me info about the Translator Object?

2001-03-04 Thread Martin Cooper
Do you mean the XML Translator Generator? If so, I found the answer to your question by going to the AlphaWorks site (http://alphaworks.ibm.com), searching for "translator" and following two (very obvious) links. Perhaps you could have done the same? If that's not what you're looking for, could y

Copying result set

2001-03-04 Thread Venkat
Hi all If this a repeated post, please excuse me as i could not find any useful info from the archives I am looking for info. on copying/inserting a resultset. My case is I selct a resultset which may contain about 10 columns with 10+ rows, and is displayed, if the user choses to copy that, how

URGENT !!! Way off topic - File Filter

2001-03-04 Thread ramanathanp
Hi, How do we set a file filter (by default a particular file type should be selected when we choose a file using the browse button). i.e, instead of " All Files(*.*) " , something like *.jpg should be selected by default in the combo box)...

Re: pls solve my shopping cart problem

2001-03-04 Thread m venkateswara rao
Hi there.. Use one hidden variable called hdnBokID. When you click on this link, call a java script function some thing like following.. function fnnSubmit(var bookid) { document.frm1.hdnBokID.value=bookid; document.frm1.action="sampage.jsp"; document.frm1.submit(); } that's it..You a