Tell me more ×
Stack Overflow is a question and answer site for professional and enthusiast programmers. It's 100% free, no registration required.

I have a custom XHTML tag redefining ice:inputText. I need to map the converter attribute into it.

Adding converter="#{converter}" to the tag, inside the inputText, seems not to have the right effect.

When I use the tag specifying converter="XMLGregorianCalendarConverter" I get the following error:

Problem in renderResponse: Cannot convert XMLGregorianCalendarConverter of type class java.lang.String to interface javax.faces.convert.Converter

The above converter is correectly defined in my global faces-config.xml.

What could be causing this problem?

Thank you.

share|improve this question

1 Answer

up vote 0 down vote accepted

It's a bug in facelets. See issue: http://java.net/jira/browse/FACELETS-273

I hit the same bug today...

using the exact name in my tag resolves it. (passing parameter doesn't work)

share|improve this answer

Your Answer

 
discard

By posting your answer, you agree to the privacy policy and terms of service.

Not the answer you're looking for? Browse other questions tagged or ask your own question.