The taglib is located inside the webwork jar file. It's called

/META-INF/taglib.tld

In your web.xml, you should be able to point to the jar file for the taglib-lcoation. For example,

<taglib>
  <taglib-uri>webwork</taglib-uri>
  <taglib-location>/WEB-INF/lib/webwork-2.0-dev.jar</taglib-location>
</taglib>

You can then reference the taglib in your jsp as follows:

<%@ taglib uri="webwork" prefix="ui" %>

<ui:textfield label="Username" name="username"/>
<ui:password label="Password" name="password"/>

M

Robert Douglass wrote:
Hi,
could someone explain to me how WW locates its jsp tag library? Or, alternatively, what do I check when WW doesn't find the taglib. thanks,
Robert Douglass
PS I've done Cocoon and Turbine before this, and I REALLY like WW so far. Great work.





------------------------------------------------------- This SF.net email is sponsored by: Etnus, makers of TotalView, The best thread debugger on the planet. Designed with thread debugging features you've never dreamed of, try TotalView 6 free at www.etnus.com. _______________________________________________ Opensymphony-webwork mailing list [EMAIL PROTECTED] https://lists.sourceforge.net/lists/listinfo/opensymphony-webwork

Reply via email to