- This topic has 2 replies, 2 voices, and was last updated 16 years, 7 months ago by
thien.
-
AuthorPosts
-
thienMemberI have a working project in myeclipse and trying to use IBM RAD websphere 6.0. The app deployed and ran ok, but when i click on one of the function, i got this error message:
com.ibm.ws.jsp.translator.JspTranslationException: JSPG0227E: Exception caught while translating /com/company/application/admin/addReport.jsp: /com/company/application/admin/addReport.jsp(57,28) –> JSPG0123E: Unable to locate tag attribute info for tag attribute paramName_. at com.ibm.ws.jsp.translator.visitor.validator.ValidateVisitor.validateCustomTagAttributeValues(ValidateVisitor.java:1802) at com.ibm.ws.jsp.translator.visitor.validator.ValidateVisitor.visitCustomTagStart(ValidateVisitor.java:305) at com.ibm.ws.jsp.translator.visitor.JspVisitor.processJspElement(JspVisitor.java:253) at com.ibm.ws.jsp.translator.visitor.JspVisitor.processChildren(JspVisitor.java:286) at com.ibm.ws.jsp.translator.visitor.JspVisitor.processJspElement(JspVisitor.java:254)
It seems like it can’t find the tag in the JSP that the action is taking place. is there something i need to be aware of when doing integration from myeclipse to websphere? Please advise.
Thanks.
Thien
Loyal WaterMemberThien,
Can you please check if the issue can be resolved by referring to the following thread.
http://www-128.ibm.com/developerworks/forums/thread.jspa?threadID=116566
thienMemberthanks for the thread but i still have the issue. here is what i have:
<td align=”right”>
<label for=”<%=”fieldType_” + paramCount%>”>Field Type:</label></td>
<td align=”left”>
<html:select property=”<%=”fieldType_” + paramCount%>”>At run time, it failed at the select …
Unable to locate tag attribute info for tag attribute fieldType_.
I tried to change the ” to single ‘ : <html:select property='<%=”fieldType_” + paramCount%>’>
JSP won’t allow it . Please help.Thanks.
-
AuthorPosts