Hi, I have an application that uses XFire to expose some services. Stub classes have been created using Eclipse plugin and the application uses annotations and it is integrated in the Spring. However, it is totally ignoring the @XmlElemet configuration, so I can't make it have captilized property. For instance @XmlElement(name = "State", required = true)
produces the following xml snippet <state xmlns="xxx">Ok</state> insted of <State>Ok</State> I've tried a lot of stuff, but it just don't work. Do you have any idea, how to make a proper xml response. Because of this parsing on my client's site fails. Regards, Dejan
