servlet 1.x api

2003-03-04 Thread Najeem Lawal
hello, i need servlet 1.x api. could anyone mail it to me? Thank you. Regards, Najeem Lawal SoftWorks Limited === To unsubscribe: mailto [EMAIL PROTECTED] with body: signoff JSP-INTEREST. For digest: mailto [EMAIL

Re: On (free) IDEs

2003-03-04 Thread Sascha Kaufmann
hm, the official eclipse page says the opposite :) Does text highlighting work with HTML and JSP code? Srdjan Pantic wrote: O yes, excelent. -- Mit freundlichen Grssen best regards Sascha Kaufmann [EMAIL PROTECTED] PGP Key ID: 0x812EAEE7

Is an OR mapping tool helpful?

2003-03-04 Thread Donghyeok Kang
Hi, all... My project team are considering an OR mapping tool. I have looked into some open source projects developing OR mappings. I don't think it's easy to use them at all. Some of them seems to be more complex than entity beans of EJB. I wonder if an OR mapping tool is really helpful or

Printing problem for a arraylist in A JSP PAGE in Struts framework using JBUILDER

2003-03-04 Thread aRUN NANDY
Hi Folks, I am trying to print a combo box in Struts jsp which is array list and I getting this exception. Pl anybody can throw any light here. My sincere thanks in ADVANCE. exception which I am getting Error 500--Internal Server Error From RFC 2068 Hypertext Transfer Protocol -- HTTP/1.1:

problem using chart component

2003-03-04 Thread Amit Gautam
i m facing a problem while using a chart component in the Linux environment. it says error connecting to X11 server, problem in DISPLAY setting:locahost:0.0 any ideas? ==To unsubscribe: mailto [EMAIL PROTECTED] with body:

Re: problem using chart component

2003-03-04 Thread Josep R. Raurell
The problem is that te virtual machine can't connect with the xserver (for do some graphics work). There are diferent sol.lucions. If you have jsdk1.4, you can put this in your code (the first time, later d'ont work): System.setProperty(java.awt.headless,true); Other solucion is allow virtual

Re: Is an OR mapping tool helpful?

2003-03-04 Thread David Marquis
Hi, I found Hibernate to be less complex than EJBs and it does the job for what I need. You can reverse-engineer an existing database to create JavaBean classes from it, you can take existing javabeans and generate database-generation SQL code to create the tables, and a lot of other useful

Re: Printing problem for a arraylist in A JSP PAGE in Struts framework using JBUILDER

2003-03-04 Thread Karr, David
We'd have to see your JSP page and and the action code which populates the bean your page is using. -Original Message- From: aRUN NANDY [mailto:[EMAIL PROTECTED] I am trying to print a combo box in Struts jsp which is array list and I getting this exception. Pl anybody can throw any

Tag Lib Problem

2003-03-04 Thread Peter Dolukhanov
Dear All, I am having a very bizarre problem to do with Tag Libraries. I am currently designing a set of libraries to perform Simple database connections and operations. As a result, I need a ifNotNull tag, which takes a column attribute and only allows the nested contents to be parsed if the

Re: Tag Lib Problem

2003-03-04 Thread Karr, David
I would try returning EVAL_BODY_INCLUDE from doStartTag(). -Original Message- From: Peter Dolukhanov [mailto:[EMAIL PROTECTED] I am having a very bizarre problem to do with Tag Libraries. I am currently designing a set of libraries to perform Simple database connections and

Re: Tag Lib Problem

2003-03-04 Thread Bryan LaPlante
you need to write your body content into the jspWriter before it can be output to the page. Try putting the following code above your return statement in the doAfertBody method. try{ getBodyContent().writeOut(getPreviousOut()); getBodyContent().clearBody(); } catch(IOException e){

ClassNotFoundException

2003-03-04 Thread Shivani
i am using weblogic server and jsp's. i create a javabean which is called by the jsp page.example: with jsp:useBean id=OurBean scope=page class=UserDataBean/ !doctype html public -//w3c/dtd HTML 4.0//en html html i get following error.. Parsing of JSP File '/beanuser.jsp' failed:

Re: ClassNotFoundException

2003-03-04 Thread Karr, David
You have several problems. First, read up on the structure of a web application. You'll find that you need a WEB-INF directory (case sensitive) at the root of your application, and under that a classes directory. Your class files go in that directory, hopefully in a directory structure matching