[hudson] CXF-Trunk-JDK16 job disabled

2009-07-03 Thread Jukka Zitting
Hi CXF developers, I've disabled the CXF-Trunk-JDK16 Hudson job [1] since the last three builds [2,3,4] all got stuck for hours while executing org.apache.cxf.javascript.AnyTest and had to be manually killed to avoid blocking the build queue. I'm not sure whether this is a CXF or a Hudson issue.

Properties Overriding in WSDL usage

2009-07-03 Thread liucong
Hi all, In the SOAP/JMS(http://www.w3.org/TR/2008/WD-soapjms-20081121/#wsdl-11-properties). If a property is specified at multiple levels, the most specific setting will take precedence (port first, then service, then binding). But I invetigate the code of CXF. I find someting int org.apache.cxf.

Re: How to add wsdl extension for SOAP/JMS.

2009-07-03 Thread Willem Jiang
Hi, It looks like the xjc pulgin just loads the extensions once, so you need to add all the xjc extensions dependencies into each xjc extension test pom. org.apache.cxf cxf-xjc-dv ${proje

Re: How to add wsdl extension for SOAP/JMS.

2009-07-03 Thread liucong
yeah. The pom file in the cxf-xjc-wsdlextension: http://maven.apache.org/POM/4.0.0"; xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance"; xsi:schemaLocation="http://maven.apache.org/POM/4.0.0 http://maven.apache.org/maven-v4_0_0.xsd";> 4.0.0 org.apache.cxf cxf-xjc-wsdlextension j

Re: How to add wsdl extension for SOAP/JMS.

2009-07-03 Thread Willem Jiang
I guess you have something wrong on the plugin's pom. Maybe you need to show the code to let us help you :) Willem liucong wrote: Hi, I am writing a plugin for xjc. First I just modify the cxf-xjc-ts and cxf-xjc-ts-test, and make it work with the -Xwsdlextension, not -Xts. The pom file

Re: How to add wsdl extension for SOAP/JMS.

2009-07-03 Thread liucong
Hi, I am writing a plugin for xjc. First I just modify the cxf-xjc-ts and cxf-xjc-ts-test, and make it work with the -Xwsdlextension, not -Xts. The pom file is also changed. And it works rightly. Then I copy the modified projects into cxf-xjc-wsdlextension and cxf-xjc-wsdlextension-tes

Re: Integrating JAX-RS runtime into DOSGi

2009-07-03 Thread David Bosschaert
Hi all, 2009/6/20 Sergey Beryozkin : > Hi, > ... ... > There's something else David is thinking of doing shortly, possibly next > week or so. At the moment one has to configure DOSGI properties on the > individual service basis, either from the code or from the xml. David is > thinking of introd

Supprot for wrapped/unwrapped styles in Mapped convention for JSON

2009-07-03 Thread Chaitanya
Hi, I have a JAX-RS method which takes an Employee object as a param. Employee class is given below. @XmlRootElement public class Employee { private String name; public String getName() { return name; } public void setName(String name) { this.name = name; }