Thanks Cuong, How can I tell if it is not finding the jar or if it is another problem? The web.xml file has the following:
<taglib> <taglib-uri>webwork</taglib-uri> <taglib-location>/classes/webwork.jar</taglib-location> </taglib> and the path is correct. I also tried it with out the first forward slash (classes/webwork.jar). Furthermore, the console output tells me "Using template:/template/xhtml/textarea.jsp" which seems to indicate that WW knows where to look for the templaes. When I look into the generated servlet code from my jsp, it is identical to the code that was generated in the version that worked; I'm integrating WW with another existing (and extensive) framework and I'm starting with an example that worked with WW alone. In particular, this is the part of the code that should be responsible for the missing HTML: private boolean _jspx_meth_ui_textarea_0(javax.servlet.jsp.PageContext pageContext) throws Throwable { JspWriter out = pageContext.getOut(); /* ---- ui:textarea ---- */ webwork.view.taglib.ui.TextAreaTag _jspx_th_ui_textarea_0 = (webwork.view.taglib.ui.TextAreaTag) _jspx_tagPool_ui_textarea_value_rows_name_label_cols.get(webwork.view.taglib .ui.TextAreaTag.class); _jspx_th_ui_textarea_0.setPageContext(pageContext); _jspx_th_ui_textarea_0.setParent(null); _jspx_th_ui_textarea_0.setLabel("'Hi!'"); _jspx_th_ui_textarea_0.setName("'html'"); _jspx_th_ui_textarea_0.setValue("html"); _jspx_th_ui_textarea_0.setRows("20"); _jspx_th_ui_textarea_0.setCols("80"); int _jspx_eval_ui_textarea_0 = _jspx_th_ui_textarea_0.doStartTag(); if (_jspx_th_ui_textarea_0.doEndTag() == javax.servlet.jsp.tagext.Tag.SKIP_PAGE) return true; _jspx_tagPool_ui_textarea_value_rows_name_label_cols.reuse(_jspx_th_ui_texta rea_0); return false; } However, this code generates no output. Since there is HTML output before and after this code block, and it is being generated, I know that the JSP is getting parsed, that webwork.jar is being found, and that the entire servlet is being called without any errors. Am I right in all of these assumptions? Thanks for any help or suggestions, Robert Douglass ------------------------------------------------------- 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