I'm using the wsdl2java to generate my objects but an issue I hit was using those objects with JSF 1.1. One getter method with a Boolean data type is generated as isOrderFlag(), (which I know is correct) but JSF doesn't like it. It seems JSF can only find the method if it is getOrderFlag(). Is there a way that I can tell JAXB to generate methods for Boolean data types as get methods instead of is methods?
Thanks for the help... Chris
