I am developing an interoperable web service using WCF which I am consuming from a Java client. When I created the proxy class it generated all the getter and setter methods as well as a JAXBElement<String> field. I searched for this in the JDK API and found the constructor:
JAXBElement(QName name, Class<T> declaredType, Class scope, T value)
How should I use this constructor? Please explain the parameters and let me know if there is a good tutorial on the Internet describing its use.