You are viewing a plain text version of this content. The canonical link for it is here.
Posted to yoko-commits@incubator.apache.org by br...@apache.org on 2006/10/19 14:31:56 UTC

svn commit: r465642 [4/5] - in /incubator/yoko/branches/cxf_port: ./ api/ bindings/ bindings/src/main/java/org/apache/yoko/bindings/corba2/ bindings/src/main/java/org/apache/yoko/bindings/corba2/interceptors/ tools/ tools/src/main/java/org/apache/yoko/...

Modified: incubator/yoko/branches/cxf_port/tools/src/test/java/org/apache/yoko/tools/processors/WSDLToCorbaBindingTypeTest.java
URL: http://svn.apache.org/viewvc/incubator/yoko/branches/cxf_port/tools/src/test/java/org/apache/yoko/tools/processors/WSDLToCorbaBindingTypeTest.java?view=diff&rev=465642&r1=465641&r2=465642
==============================================================================
--- incubator/yoko/branches/cxf_port/tools/src/test/java/org/apache/yoko/tools/processors/WSDLToCorbaBindingTypeTest.java (original)
+++ incubator/yoko/branches/cxf_port/tools/src/test/java/org/apache/yoko/tools/processors/WSDLToCorbaBindingTypeTest.java Thu Oct 19 07:31:44 2006
@@ -83,7 +83,299 @@
         }
         return null;
     }
+    
+    public void testWsAddressingAccountType() throws Exception {
+        
+        try {
+            String fileName = getClass().getResource("/wsdl/wsaddressing_bank.wsdl").toString();
+            generator.setWsdlFile(fileName);
+            generator.addInterfaceName("Bank");
+
+            Definition model = generator.generateCORBABinding();
+            Document document = writer.getDocument(model);
+
+            Element typemap = getElementNode(document, "corba:typeMapping");            
+            assertNotNull(typemap);
+            assertEquals(1, typemap.getElementsByTagName("corba:sequence").getLength());
+            assertEquals(2, typemap.getElementsByTagName("corba:object").getLength());            
+
+            WSDLToIDLAction idlgen = new WSDLToIDLAction();
+            idlgen.setBindingName("BankCORBABinding");
+            idlgen.setOutputFile("wsaddressing_bank.idl");
+            idlgen.generateIDL(model);
+                        
+            File f = new File("wsaddressing_bank.idl");
+            assertTrue("wsaddressing_bank.idl should be generated", f.exists()); 
+        } finally {
+            new File("wsaddressing_bank.idl").deleteOnExit();
+        }
+    }
+    
+    public void testWsAddressingBankType() throws Exception {
+        
+        try {
+            String fileName = getClass().getResource("/wsdl/wsaddressing_account.wsdl").toString();
+            generator.setWsdlFile(fileName);
+            generator.addInterfaceName("Account");
+
+            Definition model = generator.generateCORBABinding();
+            Document document = writer.getDocument(model);
+
+            Element typemap = getElementNode(document, "corba:typeMapping");            
+            assertNotNull(typemap);
+            assertEquals(1, typemap.getElementsByTagName("corba:sequence").getLength());
+            assertEquals(1, typemap.getElementsByTagName("corba:object").getLength());            
+
+            WSDLToIDLAction idlgen = new WSDLToIDLAction();
+            idlgen.setBindingName("AccountCORBABinding");
+            idlgen.setOutputFile("wsaddressing_account.idl");
+            idlgen.generateIDL(model);
+                        
+            File f = new File("wsaddressing_account.idl");
+            assertTrue("wsaddressing_account.idl should be generated", f.exists()); 
+        } finally {
+            new File("wsaddressing_account.idl").deleteOnExit();
+        }
+    }
+
+    
+    public void testWsAddressingTypes() throws Exception {
+        
+        try {
+            String fileName = getClass().getResource("/wsdl/wsaddressing_server.wsdl").toString();
+            generator.setWsdlFile(fileName);
+            generator.addInterfaceName("TestServer");
+
+            Definition model = generator.generateCORBABinding();
+            Document document = writer.getDocument(model);
+
+            Element typemap = getElementNode(document, "corba:typeMapping");            
+            assertNotNull(typemap);
+            assertEquals(1, typemap.getElementsByTagName("corba:object").getLength());            
+
+            WSDLToIDLAction idlgen = new WSDLToIDLAction();
+            idlgen.setBindingName("TestServerCORBABinding");
+            idlgen.setOutputFile("wsaddressing_server.idl");
+            idlgen.generateIDL(model);
+                        
+            File f = new File("wsaddressing_server.idl");
+            assertTrue("wsaddressing_server.idl should be generated", f.exists()); 
+        } finally {
+            new File("wsaddressing_server.idl").deleteOnExit();
+        }
+    }
+
+
+    /*public void testRecursionTypes() throws Exception {
+        
+        try {
+            String fileName = getClass().getResource("/wsdl/mutualRecursions.wsdl").toString();
+            generator.setWsdlFile(fileName);
+            generator.addInterfaceName("testPortType");
+
+            Definition model = generator.generateCORBABinding();
+            Document document = writer.getDocument(model);
+
+            Element typemap = getElementNode(document, "corba:typeMapping");            
+            assertNotNull(typemap);
+            //assertEquals(2, typemap.getElementsByTagName("corba:union").getLength());
+            //assertEquals(2, typemap.getElementsByTagName("corba:struct").getLength());
+
+            WSDLToIDLAction idlgen = new WSDLToIDLAction();
+            idlgen.setBindingName("testCORBABinding");
+            idlgen.setOutputFile("mutualRecursions.idl");
+            idlgen.generateIDL(model);
+                        
+            File f = new File("mutualRecursions.idl");
+            assertTrue("mutualRecursions.idl should be generated", f.exists()); 
+        } finally {
+            new File("mutualRecursions.idl").deleteOnExit();
+        }
+    }*/
+
+    
+    public void testDateTimeTypes() throws Exception {
+        
+        try {
+            String fileName = getClass().getResource("/wsdl/datetime.wsdl").toString();
+            generator.setWsdlFile(fileName);
+            generator.addInterfaceName("BasePortType");
+
+            Definition model = generator.generateCORBABinding();
+            Document document = writer.getDocument(model);
+
+            Element typemap = getElementNode(document, "corba:typeMapping");            
+            assertNotNull(typemap);
+            assertEquals(2, typemap.getElementsByTagName("corba:union").getLength());
+            assertEquals(2, typemap.getElementsByTagName("corba:struct").getLength());
+
+            WSDLToIDLAction idlgen = new WSDLToIDLAction();
+            idlgen.setBindingName("BaseCORBABinding");
+            idlgen.setOutputFile("datetime.idl");
+            idlgen.generateIDL(model);
+                        
+            File f = new File("datetime.idl");
+            assertTrue("datetime.idl should be generated", f.exists()); 
+        } finally {
+            new File("datetime.idl").deleteOnExit();
+        }
+    }
+
+    public void testNestedInterfaceTypes() throws Exception {
+        
+        try {
+            String fileName = getClass().getResource("/wsdl/nested_interfaces.wsdl").toString();
+            generator.setWsdlFile(fileName);
+            generator.addInterfaceName("C.C1");
+
+            Definition model = generator.generateCORBABinding();
+            Document document = writer.getDocument(model);
+
+            Element typemap = getElementNode(document, "corba:typeMapping");            
+            assertNotNull(typemap);
+            assertEquals(1, typemap.getElementsByTagName("corba:anonstring").getLength());
+            assertEquals(9, typemap.getElementsByTagName("corba:struct").getLength());                       
+
+            WSDLToIDLAction idlgen = new WSDLToIDLAction();
+            idlgen.setBindingName("C.C1CORBABinding");
+            idlgen.setOutputFile("nested_interfaces.idl");
+            idlgen.generateIDL(model);
+                        
+            File f = new File("nested_interfaces.idl");
+            assertTrue("nested_interfaces.idl should be generated", f.exists()); 
+        } finally {
+            new File("nested_interfaces.idl").deleteOnExit();
+        }
+    }    
+
+    public void testNestedComplexTypes() throws Exception {
+        
+        try {
+            String fileName = getClass().getResource("/wsdl/nested_complex.wsdl").toString();
+            generator.setWsdlFile(fileName);
+            generator.addInterfaceName("X");
+
+            Definition model = generator.generateCORBABinding();
+            Document document = writer.getDocument(model);
+
+            Element typemap = getElementNode(document, "corba:typeMapping");            
+            assertNotNull(typemap);
+            assertEquals(6, typemap.getElementsByTagName("corba:union").getLength());
+            assertEquals(14, typemap.getElementsByTagName("corba:struct").getLength());
+            assertEquals(1, typemap.getElementsByTagName("corba:enum").getLength());
+            assertEquals(1, typemap.getElementsByTagName("corba:array").getLength());
+            
+            WSDLToIDLAction idlgen = new WSDLToIDLAction();
+            idlgen.setBindingName("XCORBABinding");
+            idlgen.setOutputFile("nested_complex.idl");
+            idlgen.generateIDL(model);
+                        
+            File f = new File("nested_complex.idl");
+            assertTrue("nested_complex.idl should be generated", f.exists()); 
+        } finally {
+            new File("nested_complex.idl").deleteOnExit();
+        }
+    }    
+
+    
+    public void testNestedDerivedTypes() throws Exception {
+        
+        try {
+            String fileName = getClass().getResource("/wsdl/nested-derivedtypes.wsdl").toString();
+            generator.setWsdlFile(fileName);
+            generator.addInterfaceName("DerivedTypesPortType");
+
+            Definition model = generator.generateCORBABinding();
+            Document document = writer.getDocument(model);
+
+            Element typemap = getElementNode(document, "corba:typeMapping");            
+            assertNotNull(typemap);
+            assertEquals(6, typemap.getElementsByTagName("corba:union").getLength());
+            assertEquals(58, typemap.getElementsByTagName("corba:struct").getLength());
+            assertEquals(3, typemap.getElementsByTagName("corba:sequence").getLength());
+            
+            WSDLToIDLAction idlgen = new WSDLToIDLAction();
+            idlgen.setBindingName("DerivedTypesCORBABinding");
+            idlgen.setOutputFile("nested-derivedtypes.idl");
+            idlgen.generateIDL(model);
+                        
+            File f = new File("nested-derivedtypes.idl");
+            assertTrue("nested-derivedtypes.idl should be generated", f.exists()); 
+        } finally {
+            new File("nested-derivedtypes.idl").deleteOnExit();
+        }
+    }    
+
+    public void testNestedType() throws Exception {
+        
+        try {
+            String fileName = getClass().getResource("/wsdl/nested.wsdl").toString();
+            generator.setWsdlFile(fileName);
+            generator.addInterfaceName("TypeInheritancePortType");
+
+            Definition model = generator.generateCORBABinding();
+            Document document = writer.getDocument(model);
 
+            Element typemap = getElementNode(document, "corba:typeMapping");            
+            assertNotNull(typemap);
+            assertEquals(4, typemap.getElementsByTagName("corba:union").getLength());
+            assertEquals(23, typemap.getElementsByTagName("corba:struct").getLength());
+            assertEquals(1, typemap.getElementsByTagName("corba:anonstring").getLength());
+            
+            WSDLToIDLAction idlgen = new WSDLToIDLAction();
+            idlgen.setBindingName("TypeInheritanceCORBABinding");
+            idlgen.setOutputFile("nested.idl");
+            idlgen.generateIDL(model);
+                        
+            File f = new File("nested.idl");
+            assertTrue("nested.idl should be generated", f.exists()); 
+        } finally {
+            new File("nested.idl").deleteOnExit();
+        }
+    }    
+
+    
+    public void testNillableType() throws Exception {
+        
+        try {
+            String fileName = getClass().getResource("/wsdl/nillable.wsdl").toString();
+            generator.setWsdlFile(fileName);
+            generator.addInterfaceName("NillablePortType");
+
+            Definition model = generator.generateCORBABinding();
+            Document document = writer.getDocument(model);
+
+            Element typemap = getElementNode(document, "corba:typeMapping");            
+            assertNotNull(typemap);
+            assertEquals(2, typemap.getElementsByTagName("corba:union").getLength());
+            assertEquals(1, typemap.getElementsByTagName("corba:struct").getLength());            
+            
+            TypeMappingType mapType = (TypeMappingType)model.getExtensibilityElements().get(0);            
+
+            WSDLToIDLAction idlgen = new WSDLToIDLAction();
+            idlgen.setBindingName("NillableCORBABinding");
+            idlgen.setOutputFile("nillable.idl");
+            idlgen.generateIDL(model);
+            
+            Union un = (Union)mapType.getStructOrExceptionOrUnion().get(2);
+            assertEquals("Name is incorrect for Union Type", "long_nil", 
+                         un.getName());
+            assertEquals("Type is incorrect for Union Type", "PEl", 
+                         un.getType().getLocalPart());
+            Unionbranch unbranch = un.getUnionbranch().get(0);
+            assertEquals("Name is incorrect for UnionBranch Type", "value", 
+                         unbranch.getName());
+            assertEquals("Type is incorrect for UnionBranch Type", "long", 
+                         unbranch.getIdltype().getLocalPart());
+
+            File f = new File("nillable.idl");
+            assertTrue("nillable.idl should be generated", f.exists()); 
+        } finally {
+            new File("nillable.idl").deleteOnExit();
+        }
+    }    
+
+    
     
     // tests Type Inheritance and attributes.
     public void testTypeInheritance() throws Exception {
@@ -263,7 +555,7 @@
             Definition model = generator.generateCORBABinding();
 
             TypeMappingType mapType = (TypeMappingType)model.getExtensibilityElements().get(0);
-            assertEquals(6, mapType.getStructOrExceptionOrUnion().size());
+            assertEquals(5, mapType.getStructOrExceptionOrUnion().size());
             Iterator i = mapType.getStructOrExceptionOrUnion().iterator();
             int strcnt = 0;
             int unioncnt = 0;

Modified: incubator/yoko/branches/cxf_port/tools/src/test/java/org/apache/yoko/tools/processors/WSDLToIDLGenerationTest.java
URL: http://svn.apache.org/viewvc/incubator/yoko/branches/cxf_port/tools/src/test/java/org/apache/yoko/tools/processors/WSDLToIDLGenerationTest.java?view=diff&rev=465642&r1=465641&r2=465642
==============================================================================
--- incubator/yoko/branches/cxf_port/tools/src/test/java/org/apache/yoko/tools/processors/WSDLToIDLGenerationTest.java (original)
+++ incubator/yoko/branches/cxf_port/tools/src/test/java/org/apache/yoko/tools/processors/WSDLToIDLGenerationTest.java Thu Oct 19 07:31:44 2006
@@ -185,6 +185,26 @@
             new File("uniontypes.idl").deleteOnExit();
         }
     }
+    
+    public void testDefaultUniontypesIdlgen() throws Exception {
+        try {
+            String fileName = getClass().getResource("/idlgen/defaultuniontypes.wsdl").toString();
+            idlgen.setWsdlFile(fileName);
+            
+            idlgen.setBindingName("Test.MultiPartCORBABinding");
+            idlgen.setOutputFile("defaultuniontypes.idl");
+            idlgen.setOutput(new PrintWriter(idloutput));
+            idlgen.generateIDL(null);
+
+            InputStream origstream = getClass().getResourceAsStream("/idlgen/expected_defaultuniontypes.idl");
+            byte orig[] = inputStreamToBytes(origstream);
+
+            checkIDLStrings(orig, idloutput.toByteArray());
+        } finally {
+            new File("defaultuniontypes.idl").deleteOnExit();
+        }
+    }
+
 
     public void testExceptionIdlgen() throws Exception {
 
@@ -408,5 +428,218 @@
             new File("typeInheritance.idl").deleteOnExit();
         }
     }
+    
+    public void testNillableIdlgen() throws Exception {
+        
+        try {
+            String fileName = getClass().getResource("/idlgen/nillable.wsdl").toString();
+            idlgen.setWsdlFile(fileName);
+            
+            idlgen.setBindingName("NillableCORBABinding");
+            idlgen.setOutputFile("nillable.idl");            
+            idlgen.setOutput(new PrintWriter(idloutput));
+            idlgen.generateIDL(null);
+
+            InputStream origstream = getClass().getResourceAsStream("/idlgen/expected_nillable.idl");
+            byte orig[] = inputStreamToBytes(origstream);
+
+            checkIDLStrings(orig, idloutput.toByteArray());
+        } finally {
+            new File("nillable.idl").deleteOnExit();
+        }
+    }
+    
+    public void testTypedefIdlgen() throws Exception {
+        
+        try {
+            String fileName = getClass().getResource("/idlgen/typedef.wsdl").toString();
+            idlgen.setWsdlFile(fileName);
+            
+            idlgen.setBindingName("XCORBABinding");
+            idlgen.setOutputFile("typedef.idl");            
+            idlgen.setOutput(new PrintWriter(idloutput));
+            idlgen.generateIDL(null);
+
+            InputStream origstream = getClass().getResourceAsStream("/idlgen/expected_typedef.idl");
+            byte orig[] = inputStreamToBytes(origstream);
+
+            checkIDLStrings(orig, idloutput.toByteArray());
+        } finally {
+            new File("typedef.idl").deleteOnExit();
+        }
+    }
+
+    public void testNestedIdlgen() throws Exception {
+        
+        try {
+            String fileName = getClass().getResource("/idlgen/nested.wsdl").toString();
+            idlgen.setWsdlFile(fileName);
+            
+            idlgen.setBindingName("TypeInheritanceCORBABinding");
+            idlgen.setOutputFile("nested.idl");            
+            idlgen.setOutput(new PrintWriter(idloutput));
+            idlgen.generateIDL(null);
+
+            InputStream origstream = getClass().getResourceAsStream("/idlgen/expected_nested.idl");
+            byte orig[] = inputStreamToBytes(origstream);
+
+            checkIDLStrings(orig, idloutput.toByteArray());
+        } finally {
+            new File("nested.idl").deleteOnExit();
+        }
+    }
+    
+    public void testNestedDerivedTypesIdlgen() throws Exception {
+        
+        try {
+            String fileName = getClass().getResource("/idlgen/nested-derivedtypes.wsdl").toString();
+            idlgen.setWsdlFile(fileName);
+            
+            idlgen.setBindingName("DerivedTypesCORBABinding");
+            idlgen.setOutputFile("nested-derivedtypes.idl");            
+            idlgen.setOutput(new PrintWriter(idloutput));
+            idlgen.generateIDL(null);
+
+            InputStream origstream = 
+                getClass().getResourceAsStream("/idlgen/expected_nested-derivedtypes.idl");
+            byte orig[] = inputStreamToBytes(origstream);
+
+            checkIDLStrings(orig, idloutput.toByteArray());
+        } finally {
+            new File("nested-derivedtypes.idl").deleteOnExit();
+        }
+    }
+
+    public void testNestedComplexTypesIdlgen() throws Exception {
+        
+        try {
+            String fileName = getClass().getResource("/idlgen/nested_complex.wsdl").toString();
+            idlgen.setWsdlFile(fileName);
+            
+            idlgen.setBindingName("XCORBABinding");
+            idlgen.setOutputFile("nested_complex.idl");            
+            idlgen.setOutput(new PrintWriter(idloutput));
+            idlgen.generateIDL(null);
+
+            InputStream origstream = 
+                getClass().getResourceAsStream("/idlgen/expected_nested_complex.idl");
+            byte orig[] = inputStreamToBytes(origstream);
+
+            checkIDLStrings(orig, idloutput.toByteArray());
+        } finally {
+            new File("nested_complex.idl").deleteOnExit();
+        }
+    }
+
+    public void testNestedInterfaceTypesIdlgen() throws Exception {
+        
+        try {
+            String fileName = getClass().getResource("/idlgen/nested_interfaces.wsdl").toString();
+            idlgen.setWsdlFile(fileName);
+            
+            idlgen.setBindingName("C.C1CORBABinding");
+            idlgen.setOutputFile("nested_interfaces.idl");            
+            idlgen.setOutput(new PrintWriter(idloutput));
+            idlgen.generateIDL(null);
+
+            InputStream origstream = 
+                getClass().getResourceAsStream("/idlgen/expected_nested_interfaces.idl");
+            byte orig[] = inputStreamToBytes(origstream);
+
+            checkIDLStrings(orig, idloutput.toByteArray());
+        } finally {
+            new File("nested_interfaces.idl").deleteOnExit();
+        }
+    }
+    
+    public void testDateTimeTypesIdlgen() throws Exception {
+        
+        try {
+            String fileName = getClass().getResource("/idlgen/datetime.wsdl").toString();
+            idlgen.setWsdlFile(fileName);
+            
+            idlgen.setBindingName("BaseCORBABinding");
+            idlgen.setOutputFile("datetime.idl");            
+            idlgen.setOutput(new PrintWriter(idloutput));
+            idlgen.generateIDL(null);
+
+            InputStream origstream = 
+                getClass().getResourceAsStream("/idlgen/expected_datetime.idl");
+            byte orig[] = inputStreamToBytes(origstream);
+
+            checkIDLStrings(orig, idloutput.toByteArray());
+        } finally {
+            new File("datetime.idl").deleteOnExit();
+        }
+    }
+    
+    public void testWsaddressingServerIdlgen() throws Exception {
+        
+        try {
+            String fileName = getClass().getResource("/idlgen/wsaddressing_server.wsdl").toString();
+            idlgen.setWsdlFile(fileName);
+            
+            idlgen.setBindingName("TestServerCORBABinding");
+            idlgen.setOutputFile("wsaddress_server.idl");            
+            idlgen.setOutput(new PrintWriter(idloutput));
+            idlgen.generateIDL(null);
+
+            InputStream origstream = 
+                getClass().getResourceAsStream("/idlgen/expected_wsaddressing_server.idl");
+            byte orig[] = inputStreamToBytes(origstream);
+
+            checkIDLStrings(orig, idloutput.toByteArray());
+        } finally {
+            new File("wsaddressing_server.idl").deleteOnExit();
+        }
+    }
+    
+    public void testWsaddressingAccountIdlgen() throws Exception {
+        
+        try {
+            String fileName = getClass().getResource("/idlgen/wsaddressing_account.wsdl").toString();
+            idlgen.setWsdlFile(fileName);
+            
+            idlgen.setBindingName("AccountCORBABinding");
+            idlgen.setOutputFile("wsaddress_account.idl");            
+            idlgen.setOutput(new PrintWriter(idloutput));
+            idlgen.generateIDL(null);
+
+            InputStream origstream = 
+                getClass().getResourceAsStream("/idlgen/expected_wsaddressing_account.idl");
+            byte orig[] = inputStreamToBytes(origstream);
+
+            checkIDLStrings(orig, idloutput.toByteArray());
+        } finally {
+            new File("wsaddressing_account.idl").deleteOnExit();
+        }
+    }
+    
+    public void testWsaddressingBankIdlgen() throws Exception {
+        
+        try {
+            String fileName = getClass().getResource("/idlgen/wsaddressing_bank.wsdl").toString();
+            idlgen.setWsdlFile(fileName);
+            
+            idlgen.setBindingName("BankCORBABinding");
+            idlgen.setOutputFile("wsaddress_bank.idl");            
+            idlgen.setOutput(new PrintWriter(idloutput));
+            idlgen.generateIDL(null);
+
+            InputStream origstream = 
+                getClass().getResourceAsStream("/idlgen/expected_wsaddressing_bank.idl");
+            byte orig[] = inputStreamToBytes(origstream);
+
+            checkIDLStrings(orig, idloutput.toByteArray());
+        } finally {
+            new File("wsaddressing_bank.idl").deleteOnExit();
+        }
+    }
+
+
+
+
+
+
 
 }

Modified: incubator/yoko/branches/cxf_port/tools/src/test/resources/idl/Const.idl
URL: http://svn.apache.org/viewvc/incubator/yoko/branches/cxf_port/tools/src/test/resources/idl/Const.idl?view=diff&rev=465642&r1=465641&r2=465642
==============================================================================
--- incubator/yoko/branches/cxf_port/tools/src/test/resources/idl/Const.idl (original)
+++ incubator/yoko/branches/cxf_port/tools/src/test/resources/idl/Const.idl Thu Oct 19 07:31:44 2006
@@ -1,4 +1,21 @@
-
+/* 
+ * Licensed to the Apache Software Foundation (ASF) under one
+ * or more contributor license agreements. See the NOTICE file
+ * distributed with this work for additional information
+ * regarding copyright ownership. The ASF licenses this file
+ * to you under the Apache License, Version 2.0 (the
+ * "License"); you may not use this file except in compliance
+ * with the License. You may obtain a copy of the License at
+ *
+ * http://www.apache.org/licenses/LICENSE-2.0
+ *
+ * Unless required by applicable law or agreed to in writing,
+ * software distributed under the License is distributed on an
+ * "AS IS" BASIS, WITHOUT WARRANTIES OR CONDITIONS OF ANY
+ * KIND, either express or implied. See the License for the
+ * specific language governing permissions and limitations
+ * under the License.
+*/ 
 const short              glob_short            = -12;
 const long               glob_long             = 2334;
 const long long          glob_longlong         = -123456789; 

Modified: incubator/yoko/branches/cxf_port/tools/src/test/resources/idl/Enum.idl
URL: http://svn.apache.org/viewvc/incubator/yoko/branches/cxf_port/tools/src/test/resources/idl/Enum.idl?view=diff&rev=465642&r1=465641&r2=465642
==============================================================================
--- incubator/yoko/branches/cxf_port/tools/src/test/resources/idl/Enum.idl (original)
+++ incubator/yoko/branches/cxf_port/tools/src/test/resources/idl/Enum.idl Thu Oct 19 07:31:44 2006
@@ -1,3 +1,22 @@
+/* 
+ * Licensed to the Apache Software Foundation (ASF) under one
+ * or more contributor license agreements. See the NOTICE file
+ * distributed with this work for additional information
+ * regarding copyright ownership. The ASF licenses this file
+ * to you under the Apache License, Version 2.0 (the
+ * "License"); you may not use this file except in compliance
+ * with the License. You may obtain a copy of the License at
+ *
+ * http://www.apache.org/licenses/LICENSE-2.0
+ *
+ * Unless required by applicable law or agreed to in writing,
+ * software distributed under the License is distributed on an
+ * "AS IS" BASIS, WITHOUT WARRANTIES OR CONDITIONS OF ANY
+ * KIND, either express or implied. See the License for the
+ * specific language governing permissions and limitations
+ * under the License.
+*/
+
 enum e_type1 {e1_1, e1_2, e1_3};
 
 interface if1 {

Modified: incubator/yoko/branches/cxf_port/tools/src/test/resources/idl/Exception.idl
URL: http://svn.apache.org/viewvc/incubator/yoko/branches/cxf_port/tools/src/test/resources/idl/Exception.idl?view=diff&rev=465642&r1=465641&r2=465642
==============================================================================
--- incubator/yoko/branches/cxf_port/tools/src/test/resources/idl/Exception.idl (original)
+++ incubator/yoko/branches/cxf_port/tools/src/test/resources/idl/Exception.idl Thu Oct 19 07:31:44 2006
@@ -1,4 +1,21 @@
-
+/* 
+ * Licensed to the Apache Software Foundation (ASF) under one
+ * or more contributor license agreements. See the NOTICE file
+ * distributed with this work for additional information
+ * regarding copyright ownership. The ASF licenses this file
+ * to you under the Apache License, Version 2.0 (the
+ * "License"); you may not use this file except in compliance
+ * with the License. You may obtain a copy of the License at
+ *
+ * http://www.apache.org/licenses/LICENSE-2.0
+ *
+ * Unless required by applicable law or agreed to in writing,
+ * software distributed under the License is distributed on an
+ * "AS IS" BASIS, WITHOUT WARRANTIES OR CONDITIONS OF ANY
+ * KIND, either express or implied. See the License for the
+ * specific language governing permissions and limitations
+ * under the License.
+*/ 
 exception ExternalException {
         string  description;
 };

Modified: incubator/yoko/branches/cxf_port/tools/src/test/resources/idl/Fixed.idl
URL: http://svn.apache.org/viewvc/incubator/yoko/branches/cxf_port/tools/src/test/resources/idl/Fixed.idl?view=diff&rev=465642&r1=465641&r2=465642
==============================================================================
--- incubator/yoko/branches/cxf_port/tools/src/test/resources/idl/Fixed.idl (original)
+++ incubator/yoko/branches/cxf_port/tools/src/test/resources/idl/Fixed.idl Thu Oct 19 07:31:44 2006
@@ -1,3 +1,21 @@
+/* 
+ * Licensed to the Apache Software Foundation (ASF) under one
+ * or more contributor license agreements. See the NOTICE file
+ * distributed with this work for additional information
+ * regarding copyright ownership. The ASF licenses this file
+ * to you under the Apache License, Version 2.0 (the
+ * "License"); you may not use this file except in compliance
+ * with the License. You may obtain a copy of the License at
+ *
+ * http://www.apache.org/licenses/LICENSE-2.0
+ *
+ * Unless required by applicable law or agreed to in writing,
+ * software distributed under the License is distributed on an
+ * "AS IS" BASIS, WITHOUT WARRANTIES OR CONDITIONS OF ANY
+ * KIND, either express or implied. See the License for the
+ * specific language governing permissions and limitations
+ * under the License.
+*/ 
 typedef fixed <31, 2> f1_1;
 typedef fixed <8,  2> f1_2;
 

Modified: incubator/yoko/branches/cxf_port/tools/src/test/resources/idl/Oneway.idl
URL: http://svn.apache.org/viewvc/incubator/yoko/branches/cxf_port/tools/src/test/resources/idl/Oneway.idl?view=diff&rev=465642&r1=465641&r2=465642
==============================================================================
--- incubator/yoko/branches/cxf_port/tools/src/test/resources/idl/Oneway.idl (original)
+++ incubator/yoko/branches/cxf_port/tools/src/test/resources/idl/Oneway.idl Thu Oct 19 07:31:44 2006
@@ -1,3 +1,21 @@
+/* 
+ * Licensed to the Apache Software Foundation (ASF) under one
+ * or more contributor license agreements. See the NOTICE file
+ * distributed with this work for additional information
+ * regarding copyright ownership. The ASF licenses this file
+ * to you under the Apache License, Version 2.0 (the
+ * "License"); you may not use this file except in compliance
+ * with the License. You may obtain a copy of the License at
+ *
+ * http://www.apache.org/licenses/LICENSE-2.0
+ *
+ * Unless required by applicable law or agreed to in writing,
+ * software distributed under the License is distributed on an
+ * "AS IS" BASIS, WITHOUT WARRANTIES OR CONDITIONS OF ANY
+ * KIND, either express or implied. See the License for the
+ * specific language governing permissions and limitations
+ * under the License.
+*/ 
 interface OperationTest {
 
 	oneway void onewayOperation    ();

Modified: incubator/yoko/branches/cxf_port/tools/src/test/resources/idl/Struct.idl
URL: http://svn.apache.org/viewvc/incubator/yoko/branches/cxf_port/tools/src/test/resources/idl/Struct.idl?view=diff&rev=465642&r1=465641&r2=465642
==============================================================================
--- incubator/yoko/branches/cxf_port/tools/src/test/resources/idl/Struct.idl (original)
+++ incubator/yoko/branches/cxf_port/tools/src/test/resources/idl/Struct.idl Thu Oct 19 07:31:44 2006
@@ -1,4 +1,21 @@
-
+/* 
+ * Licensed to the Apache Software Foundation (ASF) under one
+ * or more contributor license agreements. See the NOTICE file
+ * distributed with this work for additional information
+ * regarding copyright ownership. The ASF licenses this file
+ * to you under the Apache License, Version 2.0 (the
+ * "License"); you may not use this file except in compliance
+ * with the License. You may obtain a copy of the License at
+ *
+ * http://www.apache.org/licenses/LICENSE-2.0
+ *
+ * Unless required by applicable law or agreed to in writing,
+ * software distributed under the License is distributed on an
+ * "AS IS" BASIS, WITHOUT WARRANTIES OR CONDITIONS OF ANY
+ * KIND, either express or implied. See the License for the
+ * specific language governing permissions and limitations
+ * under the License.
+*/ 
 struct OutsideStruct {
         long number;
         string word;

Modified: incubator/yoko/branches/cxf_port/tools/src/test/resources/idl/Union.idl
URL: http://svn.apache.org/viewvc/incubator/yoko/branches/cxf_port/tools/src/test/resources/idl/Union.idl?view=diff&rev=465642&r1=465641&r2=465642
==============================================================================
--- incubator/yoko/branches/cxf_port/tools/src/test/resources/idl/Union.idl (original)
+++ incubator/yoko/branches/cxf_port/tools/src/test/resources/idl/Union.idl Thu Oct 19 07:31:44 2006
@@ -1,3 +1,21 @@
+/* 
+ * Licensed to the Apache Software Foundation (ASF) under one
+ * or more contributor license agreements. See the NOTICE file
+ * distributed with this work for additional information
+ * regarding copyright ownership. The ASF licenses this file
+ * to you under the Apache License, Version 2.0 (the
+ * "License"); you may not use this file except in compliance
+ * with the License. You may obtain a copy of the License at
+ *
+ * http://www.apache.org/licenses/LICENSE-2.0
+ *
+ * Unless required by applicable law or agreed to in writing,
+ * software distributed under the License is distributed on an
+ * "AS IS" BASIS, WITHOUT WARRANTIES OR CONDITIONS OF ANY
+ * KIND, either express or implied. See the License for the
+ * specific language governing permissions and limitations
+ * under the License.
+*/ 
 enum e1 {
  	e1_1,
 	e1_2,

Modified: incubator/yoko/branches/cxf_port/tools/src/test/resources/idl/expected_Const.wsdl
URL: http://svn.apache.org/viewvc/incubator/yoko/branches/cxf_port/tools/src/test/resources/idl/expected_Const.wsdl?view=diff&rev=465642&r1=465641&r2=465642
==============================================================================
--- incubator/yoko/branches/cxf_port/tools/src/test/resources/idl/expected_Const.wsdl (original)
+++ incubator/yoko/branches/cxf_port/tools/src/test/resources/idl/expected_Const.wsdl Thu Oct 19 07:31:44 2006
@@ -1,4 +1,22 @@
 <?xml version="1.0" encoding="UTF-8"?>
+<!--
+ * Licensed to the Apache Software Foundation (ASF) under one
+ * or more contributor license agreements. See the NOTICE file
+ * distributed with this work for additional information
+ * regarding copyright ownership. The ASF licenses this file
+ * to you under the Apache License, Version 2.0 (the
+ * "License"); you may not use this file except in compliance
+ * with the License. You may obtain a copy of the License at
+ *
+ * http://www.apache.org/licenses/LICENSE-2.0
+ *
+ * Unless required by applicable law or agreed to in writing,
+ * software distributed under the License is distributed on an
+ * "AS IS" BASIS, WITHOUT WARRANTIES OR CONDITIONS OF ANY
+ * KIND, either express or implied. See the License for the
+ * specific language governing permissions and limitations
+ * under the License.
+-->
 <wsdl:definitions targetNamespace="http://schemas.apache.org/yoko/idl/Const" xmlns:tns="http://schemas.apache.org/yoko/idl/Const" xmlns:corba="http://schemas.apache.org/yoko/bindings/corba" xmlns:xsd="http://www.w3.org/2001/XMLSchema" xmlns:soap="http://schemas.xmlsoap.org/wsdl/soap/" xmlns:wsdl="http://schemas.xmlsoap.org/wsdl/">
   <corba:typeMapping targetNamespace="http://schemas.apache.org/yoko/idl/Const/typemap">
     <corba:const xmlns:xs="http://www.w3.org/2001/XMLSchema" xmlns="http://schemas.apache.org/yoko/idl/Const/typemap" value="-12" idltype="corba:short" name="glob_short" type="xs:short" />

Modified: incubator/yoko/branches/cxf_port/tools/src/test/resources/idl/expected_Enum.wsdl
URL: http://svn.apache.org/viewvc/incubator/yoko/branches/cxf_port/tools/src/test/resources/idl/expected_Enum.wsdl?view=diff&rev=465642&r1=465641&r2=465642
==============================================================================
--- incubator/yoko/branches/cxf_port/tools/src/test/resources/idl/expected_Enum.wsdl (original)
+++ incubator/yoko/branches/cxf_port/tools/src/test/resources/idl/expected_Enum.wsdl Thu Oct 19 07:31:44 2006
@@ -1,4 +1,22 @@
 <?xml version="1.0" encoding="UTF-8"?>
+<!--
+ * Licensed to the Apache Software Foundation (ASF) under one
+ * or more contributor license agreements. See the NOTICE file
+ * distributed with this work for additional information
+ * regarding copyright ownership. The ASF licenses this file
+ * to you under the Apache License, Version 2.0 (the
+ * "License"); you may not use this file except in compliance
+ * with the License. You may obtain a copy of the License at
+ *
+ * http://www.apache.org/licenses/LICENSE-2.0
+ *
+ * Unless required by applicable law or agreed to in writing,
+ * software distributed under the License is distributed on an
+ * "AS IS" BASIS, WITHOUT WARRANTIES OR CONDITIONS OF ANY
+ * KIND, either express or implied. See the License for the
+ * specific language governing permissions and limitations
+ * under the License.
+-->
 <wsdl:definitions targetNamespace="http://schemas.apache.org/yoko/idl/Enum" xmlns:tns="http://schemas.apache.org/yoko/idl/Enum" xmlns:corba="http://schemas.apache.org/yoko/bindings/corba" xmlns:xsd="http://www.w3.org/2001/XMLSchema" xmlns:soap="http://schemas.xmlsoap.org/wsdl/soap/" xmlns:wsdl="http://schemas.xmlsoap.org/wsdl/">
   <corba:typeMapping targetNamespace="http://schemas.apache.org/yoko/idl/Enum/typemap">
     <corba:enum xmlns:ns4="http://schemas.apache.org/yoko/idl/Enum" xmlns="http://schemas.apache.org/yoko/idl/Enum/typemap" repositoryID="IDL:e_type1:1.0" name="e_type1" type="ns4:e_type1">

Modified: incubator/yoko/branches/cxf_port/tools/src/test/resources/idl/expected_Exception.wsdl
URL: http://svn.apache.org/viewvc/incubator/yoko/branches/cxf_port/tools/src/test/resources/idl/expected_Exception.wsdl?view=diff&rev=465642&r1=465641&r2=465642
==============================================================================
--- incubator/yoko/branches/cxf_port/tools/src/test/resources/idl/expected_Exception.wsdl (original)
+++ incubator/yoko/branches/cxf_port/tools/src/test/resources/idl/expected_Exception.wsdl Thu Oct 19 07:31:44 2006
@@ -1,4 +1,22 @@
 <?xml version="1.0" encoding="UTF-8"?>
+<!--
+ * Licensed to the Apache Software Foundation (ASF) under one
+ * or more contributor license agreements. See the NOTICE file
+ * distributed with this work for additional information
+ * regarding copyright ownership. The ASF licenses this file
+ * to you under the Apache License, Version 2.0 (the
+ * "License"); you may not use this file except in compliance
+ * with the License. You may obtain a copy of the License at
+ *
+ * http://www.apache.org/licenses/LICENSE-2.0
+ *
+ * Unless required by applicable law or agreed to in writing,
+ * software distributed under the License is distributed on an
+ * "AS IS" BASIS, WITHOUT WARRANTIES OR CONDITIONS OF ANY
+ * KIND, either express or implied. See the License for the
+ * specific language governing permissions and limitations
+ * under the License.
+-->
 <wsdl:definitions targetNamespace="http://schemas.apache.org/yoko/idl/Exception" xmlns:tns="http://schemas.apache.org/yoko/idl/Exception" xmlns:corba="http://schemas.apache.org/yoko/bindings/corba" xmlns:xsd="http://www.w3.org/2001/XMLSchema" xmlns:soap="http://schemas.xmlsoap.org/wsdl/soap/" xmlns:wsdl="http://schemas.xmlsoap.org/wsdl/">
   <corba:typeMapping targetNamespace="http://schemas.apache.org/yoko/idl/Exception/typemap">
     <corba:exception xmlns:ns4="http://schemas.apache.org/yoko/idl/Exception" xmlns="http://schemas.apache.org/yoko/idl/Exception/typemap" repositoryID="IDL:ExternalException:1.0" name="ExternalException" type="ns4:ExternalExceptionType">

Modified: incubator/yoko/branches/cxf_port/tools/src/test/resources/idl/expected_Fixed.wsdl
URL: http://svn.apache.org/viewvc/incubator/yoko/branches/cxf_port/tools/src/test/resources/idl/expected_Fixed.wsdl?view=diff&rev=465642&r1=465641&r2=465642
==============================================================================
--- incubator/yoko/branches/cxf_port/tools/src/test/resources/idl/expected_Fixed.wsdl (original)
+++ incubator/yoko/branches/cxf_port/tools/src/test/resources/idl/expected_Fixed.wsdl Thu Oct 19 07:31:44 2006
@@ -1,4 +1,22 @@
 <?xml version="1.0" encoding="UTF-8"?>
+<!--
+ * Licensed to the Apache Software Foundation (ASF) under one
+ * or more contributor license agreements. See the NOTICE file
+ * distributed with this work for additional information
+ * regarding copyright ownership. The ASF licenses this file
+ * to you under the Apache License, Version 2.0 (the
+ * "License"); you may not use this file except in compliance
+ * with the License. You may obtain a copy of the License at
+ *
+ * http://www.apache.org/licenses/LICENSE-2.0
+ *
+ * Unless required by applicable law or agreed to in writing,
+ * software distributed under the License is distributed on an
+ * "AS IS" BASIS, WITHOUT WARRANTIES OR CONDITIONS OF ANY
+ * KIND, either express or implied. See the License for the
+ * specific language governing permissions and limitations
+ * under the License.
+-->
 <wsdl:definitions targetNamespace="http://schemas.apache.org/yoko/idl/Fixed" xmlns:tns="http://schemas.apache.org/yoko/idl/Fixed" xmlns:corba="http://schemas.apache.org/yoko/bindings/corba" xmlns:xsd="http://www.w3.org/2001/XMLSchema" xmlns:soap="http://schemas.xmlsoap.org/wsdl/soap/" xmlns:wsdl="http://schemas.xmlsoap.org/wsdl/">
   <corba:typeMapping targetNamespace="http://schemas.apache.org/yoko/idl/Fixed/typemap">
     <corba:fixed xmlns:ns4="http://schemas.apache.org/yoko/idl/Fixed" xmlns="http://schemas.apache.org/yoko/idl/Fixed/typemap" scale="2" digits="31" repositoryID="IDL:f1_1:1.0" name="f1_1" type="ns4:f1_1" />

Modified: incubator/yoko/branches/cxf_port/tools/src/test/resources/idl/expected_HelloWorld.wsdl
URL: http://svn.apache.org/viewvc/incubator/yoko/branches/cxf_port/tools/src/test/resources/idl/expected_HelloWorld.wsdl?view=diff&rev=465642&r1=465641&r2=465642
==============================================================================
--- incubator/yoko/branches/cxf_port/tools/src/test/resources/idl/expected_HelloWorld.wsdl (original)
+++ incubator/yoko/branches/cxf_port/tools/src/test/resources/idl/expected_HelloWorld.wsdl Thu Oct 19 07:31:44 2006
@@ -1,4 +1,22 @@
 <?xml version="1.0" encoding="UTF-8"?>
+<!--
+ * Licensed to the Apache Software Foundation (ASF) under one
+ * or more contributor license agreements. See the NOTICE file
+ * distributed with this work for additional information
+ * regarding copyright ownership. The ASF licenses this file
+ * to you under the Apache License, Version 2.0 (the
+ * "License"); you may not use this file except in compliance
+ * with the License. You may obtain a copy of the License at
+ *
+ * http://www.apache.org/licenses/LICENSE-2.0
+ *
+ * Unless required by applicable law or agreed to in writing,
+ * software distributed under the License is distributed on an
+ * "AS IS" BASIS, WITHOUT WARRANTIES OR CONDITIONS OF ANY
+ * KIND, either express or implied. See the License for the
+ * specific language governing permissions and limitations
+ * under the License.
+-->
 <wsdl:definitions targetNamespace="http://schemas.apache.org/yoko/idl/HelloWorld" xmlns:tns="http://schemas.apache.org/yoko/idl/HelloWorld" xmlns:corba="http://schemas.apache.org/yoko/bindings/corba" xmlns:xsd="http://www.w3.org/2001/XMLSchema" xmlns:soap="http://schemas.xmlsoap.org/wsdl/soap/" xmlns:wsdl="http://schemas.xmlsoap.org/wsdl/">
   <corba:typeMapping targetNamespace="http://schemas.apache.org/yoko/idl/HelloWorld/typemap" />
   <wsdl:types>

Modified: incubator/yoko/branches/cxf_port/tools/src/test/resources/idl/expected_Oneway.wsdl
URL: http://svn.apache.org/viewvc/incubator/yoko/branches/cxf_port/tools/src/test/resources/idl/expected_Oneway.wsdl?view=diff&rev=465642&r1=465641&r2=465642
==============================================================================
--- incubator/yoko/branches/cxf_port/tools/src/test/resources/idl/expected_Oneway.wsdl (original)
+++ incubator/yoko/branches/cxf_port/tools/src/test/resources/idl/expected_Oneway.wsdl Thu Oct 19 07:31:44 2006
@@ -1,4 +1,22 @@
 <?xml version="1.0" encoding="UTF-8"?>
+<!--
+ * Licensed to the Apache Software Foundation (ASF) under one
+ * or more contributor license agreements. See the NOTICE file
+ * distributed with this work for additional information
+ * regarding copyright ownership. The ASF licenses this file
+ * to you under the Apache License, Version 2.0 (the
+ * "License"); you may not use this file except in compliance
+ * with the License. You may obtain a copy of the License at
+ *
+ * http://www.apache.org/licenses/LICENSE-2.0
+ *
+ * Unless required by applicable law or agreed to in writing,
+ * software distributed under the License is distributed on an
+ * "AS IS" BASIS, WITHOUT WARRANTIES OR CONDITIONS OF ANY
+ * KIND, either express or implied. See the License for the
+ * specific language governing permissions and limitations
+ * under the License.
+-->
 <wsdl:definitions targetNamespace="http://schemas.apache.org/yoko/idl/Oneway" xmlns:tns="http://schemas.apache.org/yoko/idl/Oneway" xmlns:corba="http://schemas.apache.org/yoko/bindings/corba" xmlns:xsd="http://www.w3.org/2001/XMLSchema" xmlns:soap="http://schemas.xmlsoap.org/wsdl/soap/" xmlns:wsdl="http://schemas.xmlsoap.org/wsdl/">
   <corba:typeMapping targetNamespace="http://schemas.apache.org/yoko/idl/Oneway/typemap" />
   <wsdl:types>

Modified: incubator/yoko/branches/cxf_port/tools/src/test/resources/idl/expected_Primitives.wsdl
URL: http://svn.apache.org/viewvc/incubator/yoko/branches/cxf_port/tools/src/test/resources/idl/expected_Primitives.wsdl?view=diff&rev=465642&r1=465641&r2=465642
==============================================================================
--- incubator/yoko/branches/cxf_port/tools/src/test/resources/idl/expected_Primitives.wsdl (original)
+++ incubator/yoko/branches/cxf_port/tools/src/test/resources/idl/expected_Primitives.wsdl Thu Oct 19 07:31:44 2006
@@ -1,4 +1,22 @@
 <?xml version="1.0" encoding="UTF-8"?>
+<!--
+ * Licensed to the Apache Software Foundation (ASF) under one
+ * or more contributor license agreements. See the NOTICE file
+ * distributed with this work for additional information
+ * regarding copyright ownership. The ASF licenses this file
+ * to you under the Apache License, Version 2.0 (the
+ * "License"); you may not use this file except in compliance
+ * with the License. You may obtain a copy of the License at
+ *
+ * http://www.apache.org/licenses/LICENSE-2.0
+ *
+ * Unless required by applicable law or agreed to in writing,
+ * software distributed under the License is distributed on an
+ * "AS IS" BASIS, WITHOUT WARRANTIES OR CONDITIONS OF ANY
+ * KIND, either express or implied. See the License for the
+ * specific language governing permissions and limitations
+ * under the License.
+-->
 <wsdl:definitions targetNamespace="http://schemas.apache.org/yoko/idl/primitives" xmlns:tns="http://schemas.apache.org/yoko/idl/primitives" xmlns:corba="http://schemas.apache.org/yoko/bindings/corba" xmlns:xsd="http://www.w3.org/2001/XMLSchema" xmlns:soap="http://schemas.xmlsoap.org/wsdl/soap/" xmlns:wsdl="http://schemas.xmlsoap.org/wsdl/">
   <corba:typeMapping targetNamespace="http://schemas.apache.org/yoko/idl/primitives/typemap">
     <corba:sequence xmlns:ns4="http://schemas.apache.org/yoko/idl/primitives" xmlns="http://schemas.apache.org/yoko/idl/primitives/typemap" elemtype="corba:string" bound="0" repositoryID="IDL:stringArray:1.0" name="stringArray" type="ns4:stringArray" />

Modified: incubator/yoko/branches/cxf_port/tools/src/test/resources/idl/expected_Struct.wsdl
URL: http://svn.apache.org/viewvc/incubator/yoko/branches/cxf_port/tools/src/test/resources/idl/expected_Struct.wsdl?view=diff&rev=465642&r1=465641&r2=465642
==============================================================================
--- incubator/yoko/branches/cxf_port/tools/src/test/resources/idl/expected_Struct.wsdl (original)
+++ incubator/yoko/branches/cxf_port/tools/src/test/resources/idl/expected_Struct.wsdl Thu Oct 19 07:31:44 2006
@@ -1,4 +1,22 @@
 <?xml version="1.0" encoding="UTF-8"?>
+<!--
+ * Licensed to the Apache Software Foundation (ASF) under one
+ * or more contributor license agreements. See the NOTICE file
+ * distributed with this work for additional information
+ * regarding copyright ownership. The ASF licenses this file
+ * to you under the Apache License, Version 2.0 (the
+ * "License"); you may not use this file except in compliance
+ * with the License. You may obtain a copy of the License at
+ *
+ * http://www.apache.org/licenses/LICENSE-2.0
+ *
+ * Unless required by applicable law or agreed to in writing,
+ * software distributed under the License is distributed on an
+ * "AS IS" BASIS, WITHOUT WARRANTIES OR CONDITIONS OF ANY
+ * KIND, either express or implied. See the License for the
+ * specific language governing permissions and limitations
+ * under the License.
+-->
 <wsdl:definitions targetNamespace="http://schemas.apache.org/yoko/idl/Struct" xmlns:tns="http://schemas.apache.org/yoko/idl/Struct" xmlns:corba="http://schemas.apache.org/yoko/bindings/corba" xmlns:xsd="http://www.w3.org/2001/XMLSchema" xmlns:soap="http://schemas.xmlsoap.org/wsdl/soap/" xmlns:wsdl="http://schemas.xmlsoap.org/wsdl/">
   <corba:typeMapping targetNamespace="http://schemas.apache.org/yoko/idl/Struct/typemap">
     <corba:struct xmlns:ns4="http://schemas.apache.org/yoko/idl/Struct" xmlns="http://schemas.apache.org/yoko/idl/Struct/typemap" repositoryID="IDL:OutsideStruct:1.0" name="OutsideStruct" type="ns4:OutsideStruct">

Modified: incubator/yoko/branches/cxf_port/tools/src/test/resources/idl/expected_Union.wsdl
URL: http://svn.apache.org/viewvc/incubator/yoko/branches/cxf_port/tools/src/test/resources/idl/expected_Union.wsdl?view=diff&rev=465642&r1=465641&r2=465642
==============================================================================
--- incubator/yoko/branches/cxf_port/tools/src/test/resources/idl/expected_Union.wsdl (original)
+++ incubator/yoko/branches/cxf_port/tools/src/test/resources/idl/expected_Union.wsdl Thu Oct 19 07:31:44 2006
@@ -1,4 +1,22 @@
 <?xml version="1.0" encoding="UTF-8"?>
+<!--
+ * Licensed to the Apache Software Foundation (ASF) under one
+ * or more contributor license agreements. See the NOTICE file
+ * distributed with this work for additional information
+ * regarding copyright ownership. The ASF licenses this file
+ * to you under the Apache License, Version 2.0 (the
+ * "License"); you may not use this file except in compliance
+ * with the License. You may obtain a copy of the License at
+ *
+ * http://www.apache.org/licenses/LICENSE-2.0
+ *
+ * Unless required by applicable law or agreed to in writing,
+ * software distributed under the License is distributed on an
+ * "AS IS" BASIS, WITHOUT WARRANTIES OR CONDITIONS OF ANY
+ * KIND, either express or implied. See the License for the
+ * specific language governing permissions and limitations
+ * under the License.
+-->
 <wsdl:definitions targetNamespace="http://schemas.apache.org/yoko/idl/Union" xmlns:tns="http://schemas.apache.org/yoko/idl/Union" xmlns:corba="http://schemas.apache.org/yoko/bindings/corba" xmlns:xsd="http://www.w3.org/2001/XMLSchema" xmlns:soap="http://schemas.xmlsoap.org/wsdl/soap/" xmlns:wsdl="http://schemas.xmlsoap.org/wsdl/">
   <corba:typeMapping targetNamespace="http://schemas.apache.org/yoko/idl/Union/typemap">
     <corba:enum xmlns:ns4="http://schemas.apache.org/yoko/idl/Union" xmlns="http://schemas.apache.org/yoko/idl/Union/typemap" repositoryID="IDL:e1:1.0" name="e1" type="ns4:e1">

Modified: incubator/yoko/branches/cxf_port/tools/src/test/resources/idlgen/TypeInheritance.wsdl
URL: http://svn.apache.org/viewvc/incubator/yoko/branches/cxf_port/tools/src/test/resources/idlgen/TypeInheritance.wsdl?view=diff&rev=465642&r1=465641&r2=465642
==============================================================================
--- incubator/yoko/branches/cxf_port/tools/src/test/resources/idlgen/TypeInheritance.wsdl (original)
+++ incubator/yoko/branches/cxf_port/tools/src/test/resources/idlgen/TypeInheritance.wsdl Thu Oct 19 07:31:44 2006
@@ -1,4 +1,22 @@
 <?xml version="1.0" encoding="UTF-8"?>
+<!--
+ * Licensed to the Apache Software Foundation (ASF) under one
+ * or more contributor license agreements. See the NOTICE file
+ * distributed with this work for additional information
+ * regarding copyright ownership. The ASF licenses this file
+ * to you under the Apache License, Version 2.0 (the
+ * "License"); you may not use this file except in compliance
+ * with the License. You may obtain a copy of the License at
+ *
+ * http://www.apache.org/licenses/LICENSE-2.0
+ *
+ * Unless required by applicable law or agreed to in writing,
+ * software distributed under the License is distributed on an
+ * "AS IS" BASIS, WITHOUT WARRANTIES OR CONDITIONS OF ANY
+ * KIND, either express or implied. See the License for the
+ * specific language governing permissions and limitations
+ * under the License.
+-->
 <definitions name="SoapInteropCompound" targetNamespace="http://soapinterop.org/" xmlns:typens="http://soapinterop.org/xsd" xmlns:corba="http://schemas.apache.org/yoko/bindings/corba" xmlns:ns1="http://soapinterop.org/corba/typemap/" xmlns:wsdlns="http://soapinterop.org/" xmlns:xsd="http://www.w3.org/2001/XMLSchema" xmlns:soap="http://schemas.xmlsoap.org/wsdl/soap/" xmlns="http://schemas.xmlsoap.org/wsdl/">
   <corba:typeMapping targetNamespace="http://soapinterop.org/corba/typemap/">
     <corba:struct xmlns:typens="http://soapinterop.org/xsd" repositoryID="IDL:Type5SequenceStruct:1.0" type="typens:Type5" name="Type5SequenceStruct">

Modified: incubator/yoko/branches/cxf_port/tools/src/test/resources/idlgen/alltype.wsdl
URL: http://svn.apache.org/viewvc/incubator/yoko/branches/cxf_port/tools/src/test/resources/idlgen/alltype.wsdl?view=diff&rev=465642&r1=465641&r2=465642
==============================================================================
--- incubator/yoko/branches/cxf_port/tools/src/test/resources/idlgen/alltype.wsdl (original)
+++ incubator/yoko/branches/cxf_port/tools/src/test/resources/idlgen/alltype.wsdl Thu Oct 19 07:31:44 2006
@@ -1,4 +1,22 @@
-<?xml version="1.0" encoding="UTF-8"?>
+<?xml version="1.0" encoding="UTF-8"?>
+<!--
+ * Licensed to the Apache Software Foundation (ASF) under one
+ * or more contributor license agreements. See the NOTICE file
+ * distributed with this work for additional information
+ * regarding copyright ownership. The ASF licenses this file
+ * to you under the Apache License, Version 2.0 (the
+ * "License"); you may not use this file except in compliance
+ * with the License. You may obtain a copy of the License at
+ *
+ * http://www.apache.org/licenses/LICENSE-2.0
+ *
+ * Unless required by applicable law or agreed to in writing,
+ * software distributed under the License is distributed on an
+ * "AS IS" BASIS, WITHOUT WARRANTIES OR CONDITIONS OF ANY
+ * KIND, either express or implied. See the License for the
+ * specific language governing permissions and limitations
+ * under the License.
+-->
 <definitions name="BaseService" targetNamespace="http://schemas.apache.org/tests" 
     xmlns="http://schemas.xmlsoap.org/wsdl/" 
     xmlns:SOAP-ENC="http://schemas.xmlsoap.org/soap/encoding/" 

Modified: incubator/yoko/branches/cxf_port/tools/src/test/resources/idlgen/anonfixed.wsdl
URL: http://svn.apache.org/viewvc/incubator/yoko/branches/cxf_port/tools/src/test/resources/idlgen/anonfixed.wsdl?view=diff&rev=465642&r1=465641&r2=465642
==============================================================================
--- incubator/yoko/branches/cxf_port/tools/src/test/resources/idlgen/anonfixed.wsdl (original)
+++ incubator/yoko/branches/cxf_port/tools/src/test/resources/idlgen/anonfixed.wsdl Thu Oct 19 07:31:44 2006
@@ -1,4 +1,22 @@
 <?xml version="1.0" encoding="UTF-8"?>
+<!--
+ * Licensed to the Apache Software Foundation (ASF) under one
+ * or more contributor license agreements. See the NOTICE file
+ * distributed with this work for additional information
+ * regarding copyright ownership. The ASF licenses this file
+ * to you under the Apache License, Version 2.0 (the
+ * "License"); you may not use this file except in compliance
+ * with the License. You may obtain a copy of the License at
+ *
+ * http://www.apache.org/licenses/LICENSE-2.0
+ *
+ * Unless required by applicable law or agreed to in writing,
+ * software distributed under the License is distributed on an
+ * "AS IS" BASIS, WITHOUT WARRANTIES OR CONDITIONS OF ANY
+ * KIND, either express or implied. See the License for the
+ * specific language governing permissions and limitations
+ * under the License.
+-->
 <definitions name="l" targetNamespace="http://schemas.apache.org/idl/l.idl" xmlns:tns="http://schemas.apache.org/idl/l.idl" xmlns:corbatm="http://schemas.apache.org/typemap/corba/l.idl" xmlns:wsa="http://www.w3.org/2005/08/addressing" xmlns:corba="http://schemas.apache.org/yoko/bindings/corba" xmlns:ns1="http://schemas.apache.org/idl/l.idl/corba/typemap/" xmlns:xsd="http://www.w3.org/2001/XMLSchema" xmlns:xsd1="http://schemas.apache.org/idltypes/l.idl" xmlns="http://schemas.xmlsoap.org/wsdl/">
   <corba:typeMapping targetNamespace="http://schemas.apache.org/idl/l.idl/corba/typemap/">
     <corba:struct xmlns:xsd1="http://schemas.apache.org/idltypes/l.idl" repositoryID="IDL:X/S:1.0" type="xsd1:X.S" name="X.S">

Modified: incubator/yoko/branches/cxf_port/tools/src/test/resources/idlgen/anontype.wsdl
URL: http://svn.apache.org/viewvc/incubator/yoko/branches/cxf_port/tools/src/test/resources/idlgen/anontype.wsdl?view=diff&rev=465642&r1=465641&r2=465642
==============================================================================
--- incubator/yoko/branches/cxf_port/tools/src/test/resources/idlgen/anontype.wsdl (original)
+++ incubator/yoko/branches/cxf_port/tools/src/test/resources/idlgen/anontype.wsdl Thu Oct 19 07:31:44 2006
@@ -1,4 +1,22 @@
 <?xml version="1.0" encoding="UTF-8"?>
+<!--
+ * Licensed to the Apache Software Foundation (ASF) under one
+ * or more contributor license agreements. See the NOTICE file
+ * distributed with this work for additional information
+ * regarding copyright ownership. The ASF licenses this file
+ * to you under the Apache License, Version 2.0 (the
+ * "License"); you may not use this file except in compliance
+ * with the License. You may obtain a copy of the License at
+ *
+ * http://www.apache.org/licenses/LICENSE-2.0
+ *
+ * Unless required by applicable law or agreed to in writing,
+ * software distributed under the License is distributed on an
+ * "AS IS" BASIS, WITHOUT WARRANTIES OR CONDITIONS OF ANY
+ * KIND, either express or implied. See the License for the
+ * specific language governing permissions and limitations
+ * under the License.
+-->
 <definitions name="m" targetNamespace="http://schemas.apache.org/idl/m.idl" xmlns:tns="http://schemas.apache.org/idl/m.idl" xmlns:corbatm="http://schemas.apache.org/typemap/corba/m.idl" xmlns:wsa="http://www.w3.org/2005/08/addressing" xmlns:corba="http://schemas.apache.org/yoko/bindings/corba" xmlns:ns1="http://schemas.apache.org/idl/m.idl/corba/typemap/" xmlns:xsd="http://www.w3.org/2001/XMLSchema" xmlns:xsd1="http://schemas.apache.org/idltypes/m.idl" xmlns="http://schemas.xmlsoap.org/wsdl/">
   <corba:typeMapping targetNamespace="http://schemas.apache.org/idl/m.idl/corba/typemap/">
     <corba:array xmlns:xsd1="http://schemas.apache.org/idltypes/m.idl" xmlns:ns1="http://schemas.apache.org/idl/m.idl/corba/typemap/" elemtype="ns1:X._5_A" bound="3" repositoryID="IDL:X/A:1.0" type="xsd1:X.A" name="X.A" />

Modified: incubator/yoko/branches/cxf_port/tools/src/test/resources/idlgen/any.wsdl
URL: http://svn.apache.org/viewvc/incubator/yoko/branches/cxf_port/tools/src/test/resources/idlgen/any.wsdl?view=diff&rev=465642&r1=465641&r2=465642
==============================================================================
--- incubator/yoko/branches/cxf_port/tools/src/test/resources/idlgen/any.wsdl (original)
+++ incubator/yoko/branches/cxf_port/tools/src/test/resources/idlgen/any.wsdl Thu Oct 19 07:31:44 2006
@@ -1,4 +1,22 @@
 <?xml version="1.0" encoding="UTF-8"?>
+<!--
+ * Licensed to the Apache Software Foundation (ASF) under one
+ * or more contributor license agreements. See the NOTICE file
+ * distributed with this work for additional information
+ * regarding copyright ownership. The ASF licenses this file
+ * to you under the Apache License, Version 2.0 (the
+ * "License"); you may not use this file except in compliance
+ * with the License. You may obtain a copy of the License at
+ *
+ * http://www.apache.org/licenses/LICENSE-2.0
+ *
+ * Unless required by applicable law or agreed to in writing,
+ * software distributed under the License is distributed on an
+ * "AS IS" BASIS, WITHOUT WARRANTIES OR CONDITIONS OF ANY
+ * KIND, either express or implied. See the License for the
+ * specific language governing permissions and limitations
+ * under the License.
+-->
 <definitions name="any.idl" targetNamespace="http://schemas.apache.org/idl/any.idl" xmlns:tns="http://schemas.apache.org/idl/any.idl" xmlns:corbatm="http://schemas.apache.org/typemap/corba/any.idl" xmlns:corba="http://schemas.apache.org/yoko/bindings/corba" xmlns:ns1="http://schemas.apache.org/idl/any.idl/corba/typemap/" xmlns:xsd="http://www.w3.org/2001/XMLSchema" xmlns:xsd1="http://schemas.apache.org/idltypes/any.idl" xmlns:references="http://schemas.apache.org/references" xmlns="http://schemas.xmlsoap.org/wsdl/">
   <corba:typeMapping targetNamespace="http://schemas.apache.org/idl/any.idl/corba/typemap/">
     <corba:union xmlns:xsd1="http://schemas.apache.org/idltypes/any.idl" discriminator="corba:long" repositoryID="IDL:anyInterface/_omg_SimpleUnion:1.0" type="xsd1:anyInterface._omg_SimpleUnion" name="anyInterface._omg_SimpleUnion">
@@ -46,7 +64,6 @@
                           <corba:member name="varAny" idltype="corba:any" />
                           <corba:member name="varString" idltype="corba:string" />
                         </corba:struct>
-                          <corba:const xmlns:xs="http://www.w3.org/2001/XMLSchema" xmlns="" xmlns:ns4="http://schemas.xmlsoap.org/wsdl/" xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance" xsi:type="corbaTypeImpl" type="xs:string" name="string" />
                         </corba:typeMapping>
   <types>
     <schema targetNamespace="http://schemas.apache.org/idltypes/any.idl" xmlns="http://www.w3.org/2001/XMLSchema" xmlns:wsdl="http://schemas.xmlsoap.org/wsdl/">
@@ -135,4 +152,4 @@
       </output>
     </operation>
   </binding>
-</definitions>
+</definitions>
\ No newline at end of file

Modified: incubator/yoko/branches/cxf_port/tools/src/test/resources/idlgen/array.wsdl
URL: http://svn.apache.org/viewvc/incubator/yoko/branches/cxf_port/tools/src/test/resources/idlgen/array.wsdl?view=diff&rev=465642&r1=465641&r2=465642
==============================================================================
--- incubator/yoko/branches/cxf_port/tools/src/test/resources/idlgen/array.wsdl (original)
+++ incubator/yoko/branches/cxf_port/tools/src/test/resources/idlgen/array.wsdl Thu Oct 19 07:31:44 2006
@@ -1,4 +1,22 @@
 <?xml version="1.0" encoding="UTF-8"?>
+<!--
+ * Licensed to the Apache Software Foundation (ASF) under one
+ * or more contributor license agreements. See the NOTICE file
+ * distributed with this work for additional information
+ * regarding copyright ownership. The ASF licenses this file
+ * to you under the Apache License, Version 2.0 (the
+ * "License"); you may not use this file except in compliance
+ * with the License. You may obtain a copy of the License at
+ *
+ * http://www.apache.org/licenses/LICENSE-2.0
+ *
+ * Unless required by applicable law or agreed to in writing,
+ * software distributed under the License is distributed on an
+ * "AS IS" BASIS, WITHOUT WARRANTIES OR CONDITIONS OF ANY
+ * KIND, either express or implied. See the License for the
+ * specific language governing permissions and limitations
+ * under the License.
+-->
 <definitions name="anon.idl" targetNamespace="http://schemas.apache.org/idl/anon.idl" xmlns:tns="http://schemas.apache.org/idl/anon.idl" xmlns:corbatm="http://schemas.apache.org/bindings/corba/typemap" xmlns:corba="http://schemas.apache.org/yoko/bindings/corba" xmlns:ns1="http://schemas.apache.org/idl/anon.idl/corba/typemap/" xmlns:xsd="http://www.w3.org/2001/XMLSchema" xmlns:xsd1="http://schemas.apache.org/idltypes/anon.idl" xmlns="http://schemas.xmlsoap.org/wsdl/">
   <corba:typeMapping targetNamespace="http://schemas.apache.org/idl/anon.idl/corba/typemap/">
     <corba:sequence xmlns:xsd1="http://schemas.apache.org/idltypes/anon.idl" elemtype="corba:string" bound="1" repositoryID="IDL:p2Array:1.0" type="xsd1:p2" name="p2Array" />

Modified: incubator/yoko/branches/cxf_port/tools/src/test/resources/idlgen/content.wsdl
URL: http://svn.apache.org/viewvc/incubator/yoko/branches/cxf_port/tools/src/test/resources/idlgen/content.wsdl?view=diff&rev=465642&r1=465641&r2=465642
==============================================================================
--- incubator/yoko/branches/cxf_port/tools/src/test/resources/idlgen/content.wsdl (original)
+++ incubator/yoko/branches/cxf_port/tools/src/test/resources/idlgen/content.wsdl Thu Oct 19 07:31:44 2006
@@ -1,4 +1,22 @@
 <?xml version="1.0" encoding="UTF-8"?>
+<!--
+ * Licensed to the Apache Software Foundation (ASF) under one
+ * or more contributor license agreements. See the NOTICE file
+ * distributed with this work for additional information
+ * regarding copyright ownership. The ASF licenses this file
+ * to you under the Apache License, Version 2.0 (the
+ * "License"); you may not use this file except in compliance
+ * with the License. You may obtain a copy of the License at
+ *
+ * http://www.apache.org/licenses/LICENSE-2.0
+ *
+ * Unless required by applicable law or agreed to in writing,
+ * software distributed under the License is distributed on an
+ * "AS IS" BASIS, WITHOUT WARRANTIES OR CONDITIONS OF ANY
+ * KIND, either express or implied. See the License for the
+ * specific language governing permissions and limitations
+ * under the License.
+-->
 <definitions targetNamespace="http://schemas.apache.org/" xmlns:typens="http://schemas.apache.org/xsd" xmlns:corba="http://schemas.apache.org/yoko/bindings/corba" xmlns:ns1="http://schemas.apache.org/corba/typemap/" xmlns:wsdlns="http://schemas.apache.org/" xmlns:xsd="http://www.w3.org/2001/XMLSchema" xmlns:soap="http://schemas.xmlsoap.org/wsdl/soap/" xmlns="http://schemas.xmlsoap.org/wsdl/">
   <corba:typeMapping targetNamespace="http://schemas.apache.org/corba/typemap/">
     <corba:struct xmlns:typens="http://schemas.apache.org/xsd" repositoryID="IDL:sub1SequenceStruct:1.0" type="typens:sub1" name="sub1SequenceStruct">

Modified: incubator/yoko/branches/cxf_port/tools/src/test/resources/idlgen/enum.wsdl
URL: http://svn.apache.org/viewvc/incubator/yoko/branches/cxf_port/tools/src/test/resources/idlgen/enum.wsdl?view=diff&rev=465642&r1=465641&r2=465642
==============================================================================
--- incubator/yoko/branches/cxf_port/tools/src/test/resources/idlgen/enum.wsdl (original)
+++ incubator/yoko/branches/cxf_port/tools/src/test/resources/idlgen/enum.wsdl Thu Oct 19 07:31:44 2006
@@ -1,4 +1,22 @@
 <?xml version="1.0" encoding="UTF-8"?>
+<!--
+ * Licensed to the Apache Software Foundation (ASF) under one
+ * or more contributor license agreements. See the NOTICE file
+ * distributed with this work for additional information
+ * regarding copyright ownership. The ASF licenses this file
+ * to you under the Apache License, Version 2.0 (the
+ * "License"); you may not use this file except in compliance
+ * with the License. You may obtain a copy of the License at
+ *
+ * http://www.apache.org/licenses/LICENSE-2.0
+ *
+ * Unless required by applicable law or agreed to in writing,
+ * software distributed under the License is distributed on an
+ * "AS IS" BASIS, WITHOUT WARRANTIES OR CONDITIONS OF ANY
+ * KIND, either express or implied. See the License for the
+ * specific language governing permissions and limitations
+ * under the License.
+-->
 <definitions targetNamespace="http://efms.att.com/ms/BVOIP/v1" 
     xmlns="http://schemas.xmlsoap.org/wsdl/" 
     xmlns:ch="http://cio.att.com/CommonHeader/v2" 

Modified: incubator/yoko/branches/cxf_port/tools/src/test/resources/idlgen/exceptions.wsdl
URL: http://svn.apache.org/viewvc/incubator/yoko/branches/cxf_port/tools/src/test/resources/idlgen/exceptions.wsdl?view=diff&rev=465642&r1=465641&r2=465642
==============================================================================
--- incubator/yoko/branches/cxf_port/tools/src/test/resources/idlgen/exceptions.wsdl (original)
+++ incubator/yoko/branches/cxf_port/tools/src/test/resources/idlgen/exceptions.wsdl Thu Oct 19 07:31:44 2006
@@ -1,4 +1,22 @@
 <?xml version="1.0" encoding="UTF-8"?>
+<!--
+ * Licensed to the Apache Software Foundation (ASF) under one
+ * or more contributor license agreements. See the NOTICE file
+ * distributed with this work for additional information
+ * regarding copyright ownership. The ASF licenses this file
+ * to you under the Apache License, Version 2.0 (the
+ * "License"); you may not use this file except in compliance
+ * with the License. You may obtain a copy of the License at
+ *
+ * http://www.apache.org/licenses/LICENSE-2.0
+ *
+ * Unless required by applicable law or agreed to in writing,
+ * software distributed under the License is distributed on an
+ * "AS IS" BASIS, WITHOUT WARRANTIES OR CONDITIONS OF ANY
+ * KIND, either express or implied. See the License for the
+ * specific language governing permissions and limitations
+ * under the License.
+-->
 <definitions name="exceptions.idl" 
     targetNamespace="http://schemas.apache.org/idl/exceptions.idl" 
     xmlns:tns="http://schemas.apache.org/idl/exceptions.idl" 

Modified: incubator/yoko/branches/cxf_port/tools/src/test/resources/idlgen/expected_alltype.idl
URL: http://svn.apache.org/viewvc/incubator/yoko/branches/cxf_port/tools/src/test/resources/idlgen/expected_alltype.idl?view=diff&rev=465642&r1=465641&r2=465642
==============================================================================
--- incubator/yoko/branches/cxf_port/tools/src/test/resources/idlgen/expected_alltype.idl (original)
+++ incubator/yoko/branches/cxf_port/tools/src/test/resources/idlgen/expected_alltype.idl Thu Oct 19 07:31:44 2006
@@ -1,3 +1,21 @@
+/*
+ * Licensed to the Apache Software Foundation (ASF) under one
+ * or more contributor license agreements. See the NOTICE file
+ * distributed with this work for additional information
+ * regarding copyright ownership. The ASF licenses this file
+ * to you under the Apache License, Version 2.0 (the
+ * "License"); you may not use this file except in compliance
+ * with the License. You may obtain a copy of the License at
+ *
+ * http://www.apache.org/licenses/LICENSE-2.0
+ *
+ * Unless required by applicable law or agreed to in writing,
+ * software distributed under the License is distributed on an
+ * "AS IS" BASIS, WITHOUT WARRANTIES OR CONDITIONS OF ANY
+ * KIND, either express or implied. See the License for the
+ * specific language governing permissions and limitations
+ * under the License.
+*/
 struct SOAPStruct {
     float varFloat;
     long varInt;
@@ -8,4 +26,4 @@
     echoStruct(
         in ::SOAPStruct inputStruct
     );
-};
\ No newline at end of file
+};

Modified: incubator/yoko/branches/cxf_port/tools/src/test/resources/idlgen/expected_anonfixed.idl
URL: http://svn.apache.org/viewvc/incubator/yoko/branches/cxf_port/tools/src/test/resources/idlgen/expected_anonfixed.idl?view=diff&rev=465642&r1=465641&r2=465642
==============================================================================
--- incubator/yoko/branches/cxf_port/tools/src/test/resources/idlgen/expected_anonfixed.idl (original)
+++ incubator/yoko/branches/cxf_port/tools/src/test/resources/idlgen/expected_anonfixed.idl Thu Oct 19 07:31:44 2006
@@ -1,3 +1,21 @@
+/*
+ * Licensed to the Apache Software Foundation (ASF) under one
+ * or more contributor license agreements. See the NOTICE file
+ * distributed with this work for additional information
+ * regarding copyright ownership. The ASF licenses this file
+ * to you under the Apache License, Version 2.0 (the
+ * "License"); you may not use this file except in compliance
+ * with the License. You may obtain a copy of the License at
+ *
+ * http://www.apache.org/licenses/LICENSE-2.0
+ *
+ * Unless required by applicable law or agreed to in writing,
+ * software distributed under the License is distributed on an
+ * "AS IS" BASIS, WITHOUT WARRANTIES OR CONDITIONS OF ANY
+ * KIND, either express or implied. See the License for the
+ * specific language governing permissions and limitations
+ * under the License.
+*/
 interface X {
     struct S {
         string<4>  str;

Modified: incubator/yoko/branches/cxf_port/tools/src/test/resources/idlgen/expected_anontype.idl
URL: http://svn.apache.org/viewvc/incubator/yoko/branches/cxf_port/tools/src/test/resources/idlgen/expected_anontype.idl?view=diff&rev=465642&r1=465641&r2=465642
==============================================================================
--- incubator/yoko/branches/cxf_port/tools/src/test/resources/idlgen/expected_anontype.idl (original)
+++ incubator/yoko/branches/cxf_port/tools/src/test/resources/idlgen/expected_anontype.idl Thu Oct 19 07:31:44 2006
@@ -1,3 +1,21 @@
+/*
+ * Licensed to the Apache Software Foundation (ASF) under one
+ * or more contributor license agreements. See the NOTICE file
+ * distributed with this work for additional information
+ * regarding copyright ownership. The ASF licenses this file
+ * to you under the Apache License, Version 2.0 (the
+ * "License"); you may not use this file except in compliance
+ * with the License. You may obtain a copy of the License at
+ *
+ * http://www.apache.org/licenses/LICENSE-2.0
+ *
+ * Unless required by applicable law or agreed to in writing,
+ * software distributed under the License is distributed on an
+ * "AS IS" BASIS, WITHOUT WARRANTIES OR CONDITIONS OF ANY
+ * KIND, either express or implied. See the License for the
+ * specific language governing permissions and limitations
+ * under the License.
+*/
 interface X {
     typedef sequence<sequence<sequence<long> > >  A[3][2][1];
     struct op_a {

Modified: incubator/yoko/branches/cxf_port/tools/src/test/resources/idlgen/expected_any.idl
URL: http://svn.apache.org/viewvc/incubator/yoko/branches/cxf_port/tools/src/test/resources/idlgen/expected_any.idl?view=diff&rev=465642&r1=465641&r2=465642
==============================================================================
--- incubator/yoko/branches/cxf_port/tools/src/test/resources/idlgen/expected_any.idl (original)
+++ incubator/yoko/branches/cxf_port/tools/src/test/resources/idlgen/expected_any.idl Thu Oct 19 07:31:44 2006
@@ -1,3 +1,21 @@
+/*
+ * Licensed to the Apache Software Foundation (ASF) under one
+ * or more contributor license agreements. See the NOTICE file
+ * distributed with this work for additional information
+ * regarding copyright ownership. The ASF licenses this file
+ * to you under the Apache License, Version 2.0 (the
+ * "License"); you may not use this file except in compliance
+ * with the License. You may obtain a copy of the License at
+ *
+ * http://www.apache.org/licenses/LICENSE-2.0
+ *
+ * Unless required by applicable law or agreed to in writing,
+ * software distributed under the License is distributed on an
+ * "AS IS" BASIS, WITHOUT WARRANTIES OR CONDITIONS OF ANY
+ * KIND, either express or implied. See the License for the
+ * specific language governing permissions and limitations
+ * under the License.
+*/
 interface anyInterface {
     union _omg_SimpleUnion switch(long) {
         case 0:

Modified: incubator/yoko/branches/cxf_port/tools/src/test/resources/idlgen/expected_array.idl
URL: http://svn.apache.org/viewvc/incubator/yoko/branches/cxf_port/tools/src/test/resources/idlgen/expected_array.idl?view=diff&rev=465642&r1=465641&r2=465642
==============================================================================
--- incubator/yoko/branches/cxf_port/tools/src/test/resources/idlgen/expected_array.idl (original)
+++ incubator/yoko/branches/cxf_port/tools/src/test/resources/idlgen/expected_array.idl Thu Oct 19 07:31:44 2006
@@ -1,3 +1,21 @@
+/*
+ * Licensed to the Apache Software Foundation (ASF) under one
+ * or more contributor license agreements. See the NOTICE file
+ * distributed with this work for additional information
+ * regarding copyright ownership. The ASF licenses this file
+ * to you under the Apache License, Version 2.0 (the
+ * "License"); you may not use this file except in compliance
+ * with the License. You may obtain a copy of the License at
+ *
+ * http://www.apache.org/licenses/LICENSE-2.0
+ *
+ * Unless required by applicable law or agreed to in writing,
+ * software distributed under the License is distributed on an
+ * "AS IS" BASIS, WITHOUT WARRANTIES OR CONDITIONS OF ANY
+ * KIND, either express or implied. See the License for the
+ * specific language governing permissions and limitations
+ * under the License.
+*/
 typedef sequence<string, 1> p2Array;
 typedef string p3Array[5];
 typedef sequence<string> p4Array;
@@ -18,4 +36,4 @@
     op_a(
         in ::ArrayType part1
     );
-};
\ No newline at end of file
+};

Modified: incubator/yoko/branches/cxf_port/tools/src/test/resources/idlgen/expected_content.idl
URL: http://svn.apache.org/viewvc/incubator/yoko/branches/cxf_port/tools/src/test/resources/idlgen/expected_content.idl?view=diff&rev=465642&r1=465641&r2=465642
==============================================================================
--- incubator/yoko/branches/cxf_port/tools/src/test/resources/idlgen/expected_content.idl (original)
+++ incubator/yoko/branches/cxf_port/tools/src/test/resources/idlgen/expected_content.idl Thu Oct 19 07:31:44 2006
@@ -1,3 +1,21 @@
+/*
+ * Licensed to the Apache Software Foundation (ASF) under one
+ * or more contributor license agreements. See the NOTICE file
+ * distributed with this work for additional information
+ * regarding copyright ownership. The ASF licenses this file
+ * to you under the Apache License, Version 2.0 (the
+ * "License"); you may not use this file except in compliance
+ * with the License. You may obtain a copy of the License at
+ *
+ * http://www.apache.org/licenses/LICENSE-2.0
+ *
+ * Unless required by applicable law or agreed to in writing,
+ * software distributed under the License is distributed on an
+ * "AS IS" BASIS, WITHOUT WARRANTIES OR CONDITIONS OF ANY
+ * KIND, either express or implied. See the License for the
+ * specific language governing permissions and limitations
+ * under the License.
+*/
 struct sub1SequenceStruct {
     float e3;
 };

Modified: incubator/yoko/branches/cxf_port/tools/src/test/resources/idlgen/expected_enum.idl
URL: http://svn.apache.org/viewvc/incubator/yoko/branches/cxf_port/tools/src/test/resources/idlgen/expected_enum.idl?view=diff&rev=465642&r1=465641&r2=465642
==============================================================================
--- incubator/yoko/branches/cxf_port/tools/src/test/resources/idlgen/expected_enum.idl (original)
+++ incubator/yoko/branches/cxf_port/tools/src/test/resources/idlgen/expected_enum.idl Thu Oct 19 07:31:44 2006
@@ -1,3 +1,21 @@
+/*
+ * Licensed to the Apache Software Foundation (ASF) under one
+ * or more contributor license agreements. See the NOTICE file
+ * distributed with this work for additional information
+ * regarding copyright ownership. The ASF licenses this file
+ * to you under the Apache License, Version 2.0 (the
+ * "License"); you may not use this file except in compliance
+ * with the License. You may obtain a copy of the License at
+ *
+ * http://www.apache.org/licenses/LICENSE-2.0
+ *
+ * Unless required by applicable law or agreed to in writing,
+ * software distributed under the License is distributed on an
+ * "AS IS" BASIS, WITHOUT WARRANTIES OR CONDITIONS OF ANY
+ * KIND, either express or implied. See the License for the
+ * specific language governing permissions and limitations
+ * under the License.
+*/
 enum BillingElementEnum {
     BillingElementEnum_BVOIP,
     BillingElementEnum_TOLLFREE

Modified: incubator/yoko/branches/cxf_port/tools/src/test/resources/idlgen/expected_exceptions.idl
URL: http://svn.apache.org/viewvc/incubator/yoko/branches/cxf_port/tools/src/test/resources/idlgen/expected_exceptions.idl?view=diff&rev=465642&r1=465641&r2=465642
==============================================================================
--- incubator/yoko/branches/cxf_port/tools/src/test/resources/idlgen/expected_exceptions.idl (original)
+++ incubator/yoko/branches/cxf_port/tools/src/test/resources/idlgen/expected_exceptions.idl Thu Oct 19 07:31:44 2006
@@ -1,3 +1,21 @@
+/*
+ * Licensed to the Apache Software Foundation (ASF) under one
+ * or more contributor license agreements. See the NOTICE file
+ * distributed with this work for additional information
+ * regarding copyright ownership. The ASF licenses this file
+ * to you under the Apache License, Version 2.0 (the
+ * "License"); you may not use this file except in compliance
+ * with the License. You may obtain a copy of the License at
+ *
+ * http://www.apache.org/licenses/LICENSE-2.0
+ *
+ * Unless required by applicable law or agreed to in writing,
+ * software distributed under the License is distributed on an
+ * "AS IS" BASIS, WITHOUT WARRANTIES OR CONDITIONS OF ANY
+ * KIND, either express or implied. See the License for the
+ * specific language governing permissions and limitations
+ * under the License.
+*/
 module TestException {
     struct BadRecord {
         string reason;

Modified: incubator/yoko/branches/cxf_port/tools/src/test/resources/idlgen/expected_fixed.idl
URL: http://svn.apache.org/viewvc/incubator/yoko/branches/cxf_port/tools/src/test/resources/idlgen/expected_fixed.idl?view=diff&rev=465642&r1=465641&r2=465642
==============================================================================
--- incubator/yoko/branches/cxf_port/tools/src/test/resources/idlgen/expected_fixed.idl (original)
+++ incubator/yoko/branches/cxf_port/tools/src/test/resources/idlgen/expected_fixed.idl Thu Oct 19 07:31:44 2006
@@ -1,3 +1,21 @@
+/*
+ * Licensed to the Apache Software Foundation (ASF) under one
+ * or more contributor license agreements. See the NOTICE file
+ * distributed with this work for additional information
+ * regarding copyright ownership. The ASF licenses this file
+ * to you under the Apache License, Version 2.0 (the
+ * "License"); you may not use this file except in compliance
+ * with the License. You may obtain a copy of the License at
+ *
+ * http://www.apache.org/licenses/LICENSE-2.0
+ *
+ * Unless required by applicable law or agreed to in writing,
+ * software distributed under the License is distributed on an
+ * "AS IS" BASIS, WITHOUT WARRANTIES OR CONDITIONS OF ANY
+ * KIND, either express or implied. See the License for the
+ * specific language governing permissions and limitations
+ * under the License.
+*/
 module Z {
     typedef fixed<8, 6> H;
 };

Modified: incubator/yoko/branches/cxf_port/tools/src/test/resources/idlgen/expected_integertypes.idl
URL: http://svn.apache.org/viewvc/incubator/yoko/branches/cxf_port/tools/src/test/resources/idlgen/expected_integertypes.idl?view=diff&rev=465642&r1=465641&r2=465642
==============================================================================
--- incubator/yoko/branches/cxf_port/tools/src/test/resources/idlgen/expected_integertypes.idl (original)
+++ incubator/yoko/branches/cxf_port/tools/src/test/resources/idlgen/expected_integertypes.idl Thu Oct 19 07:31:44 2006
@@ -1,3 +1,21 @@
+/*
+ * Licensed to the Apache Software Foundation (ASF) under one
+ * or more contributor license agreements. See the NOTICE file
+ * distributed with this work for additional information
+ * regarding copyright ownership. The ASF licenses this file
+ * to you under the Apache License, Version 2.0 (the
+ * "License"); you may not use this file except in compliance
+ * with the License. You may obtain a copy of the License at
+ *
+ * http://www.apache.org/licenses/LICENSE-2.0
+ *
+ * Unless required by applicable law or agreed to in writing,
+ * software distributed under the License is distributed on an
+ * "AS IS" BASIS, WITHOUT WARRANTIES OR CONDITIONS OF ANY
+ * KIND, either express or implied. See the License for the
+ * specific language governing permissions and limitations
+ * under the License.
+*/
 interface BasePortType {
     long long
     echoInteger(

Modified: incubator/yoko/branches/cxf_port/tools/src/test/resources/idlgen/expected_sequencetype.idl
URL: http://svn.apache.org/viewvc/incubator/yoko/branches/cxf_port/tools/src/test/resources/idlgen/expected_sequencetype.idl?view=diff&rev=465642&r1=465641&r2=465642
==============================================================================
--- incubator/yoko/branches/cxf_port/tools/src/test/resources/idlgen/expected_sequencetype.idl (original)
+++ incubator/yoko/branches/cxf_port/tools/src/test/resources/idlgen/expected_sequencetype.idl Thu Oct 19 07:31:44 2006
@@ -1,3 +1,21 @@
+/*
+ * Licensed to the Apache Software Foundation (ASF) under one
+ * or more contributor license agreements. See the NOTICE file
+ * distributed with this work for additional information
+ * regarding copyright ownership. The ASF licenses this file
+ * to you under the Apache License, Version 2.0 (the
+ * "License"); you may not use this file except in compliance
+ * with the License. You may obtain a copy of the License at
+ *
+ * http://www.apache.org/licenses/LICENSE-2.0
+ *
+ * Unless required by applicable law or agreed to in writing,
+ * software distributed under the License is distributed on an
+ * "AS IS" BASIS, WITHOUT WARRANTIES OR CONDITIONS OF ANY
+ * KIND, either express or implied. See the License for the
+ * specific language governing permissions and limitations
+ * under the License.
+*/
 module IACC {
     struct OneAttribute {
         long level;

Modified: incubator/yoko/branches/cxf_port/tools/src/test/resources/idlgen/expected_stringtypes.idl
URL: http://svn.apache.org/viewvc/incubator/yoko/branches/cxf_port/tools/src/test/resources/idlgen/expected_stringtypes.idl?view=diff&rev=465642&r1=465641&r2=465642
==============================================================================
--- incubator/yoko/branches/cxf_port/tools/src/test/resources/idlgen/expected_stringtypes.idl (original)
+++ incubator/yoko/branches/cxf_port/tools/src/test/resources/idlgen/expected_stringtypes.idl Thu Oct 19 07:31:44 2006
@@ -1,3 +1,21 @@
+/*
+ * Licensed to the Apache Software Foundation (ASF) under one
+ * or more contributor license agreements. See the NOTICE file
+ * distributed with this work for additional information
+ * regarding copyright ownership. The ASF licenses this file
+ * to you under the Apache License, Version 2.0 (the
+ * "License"); you may not use this file except in compliance
+ * with the License. You may obtain a copy of the License at
+ *
+ * http://www.apache.org/licenses/LICENSE-2.0
+ *
+ * Unless required by applicable law or agreed to in writing,
+ * software distributed under the License is distributed on an
+ * "AS IS" BASIS, WITHOUT WARRANTIES OR CONDITIONS OF ANY
+ * KIND, either express or implied. See the License for the
+ * specific language governing permissions and limitations
+ * under the License.
+*/
 interface BasePortType {
     string
     echoNormalizedString(