[OT] using tld inside jar

2003-12-10 Thread Nicolas De Loof
Hi all,

I would like to use the jakarta String-1.0.1 taglib in my app, but tld is packaged 
inside jar.

I use tomcat 4.1.27, that is servlet 2.3 compliant so taht should be able to use this 
taglib as is, but I don't know
what to set in web.xml as taglib element (especially for taglib-location)

Could you help me please ?

Nico.


-
To unsubscribe, e-mail: [EMAIL PROTECTED]
For additional commands, e-mail: [EMAIL PROTECTED]



Re: [OT] using tld inside jar

2003-12-10 Thread Kris Schneider
Don't put anything in web.xml. Just do this in your JSP:

%@ taglib prefix=string
   uri=http://jakarta.apache.org/taglibs/string-1.0.1; %

Quoting Nicolas De Loof [EMAIL PROTECTED]:

 Hi all,
 
 I would like to use the jakarta String-1.0.1 taglib in my app, but tld is
 packaged inside jar.
 
 I use tomcat 4.1.27, that is servlet 2.3 compliant so taht should be able to
 use this taglib as is, but I don't know
 what to set in web.xml as taglib element (especially for
 taglib-location)
 
 Could you help me please ?
 
 Nico.

-- 
Kris Schneider mailto:[EMAIL PROTECTED]
D.O.Tech   http://www.dotech.com/

-
To unsubscribe, e-mail: [EMAIL PROTECTED]
For additional commands, e-mail: [EMAIL PROTECTED]



Re: [OT] using tld inside jar

2003-12-10 Thread Nicolas De Loof
So simple I didn't thik about it !

Thanks.


- Original Message - 
From: Kris Schneider [EMAIL PROTECTED]
To: Struts Users Mailing List [EMAIL PROTECTED]
Sent: Wednesday, December 10, 2003 4:06 PM
Subject: Re: [OT] using tld inside jar


 Don't put anything in web.xml. Just do this in your JSP:
 
 %@ taglib prefix=string
uri=http://jakarta.apache.org/taglibs/string-1.0.1; %
 
 Quoting Nicolas De Loof [EMAIL PROTECTED]:
 
  Hi all,
  
  I would like to use the jakarta String-1.0.1 taglib in my app, but tld is
  packaged inside jar.
  
  I use tomcat 4.1.27, that is servlet 2.3 compliant so taht should be able to
  use this taglib as is, but I don't know
  what to set in web.xml as taglib element (especially for
  taglib-location)
  
  Could you help me please ?
  
  Nico.
 
 -- 
 Kris Schneider mailto:[EMAIL PROTECTED]
 D.O.Tech   http://www.dotech.com/
 
 -
 To unsubscribe, e-mail: [EMAIL PROTECTED]
 For additional commands, e-mail: [EMAIL PROTECTED]

-
To unsubscribe, e-mail: [EMAIL PROTECTED]
For additional commands, e-mail: [EMAIL PROTECTED]