Hz Dan, I've found a very little differences between the 2.1.2 and the 2.1.3-SNAPSHOT version.
When i specified elementFormDefault to UNQUALIFIED in the package-info.java than the soap response looks different. 2.1.2: <soap:Envelope xmlns:soap="http://schemas.xmlsoap.org/soap/envelope/"> <soap:Body> <ns2:GetProgramResponse xmlns:ns2="http://bla/namespace/bla/"> <return> <programsResult> <programItem id="49"> <name>program name</name> </programItem> </programsResult> </return> </ns2:GetProgramResponse> </soap:Body> </soap:Envelope> 2.1.3-SNAPSHOT <soap:Envelope xmlns:soap="http://schemas.xmlsoap.org/soap/envelope/"> <soap:Body> <ns2:GetProgramResponse xmlns:ns2="http://bla/namespace/bla/"> <ns2:return> <programsResult> <programItem id="49"> <name>program name</name> </programItem> </programsResult> </ns2:return> </ns2:GetProgramResponse> </soap:Body> </soap:Envelope> Thats only a advice for you. -- View this message in context: http://www.nabble.com/problem-with-jaxb-and-namespace-prefix-tp19901215p19917063.html Sent from the cxf-user mailing list archive at Nabble.com.
