RE: I Am So Dumb I Cannot Get Tag Libs to Work

2001-10-01 Thread Vel Periasamy
Do you have your web.xml entries right? Try isolating the problem, specify /WEB-INF/gs_tags.tld for the uri attribute in the taglib directive and see what happens. Hope this helps. -Velmurugan Periasamy http://www.aegis.net -Original Message- From: Hunter Hillegas [mailto:[EMAIL

RE: I Am So Dumb I Cannot Get Tag Libs to Work

2001-10-01 Thread Vel Periasamy
library -- tlibversion1.0/tlibversion !-- The JSP specification version required to function -- jspversion1.2/jspversion snip .. /taglib According to my books on taglibs, this should be valid, no? From: Vel Periasamy [EMAIL PROTECTED] Reply-To: [EMAIL PROTECTED] Date: Mon

How much JNDI support does Tomcat 3.2.3 provide?

2001-09-27 Thread Vel Periasamy
The following text is from J2EE specifications. ~~~ The following additional elements exist in the web application deployment descriptor to meet the requirements of web containers that are JSP pages enabled or part

RE: How to call EJB's from Servlet in a portable J2EE way?

2001-09-27 Thread Vel Periasamy
); Object obj = ctx.lookup(mybean); This is reference to the Borland AppServer, pls do check for the JBOSS implementation of it, u may have to include few class files in ur class path . regards asheesh - Original Message - From: Vel Periasamy [EMAIL PROTECTED] To: [EMAIL

How to call EJB's from Servlet in a portable J2EE way?

2001-09-26 Thread Vel Periasamy
We're planning to build a Servlet/JSP application(using Tomcat). We might also use EJB's if required (using JBoss). What's the best portable J2EE way to call EJB's on JBoss from a servlet in Tomcat? We have Tomcat 3.2.3. I understand this should be done by acquiring an initial context and

RE: Novice on Tomcat

2001-09-25 Thread Vel Periasamy
Someone has a guide to make easy the configuration of tomcat, specifically the server.xml and the applications into the webapps directory? Refer the application developer's guide in Tomcat documentation. how do i make a .war file? Jar utility can create a war file. The app dev guide talks about

Question on taglib directive and web.xml mapping

2001-09-24 Thread Vel Periasamy
When I specify the exact location of the tld file in the JSP itself, I have no problem. %@ taglib uri=/web-inf/tlds/aegiskafe.tld prefix=aegis % // In JSP file, No problem But I'm getting the 'Unable to open tag library error when I have the following configuration. %@ taglib uri=aegiskafe

RE: Question on taglib directive and web.xml mapping

2001-09-24 Thread Vel Periasamy
Thanks for the suggestion. I tried it, no success. Anything else I should check..? Thanks again. -Velmurugan Periasamy. -Original Message- From: D. Jay Newman [mailto:[EMAIL PROTECTED]] Sent: Monday, September 24, 2001 9:22 AM To: [EMAIL PROTECTED] Subject: Re: Question on taglib

RE: Won't read existing file

2001-09-24 Thread Vel Periasamy
Try putting the file into TOMCAT_HOME\bin directory. BTW, you can create a separate folder to hold the data files and the exact location of this folder can be specified in a properties file. Your servlet should read the properties file to get the exact location of the data file. This will give

RE: Won't read existing file

2001-09-24 Thread Vel Periasamy
Periasamy wrote: Date: Mon, 24 Sep 2001 17:24:50 -0400 From: Vel Periasamy [EMAIL PROTECTED] Reply-To: [EMAIL PROTECTED] To: '[EMAIL PROTECTED]' [EMAIL PROTECTED] Subject: RE: Won't read existing file Try putting the file into TOMCAT_HOME\bin directory. This is *not* a portable solution