You are viewing a plain text version of this content. The canonical link for it is here.
Posted to commits@cxf.apache.org by dk...@apache.org on 2008/08/19 19:17:23 UTC

svn commit: r687097 - in /cxf/branches/2.1.x-fixes: ./ tools/wsdlto/frontend/jaxws/src/main/java/org/apache/cxf/tools/wsdlto/frontend/jaxws/customization/ tools/wsdlto/test/src/test/resources/wsdl2java_wsdl/

Author: dkulp
Date: Tue Aug 19 10:17:22 2008
New Revision: 687097

URL: http://svn.apache.org/viewvc?rev=687097&view=rev
Log:
Merged revisions 687096 via svnmerge from 
https://svn.apache.org/repos/asf/cxf/trunk

........
  r687096 | dkulp | 2008-08-19 13:11:11 -0400 (Tue, 19 Aug 2008) | 2 lines
  
  [CXF-1620] Check parent nodes for jaxb attributes as well.
........

Modified:
    cxf/branches/2.1.x-fixes/   (props changed)
    cxf/branches/2.1.x-fixes/tools/wsdlto/frontend/jaxws/src/main/java/org/apache/cxf/tools/wsdlto/frontend/jaxws/customization/CustomizationParser.java
    cxf/branches/2.1.x-fixes/tools/wsdlto/test/src/test/resources/wsdl2java_wsdl/jaxb_custom_extensors.xjb

Propchange: cxf/branches/2.1.x-fixes/
------------------------------------------------------------------------------
--- svn:mergeinfo (original)
+++ svn:mergeinfo Tue Aug 19 10:17:22 2008
@@ -1 +1 @@
-/cxf/trunk:686333-686363,686764,686820
+/cxf/trunk:686333-686363,686764,686820,687096

Propchange: cxf/branches/2.1.x-fixes/
------------------------------------------------------------------------------
--- svnmerge-integrated (original)
+++ svnmerge-integrated Tue Aug 19 10:17:22 2008
@@ -1 +1 @@
-/cxf/trunk:1-686342,686344-686363,686764,686820
+/cxf/trunk:1-686342,686344-686363,686764,686820,687096

Modified: cxf/branches/2.1.x-fixes/tools/wsdlto/frontend/jaxws/src/main/java/org/apache/cxf/tools/wsdlto/frontend/jaxws/customization/CustomizationParser.java
URL: http://svn.apache.org/viewvc/cxf/branches/2.1.x-fixes/tools/wsdlto/frontend/jaxws/src/main/java/org/apache/cxf/tools/wsdlto/frontend/jaxws/customization/CustomizationParser.java?rev=687097&r1=687096&r2=687097&view=diff
==============================================================================
--- cxf/branches/2.1.x-fixes/tools/wsdlto/frontend/jaxws/src/main/java/org/apache/cxf/tools/wsdlto/frontend/jaxws/customization/CustomizationParser.java (original)
+++ cxf/branches/2.1.x-fixes/tools/wsdlto/frontend/jaxws/src/main/java/org/apache/cxf/tools/wsdlto/frontend/jaxws/customization/CustomizationParser.java Tue Aug 19 10:17:22 2008
@@ -278,6 +278,9 @@
     private void copyJaxbAttributes(Node childNode, Element schemaNode) {
         if (childNode instanceof Element) {
             Element el = (Element)childNode;
+            if (el.getParentNode() != null) {
+                copyJaxbAttributes(el.getParentNode(), schemaNode);
+            }
             NamedNodeMap atts = el.getAttributes();
             for (int x = 0; x < atts.getLength(); x++) {
                 Attr attr = (Attr)atts.item(x);

Modified: cxf/branches/2.1.x-fixes/tools/wsdlto/test/src/test/resources/wsdl2java_wsdl/jaxb_custom_extensors.xjb
URL: http://svn.apache.org/viewvc/cxf/branches/2.1.x-fixes/tools/wsdlto/test/src/test/resources/wsdl2java_wsdl/jaxb_custom_extensors.xjb?rev=687097&r1=687096&r2=687097&view=diff
==============================================================================
--- cxf/branches/2.1.x-fixes/tools/wsdlto/test/src/test/resources/wsdl2java_wsdl/jaxb_custom_extensors.xjb (original)
+++ cxf/branches/2.1.x-fixes/tools/wsdlto/test/src/test/resources/wsdl2java_wsdl/jaxb_custom_extensors.xjb Tue Aug 19 10:17:22 2008
@@ -20,14 +20,14 @@
 <jaxws:bindings wsdlLocation="jaxb_custom_extensors.wsdl"
     xmlns:jaxws="http://java.sun.com/xml/ns/jaxws" 
     xmlns:wsdl="http://schemas.xmlsoap.org/wsdl/"
-    xmlns:xsd="http://www.w3.org/2001/XMLSchema">
+    xmlns:xsd="http://www.w3.org/2001/XMLSchema"
+    xmlns:jaxb="http://java.sun.com/xml/ns/jaxb"
+    jaxb:extensionBindingPrefixes="xjc"
+    xmlns:xjc="http://java.sun.com/xml/ns/jaxb/xjc">
     <jaxws:bindings node="wsdl:definitions/wsdl:types/xsd:schema">
             
         <jaxb:globalBindings 
-           	jaxb:version="2.0"
-            xmlns:jaxb="http://java.sun.com/xml/ns/jaxb"
-           	xmlns:xjc="http://java.sun.com/xml/ns/jaxb/xjc"
-           	jaxb:extensionBindingPrefixes="xjc">
+           	jaxb:version="2.0">
             <xjc:simple />
         </jaxb:globalBindings>
     </jaxws:bindings>