Hi,
i’am having some problems with taglibs, eclipse3.1, myeclipse4.0GA.
Tag: <ic:message name=”Warenkorb” />
Taglibdescriptor: taglib uri=”http://www.init.de/coremedia/ic” prefix=”ic”
Correctly installed in web.xml and tld, i can run this in tomcat4 and all is ok, but myeclipse keeps saying:
“Unable to find setter method for attribute: name”
In tld:
<attribute>
<name>name</name>
<required>true</required>
<rtexprvalue>true</rtexprvalue>
</attribute>
In code:
public void setName(final String name) {
this.name = name;
}
Tomcat4 says, it’s fine…what is the problem?