JSF Custom ConverterTag Error, always NULL!
Hello all,
The code that I am dealing with is a custom subclass that we created to add functionality to the javax.faces.webapp.ConverterTag class. The purpose is to add Regular Expression search and replace to the converter. Whenever it is run though, we get the following error:
30 Jan 2007 10:32:48,962 ERROR org.apache.myfaces.application.ApplicationImpl - Could not instantiate converter null
java.lang.NullPointerException
at org.apache.myfaces.application.ApplicationImpl.createConverter(ApplicationImpl.java:476)
at javax.faces.webapp.ConverterTag.createConverter(ConverterTag.java:94)
at com.intecbilling.prm.common.RegexConverterTag.createConverter(RegexConverterTag.java:45)
at javax.faces.webapp.ConverterTag.doStartTag(ConverterTag.java:60)
This code used to work, but someone changed something in the environment (not in the code) and now we have no idea what happened. Any ideas would be GREATLY appreciated!

