// Tag snippet
private hCategories categories=null;
/**
* Getter/Setter for the attribute name as defined in the tld file
* for this tag
*/
public void setCategories(hCategories value){
categories = value;
}
public hCategories getCategories(){
return(categories);
}
JSP call:
<dl:productView categories="<%=categoryData%>" />
Error message that is created:
Unable to convert string '<%=categoryData%>' to class
com.harland.datatypes.hCategories for attribute categories:
java.lang.IllegalArgumentException: Property Editor not registered with the
PropertyEditorManager
Using Tomcat 4.1.18
First can I do this? Then if I can how do I pass the hCategories object?
Thanks,
Jeff Born