SAX warnings when compiling JSPs using Taglibs - 5.0.30

2005-08-11 Thread Jean-Francois Beaulac
Hi, I don't know when this started to happen but suddenly those warning messages started to show up every time a JSP page is compiled. Has anyone got these message before, if yes how do we get rid of these? ParserUtils: warning org.xml.sax.SAXParseException: URI was not reported to parser for

Jakarta - taglibs

2005-08-05 Thread Kane Wilson
hi , Can we use jakarta Tag Libs to connecting to a database via JNDI and select an images from BLOB data field ? and aslo can we use that tags to having Links for each images ? That Links also stored in the database ? Can we display images randomly with the appropriate links ? if it is

Extra newline characters appenden to taglibs output?

2005-06-30 Thread Mikolaj Rydzewski
Hello, I use Tomcat 5.0.30. I have problems with taglibs generated from tagfiles. Tomcat appends extra newline character at end of tag output. Example: Tagfile with just one line, rally without newline characters, located in WEB-INF/tags/sample.tag with one word: Sample And test jsp page

RE: Extra newline characters appenden to taglibs output?

2005-06-30 Thread Raghupathy,Gurumoorthy
Can you send the code of the sampleTag ? -Original Message- From: Mikolaj Rydzewski [mailto:[EMAIL PROTECTED] Sent: 30 June 2005 10:30 To: Tomcat Users List Subject: Extra newline characters appenden to taglibs output? Hello, I use Tomcat 5.0.30. I have problems with taglibs

Re: Extra newline characters appenden to taglibs output?

2005-06-30 Thread Mikolaj Rydzewski
Raghupathy,Gurumoorthy wrote: Can you send the code of the sampleTag ? Everything is there: http://bsd.miki.eu.org/~wintermute/web/ -- Mikolaj Rydzewski [EMAIL PROTECTED] Becomo S.A. tel. (12) 2927104 smime.p7s Description: S/MIME Cryptographic Signature

Problem using Ditchnet Tab Taglibs

2005-04-28 Thread Terence Chan
Hi, Has anyone used this taglib before? I am not able to display the image of the tab. The author said it is a known issue when it deploys in Window. So does anyone have a solution for this? Tomcat ver 5.0.028 is used. Thanks Terence -- No virus found in this outgoing message. Checked by AVG

Re: Reflection for custom taglibs killing performance...

2005-04-18 Thread Dakota Jack
Why would you have to have an entirely new reflection for more than one database call? That sound like a design SNAFU to me. Looks to me like you should be having one use of reflection instead of 1000. Jack On 4/17/05, Kevin Burton [EMAIL PROTECTED] wrote: Dakota Jack wrote: 1000 on a

Re: Reflection for custom taglibs killing performance...

2005-04-18 Thread Kevin Burton
have a list of 500 items. And I call 4 taglibs for each item. This yields a HUGE page slowdown. Very pathetic actually. I can't believe anyone finds this acceptable. Kevin -- Use Rojo (RSS/Atom aggregator)! - visit http://rojo.com. See irc.freenode.net #rojo if you want to chat. Rojo is Hiring

Re: Reflection for custom taglibs killing performance...

2005-04-18 Thread Tim Funk
instead of 1000. I don't have to have it. Tomcat is *doing* it. Forget the DB. If I have a list of 500 items. And I call 4 taglibs for each item. This yields a HUGE page slowdown. Very pathetic actually. I can't believe anyone finds this acceptable. Kevin

Re: Reflection for custom taglibs killing performance...

2005-04-18 Thread Kevin Burton
Tim Funk wrote: Its not reflection killing you. For example, time this: %=System.currentTimeMillis()% c:forEach begin='0' end='${param.iterations}' ${more.cowbell} /c:forEach %=System.currentTimeMillis()% Where more is any java object and cowbell is a property (getCowbell()). In simple timing

Re: Reflection for custom taglibs killing performance...

2005-04-18 Thread Tim Funk
To execute a tag file requires creating some new objects which migh have an overhead not quite comparable to RequestDispatcher.include() Thats probably the issue. -Tim Kevin Burton wrote: Tim Funk wrote: Its not reflection killing you. For example, time this: %=System.currentTimeMillis()%

Re: Reflection for custom taglibs killing performance...

2005-04-18 Thread QM
On Mon, Apr 18, 2005 at 02:19:15PM -0700, Kevin Burton wrote: : So its clearly not JUST reflected methods its something else on top of : it What does your profiler report? -QM -- software -- http://www.brandxdev.net/ tech news -- http://www.RoarNetworX.com/ code scan --

Re: Reflection for custom taglibs killing performance...

2005-04-18 Thread Kevin Burton
QM wrote: On Mon, Apr 18, 2005 at 02:19:15PM -0700, Kevin Burton wrote: : So its clearly not JUST reflected methods its something else on top of : it What does your profiler report? -QM I can't for the life of me figure it out! It certainly reports that doTag is taking a LOT of time but

Re: Reflection for custom taglibs killing performance...

2005-04-18 Thread Dakota Jack
Why don't you break it down and find out where the time is going? On 4/18/05, Kevin Burton [EMAIL PROTECTED] wrote: QM wrote: On Mon, Apr 18, 2005 at 02:19:15PM -0700, Kevin Burton wrote: : So its clearly not JUST reflected methods its something else on top of : it What does your

Re: Reflection for custom taglibs killing performance...

2005-04-18 Thread Kevin Burton
Dakota Jack wrote: Why don't you break it down and find out where the time is going? So in summary.. now that I'm suspicious that its a tag instantiation issue I'm going to load up the webapp with FULL instrumentation... its about 8x slower but I think I'll need that level of granularity

Reflection for custom taglibs killing performance...

2005-04-17 Thread Kevin Burton
hit the page too much but we have tight loops over say 400 items or so and each uses 10-20 taglibs. This is resulting in about 800ms of page load time.!!! After rewriting the taglibs to use jspf includes the page load drops 10x to about 80ms. The bottleneck is gone and the pages essentially

Re: Reflection for custom taglibs killing performance...

2005-04-17 Thread QM
On Sun, Apr 17, 2005 at 03:44:59PM -0700, Kevin Burton wrote: : We've had a few bottlenecks in our code that have since been removed but : the remaining big bottleneck is Tomcat. The JSP engine is creating : compiled code that is heavily relying on reflection. : [snip] : : Is there ANY way to

Re: Reflection for custom taglibs killing performance...

2005-04-17 Thread Kevin Burton
QM wrote: On Sun, Apr 17, 2005 at 03:44:59PM -0700, Kevin Burton wrote: : We've had a few bottlenecks in our code that have since been removed but : the remaining big bottleneck is Tomcat. The JSP engine is creating : compiled code that is heavily relying on reflection. : [snip] : : Is there

Re: Reflection for custom taglibs killing performance...

2005-04-17 Thread Dakota Jack
1000 on a page? Really? That seems very odd to me given my experience. What would a page like that look like? Do you have examples? On 4/17/05, Kevin Burton [EMAIL PROTECTED] wrote: QM wrote: On Sun, Apr 17, 2005 at 03:44:59PM -0700, Kevin Burton wrote: : We've had a few bottlenecks in

Re: Reflection for custom taglibs killing performance...

2005-04-17 Thread Kevin Burton
Dakota Jack wrote: 1000 on a page? Really? That seems very odd to me given my experience. What would a page like that look like? Do you have examples? So psuedo code... - get a list of objects from your DB.. Say 500 - for each object tag A tag B tag C fn:length And so forth...

Jasper 2 problem with core taglibs in 5.5.7?

2005-02-16 Thread David Kennedy
Hi folks, I have a Ant build which includes pre-compilation of JSPs. This has been working happily during prototyping with Tomcat 5.5.4, but has broken now that we have moved to Tomcat 5.5.7 as the latest stable build, which worries me a lot. The error I get during the build is:

Re: Jasper 2 problem with core taglibs in 5.5.7?

2005-02-16 Thread Remy Maucherat
On Wed, 16 Feb 2005 16:40:25 +, David Kennedy [EMAIL PROTECTED] wrote: Hi folks, I have a Ant build which includes pre-compilation of JSPs. This has been working happily during prototyping with Tomcat 5.5.4, but has broken now that we have moved to Tomcat 5.5.7 as the latest stable build,

Re: Jasper 2 problem with core taglibs in 5.5.7?

2005-02-16 Thread David Kennedy
Remy Maucherat wrote: On Wed, 16 Feb 2005 16:40:25 +, David Kennedy [EMAIL PROTECTED] wrote: I have a Ant build which includes pre-compilation of JSPs. This has been working happily during prototyping with Tomcat 5.5.4, but has broken now that we have moved to Tomcat 5.5.7 [snip]

Re: Jasper 2 problem with core taglibs in 5.5.7?

2005-02-16 Thread David Kennedy
David Kennedy wrote: Remy Maucherat wrote: On Wed, 16 Feb 2005 16:40:25 +, David Kennedy [EMAIL PROTECTED] wrote: I have a Ant build which includes pre-compilation of JSPs. This has been working happily during prototyping with Tomcat 5.5.4, but has broken now that we have moved to Tomcat 5.5.7

TAGLIBS: Unresolved compilation problems

2004-11-14 Thread Ricci Angelo
Tomcat return the followed error and i can't understand why standard.jar seems to be in the right place (WEB-INF\lib) and the java code isn't change since my customized tag worked very well!!! So I can't recognize my error. Can you help me??? error output from tomcat:

taglibs

2004-10-15 Thread Edson Alves Pereira
Hello dudes, is there a way to make tomcat create just one instance of each taglib in JVM? Regards, Edson

caching taglibs

2004-10-14 Thread Edson Alves Pereira
Hello folks, i noticed that everytime tomcat-5.0.x needs a taglib it just create a new one, i´d like to cached all tag in my JSPs, how ca i do that? Is there any taglib container like we have with servlets? Regards, Edson

TagLibs must be cached

2004-10-13 Thread Edson Alves Pereira
Hello folks, i noticed that everytime tomcat-5.0.x needs a taglib it just create a new one, i´d like to cached all tag in my JSPs, how ca i do that? Is there any taglib container like we have with servlets? Regards, Edson

Re: TagLibs must be cached

2004-10-13 Thread Reynir Þór Hübner
I'm not sure I understand the question, but you know that you can use the enablePooling parameter to set if a jsp tag should be pooled or instanciated for each use. see : http://jakarta.apache.org/tomcat/tomcat-5.0-doc/jasper-howto.html it's set to true by default I think. hope it helps, reynir

TagLibs must be cached

2004-10-13 Thread Edson Alves Pereira
Hello folks, i noticed that everytime tomcat-5.0.x needs a taglib it just create a new one, i´d like to cached all tag in my JSPs, how ca i do that? Is there any taglib container like we have with servlets? Regards, Edson

Another doubt about taglibs

2004-08-13 Thread Edson Alves Pereira
Hey dudes, is this the correct way to mixe taglibs with JSP code? panfinance:tab-control panfinance:tab-sheet name=%= stTitle % tr th width=20%label%= stTitle %/label/th tdpanfinance:variant

Re: Another doubt about taglibs

2004-08-13 Thread Tim Funk
dudes, is this the correct way to mixe taglibs with JSP code? panfinance:tab-control panfinance:tab-sheet name=%= stTitle % tr th width=20%label%= stTitle %/label/th tdpanfinance:variant

Jspc and Taglibs

2004-08-05 Thread Thai DANG
I made several measure, had a look to the generate code by Jspc. It is clear that Taglibs reduce the performance (memory, speed) of your server. Speed because the first time access is longer and memory because a pool system is there to make the next pages being displayed quicker. So

Re: Jarring custom taglibs: looking for a file named taglib.tld

2004-07-26 Thread M.Hockings
in web.xml: taglib taglib-uri http://mycompany.com/taglibs/mytag /taglib-uri taglib-location /WEB-INF/lib/myjar.jar /taglib-location /taglib The file mytag.tld contains the following: ?xml version=1.0 encoding=ISO-8859-1 ? !DOCTYPE taglib PUBLIC -//Sun Microsystems, Inc.//DTD JSP

Jarring custom taglibs: looking for a file named taglib.tld

2004-06-11 Thread Keith Hankin
: taglib taglib-uri http://mycompany.com/taglibs/mytag /taglib-uri taglib-location /WEB-INF/lib/myjar.jar /taglib-location /taglib The file mytag.tld contains the following: ?xml version=1.0 encoding=ISO-8859-1 ? !DOCTYPE taglib PUBLIC -//Sun Microsystems, Inc.//DTD JSP Tag

Re: Jarring custom taglibs: looking for a file named taglib.tld

2004-06-11 Thread Adam Smith
taglibs: looking for a file named taglib.tld snip - To unsubscribe, e-mail: [EMAIL PROTECTED] For additional commands, e-mail: [EMAIL PROTECTED]

Re: Jarring custom taglibs: looking for a file named taglib.tld

2004-06-11 Thread Keith Hankin
Subject: Re: Jarring custom taglibs: looking for a file named taglib.tld You could just put the tld in WEB-INF and reference it from the web.xml. This is the entry in my web.xml for the taglib I use all the time: taglib taglib-uri http://localhost/myapp/asl /taglib-uri

Re: Where to put tld files for jarred custom taglibs?

2004-06-07 Thread Ariel Valentin
] From: Keith Hankin [EMAIL PROTECTED] Reply-To: Tomcat Users List [EMAIL PROTECTED] To: Tomcat Users List [EMAIL PROTECTED] Subject: Re: Where to put tld files for jarred custom taglibs? Date: Mon, 7 Jun 2004 11:17:54 +0530 The manifest doesnt' really have anything in it. Just the default

Re: Where to put tld files for jarred custom taglibs?

2004-06-06 Thread Keith Hankin
Subject: Re: Where to put tld files for jarred custom taglibs? Keith, Have you tried unpacking the jar and see if everything is packed in the correct directory structure and that the Manifest file has the correct info? Mr. Ariel S. Valentin mailto: [EMAIL PROTECTED] From: Keith Hankin

Re: Where to put tld files for jarred custom taglibs?

2004-06-05 Thread Keith Hankin
PROTECTED] To: [EMAIL PROTECTED] Sent: Tuesday, June 01, 2004 5:40 PM Subject: Re: Where to put tld files for jarred custom taglibs? STOCKHOLM, Raymond wrote: How did you locate your tld in your JSP ? something like this ? %@ taglib uri=/WEB-INF/tld/form-tags.tld prefix=ftags

Re: Where to put tld files for jarred custom taglibs?

2004-06-05 Thread Ariel Valentin
] To: Tomcat Users List [EMAIL PROTECTED] Subject: Re: Where to put tld files for jarred custom taglibs? Date: Sat, 5 Jun 2004 17:59:38 +0530 I read the article, did what it said exactly, but it *still* doesn't work. It keeps complaining that it cannot find taglib.tld, but my tld file is not named taglib.tld

Where to put tld files for jarred custom taglibs?

2004-06-01 Thread Keith Hankin
I have created a custom taglib, extending TagSupport. I have packaged the class files into a jar. I have also added the tld file to this jar. I then place this jar file in my war file under WEB-INF/lib. However, no matter where I place the tld file in the jar, it seems that Tomcat is unable to

RE: Where to put tld files for jarred custom taglibs?

2004-06-01 Thread STOCKHOLM, Raymond
taglibs? I have created a custom taglib, extending TagSupport. I have packaged the class files into a jar. I have also added the tld file to this jar. I then place this jar file in my war file under WEB-INF/lib. However, no matter where I place the tld file in the jar, it seems that Tomcat

Re: Where to put tld files for jarred custom taglibs?

2004-06-01 Thread Keith Hankin
for jarred custom taglibs? How did you locate your tld in your JSP ? something like this ? %@ taglib uri=/WEB-INF/tld/form-tags.tld prefix=ftags % -Message d'origine- De : Keith Hankin [mailto:[EMAIL PROTECTED] Envoyé : mardi 1 juin 2004 08:31 À : [EMAIL PROTECTED] Objet : Where

RE: Where to put tld files for jarred custom taglibs?

2004-06-01 Thread STOCKHOLM, Raymond
- De : Keith Hankin [mailto:[EMAIL PROTECTED] Envoyé : mardi 1 juin 2004 09:01 À : Tomcat Users List Objet : Re: Where to put tld files for jarred custom taglibs? I locate it as follows: %@ taglib uri=http://website.com/mypkg/mytags.tld; prefix=mypref % , then in my web.xml have the following

Re: Where to put tld files for jarred custom taglibs?

2004-06-01 Thread Keith Hankin
taglibs? web.xml : taglib taglib-uriform-tags/taglib-uri taglib-location/WEB-INF/tld/form-tags.tld/taglib-location /taglib JSP : %@ taglib uri=/WEB-INF/tld/form-tags.tld prefix=ftags % I declared as above, and it worked for me, don't ask me why

RE: Where to put tld files for jarred custom taglibs?

2004-06-01 Thread STOCKHOLM, Raymond
] Envoyé : mardi 1 juin 2004 09:19 À : Tomcat Users List Objet : Re: Where to put tld files for jarred custom taglibs? Where did you put the tld file in your jar file? Did you also put the jar into a war file? - Original Message - From: STOCKHOLM, Raymond [EMAIL PROTECTED] To: Tomcat Users

Re: Where to put tld files for jarred custom taglibs?

2004-06-01 Thread Keith Hankin
: RE: Where to put tld files for jarred custom taglibs? I put the tld file in $MYAPPLICATION/WEB-INF/tld/form-tags.tld My application is delivered as a war (which tomcat expands), and contains $MYAPPLICATION/WEB-INF/tld/form-tags.tld (I don't have any other jar, except the war) -Message

Re: Where to put tld files for jarred custom taglibs?

2004-06-01 Thread M.Hockings
files for jarred custom taglibs? I have created a custom taglib, extending TagSupport. I have packaged the class files into a jar. I have also added the tld file to this jar. I then place this jar file in my war file under WEB-INF/lib. However, no matter where I place the tld file in the jar

Re: Error using taglibs - unable to find setter

2004-05-26 Thread Ravi Mutyala
Thanx Larry. It helped!! / Ravi Larry Isaacs wrote: The following comes from the Tomcat 3.3.x faq file, which I assume would apply in your situation: Q. I have a bean with a property whose second letter is capitalized. Why won't my JSP page that uses this bean compile? A. This may not happen

Re: Error using taglibs - unable to find setter

2004-05-25 Thread M.Hockings
Is the settter for dType setdType(String value) or setDType(String value)? I think that it will need to be the latter. Mike Ravi Mutyala wrote: Hi, I created a tag which extends from the html:text tag. I'm using tomcat 4.1.30. when I use this tag, I get the following error.

Re: Error using taglibs - unable to find setter

2004-05-25 Thread Ravi Mutyala
M.Hockings wrote: Is the settter for dType setdType(String value) or setDType(String value)? I think that it will need to be the latter. Mike Mike, the setter for dType is this. public void setDType(String dType) { this.dType = dType; } Ravi Mutyala wrote: Hi, I created a tag which extends

RE: Error using taglibs - unable to find setter

2004-05-25 Thread Larry Isaacs
25, 2004 8:02 AM To: Tomcat Users List Subject: Re: Error using taglibs - unable to find setter M.Hockings wrote: Is the settter for dType setdType(String value) or setDType(String value)? I think that it will need to be the latter. Mike Mike, the setter for dType

Re: Error using taglibs - unable to find setter

2004-05-25 Thread Jack Lauman
I have a similar problem with a simpler situation. I have a simple JSTL tag and bean that alternate the colors in a table. If delpoyed under JBoss 3.0.7 with Tomcat 4.1.24 it works. If I deploy it under JBoss 3.2.3RC2 with Tomcat 5.0.24 I get the same Unable to find setter method for

Error using taglibs - unable to find setter

2004-05-24 Thread Ravi Mutyala
Hi, I created a tag which extends from the html:text tag. I'm using tomcat 4.1.30. when I use this tag, I get the following error. - org.apache.jasper.JasperException: /win_002_PMT_Manage_Cstmr_Prtfl.jsp(70,26) Unable to find setter method for

Taglibs help needed???

2004-04-10 Thread Kumar, Sumit
Hello All, I am having some strange problem using taglibs in tomcat 4.1.27 and jdk1.4. My webapp named 'hris', works well without taglibs. I am using 2.3 dtd which i refer as http://java.sun.com/j2ee/dtds/web-app_2_3.dtd. I have downloaded the taglibs standard library (not standard-1.0) from

Autoreply: Taglibs help needed???

2004-04-10 Thread DirectXtras
); id 1081636277125; Sat, 10 Apr 2004 18:31:17 -0400 Received: by SOGEX01 with Internet Mail Service (5.5.2653.19) id 15BABCYD; Sat, 10 Apr 2004 18:33:44 -0400 Message-ID: [EMAIL PROTECTED] From: Kumar, Sumit [EMAIL PROTECTED] To: [EMAIL PROTECTED] Subject: Taglibs help needed??? Date: Sat, 10

Re: taglibs moving from 4.X to 5.X

2004-01-10 Thread Andreas Steinwachs
Hello Daniel, try typejava.lang.String/type instead of typeString/type in your TLDs. This worked for me. Best regards, Andreas - To unsubscribe, e-mail: [EMAIL PROTECTED] For additional commands, e-mail: [EMAIL

Re: Problem in rtexprvalue-attributes with taglibs in Tomcat 5.0.16

2004-01-10 Thread Andreas Steinwachs
Hello, try typejava.lang.String/type instead of typeString/type in your TLDs. This worked for me. Best regards, Andreas

Re: taglibs moving from 4.X to 5.X !!! lots of text

2003-12-26 Thread daniel
List [EMAIL PROTECTED] Sent: Thursday, December 25, 2003 5:11 AM Subject: Re: taglibs moving from 4.X to 5.X [EMAIL PROTECTED] wrote: I have a large group of tag libs that have been working fine on tomcat 4.X versions. I needed to upgrade to tomcat 5.X versions do to new features. Well

Re: taglibs moving from 4.X to 5.X

2003-12-25 Thread Remy Maucherat
[EMAIL PROTECTED] wrote: I have a large group of tag libs that have been working fine on tomcat 4.X versions. I needed to upgrade to tomcat 5.X versions do to new features. Well to make this short my tag libs no longer work on 5.X versions. When i try to run them i get...

taglibs moving from 4.X to 5.X

2003-12-24 Thread daniel
I have a large group of tag libs that have been working fine on tomcat 4.X versions. I needed to upgrade to tomcat 5.X versions do to new features. Well to make this short my tag libs no longer work on 5.X versions. When i try to run them i get... org.apache.jasper.JasperException:

Problem in rtexprvalue-attributes with taglibs in Tomcat 5.0.16

2003-12-08 Thread Yrjö Hirvonen
String typed rtexprvalue-taglib-attributes worked well with tomcat 4.1xx. Running same taglibs with tomcat 5.0.16 gives an error like org.apache.jasper.JasperException: /ksite/index.jsp(91,4) Unknown attribute type (String) for attribute lan. Is there any workaround to this Thanks

JspC and taglibs

2003-12-05 Thread Edson Alves Pereira
Hello folks, i´m trying to compile my JSP pages offline, using an ant´s build script. But it seems that JspC cannot find my taglibs, how can put a classpath to it or make JspC see my taglibs? Regards, Edson

taglibs - writing dynamically tag´s name

2003-10-02 Thread Edson Alves Pereira
Hello dudes, i have some tags to manipulate primitive types like, fieldInt, fieldText, fieldDate, etc. My problem is, i´d like in some way dynamic define those tags dynamically in my JSP page, because i´m trying to create so template pages and some field´s types i would pass as request

taglibs - strange behavior

2003-09-29 Thread Edson Alves Pereira
Hello folks, tomcat-4.1.24 just recognize our taglibs if we put the .tld file inside a directory named WEB-INF, i mean, if you named this directory like web-inf, Web-Inf or WeB-InF and so on, Tomcat ignore, even inside M$-Windows this happen.

RE: taglibs - strange behavior

2003-09-29 Thread Shapira, Yoav
Pereira [mailto:[EMAIL PROTECTED] Sent: Monday, September 29, 2003 3:10 PM To: 'Tomcat-User List' Subject: taglibs - strange behavior Hello folks, tomcat-4.1.24 just recognize our taglibs if we put the .tld file inside a directory named WEB-INF, i mean, if you named this directory like web

RE: taglibs - strange behavior

2003-09-29 Thread Edson Alves Pereira
List Assunto: RE: taglibs - strange behavior Howdy, Like most strings in java, the WEB-INF directory name is case-sensitive. WEB-INF is not the same as Web-Inf or any other case permutation. The former is the one required by the servlet specification. Yoav Shapira Millennium

RE: taglibs - strange behavior

2003-09-29 Thread Shapira, Yoav
Message- From: Edson Alves Pereira [mailto:[EMAIL PROTECTED] Sent: Monday, September 29, 2003 3:32 PM To: 'Tomcat Users List' Subject: RE: taglibs - strange behavior So if i write web-inf or web-INF in my web.xml the directory name must be the same, even with Windows. Isn´t

RE: taglibs - strange behavior

2003-09-29 Thread Edson Alves Pereira
Ok, now i´m understand. Thank you for your help. -- De: Shapira, Yoav[SMTP:[EMAIL PROTECTED] Responder:Tomcat Users List Enviada: segunda-feira, 29 de setembro de 2003 16:35 Para: Tomcat Users List Assunto: RE: taglibs - strange behavior

Tomcat with embedded java database and taglibs

2003-09-25 Thread Peter Tornberg
Hello, I'm currently looking into what solution to use for a web application I'm about to create. What I want is: - Taglib support. core, sql, and maybe things outside the standard-taglib - Pure Java database to run embedded in the application for easy deployment. Does anyone have any

taglibs inside another taglib

2003-08-10 Thread Edson Alves Pereira
Hello folks, how do i could do this in right way? panfinance:numero name=edCPF size=11 value=panfinance:getVar_CPF/panfinance:get/

Jasper Compilation with Ant including custom taglibs

2003-03-24 Thread johannes . fiala
anybody else tried to compile JSPs using custom taglibs? === nodigsig.jsp === %@ page language=java contentType=text/html % %@ taglib prefix=c uri = http://java.sun.com/jstl/core; % % System.out.println(executing scriptlet code); % html body Ihre Anfrage wurde

Fw: Jasper Compilation with Ant including custom taglibs

2003-03-24 Thread johannes . fiala
To make the picture more complete: it seems that the trouble the Jasper compiler doesn't find the /WEB-INF/web.xml file. But how can I tell it where to find it (simply creating it directly under my project directory didn't work)? If I include other custom taglibs with reference to e.g. /WEB

Hi taglibs .. is this a tomcat or JSP problem or feature ?

2003-03-11 Thread Mufaddal Khumri
Hi, I have a custom tag. Inside the tag i am accessing a database and populating a vector. The contents of the vector are then rendered as HTML by using the tag on a JSP page. Problem is that when i add new data to the database and refresh the page being rendered. It does not show me the new

Re: Taglibs are not interpreted with Tomcat 4.1.18

2003-02-13 Thread THG
On Wed, 12 Feb 2003 18:22:26 sorry, i meant /WEB-INF/classes/org/sourcepark/taglibs/kato/db_dropdown.class and not /WEB-INF/classes/org.sourcepark.taglibs.kato.db_dropdown.class. It's already there... with Tomcat 3.2.1 there are no problems, but with Tomcat 4.1.18, the taglibs

Re: Taglibs are not interpreted with Tomcat 4.1.18

2003-02-13 Thread Henning Heil
Hello Thorsten, List, I am far away form being a pro with this but it seems to me I have the same problem with an out of the box app. It's only a beta but all concerning taglibs seems fine within the app (it's running for other people on other tomcat versions) and on the other hand the taglibs

Taglibs are not interpreted with Tomcat 4.1.18

2003-02-12 Thread Thorsten Giesecke
, because the web-application is unpacked (no jar file). is there a change between tomcat 3.x and 4.x in the definition of taglibs / tld'S or the loading of taglibs. sincerly thorsten ps the jsp servlet is only included in the web.xml file which is located in /CATALINA_HOME/conf

Re: Taglibs are not interpreted with Tomcat 4.1.18

2003-02-12 Thread THG
On Wed, 12 Feb 2003 11:53:40 Sean Dockery wrote: What about your tag-class definition? THe tld descriptors are located in /WEB-INF (see prev. message), the classes are located in /WEB-INF classes (matching the tld definitions). the taglibs are included in /WEB-INF/web.xml (at the end

Re: Taglibs are not interpreted with Tomcat 4.1.18

2003-02-12 Thread Sean Dockery
, February 12, 2003 12:48 Subject: Re: Taglibs are not interpreted with Tomcat 4.1.18 On Wed, 12 Feb 2003 11:53:40 Sean Dockery wrote: What about your tag-class definition? THe tld descriptors are located in /WEB-INF (see prev. message), the classes are located in /WEB-INF classes (matching

Re: Taglibs are not interpreted with Tomcat 4.1.18

2003-02-12 Thread THG
On Wed, 12 Feb 2003 13:13:09 Sean Dockery wrote: Uh, no. tagclass is not defined anywhere in your original message. You omitted it. tag tagclasswhat did you put in here?/tagclass /tag ?xml version=1.0 encoding=ISO-8859-1 ? !DOCTYPE taglib PUBLIC -//Sun Microsystems, Inc.//DTD JSP Tag

Re: Taglibs are not interpreted with Tomcat 4.1.18

2003-02-12 Thread Sean Dockery
Your actual tag class implementation should be located in... /WEB-INF/classes/org/sourcepark/taglibs/kato/db_dropdown.class ...which is very different from your... /WEB-INF/classes/org.sourcepark.taglibs.kato.db_dropdown.class This also means that the first line in your db_dropdown.java source

More comments on taglibs, struts and architecture.

2003-01-21 Thread Tolles, James
Web tier Architecture: Abstract: Handling page logic tier - scriptlets not so bad; struts needs page tier. Is seems to me that the MVC model 2 architecture fails to address an additional stage of logic. Beyond the business logic, there is really a whole additional tier - the page layout logic

jakarta-taglibs DBTags

2003-01-06 Thread Vladimer Shioshvili
i know this is not a tomcat problem, but i think someone will be able to help me out on this from this list.. i am trying to use dbTags and access Oracle DB, but i think i am not getting the url right.. i tried jdbc:oracle:thin:@server:port:service but doesn't seem to like it.. any help

RE: jakarta-taglibs DBTags

2003-01-06 Thread Ted Haynes
jdbc:oracle:thin:@machine:port:database -Original Message- From: Vladimer Shioshvili [mailto:[EMAIL PROTECTED]] Sent: Monday, January 06, 2003 1:44 PM To: Tomcat Users List Subject: jakarta-taglibs DBTags i know this is not a tomcat problem, but i think someone will be able to help me

RE: jakarta-taglibs DBTags

2003-01-06 Thread Vladimer Shioshvili
thanks... At 01:52 PM 1/6/2003, you wrote: jdbc:oracle:thin:@machine:port:database -Original Message- From: Vladimer Shioshvili [mailto:[EMAIL PROTECTED]] Sent: Monday, January 06, 2003 1:44 PM To: Tomcat Users List Subject: jakarta-taglibs DBTags i know this is not a tomcat problem

JSP: Can you assign default classes and taglibs to webapp?

2002-12-31 Thread Gavin, Rick
Hi All, Is it possible to assign default class includes and/or tag libs to an entire webapp? I assume i could put all of the declerations in an include but it would be cleaner if there was a property of a webapp to assign defaults. Thanks for any help, Rick -- To unsubscribe, e-mail:

Re: TagLibs in Tomcat3.3.1

2002-11-25 Thread Craig R. McClanahan
On Sun, 24 Nov 2002, Bill Barker wrote: Date: Sun, 24 Nov 2002 23:31:27 -0800 From: Bill Barker [EMAIL PROTECTED] Reply-To: Tomcat Users List [EMAIL PROTECTED] To: [EMAIL PROTECTED] Subject: Re: TagLibs in Tomcat3.3.1 Craig R. McClanahan [EMAIL PROTECTED] wrote in message [EMAIL

Re: TagLibs in Tomcat3.3.1

2002-11-24 Thread Bill Barker
at Users List [EMAIL PROTECTED] Subject: TagLibs in Tomcat3.3.1 Hi all, Is it possible to write TagLibs in Tomcat3.3.1 version. Yes, as long as your tags conform to the JSP 1.1 specification that Tomcat 3.3.1 implements. I must have been tranported into some alternative universe ;-). Lik

TagLibs in Tomcat3.3.1

2002-11-23 Thread Laxmikanth M.S.
Hi all, Is it possible to write TagLibs in Tomcat3.3.1 version. thanks laxmikanth * Disclaimer: The information in this e-mail and any attachments is confidential / privileged. It is intended solely for the addressee or addressees

Re: TagLibs in Tomcat3.3.1

2002-11-23 Thread Craig R. McClanahan
On Sat, 23 Nov 2002, Laxmikanth M.S. wrote: Date: Sat, 23 Nov 2002 14:41:11 +0530 From: Laxmikanth M.S. [EMAIL PROTECTED] Reply-To: Tomcat Users List [EMAIL PROTECTED] To: Tomcat Users List [EMAIL PROTECTED] Subject: TagLibs in Tomcat3.3.1 Hi all, Is it possible to write TagLibs

Re: Shared JSP taglibs

2002-10-05 Thread Nikola Milutinovic
Craig R. McClanahan wrote: In my experience, the (small) memory savings of putting classes into /shared/lib (or /common/lib) is not worth the hassles it brings: What about building a server-wide environment? Suppose you have a set of Tag Libraries that you either trust or wish to enforce

Re: Shared JSP taglibs

2002-10-04 Thread Craig R. McClanahan
On Fri, 4 Oct 2002, shanmugampl wrote: Date: Fri, 04 Oct 2002 09:46:32 +0530 From: shanmugampl [EMAIL PROTECTED] Reply-To: Tomcat Users List [EMAIL PROTECTED], [EMAIL PROTECTED] To: Tomcat Users List [EMAIL PROTECTED] Subject: Re: Shared JSP taglibs I dont think that this solution

RE: Shared JSP taglibs

2002-10-04 Thread Tim Moore
- From: Craig R. McClanahan [mailto:[EMAIL PROTECTED]] Sent: Friday, October 04, 2002 1:09 PM To: Tomcat Users List; [EMAIL PROTECTED] Subject: Re: Shared JSP taglibs On Fri, 4 Oct 2002, shanmugampl wrote: Date: Fri, 04 Oct 2002 09:46:32 +0530 From: shanmugampl [EMAIL

Shared JSP taglibs

2002-10-03 Thread Tim Moore
? If so, can I add my own taglibs to the map of known taglibs? We have several webapps running on the same server that use the same tag libraries. Currently, we have the tag handler classes in a shared JAR, and copy the TLD files into each webapp. If I could avoid having to do the latter, that would

Re: Shared JSP taglibs

2002-10-03 Thread Craig R. McClanahan
file into /WEB-INF/lib. Craig On Thu, 3 Oct 2002, Tim Moore wrote: Date: Thu, 3 Oct 2002 18:11:16 -0400 From: Tim Moore [EMAIL PROTECTED] Reply-To: Tomcat Users List [EMAIL PROTECTED] To: [EMAIL PROTECTED] Subject: Shared JSP taglibs From the JavaServer Pages 1.2 Specification: JSP.7.3.5

Re: Shared JSP taglibs

2002-10-03 Thread shanmugampl
-0400 From: Tim Moore [EMAIL PROTECTED] Reply-To: Tomcat Users List [EMAIL PROTECTED] To: [EMAIL PROTECTED] Subject: Shared JSP taglibs From the JavaServer Pages 1.2 Specification: JSP.7.3.5 Implicit Map entries from the Container The container may also add additional entries to the taglib map

4.01 vs Jar'ed taglibs and /META-INF/taglib.tld in jarfile itself

2002-09-23 Thread Jeff
For most of the weekend, I've been trying to get a working taglib I developed inside Forte 4 to successfully run from a jarfile -- classes AND .tld -- with no success. After checking the bug report, it appears that 4.0.2 and 4.0.4 didn't handle jar'ed taglibs properly. Seeing how 4.0.1

TAGLIBS: request attributes

2002-09-19 Thread Felipe Schnack
I'm a little confused about standard taglibs. How I can iterate thru all attributes of the request? (request.getAttribute()) -- Felipe Schnack Analista de Sistemas [EMAIL PROTECTED] Cel.: (51)91287530 Linux Counter #281893 Faculdade Ritter dos Reis www.ritterdosreis.br [EMAIL PROTECTED

TAGLIBS: sorry

2002-09-19 Thread Felipe Schnack
Ok, I found that I should use request taglib, from Jakarta. Anyway, why this throws the error in the browser? I thought it should just print an URL req:attributes id=loop jsp:getProperty name=loop property=javax.servlet.error.request_uri/ /req:attributes -- Felipe Schnack

  1   2   >