You are viewing a plain text version of this content. The canonical link for it is here.
Posted to commits@juddi.apache.org by al...@apache.org on 2015/01/14 03:29:17 UTC

[06/26] juddi git commit: JUDDI-914 done

http://git-wip-us.apache.org/repos/asf/juddi/blob/0833b028/juddi-client.net/juddi-client.net/org.apache.juddi.v3.client.transport.wrapper/Inquiry3to2.cs
----------------------------------------------------------------------
diff --git a/juddi-client.net/juddi-client.net/org.apache.juddi.v3.client.transport.wrapper/Inquiry3to2.cs b/juddi-client.net/juddi-client.net/org.apache.juddi.v3.client.transport.wrapper/Inquiry3to2.cs
index d6e5576..db8cd99 100644
--- a/juddi-client.net/juddi-client.net/org.apache.juddi.v3.client.transport.wrapper/Inquiry3to2.cs
+++ b/juddi-client.net/juddi-client.net/org.apache.juddi.v3.client.transport.wrapper/Inquiry3to2.cs
@@ -1,172 +1,191 @@
-using org.apache.juddi.client.org.apache.juddi.v3.client.mapping;
-using org.apache.juddi.v3.client.mapping;
-using org.uddi.apiv2;
-using org.uddi.apiv3;
-using System;
-using System.Collections.Generic;
-using System.Linq;
-using System.Text;
-
-namespace org.apache.juddi.v3.client.transport.wrapper
-{
-    /// <summary>
-    /// This class provides a wrapper to enable UDDIv3 clients to talk to UDDIv2 servers
-    ///  via JAXWS Transport. It handles all translations for Inquiry service methods.
-    ///  @author <a href="alexoree@apache.org">Alex O'Ree</a>
-    ///  @since 3.2.1
-    /// </summary>
-    public class Inquiry3to2 : UDDI_Inquiry_SoapBinding, IDisposable
-    {
-
-        private InquireSoap inquiry = new InquireSoap();
-        public Inquiry3to2(string endpointURL)
-        {
-            // TODO: Complete member initialization
-            this.Url = endpointURL;
-        }
-
-        public Inquiry3to2()
-        {
-
-        }
-
-        public  void Dispose()
-        {
-            if (inquiry != null)
-            {
-                inquiry.Dispose();
-                inquiry = null;
-            }
-        }
-
-        private void Init()
-        {
-            inquiry.Url = this.Url;
-        }
-
-        public override org.uddi.apiv3.bindingDetail find_binding(org.uddi.apiv3.find_binding find_binding1)
-        {
-            Init();
-            return MapUDDIv2to3.MapBindingDetail(inquiry.find_binding(MapUDDIv3to2.MapFindBinding(find_binding1)));
-        }
-
-        public override org.uddi.apiv3.businessList find_business(org.uddi.apiv3.find_business fb)
-        {
-            Init();
-            return MapUDDIv2to3.MapBusinessList(inquiry.find_business(MapUDDIv3to2.MapFindBusiness(fb)));
-        }
-
-        public override uddi.apiv3.serviceList find_service(uddi.apiv3.find_service find_service1)
-        {
-            Init();
-            return MapUDDIv2to3.MapServiceList(inquiry.find_service(MapUDDIv3to2.MapFindService(find_service1)));
-        }
-        public override uddi.apiv3.relatedBusinessesList find_relatedBusinesses(uddi.apiv3.find_relatedBusinesses find_relatedBusinesses1)
-        {
-            Init();
-            return MapUDDIv2to3.MapRelatedBusinessList(inquiry.find_relatedBusinesses(MapUDDIv3to2.MapFindRelatedBusinesses(find_relatedBusinesses1)));
-        }
-        public override uddi.apiv3.tModelList find_tModel(uddi.apiv3.find_tModel find_tModel1)
-        {
-            Init();
-            return MapUDDIv2to3.MapTModelList(inquiry.find_tModel(MapUDDIv3to2.MapFindTModel(find_tModel1)));
-        }
-        public override uddi.apiv3.bindingDetail get_bindingDetail(uddi.apiv3.get_bindingDetail get_bindingDetail1)
-        {
-            Init();
-            return MapUDDIv2to3.MapBindingDetail(inquiry.get_bindingDetail(MapUDDIv3to2.MapGetBindingDetail(get_bindingDetail1)));
-        }
-
-        public override uddi.apiv3.businessDetail get_businessDetail(uddi.apiv3.get_businessDetail get_businessDetail1)
-        {
-            Init();
-            return MapUDDIv2to3.MapBusinessDetail(inquiry.get_businessDetail(MapUDDIv2to3.MapGetBusinessDetail(get_businessDetail1)));
-        }
-        public static readonly String VERSION = "2.0";
-        public override operationalInfos get_operationalInfo(get_operationalInfo get_operationalInfo1)
-        {
-            Init();
-            operationalInfos ret = new operationalInfos();
-            List<operationalInfo> r = new List<operationalInfo>();
-            for (int i = 0; i < get_operationalInfo1.entityKey.Length; i++)
-            {
-                operationalInfo oi = new operationalInfo();
-                oi.entityKey=(get_operationalInfo1.entityKey[i]);
-                try
-                {
-                    org.uddi.apiv2.get_businessDetail businessDetail = new org.uddi.apiv2.get_businessDetail();
-                    businessDetail.generic=(VERSION);
-                    businessDetail.businessKey = new string[]{get_operationalInfo1.entityKey[i]};
-                    org.uddi.apiv2.businessDetail z = inquiry.get_businessDetail(businessDetail);
-                    oi.nodeID=(z.@operator);
-                    oi.authorizedName=(z.businessEntity[0].authorizedName);
-                }
-                catch (Exception ex)
-                {
-                }
-                if (oi.authorizedName != null)
-                {
-                    r.Add(oi);
-                    continue;
-                }
-                try
-                {
-                    org.uddi.apiv2.get_tModelDetail tModelDetail = new org.uddi.apiv2.get_tModelDetail();
-                    tModelDetail.generic=(VERSION);
-                    tModelDetail.tModelKey = new string[] { get_operationalInfo1.entityKey[i] };
-                    org.uddi.apiv2.tModelDetail z = inquiry.get_tModelDetail(tModelDetail);
-                    oi.nodeID=(z.@operator);
-                    oi.authorizedName=(z.tModel[0].authorizedName);
-                }
-                catch (Exception ex)
-                {
-                }
-                if (oi.authorizedName != null)
-                {
-                    r.Add(oi);
-                    continue;
-                }
-                try
-                {
-                    //get the service
-                    org.uddi.apiv2.get_serviceDetail serviceDetail = new org.uddi.apiv2.get_serviceDetail();
-                    serviceDetail.generic=(VERSION);
-                    serviceDetail.serviceKey = new string[] { get_operationalInfo1.entityKey[i] };
-                    org.uddi.apiv2.serviceDetail z = inquiry.get_serviceDetail(serviceDetail);
-                    oi.nodeID=(z.@operator);
-
-                    org.uddi.apiv2.get_businessDetail businessDetail = new org.uddi.apiv2.get_businessDetail();
-                    businessDetail.generic=(VERSION);
-                    //its owning business
-                    businessDetail.businessKey = new string[] { z.businessService[0].businessKey };
-                    org.uddi.apiv2.businessDetail z2 = inquiry.get_businessDetail(businessDetail);
-                    oi.nodeID = (z2.@operator);
-                    oi.authorizedName=(z2.businessEntity[0].authorizedName);
-                    r.Add(oi);
-                }
-                catch (Exception ex)
-                {
-                }
-
-                
-            }
-            ret.truncated = (false);
-            ret.operationalInfo = r.ToArray();
-            return ret;
-
-
-            
-        }
-        public override uddi.apiv3.serviceDetail get_serviceDetail(uddi.apiv3.get_serviceDetail get_serviceDetail1)
-        {
-            Init();
-            return MapUDDIv2to3.MapServiceDetail(inquiry.get_serviceDetail(MapUDDIv3to2.MapGetServiceDetail(get_serviceDetail1)));
-        }
-        public override uddi.apiv3.tModelDetail get_tModelDetail(uddi.apiv3.get_tModelDetail get_tModelDetail1)
-        {
-            Init();
-            return MapUDDIv2to3.MapTModelDetail(inquiry.get_tModelDetail(MapUDDIv3to2.MapGetTModelDetail(get_tModelDetail1)));
-        }
-
-    }
-}
+/*
+ * 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.
+ */
+
+using org.apache.juddi.client.org.apache.juddi.v3.client.mapping;
+using org.apache.juddi.v3.client.mapping;
+using org.uddi.apiv2;
+using org.uddi.apiv3;
+using System;
+using System.Collections.Generic;
+using System.Linq;
+using System.Text;
+
+namespace org.apache.juddi.v3.client.transport.wrapper
+{
+    /// <summary>
+    /// This class provides a wrapper to enable UDDIv3 clients to talk to UDDIv2 servers
+    ///  via JAXWS Transport. It handles all translations for Inquiry service methods.
+    ///  @author <a href="alexoree@apache.org">Alex O'Ree</a>
+    ///  @since 3.2.1
+    /// </summary>
+    public class Inquiry3to2 : UDDI_Inquiry_SoapBinding, IDisposable
+    {
+
+        private InquireSoap inquiry = new InquireSoap();
+        public Inquiry3to2(string endpointURL)
+        {
+            // TODO: Complete member initialization
+            this.Url = endpointURL;
+        }
+
+        public Inquiry3to2()
+        {
+
+        }
+
+        public  void Dispose()
+        {
+            if (inquiry != null)
+            {
+                inquiry.Dispose();
+                inquiry = null;
+            }
+        }
+
+        private void Init()
+        {
+            inquiry.Url = this.Url;
+        }
+
+        public override org.uddi.apiv3.bindingDetail find_binding(org.uddi.apiv3.find_binding find_binding1)
+        {
+            Init();
+            return MapUDDIv2to3.MapBindingDetail(inquiry.find_binding(MapUDDIv3to2.MapFindBinding(find_binding1)));
+        }
+
+        public override org.uddi.apiv3.businessList find_business(org.uddi.apiv3.find_business fb)
+        {
+            Init();
+            return MapUDDIv2to3.MapBusinessList(inquiry.find_business(MapUDDIv3to2.MapFindBusiness(fb)));
+        }
+
+        public override uddi.apiv3.serviceList find_service(uddi.apiv3.find_service find_service1)
+        {
+            Init();
+            return MapUDDIv2to3.MapServiceList(inquiry.find_service(MapUDDIv3to2.MapFindService(find_service1)));
+        }
+        public override uddi.apiv3.relatedBusinessesList find_relatedBusinesses(uddi.apiv3.find_relatedBusinesses find_relatedBusinesses1)
+        {
+            Init();
+            return MapUDDIv2to3.MapRelatedBusinessList(inquiry.find_relatedBusinesses(MapUDDIv3to2.MapFindRelatedBusinesses(find_relatedBusinesses1)));
+        }
+        public override uddi.apiv3.tModelList find_tModel(uddi.apiv3.find_tModel find_tModel1)
+        {
+            Init();
+            return MapUDDIv2to3.MapTModelList(inquiry.find_tModel(MapUDDIv3to2.MapFindTModel(find_tModel1)));
+        }
+        public override uddi.apiv3.bindingDetail get_bindingDetail(uddi.apiv3.get_bindingDetail get_bindingDetail1)
+        {
+            Init();
+            return MapUDDIv2to3.MapBindingDetail(inquiry.get_bindingDetail(MapUDDIv3to2.MapGetBindingDetail(get_bindingDetail1)));
+        }
+
+        public override uddi.apiv3.businessDetail get_businessDetail(uddi.apiv3.get_businessDetail get_businessDetail1)
+        {
+            Init();
+            return MapUDDIv2to3.MapBusinessDetail(inquiry.get_businessDetail(MapUDDIv2to3.MapGetBusinessDetail(get_businessDetail1)));
+        }
+        public static readonly String VERSION = "2.0";
+        public override operationalInfos get_operationalInfo(get_operationalInfo get_operationalInfo1)
+        {
+            Init();
+            operationalInfos ret = new operationalInfos();
+            List<operationalInfo> r = new List<operationalInfo>();
+            for (int i = 0; i < get_operationalInfo1.entityKey.Length; i++)
+            {
+                operationalInfo oi = new operationalInfo();
+                oi.entityKey=(get_operationalInfo1.entityKey[i]);
+                try
+                {
+                    org.uddi.apiv2.get_businessDetail businessDetail = new org.uddi.apiv2.get_businessDetail();
+                    businessDetail.generic=(VERSION);
+                    businessDetail.businessKey = new string[]{get_operationalInfo1.entityKey[i]};
+                    org.uddi.apiv2.businessDetail z = inquiry.get_businessDetail(businessDetail);
+                    oi.nodeID=(z.@operator);
+                    oi.authorizedName=(z.businessEntity[0].authorizedName);
+                }
+                catch (Exception ex)
+                {
+                }
+                if (oi.authorizedName != null)
+                {
+                    r.Add(oi);
+                    continue;
+                }
+                try
+                {
+                    org.uddi.apiv2.get_tModelDetail tModelDetail = new org.uddi.apiv2.get_tModelDetail();
+                    tModelDetail.generic=(VERSION);
+                    tModelDetail.tModelKey = new string[] { get_operationalInfo1.entityKey[i] };
+                    org.uddi.apiv2.tModelDetail z = inquiry.get_tModelDetail(tModelDetail);
+                    oi.nodeID=(z.@operator);
+                    oi.authorizedName=(z.tModel[0].authorizedName);
+                }
+                catch (Exception ex)
+                {
+                }
+                if (oi.authorizedName != null)
+                {
+                    r.Add(oi);
+                    continue;
+                }
+                try
+                {
+                    //get the service
+                    org.uddi.apiv2.get_serviceDetail serviceDetail = new org.uddi.apiv2.get_serviceDetail();
+                    serviceDetail.generic=(VERSION);
+                    serviceDetail.serviceKey = new string[] { get_operationalInfo1.entityKey[i] };
+                    org.uddi.apiv2.serviceDetail z = inquiry.get_serviceDetail(serviceDetail);
+                    oi.nodeID=(z.@operator);
+
+                    org.uddi.apiv2.get_businessDetail businessDetail = new org.uddi.apiv2.get_businessDetail();
+                    businessDetail.generic=(VERSION);
+                    //its owning business
+                    businessDetail.businessKey = new string[] { z.businessService[0].businessKey };
+                    org.uddi.apiv2.businessDetail z2 = inquiry.get_businessDetail(businessDetail);
+                    oi.nodeID = (z2.@operator);
+                    oi.authorizedName=(z2.businessEntity[0].authorizedName);
+                    r.Add(oi);
+                }
+                catch (Exception ex)
+                {
+                }
+
+                
+            }
+            ret.truncated = (false);
+            ret.operationalInfo = r.ToArray();
+            return ret;
+
+
+            
+        }
+        public override uddi.apiv3.serviceDetail get_serviceDetail(uddi.apiv3.get_serviceDetail get_serviceDetail1)
+        {
+            Init();
+            return MapUDDIv2to3.MapServiceDetail(inquiry.get_serviceDetail(MapUDDIv3to2.MapGetServiceDetail(get_serviceDetail1)));
+        }
+        public override uddi.apiv3.tModelDetail get_tModelDetail(uddi.apiv3.get_tModelDetail get_tModelDetail1)
+        {
+            Init();
+            return MapUDDIv2to3.MapTModelDetail(inquiry.get_tModelDetail(MapUDDIv3to2.MapGetTModelDetail(get_tModelDetail1)));
+        }
+
+    }
+}

http://git-wip-us.apache.org/repos/asf/juddi/blob/0833b028/juddi-client.net/juddi-client.net/org.apache.juddi.v3.client.transport.wrapper/Publish3to2.cs
----------------------------------------------------------------------
diff --git a/juddi-client.net/juddi-client.net/org.apache.juddi.v3.client.transport.wrapper/Publish3to2.cs b/juddi-client.net/juddi-client.net/org.apache.juddi.v3.client.transport.wrapper/Publish3to2.cs
index 8dc4226..edf4adf 100644
--- a/juddi-client.net/juddi-client.net/org.apache.juddi.v3.client.transport.wrapper/Publish3to2.cs
+++ b/juddi-client.net/juddi-client.net/org.apache.juddi.v3.client.transport.wrapper/Publish3to2.cs
@@ -1,102 +1,121 @@
-using org.apache.juddi.v3.client.mapping;
-using org.uddi.apiv2;
-using org.uddi.apiv3;
-using System;
-using System.Collections.Generic;
-using System.Linq;
-using System.Text;
-
-namespace org.apache.juddi.v3.client.transport.wrapper
-{
-    public class Publish3to2 : UDDI_Publication_SoapBinding, IDisposable
-    {
-        public static readonly String VERSION = "2.0";
-        private string endpointURL;
-        private PublishSoap publish = new PublishSoap();
-        public Publish3to2(string endpointURL)
-        {
-            // TODO: Complete member initialization
-            this.endpointURL = endpointURL;
-        }
-
-        public Publish3to2()
-        {
-            // TODO: Complete member initialization
-        }
-        protected  void Dispose()
-        {
-            base.Dispose();
-            publish.Dispose();
-        }
-        private void Init()
-        {
-            publish.Url = this.Url;
-        }
-        public override void delete_business(uddi.apiv3.delete_business delete_business1)
-        {
-            Init();
-            publish.delete_business(MapUDDIv3to2.MapDeleteBusiness(delete_business1));
-            
-        }
-        public override void delete_service(uddi.apiv3.delete_service delete_service1)
-        {
-            Init();
-            publish.delete_service(MapUDDIv3to2.MapDeleteService(delete_service1));
-        }
-        public override void delete_publisherAssertions(uddi.apiv3.delete_publisherAssertions delete_publisherAssertions1)
-        {
-            Init();
-            publish.delete_publisherAssertions(MapUDDIv3to2.MapDeletePublisherAssertion(delete_publisherAssertions1));
-        }
-        public override void delete_tModel(uddi.apiv3.delete_tModel delete_tModel1)
-        {
-            Init();
-            publish.delete_tModel(MapUDDIv3to2.MapDeleteTModel(delete_tModel1));
-            
-        }
-        public override uddi.apiv3.assertionStatusItem[] get_assertionStatusReport(uddi.apiv3.get_assertionStatusReport get_assertionStatusReport1)
-        {
-            Init();
-            return MapUDDIv2to3.MapAssertionStatusItems(publish.get_assertionStatusReport(MapUDDIv3to2.MapGetAssertionStatusReport(get_assertionStatusReport1)));
-            
-        }
-        public override uddi.apiv3.registeredInfo get_registeredInfo(uddi.apiv3.get_registeredInfo get_registeredInfo1)
-        {
-            Init();
-            return MapUDDIv2to3.MapRegisteredInfo(publish.get_registeredInfo(MapUDDIv3to2.MapRegisteredInfo(get_registeredInfo1)));
-            
-        }
-        public override uddi.apiv3.publisherAssertion[] get_publisherAssertions(uddi.apiv3.get_publisherAssertions get_publisherAssertions1)
-        {
-            Init();
-            return MapUDDIv2to3.MapPublisherAssertions(publish.get_publisherAssertions(MapUDDIv3to2.MapGetPublisherAssertions(get_publisherAssertions1)));
-        }
-
-        public override uddi.apiv3.bindingDetail save_binding(uddi.apiv3.save_binding save_binding1)
-        {
-            Init();
-            return MapUDDIv2to3.MapBindingDetail(publish.save_binding(MapUDDIv3to2.MapSaveBinding(save_binding1)));
-        }
-        public override uddi.apiv3.serviceDetail save_service(uddi.apiv3.save_service save_service1)
-        {
-            Init();
-            return MapUDDIv2to3.MapServiceDetail(publish.save_service(MapUDDIv3to2.MapSaveService(save_service1)));
-        }
-        public override uddi.apiv3.businessDetail save_business(uddi.apiv3.save_business save_business1)
-        {
-            Init();
-            return MapUDDIv2to3.MapBusinessDetail(publish.save_business(MapUDDIv3to2.MapSaveBusiness(save_business1)));
-        }
-        public override uddi.apiv3.tModelDetail save_tModel(uddi.apiv3.save_tModel save_tModel1)
-        {
-            Init();
-            return MapUDDIv2to3.MapTModelDetail(publish.save_tModel(MapUDDIv3to2.MapSaveTModel(save_tModel1)));
-        }
-        public override uddi.apiv3.publisherAssertion[] set_publisherAssertions(uddi.apiv3.set_publisherAssertions set_publisherAssertions1)
-        {
-            Init();
-            return MapUDDIv2to3.MapPublisherAssertions(publish.set_publisherAssertions(MapUDDIv3to2.MapSetPublisherAssertions(set_publisherAssertions1)));
-        }
-
-    }
-}
+/*
+ * 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.
+ */
+
+using org.apache.juddi.v3.client.mapping;
+using org.uddi.apiv2;
+using org.uddi.apiv3;
+using System;
+using System.Collections.Generic;
+using System.Linq;
+using System.Text;
+
+namespace org.apache.juddi.v3.client.transport.wrapper
+{
+    public class Publish3to2 : UDDI_Publication_SoapBinding, IDisposable
+    {
+        public static readonly String VERSION = "2.0";
+        private string endpointURL;
+        private PublishSoap publish = new PublishSoap();
+        public Publish3to2(string endpointURL)
+        {
+            // TODO: Complete member initialization
+            this.endpointURL = endpointURL;
+        }
+
+        public Publish3to2()
+        {
+            // TODO: Complete member initialization
+        }
+        protected  void Dispose()
+        {
+            base.Dispose();
+            publish.Dispose();
+        }
+        private void Init()
+        {
+            publish.Url = this.Url;
+        }
+        public override void delete_business(uddi.apiv3.delete_business delete_business1)
+        {
+            Init();
+            publish.delete_business(MapUDDIv3to2.MapDeleteBusiness(delete_business1));
+            
+        }
+        public override void delete_service(uddi.apiv3.delete_service delete_service1)
+        {
+            Init();
+            publish.delete_service(MapUDDIv3to2.MapDeleteService(delete_service1));
+        }
+        public override void delete_publisherAssertions(uddi.apiv3.delete_publisherAssertions delete_publisherAssertions1)
+        {
+            Init();
+            publish.delete_publisherAssertions(MapUDDIv3to2.MapDeletePublisherAssertion(delete_publisherAssertions1));
+        }
+        public override void delete_tModel(uddi.apiv3.delete_tModel delete_tModel1)
+        {
+            Init();
+            publish.delete_tModel(MapUDDIv3to2.MapDeleteTModel(delete_tModel1));
+            
+        }
+        public override uddi.apiv3.assertionStatusItem[] get_assertionStatusReport(uddi.apiv3.get_assertionStatusReport get_assertionStatusReport1)
+        {
+            Init();
+            return MapUDDIv2to3.MapAssertionStatusItems(publish.get_assertionStatusReport(MapUDDIv3to2.MapGetAssertionStatusReport(get_assertionStatusReport1)));
+            
+        }
+        public override uddi.apiv3.registeredInfo get_registeredInfo(uddi.apiv3.get_registeredInfo get_registeredInfo1)
+        {
+            Init();
+            return MapUDDIv2to3.MapRegisteredInfo(publish.get_registeredInfo(MapUDDIv3to2.MapRegisteredInfo(get_registeredInfo1)));
+            
+        }
+        public override uddi.apiv3.publisherAssertion[] get_publisherAssertions(uddi.apiv3.get_publisherAssertions get_publisherAssertions1)
+        {
+            Init();
+            return MapUDDIv2to3.MapPublisherAssertions(publish.get_publisherAssertions(MapUDDIv3to2.MapGetPublisherAssertions(get_publisherAssertions1)));
+        }
+
+        public override uddi.apiv3.bindingDetail save_binding(uddi.apiv3.save_binding save_binding1)
+        {
+            Init();
+            return MapUDDIv2to3.MapBindingDetail(publish.save_binding(MapUDDIv3to2.MapSaveBinding(save_binding1)));
+        }
+        public override uddi.apiv3.serviceDetail save_service(uddi.apiv3.save_service save_service1)
+        {
+            Init();
+            return MapUDDIv2to3.MapServiceDetail(publish.save_service(MapUDDIv3to2.MapSaveService(save_service1)));
+        }
+        public override uddi.apiv3.businessDetail save_business(uddi.apiv3.save_business save_business1)
+        {
+            Init();
+            return MapUDDIv2to3.MapBusinessDetail(publish.save_business(MapUDDIv3to2.MapSaveBusiness(save_business1)));
+        }
+        public override uddi.apiv3.tModelDetail save_tModel(uddi.apiv3.save_tModel save_tModel1)
+        {
+            Init();
+            return MapUDDIv2to3.MapTModelDetail(publish.save_tModel(MapUDDIv3to2.MapSaveTModel(save_tModel1)));
+        }
+        public override uddi.apiv3.publisherAssertion[] set_publisherAssertions(uddi.apiv3.set_publisherAssertions set_publisherAssertions1)
+        {
+            Init();
+            return MapUDDIv2to3.MapPublisherAssertions(publish.set_publisherAssertions(MapUDDIv3to2.MapSetPublisherAssertions(set_publisherAssertions1)));
+        }
+
+    }
+}

http://git-wip-us.apache.org/repos/asf/juddi/blob/0833b028/juddi-client.net/juddi-client.net/org.apache.juddi.v3.client.transport.wrapper/Security3to2.cs
----------------------------------------------------------------------
diff --git a/juddi-client.net/juddi-client.net/org.apache.juddi.v3.client.transport.wrapper/Security3to2.cs b/juddi-client.net/juddi-client.net/org.apache.juddi.v3.client.transport.wrapper/Security3to2.cs
index 6e2ecd0..007c4b1 100644
--- a/juddi-client.net/juddi-client.net/org.apache.juddi.v3.client.transport.wrapper/Security3to2.cs
+++ b/juddi-client.net/juddi-client.net/org.apache.juddi.v3.client.transport.wrapper/Security3to2.cs
@@ -1,63 +1,82 @@
-using org.uddi.apiv2;
-using org.uddi.apiv3;
-using System;
-using System.Collections.Generic;
-using System.Linq;
-using System.Text;
-
-namespace org.apache.juddi.v3.client.transport.wrapper
-{
-    public class Security3to2 : UDDI_Security_SoapBinding, IDisposable
-    {
-        private string endpointURL;
-        private PublishSoap publishv2 = new PublishSoap();
-
-        public Security3to2(string endpointURL)
-        {
-            // TODO: Complete member initialization
-            this.endpointURL = endpointURL;
-        }
-
-        public Security3to2()
-        {
-            // TODO: Complete member initialization
-        }
-        public  void Dispose()
-        {
-            base.Dispose();
-            if (publishv2 != null)
-            {
-                publishv2.Dispose();
-                publishv2 = null;
-            }
-        }
-        private void Init()
-        {
-            publishv2.Url = this.Url;
-        }
-
-        public override void discard_authToken(uddi.apiv3.discard_authToken discard_authToken1)
-        {
-            Init();
-            uddi.apiv2.discard_authToken r = new uddi.apiv2.discard_authToken();
-            r.authInfo = discard_authToken1.authInfo;
-            r.generic = VERSION;
-            publishv2.discard_authToken(r);
-        }
-        public override uddi.apiv3.authToken get_authToken(uddi.apiv3.get_authToken get_authToken1)
-        {
-            Init();
-            uddi.apiv2.get_authToken r = new uddi.apiv2.get_authToken();
-            r.cred = get_authToken1.cred;
-            r.generic = VERSION;
-            r.userID = get_authToken1.userID;
-            uddi.apiv2.authToken res = publishv2.get_authToken(r);
-
-            uddi.apiv3.authToken x = new uddi.apiv3.authToken();
-            x.authInfo = res.authInfo;
-            return x;
-
-        }
-        public static readonly String VERSION = "2.0";
-    }
-}
+/*
+ * 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.
+ */
+
+using org.uddi.apiv2;
+using org.uddi.apiv3;
+using System;
+using System.Collections.Generic;
+using System.Linq;
+using System.Text;
+
+namespace org.apache.juddi.v3.client.transport.wrapper
+{
+    public class Security3to2 : UDDI_Security_SoapBinding, IDisposable
+    {
+        private string endpointURL;
+        private PublishSoap publishv2 = new PublishSoap();
+
+        public Security3to2(string endpointURL)
+        {
+            // TODO: Complete member initialization
+            this.endpointURL = endpointURL;
+        }
+
+        public Security3to2()
+        {
+            // TODO: Complete member initialization
+        }
+        public  void Dispose()
+        {
+            base.Dispose();
+            if (publishv2 != null)
+            {
+                publishv2.Dispose();
+                publishv2 = null;
+            }
+        }
+        private void Init()
+        {
+            publishv2.Url = this.Url;
+        }
+
+        public override void discard_authToken(uddi.apiv3.discard_authToken discard_authToken1)
+        {
+            Init();
+            uddi.apiv2.discard_authToken r = new uddi.apiv2.discard_authToken();
+            r.authInfo = discard_authToken1.authInfo;
+            r.generic = VERSION;
+            publishv2.discard_authToken(r);
+        }
+        public override uddi.apiv3.authToken get_authToken(uddi.apiv3.get_authToken get_authToken1)
+        {
+            Init();
+            uddi.apiv2.get_authToken r = new uddi.apiv2.get_authToken();
+            r.cred = get_authToken1.cred;
+            r.generic = VERSION;
+            r.userID = get_authToken1.userID;
+            uddi.apiv2.authToken res = publishv2.get_authToken(r);
+
+            uddi.apiv3.authToken x = new uddi.apiv3.authToken();
+            x.authInfo = res.authInfo;
+            return x;
+
+        }
+        public static readonly String VERSION = "2.0";
+    }
+}

http://git-wip-us.apache.org/repos/asf/juddi/blob/0833b028/juddi-client.net/juddi-client.net/org.apache.juddi.v3.client.transport/AspNetv2TranslationTransport.cs
----------------------------------------------------------------------
diff --git a/juddi-client.net/juddi-client.net/org.apache.juddi.v3.client.transport/AspNetv2TranslationTransport.cs b/juddi-client.net/juddi-client.net/org.apache.juddi.v3.client.transport/AspNetv2TranslationTransport.cs
index 9fa766e..c3b34da 100644
--- a/juddi-client.net/juddi-client.net/org.apache.juddi.v3.client.transport/AspNetv2TranslationTransport.cs
+++ b/juddi-client.net/juddi-client.net/org.apache.juddi.v3.client.transport/AspNetv2TranslationTransport.cs
@@ -1,85 +1,104 @@
-using org.apache.juddi.apiv3;
-using org.apache.juddi.v3.client.transport.wrapper;
-using System;
-using System.Collections.Generic;
-using System.Linq;
-using System.Text;
-
-namespace org.apache.juddi.v3.client.transport
-{
-    public class AspNetv2TranslationTransport : AspNetTransport, IDisposable
-    {
-
-        String nodeName = null;
-        String clientName = null;
-        Inquiry3to2 inquiryService = new Inquiry3to2();
-        Publish3to2 publishService = new Publish3to2();
-        Security3to2 securityService = new Security3to2();
-        
-        JUDDIApiService publisherService = new JUDDIApiService();
-        private string managerName;
-        private config.ClientConfig clientConfig;
-
-
-        public AspNetv2TranslationTransport(string managerName, string nodeName, config.ClientConfig clientConfig)
-        {
-            this.managerName = managerName;
-            this.nodeName = nodeName;
-            this.clientConfig = clientConfig;
-            this.inquiryService.Url = clientConfig.getUDDINode(nodeName).getInquiryUrl();
-            this.publisherService.Url = clientConfig.getUDDINode(nodeName).getJuddiApiUrl();
-            this.publishService.Url = clientConfig.getUDDINode(nodeName).getPublishUrl();
-            this.securityService.Url = clientConfig.getUDDINode(nodeName).getPublishUrl();
-           
-        }
-        public override uddi.apiv3.UDDI_Inquiry_SoapBinding getUDDIInquiryService()
-        {
-            return inquiryService;
-        }
-        /// <summary>
-        /// callers must call .Dispose of returned objects
-        /// </summary>
-        /// <param name="endpointURL"></param>
-        /// <returns></returns>
-        public override uddi.apiv3.UDDI_Inquiry_SoapBinding getUDDIInquiryService(string endpointURL)
-        {
-            return new Inquiry3to2(endpointURL);
-        }
-        /// <summary>
-        /// callers must call .Dispose of returned objects
-        /// </summary>
-        /// <param name="endpointURL"></param>
-        /// <returns></returns>
-        public override uddi.apiv3.UDDI_Publication_SoapBinding getUDDIPublishService(string endpointURL)
-        {
-            return new Publish3to2(endpointURL);
-        }
-        public override uddi.apiv3.UDDI_Publication_SoapBinding getUDDIPublishService()
-        {
-            return this.publishService;
-        }
-        public override uddi.apiv3.UDDI_Security_SoapBinding getUDDISecurityService()
-        {
-            return this.securityService;
-        }
-        /// <summary>
-        /// callers must call .Dispose of returned objects
-        /// </summary>
-        /// <param name="endpointURL"></param>
-        /// <returns></returns>
-        public override uddi.apiv3.UDDI_Security_SoapBinding getUDDISecurityService(string endpointURL)
-        {
-            return new Security3to2(endpointURL);
-        }
-
-        public void Dispose()
-        {
-            inquiryService.Dispose();
-            publishService.Dispose();
-            publisherService.Dispose();
-            securityService.Dispose();
-            base.Dispose();
-        }
-        
-    }
-}
+/*
+ * 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.
+ */
+
+using org.apache.juddi.apiv3;
+using org.apache.juddi.v3.client.transport.wrapper;
+using System;
+using System.Collections.Generic;
+using System.Linq;
+using System.Text;
+
+namespace org.apache.juddi.v3.client.transport
+{
+    public class AspNetv2TranslationTransport : AspNetTransport, IDisposable
+    {
+
+        String nodeName = null;
+        String clientName = null;
+        Inquiry3to2 inquiryService = new Inquiry3to2();
+        Publish3to2 publishService = new Publish3to2();
+        Security3to2 securityService = new Security3to2();
+        
+        JUDDIApiService publisherService = new JUDDIApiService();
+        private string managerName;
+        private config.ClientConfig clientConfig;
+
+
+        public AspNetv2TranslationTransport(string managerName, string nodeName, config.ClientConfig clientConfig)
+        {
+            this.managerName = managerName;
+            this.nodeName = nodeName;
+            this.clientConfig = clientConfig;
+            this.inquiryService.Url = clientConfig.getUDDINode(nodeName).getInquiryUrl();
+            this.publisherService.Url = clientConfig.getUDDINode(nodeName).getJuddiApiUrl();
+            this.publishService.Url = clientConfig.getUDDINode(nodeName).getPublishUrl();
+            this.securityService.Url = clientConfig.getUDDINode(nodeName).getPublishUrl();
+           
+        }
+        public override uddi.apiv3.UDDI_Inquiry_SoapBinding getUDDIInquiryService()
+        {
+            return inquiryService;
+        }
+        /// <summary>
+        /// callers must call .Dispose of returned objects
+        /// </summary>
+        /// <param name="endpointURL"></param>
+        /// <returns></returns>
+        public override uddi.apiv3.UDDI_Inquiry_SoapBinding getUDDIInquiryService(string endpointURL)
+        {
+            return new Inquiry3to2(endpointURL);
+        }
+        /// <summary>
+        /// callers must call .Dispose of returned objects
+        /// </summary>
+        /// <param name="endpointURL"></param>
+        /// <returns></returns>
+        public override uddi.apiv3.UDDI_Publication_SoapBinding getUDDIPublishService(string endpointURL)
+        {
+            return new Publish3to2(endpointURL);
+        }
+        public override uddi.apiv3.UDDI_Publication_SoapBinding getUDDIPublishService()
+        {
+            return this.publishService;
+        }
+        public override uddi.apiv3.UDDI_Security_SoapBinding getUDDISecurityService()
+        {
+            return this.securityService;
+        }
+        /// <summary>
+        /// callers must call .Dispose of returned objects
+        /// </summary>
+        /// <param name="endpointURL"></param>
+        /// <returns></returns>
+        public override uddi.apiv3.UDDI_Security_SoapBinding getUDDISecurityService(string endpointURL)
+        {
+            return new Security3to2(endpointURL);
+        }
+
+        public void Dispose()
+        {
+            inquiryService.Dispose();
+            publishService.Dispose();
+            publisherService.Dispose();
+            securityService.Dispose();
+            base.Dispose();
+        }
+        
+    }
+}

http://git-wip-us.apache.org/repos/asf/juddi/blob/0833b028/juddi-client.net/juddi-client.net/org.apache.juddi.v3.client/LogLevel.cs
----------------------------------------------------------------------
diff --git a/juddi-client.net/juddi-client.net/org.apache.juddi.v3.client/LogLevel.cs b/juddi-client.net/juddi-client.net/org.apache.juddi.v3.client/LogLevel.cs
index c45a2b2..41d83f1 100644
--- a/juddi-client.net/juddi-client.net/org.apache.juddi.v3.client/LogLevel.cs
+++ b/juddi-client.net/juddi-client.net/org.apache.juddi.v3.client/LogLevel.cs
@@ -1,19 +1,38 @@
-using System;
-using System.Collections.Generic;
-
-using System.Text;
-
-namespace org.apache.juddi.v3.client
-{
-    /// <summary>
-    /// Log Level uses for the logging system
-    /// </summary>
-    /// <author><a href="mailto:alexoree@apache.org">Alex O'Ree</a></author> 
-    public enum LogLevel
-    {
-        DEBUG=0,
-        INFO=1, 
-        WARN=2,
-        ERROR=3
-    }
-}
+/*
+ * 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.
+ */
+
+using System;
+using System.Collections.Generic;
+
+using System.Text;
+
+namespace org.apache.juddi.v3.client
+{
+    /// <summary>
+    /// Log Level uses for the logging system
+    /// </summary>
+    /// <author><a href="mailto:alexoree@apache.org">Alex O'Ree</a></author> 
+    public enum LogLevel
+    {
+        DEBUG=0,
+        INFO=1, 
+        WARN=2,
+        ERROR=3
+    }
+}

http://git-wip-us.apache.org/repos/asf/juddi/blob/0833b028/juddi-client.net/juddi-installer/App.config
----------------------------------------------------------------------
diff --git a/juddi-client.net/juddi-installer/App.config b/juddi-client.net/juddi-installer/App.config
index e1240f7..5d3a1b9 100644
--- a/juddi-client.net/juddi-installer/App.config
+++ b/juddi-client.net/juddi-installer/App.config
@@ -1,6 +1,26 @@
-<?xml version="1.0"?>
-<configuration>
-    <startup> 
-        
-    <supportedRuntime version="v2.0.50727"/></startup>
-</configuration>
+<?xml version="1.0"?>
+
+<!--
+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.
+-->
+
+<configuration>
+    <startup> 
+        
+    <supportedRuntime version="v2.0.50727"/></startup>
+</configuration>

http://git-wip-us.apache.org/repos/asf/juddi/blob/0833b028/juddi-client.net/juddi-installer/Properties/AssemblyInfo.cs
----------------------------------------------------------------------
diff --git a/juddi-client.net/juddi-installer/Properties/AssemblyInfo.cs b/juddi-client.net/juddi-installer/Properties/AssemblyInfo.cs
index ecf3a07..4ca01fe 100644
--- a/juddi-client.net/juddi-installer/Properties/AssemblyInfo.cs
+++ b/juddi-client.net/juddi-installer/Properties/AssemblyInfo.cs
@@ -1,36 +1,55 @@
-using System.Reflection;
-using System.Runtime.CompilerServices;
-using System.Runtime.InteropServices;
-
-// General Information about an assembly is controlled through the following 
-// set of attributes. Change these attribute values to modify the information
-// associated with an assembly.
-[assembly: AssemblyTitle("juddi-installer")]
-[assembly: AssemblyDescription("")]
-[assembly: AssemblyConfiguration("")]
-[assembly: AssemblyCompany("Hewlett-Packard")]
-[assembly: AssemblyProduct("juddi-installer")]
-[assembly: AssemblyCopyright("Copyright © Hewlett-Packard 2013")]
-[assembly: AssemblyTrademark("")]
-[assembly: AssemblyCulture("")]
-
-// Setting ComVisible to false makes the types in this assembly not visible 
-// to COM components.  If you need to access a type in this assembly from 
-// COM, set the ComVisible attribute to true on that type.
-[assembly: ComVisible(false)]
-
-// The following GUID is for the ID of the typelib if this project is exposed to COM
-[assembly: Guid("0e08fb3c-39e9-4225-a918-6fdbea18b848")]
-
-// Version information for an assembly consists of the following four values:
-//
-//      Major Version
-//      Minor Version 
-//      Build Number
-//      Revision
-//
-// You can specify all the values or you can default the Build and Revision Numbers 
-// by using the '*' as shown below:
-// [assembly: AssemblyVersion("1.0.*")]
-[assembly: AssemblyVersion("3.2.1.0")]
-[assembly: AssemblyFileVersion("3.2.1.0")]
+/*
+ * 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.
+ */
+
+using System.Reflection;
+using System.Runtime.CompilerServices;
+using System.Runtime.InteropServices;
+
+// General Information about an assembly is controlled through the following 
+// set of attributes. Change these attribute values to modify the information
+// associated with an assembly.
+[assembly: AssemblyTitle("juddi-installer")]
+[assembly: AssemblyDescription("")]
+[assembly: AssemblyConfiguration("")]
+[assembly: AssemblyCompany("Hewlett-Packard")]
+[assembly: AssemblyProduct("juddi-installer")]
+[assembly: AssemblyCopyright("Copyright © Hewlett-Packard 2013")]
+[assembly: AssemblyTrademark("")]
+[assembly: AssemblyCulture("")]
+
+// Setting ComVisible to false makes the types in this assembly not visible 
+// to COM components.  If you need to access a type in this assembly from 
+// COM, set the ComVisible attribute to true on that type.
+[assembly: ComVisible(false)]
+
+// The following GUID is for the ID of the typelib if this project is exposed to COM
+[assembly: Guid("0e08fb3c-39e9-4225-a918-6fdbea18b848")]
+
+// Version information for an assembly consists of the following four values:
+//
+//      Major Version
+//      Minor Version 
+//      Build Number
+//      Revision
+//
+// You can specify all the values or you can default the Build and Revision Numbers 
+// by using the '*' as shown below:
+// [assembly: AssemblyVersion("1.0.*")]
+[assembly: AssemblyVersion("3.2.1.0")]
+[assembly: AssemblyFileVersion("3.2.1.0")]

http://git-wip-us.apache.org/repos/asf/juddi/blob/0833b028/juddi-client.net/juddi-installer/juddi-installer-mono.csproj
----------------------------------------------------------------------
diff --git a/juddi-client.net/juddi-installer/juddi-installer-mono.csproj b/juddi-client.net/juddi-installer/juddi-installer-mono.csproj
index 7223f0a..3ccc3d5 100644
--- a/juddi-client.net/juddi-installer/juddi-installer-mono.csproj
+++ b/juddi-client.net/juddi-installer/juddi-installer-mono.csproj
@@ -1,64 +1,84 @@
-<?xml version="1.0" encoding="utf-8"?>
-<Project ToolsVersion="4.0" DefaultTargets="Build" xmlns="http://schemas.microsoft.com/developer/msbuild/2003">
-  <Import Project="$(MSBuildExtensionsPath)\$(MSBuildToolsVersion)\Microsoft.Common.props" Condition="Exists('$(MSBuildExtensionsPath)\$(MSBuildToolsVersion)\Microsoft.Common.props')" />
-  <PropertyGroup>
-    <Configuration Condition=" '$(Configuration)' == '' ">Debug</Configuration>
-    <Platform Condition=" '$(Platform)' == '' ">AnyCPU</Platform>
-    <ProjectGuid>{DE0FBD9D-0DD0-4062-B2B3-6DD608F761A0}</ProjectGuid>
-    <OutputType>Exe</OutputType>
-    <AppDesignerFolder>Properties</AppDesignerFolder>
-    <RootNamespace>juddi_installer</RootNamespace>
-    <AssemblyName>juddi-installer</AssemblyName>
-    <TargetFrameworkVersion>v3.5</TargetFrameworkVersion>
-    <FileAlignment>512</FileAlignment>
-    <TargetFrameworkProfile />
-  </PropertyGroup>
-  <PropertyGroup Condition=" '$(Configuration)|$(Platform)' == 'Debug|AnyCPU' ">
-    <PlatformTarget>AnyCPU</PlatformTarget>
-    <DebugSymbols>true</DebugSymbols>
-    <DebugType>full</DebugType>
-    <Optimize>false</Optimize>
-    <OutputPath>bin\Debug\</OutputPath>
-    <DefineConstants>DEBUG;TRACE</DefineConstants>
-    <ErrorReport>prompt</ErrorReport>
-    <WarningLevel>4</WarningLevel>
-  </PropertyGroup>
-  <PropertyGroup Condition=" '$(Configuration)|$(Platform)' == 'Release|AnyCPU' ">
-    <PlatformTarget>AnyCPU</PlatformTarget>
-    <DebugType>pdbonly</DebugType>
-    <Optimize>true</Optimize>
-    <OutputPath>bin\Release\</OutputPath>
-    <DefineConstants>TRACE</DefineConstants>
-    <ErrorReport>prompt</ErrorReport>
-    <WarningLevel>4</WarningLevel>
-  </PropertyGroup>
-  <ItemGroup>
-    <Reference Include="System" />
-    <Reference Include="System.Core" />
-    <Reference Include="System.Runtime.Serialization" />
-    <Reference Include="System.ServiceProcess" />
-    <Reference Include="System.Web.Services" />
-    <Reference Include="System.Xml" />
-  </ItemGroup>
-  <ItemGroup>
-    <Compile Include="Program.cs" />
-    <Compile Include="Properties\AssemblyInfo.cs" />
-  </ItemGroup>
-  <ItemGroup>
-    <None Include="App.config" />
-  </ItemGroup>
-  <ItemGroup>
-    <ProjectReference Include="..\juddi-client.net\juddi-client.net-mono.csproj">
-      <Project>{c3d005cd-6c26-49fd-a4d8-08699b66af6f}</Project>
-      <Name>juddi-client.net-mono</Name>
-    </ProjectReference>
-  </ItemGroup>
-  <Import Project="$(MSBuildToolsPath)\Microsoft.CSharp.targets" />
-  <!-- To modify your build process, add your task inside one of the targets below and uncomment it. 
-       Other similar extension points exist, see Microsoft.Common.targets.
-  <Target Name="BeforeBuild">
-  </Target>
-  <Target Name="AfterBuild">
-  </Target>
-  -->
-</Project>
\ No newline at end of file
+<?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.
+-->
+
+<Project ToolsVersion="4.0" DefaultTargets="Build" xmlns="http://schemas.microsoft.com/developer/msbuild/2003">
+  <Import Project="$(MSBuildExtensionsPath)\$(MSBuildToolsVersion)\Microsoft.Common.props" Condition="Exists('$(MSBuildExtensionsPath)\$(MSBuildToolsVersion)\Microsoft.Common.props')" />
+  <PropertyGroup>
+    <Configuration Condition=" '$(Configuration)' == '' ">Debug</Configuration>
+    <Platform Condition=" '$(Platform)' == '' ">AnyCPU</Platform>
+    <ProjectGuid>{DE0FBD9D-0DD0-4062-B2B3-6DD608F761A0}</ProjectGuid>
+    <OutputType>Exe</OutputType>
+    <AppDesignerFolder>Properties</AppDesignerFolder>
+    <RootNamespace>juddi_installer</RootNamespace>
+    <AssemblyName>juddi-installer</AssemblyName>
+    <TargetFrameworkVersion>v3.5</TargetFrameworkVersion>
+    <FileAlignment>512</FileAlignment>
+    <TargetFrameworkProfile />
+  </PropertyGroup>
+  <PropertyGroup Condition=" '$(Configuration)|$(Platform)' == 'Debug|AnyCPU' ">
+    <PlatformTarget>AnyCPU</PlatformTarget>
+    <DebugSymbols>true</DebugSymbols>
+    <DebugType>full</DebugType>
+    <Optimize>false</Optimize>
+    <OutputPath>bin\Debug\</OutputPath>
+    <DefineConstants>DEBUG;TRACE</DefineConstants>
+    <ErrorReport>prompt</ErrorReport>
+    <WarningLevel>4</WarningLevel>
+  </PropertyGroup>
+  <PropertyGroup Condition=" '$(Configuration)|$(Platform)' == 'Release|AnyCPU' ">
+    <PlatformTarget>AnyCPU</PlatformTarget>
+    <DebugType>pdbonly</DebugType>
+    <Optimize>true</Optimize>
+    <OutputPath>bin\Release\</OutputPath>
+    <DefineConstants>TRACE</DefineConstants>
+    <ErrorReport>prompt</ErrorReport>
+    <WarningLevel>4</WarningLevel>
+  </PropertyGroup>
+  <ItemGroup>
+    <Reference Include="System" />
+    <Reference Include="System.Core" />
+    <Reference Include="System.Runtime.Serialization" />
+    <Reference Include="System.ServiceProcess" />
+    <Reference Include="System.Web.Services" />
+    <Reference Include="System.Xml" />
+  </ItemGroup>
+  <ItemGroup>
+    <Compile Include="Program.cs" />
+    <Compile Include="Properties\AssemblyInfo.cs" />
+  </ItemGroup>
+  <ItemGroup>
+    <None Include="App.config" />
+  </ItemGroup>
+  <ItemGroup>
+    <ProjectReference Include="..\juddi-client.net\juddi-client.net-mono.csproj">
+      <Project>{c3d005cd-6c26-49fd-a4d8-08699b66af6f}</Project>
+      <Name>juddi-client.net-mono</Name>
+    </ProjectReference>
+  </ItemGroup>
+  <Import Project="$(MSBuildToolsPath)\Microsoft.CSharp.targets" />
+  <!-- To modify your build process, add your task inside one of the targets below and uncomment it. 
+       Other similar extension points exist, see Microsoft.Common.targets.
+  <Target Name="BeforeBuild">
+  </Target>
+  <Target Name="AfterBuild">
+  </Target>
+  -->
+</Project>

http://git-wip-us.apache.org/repos/asf/juddi/blob/0833b028/juddi-client.net/juddi-installer/juddi-installer.csproj
----------------------------------------------------------------------
diff --git a/juddi-client.net/juddi-installer/juddi-installer.csproj b/juddi-client.net/juddi-installer/juddi-installer.csproj
index 2f686da..85d93a9 100644
--- a/juddi-client.net/juddi-installer/juddi-installer.csproj
+++ b/juddi-client.net/juddi-installer/juddi-installer.csproj
@@ -1,64 +1,84 @@
-<?xml version="1.0" encoding="utf-8"?>
-<Project ToolsVersion="4.0" DefaultTargets="Build" xmlns="http://schemas.microsoft.com/developer/msbuild/2003">
-  <Import Project="$(MSBuildExtensionsPath)\$(MSBuildToolsVersion)\Microsoft.Common.props" Condition="Exists('$(MSBuildExtensionsPath)\$(MSBuildToolsVersion)\Microsoft.Common.props')" />
-  <PropertyGroup>
-    <Configuration Condition=" '$(Configuration)' == '' ">Debug</Configuration>
-    <Platform Condition=" '$(Platform)' == '' ">AnyCPU</Platform>
-    <ProjectGuid>{DE0FBD9D-0DD0-4062-B2B3-6DD608F761A0}</ProjectGuid>
-    <OutputType>Exe</OutputType>
-    <AppDesignerFolder>Properties</AppDesignerFolder>
-    <RootNamespace>juddi_installer</RootNamespace>
-    <AssemblyName>juddi-installer</AssemblyName>
-    <TargetFrameworkVersion>v3.5</TargetFrameworkVersion>
-    <FileAlignment>512</FileAlignment>
-    <TargetFrameworkProfile />
-  </PropertyGroup>
-  <PropertyGroup Condition=" '$(Configuration)|$(Platform)' == 'Debug|AnyCPU' ">
-    <PlatformTarget>AnyCPU</PlatformTarget>
-    <DebugSymbols>true</DebugSymbols>
-    <DebugType>full</DebugType>
-    <Optimize>false</Optimize>
-    <OutputPath>bin\Debug\</OutputPath>
-    <DefineConstants>DEBUG;TRACE</DefineConstants>
-    <ErrorReport>prompt</ErrorReport>
-    <WarningLevel>4</WarningLevel>
-  </PropertyGroup>
-  <PropertyGroup Condition=" '$(Configuration)|$(Platform)' == 'Release|AnyCPU' ">
-    <PlatformTarget>AnyCPU</PlatformTarget>
-    <DebugType>pdbonly</DebugType>
-    <Optimize>true</Optimize>
-    <OutputPath>bin\Release\</OutputPath>
-    <DefineConstants>TRACE</DefineConstants>
-    <ErrorReport>prompt</ErrorReport>
-    <WarningLevel>4</WarningLevel>
-  </PropertyGroup>
-  <ItemGroup>
-    <Reference Include="System" />
-    <Reference Include="System.Core" />
-    <Reference Include="System.Runtime.Serialization" />
-    <Reference Include="System.ServiceProcess" />
-    <Reference Include="System.Web.Services" />
-    <Reference Include="System.Xml" />
-  </ItemGroup>
-  <ItemGroup>
-    <Compile Include="Program.cs" />
-    <Compile Include="Properties\AssemblyInfo.cs" />
-  </ItemGroup>
-  <ItemGroup>
-    <None Include="App.config" />
-  </ItemGroup>
-  <ItemGroup>
-    <ProjectReference Include="..\juddi-client.net\juddi-client.net.csproj">
-      <Project>{c3d005cd-6c26-49fd-a4d8-08699b66af6f}</Project>
-      <Name>juddi-client.net</Name>
-    </ProjectReference>
-  </ItemGroup>
-  <Import Project="$(MSBuildToolsPath)\Microsoft.CSharp.targets" />
-  <!-- To modify your build process, add your task inside one of the targets below and uncomment it. 
-       Other similar extension points exist, see Microsoft.Common.targets.
-  <Target Name="BeforeBuild">
-  </Target>
-  <Target Name="AfterBuild">
-  </Target>
-  -->
-</Project>
\ No newline at end of file
+<?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.
+-->
+
+<Project ToolsVersion="4.0" DefaultTargets="Build" xmlns="http://schemas.microsoft.com/developer/msbuild/2003">
+  <Import Project="$(MSBuildExtensionsPath)\$(MSBuildToolsVersion)\Microsoft.Common.props" Condition="Exists('$(MSBuildExtensionsPath)\$(MSBuildToolsVersion)\Microsoft.Common.props')" />
+  <PropertyGroup>
+    <Configuration Condition=" '$(Configuration)' == '' ">Debug</Configuration>
+    <Platform Condition=" '$(Platform)' == '' ">AnyCPU</Platform>
+    <ProjectGuid>{DE0FBD9D-0DD0-4062-B2B3-6DD608F761A0}</ProjectGuid>
+    <OutputType>Exe</OutputType>
+    <AppDesignerFolder>Properties</AppDesignerFolder>
+    <RootNamespace>juddi_installer</RootNamespace>
+    <AssemblyName>juddi-installer</AssemblyName>
+    <TargetFrameworkVersion>v3.5</TargetFrameworkVersion>
+    <FileAlignment>512</FileAlignment>
+    <TargetFrameworkProfile />
+  </PropertyGroup>
+  <PropertyGroup Condition=" '$(Configuration)|$(Platform)' == 'Debug|AnyCPU' ">
+    <PlatformTarget>AnyCPU</PlatformTarget>
+    <DebugSymbols>true</DebugSymbols>
+    <DebugType>full</DebugType>
+    <Optimize>false</Optimize>
+    <OutputPath>bin\Debug\</OutputPath>
+    <DefineConstants>DEBUG;TRACE</DefineConstants>
+    <ErrorReport>prompt</ErrorReport>
+    <WarningLevel>4</WarningLevel>
+  </PropertyGroup>
+  <PropertyGroup Condition=" '$(Configuration)|$(Platform)' == 'Release|AnyCPU' ">
+    <PlatformTarget>AnyCPU</PlatformTarget>
+    <DebugType>pdbonly</DebugType>
+    <Optimize>true</Optimize>
+    <OutputPath>bin\Release\</OutputPath>
+    <DefineConstants>TRACE</DefineConstants>
+    <ErrorReport>prompt</ErrorReport>
+    <WarningLevel>4</WarningLevel>
+  </PropertyGroup>
+  <ItemGroup>
+    <Reference Include="System" />
+    <Reference Include="System.Core" />
+    <Reference Include="System.Runtime.Serialization" />
+    <Reference Include="System.ServiceProcess" />
+    <Reference Include="System.Web.Services" />
+    <Reference Include="System.Xml" />
+  </ItemGroup>
+  <ItemGroup>
+    <Compile Include="Program.cs" />
+    <Compile Include="Properties\AssemblyInfo.cs" />
+  </ItemGroup>
+  <ItemGroup>
+    <None Include="App.config" />
+  </ItemGroup>
+  <ItemGroup>
+    <ProjectReference Include="..\juddi-client.net\juddi-client.net.csproj">
+      <Project>{c3d005cd-6c26-49fd-a4d8-08699b66af6f}</Project>
+      <Name>juddi-client.net</Name>
+    </ProjectReference>
+  </ItemGroup>
+  <Import Project="$(MSBuildToolsPath)\Microsoft.CSharp.targets" />
+  <!-- To modify your build process, add your task inside one of the targets below and uncomment it. 
+       Other similar extension points exist, see Microsoft.Common.targets.
+  <Target Name="BeforeBuild">
+  </Target>
+  <Target Name="AfterBuild">
+  </Target>
+  -->
+</Project>

http://git-wip-us.apache.org/repos/asf/juddi/blob/0833b028/juddi-client.net/killTomcat.bat
----------------------------------------------------------------------
diff --git a/juddi-client.net/killTomcat.bat b/juddi-client.net/killTomcat.bat
index 5519942..af87758 100644
--- a/juddi-client.net/killTomcat.bat
+++ b/juddi-client.net/killTomcat.bat
@@ -1,3 +1,19 @@
-cd juddi-tomcat\target\tomcat\apache-tomcat-6.0.26\bin\
-call shutdown.bat
-cd ..\..\..\..\..
+rem Licensed to the Apache Software Foundation (ASF) under one
+rem or more contributor license agreements.  See the NOTICE file
+rem distributed with this work for additional information
+rem regarding copyright ownership.  The ASF licenses this file
+rem to you under the Apache License, Version 2.0 (the
+rem "License"); you may not use this file except in compliance
+rem with the License.  You may obtain a copy of the License at
+rem 
+rem   http://www.apache.org/licenses/LICENSE-2.0
+rem 
+rem Unless required by applicable law or agreed to in writing,
+rem software distributed under the License is distributed on an
+rem "AS IS" BASIS, WITHOUT WARRANTIES OR CONDITIONS OF ANY
+rem KIND, either express or implied.  See the License for the
+rem specific language governing permissions and limitations
+rem under the License.
+cd juddi-tomcat\target\tomcat\apache-tomcat-6.0.26\bin\
+call shutdown.bat
+cd ..\..\..\..\..

http://git-wip-us.apache.org/repos/asf/juddi/blob/0833b028/juddi-client.net/packages/repositories.config
----------------------------------------------------------------------
diff --git a/juddi-client.net/packages/repositories.config b/juddi-client.net/packages/repositories.config
index 97c2db3..8db94fa 100644
--- a/juddi-client.net/packages/repositories.config
+++ b/juddi-client.net/packages/repositories.config
@@ -1,4 +1,24 @@
-<?xml version="1.0" encoding="utf-8"?>
-<repositories>
-  <repository path="..\juddi-client.net.test\packages.config" />
-</repositories>
\ No newline at end of file
+<?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.
+-->
+
+<repositories>
+  <repository path="..\juddi-client.net.test\packages.config" />
+</repositories>

http://git-wip-us.apache.org/repos/asf/juddi/blob/0833b028/juddi-client/src/main/java/org/apache/juddi/v3/client/JUDDIApiService.java
----------------------------------------------------------------------
diff --git a/juddi-client/src/main/java/org/apache/juddi/v3/client/JUDDIApiService.java b/juddi-client/src/main/java/org/apache/juddi/v3/client/JUDDIApiService.java
index 61a1607..70e798e 100644
--- a/juddi-client/src/main/java/org/apache/juddi/v3/client/JUDDIApiService.java
+++ b/juddi-client/src/main/java/org/apache/juddi/v3/client/JUDDIApiService.java
@@ -1,3 +1,19 @@
+/*
+ * Copyright 2001-2008 The Apache Software Foundation.
+ * 
+ * Licensed 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.
+ *
+ */
 package org.apache.juddi.v3.client;
 
 import java.net.URL;

http://git-wip-us.apache.org/repos/asf/juddi/blob/0833b028/juddi-client/src/main/java/org/apache/juddi/v3/client/UDDIConstants.java
----------------------------------------------------------------------
diff --git a/juddi-client/src/main/java/org/apache/juddi/v3/client/UDDIConstants.java b/juddi-client/src/main/java/org/apache/juddi/v3/client/UDDIConstants.java
index 2a38438..bd092db 100644
--- a/juddi-client/src/main/java/org/apache/juddi/v3/client/UDDIConstants.java
+++ b/juddi-client/src/main/java/org/apache/juddi/v3/client/UDDIConstants.java
@@ -1,3 +1,19 @@
+/*
+ * Copyright 2001-2008 The Apache Software Foundation.
+ * 
+ * Licensed 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.
+ *
+ */
 package org.apache.juddi.v3.client;
 
 import org.apache.juddi.v3.client.config.Property;

http://git-wip-us.apache.org/repos/asf/juddi/blob/0833b028/juddi-client/src/main/java/org/apache/juddi/v3/client/mapping/ServiceRegistrationResponse.java
----------------------------------------------------------------------
diff --git a/juddi-client/src/main/java/org/apache/juddi/v3/client/mapping/ServiceRegistrationResponse.java b/juddi-client/src/main/java/org/apache/juddi/v3/client/mapping/ServiceRegistrationResponse.java
index ab7a5da..c6e9949 100644
--- a/juddi-client/src/main/java/org/apache/juddi/v3/client/mapping/ServiceRegistrationResponse.java
+++ b/juddi-client/src/main/java/org/apache/juddi/v3/client/mapping/ServiceRegistrationResponse.java
@@ -1,3 +1,19 @@
+/*
+ * Copyright 2001-2008 The Apache Software Foundation.
+ * 
+ * Licensed 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.
+ *
+ */
 package org.apache.juddi.v3.client.mapping;
 
 import org.uddi.api_v3.BusinessService;

http://git-wip-us.apache.org/repos/asf/juddi/blob/0833b028/juddi-client/src/main/java/org/apache/juddi/v3/client/mapping/UDDIServiceCacheMBean.java
----------------------------------------------------------------------
diff --git a/juddi-client/src/main/java/org/apache/juddi/v3/client/mapping/UDDIServiceCacheMBean.java b/juddi-client/src/main/java/org/apache/juddi/v3/client/mapping/UDDIServiceCacheMBean.java
index 1e77ebd..4cc14a9 100644
--- a/juddi-client/src/main/java/org/apache/juddi/v3/client/mapping/UDDIServiceCacheMBean.java
+++ b/juddi-client/src/main/java/org/apache/juddi/v3/client/mapping/UDDIServiceCacheMBean.java
@@ -1,3 +1,19 @@
+/*
+ * Copyright 2001-2008 The Apache Software Foundation.
+ * 
+ * Licensed 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.
+ *
+ */
 package org.apache.juddi.v3.client.mapping;
 
 import java.util.Set;

http://git-wip-us.apache.org/repos/asf/juddi/blob/0833b028/juddi-client/src/main/resources/org/apache/juddi/v3/client/mapping/UDDIClientSubscriptionListener.wsdl
----------------------------------------------------------------------
diff --git a/juddi-client/src/main/resources/org/apache/juddi/v3/client/mapping/UDDIClientSubscriptionListener.wsdl b/juddi-client/src/main/resources/org/apache/juddi/v3/client/mapping/UDDIClientSubscriptionListener.wsdl
index a356ebb..63734bd 100644
--- a/juddi-client/src/main/resources/org/apache/juddi/v3/client/mapping/UDDIClientSubscriptionListener.wsdl
+++ b/juddi-client/src/main/resources/org/apache/juddi/v3/client/mapping/UDDIClientSubscriptionListener.wsdl
@@ -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.
+-->
+
 <definitions name='UDDIClientSubscriptionListenerService' targetNamespace='urn:uddi-org:v3_service' xmlns='http://schemas.xmlsoap.org/wsdl/' xmlns:ns1='urn:uddi-org:api_v3' xmlns:ns2='urn:uddi-org:sub_v3' xmlns:ns3='http://www.w3.org/2000/09/xmldsig#' xmlns:ns4='urn:uddi-org:subr_v3' xmlns:soap='http://schemas.xmlsoap.org/wsdl/soap/' xmlns:tns='urn:uddi-org:v3_service' xmlns:xsd='http://www.w3.org/2001/XMLSchema'>
  <types>
   <xs:schema elementFormDefault='qualified' targetNamespace='urn:uddi-org:api_v3' version='1.0' xmlns:ns1='http://www.w3.org/2000/09/xmldsig#' xmlns:tns='urn:uddi-org:api_v3' xmlns:xs='http://www.w3.org/2001/XMLSchema'>

http://git-wip-us.apache.org/repos/asf/juddi/blob/0833b028/juddi-client/src/main/resources/xsd/uddi-client.xsd
----------------------------------------------------------------------
diff --git a/juddi-client/src/main/resources/xsd/uddi-client.xsd b/juddi-client/src/main/resources/xsd/uddi-client.xsd
index 68847f4..02bf04d 100644
--- a/juddi-client/src/main/resources/xsd/uddi-client.xsd
+++ b/juddi-client/src/main/resources/xsd/uddi-client.xsd
@@ -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.
+-->
 <xsd:schema elementFormDefault='qualified'
   targetNamespace='urn:juddi-apache-org:v3_client' version='1.0'
             xmlns:tns='urn:juddi-apache-org:v3_client'

http://git-wip-us.apache.org/repos/asf/juddi/blob/0833b028/juddi-client/src/test/java/org/apache/juddi/v3/annotations/HelloWorldMockup.java
----------------------------------------------------------------------
diff --git a/juddi-client/src/test/java/org/apache/juddi/v3/annotations/HelloWorldMockup.java b/juddi-client/src/test/java/org/apache/juddi/v3/annotations/HelloWorldMockup.java
index 7c3db65..17ee71a 100644
--- a/juddi-client/src/test/java/org/apache/juddi/v3/annotations/HelloWorldMockup.java
+++ b/juddi-client/src/test/java/org/apache/juddi/v3/annotations/HelloWorldMockup.java
@@ -1,3 +1,19 @@
+/*
+ * Copyright 2001-2008 The Apache Software Foundation.
+ * 
+ * Licensed 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.
+ *
+ */
 package org.apache.juddi.v3.annotations;
 
 import javax.jws.WebService;

http://git-wip-us.apache.org/repos/asf/juddi/blob/0833b028/juddi-client/src/test/java/org/apache/juddi/v3/annotations/HelloWorldMockup2.java
----------------------------------------------------------------------
diff --git a/juddi-client/src/test/java/org/apache/juddi/v3/annotations/HelloWorldMockup2.java b/juddi-client/src/test/java/org/apache/juddi/v3/annotations/HelloWorldMockup2.java
index 907d94b..e670bbd 100644
--- a/juddi-client/src/test/java/org/apache/juddi/v3/annotations/HelloWorldMockup2.java
+++ b/juddi-client/src/test/java/org/apache/juddi/v3/annotations/HelloWorldMockup2.java
@@ -1,3 +1,19 @@
+/*
+ * Copyright 2001-2008 The Apache Software Foundation.
+ * 
+ * Licensed 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.
+ *
+ */
 package org.apache.juddi.v3.annotations;
 
 import org.apache.juddi.v3.annotations.UDDIService;

http://git-wip-us.apache.org/repos/asf/juddi/blob/0833b028/juddi-client/src/test/java/org/apache/juddi/v3/client/HelloWorldMockup.java
----------------------------------------------------------------------
diff --git a/juddi-client/src/test/java/org/apache/juddi/v3/client/HelloWorldMockup.java b/juddi-client/src/test/java/org/apache/juddi/v3/client/HelloWorldMockup.java
index 0786edd..fa444f6 100644
--- a/juddi-client/src/test/java/org/apache/juddi/v3/client/HelloWorldMockup.java
+++ b/juddi-client/src/test/java/org/apache/juddi/v3/client/HelloWorldMockup.java
@@ -1,3 +1,19 @@
+/*
+ * Copyright 2001-2008 The Apache Software Foundation.
+ * 
+ * Licensed 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.
+ *
+ */
 package org.apache.juddi.v3.client;
 
 import javax.jws.WebService;

http://git-wip-us.apache.org/repos/asf/juddi/blob/0833b028/juddi-client/src/test/resources/META-INF/configtests.xml
----------------------------------------------------------------------
diff --git a/juddi-client/src/test/resources/META-INF/configtests.xml b/juddi-client/src/test/resources/META-INF/configtests.xml
index de58a62..85b3fff 100644
--- a/juddi-client/src/test/resources/META-INF/configtests.xml
+++ b/juddi-client/src/test/resources/META-INF/configtests.xml
@@ -1,4 +1,20 @@
 <?xml version="1.0" encoding="ISO-8859-1" ?>
+<!--
+* Copyright 2001-2009 The Apache Software Foundation.
+*
+* Licensed 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.
+*
+*/ -->
 <uddi xmlns="urn:juddi-apache-org:v3_client" xsi:schemaLocation="classpath:/xsd/uddi-client.xsd" xmlns:xsi="http://www.w3.org/2001/XMLSchema">
         <reloadDelay>5000</reloadDelay>
         <client name="test-client">

http://git-wip-us.apache.org/repos/asf/juddi/blob/0833b028/juddi-client/src/test/resources/META-INF/subscription.xml
----------------------------------------------------------------------
diff --git a/juddi-client/src/test/resources/META-INF/subscription.xml b/juddi-client/src/test/resources/META-INF/subscription.xml
index 4e8c356..bdde534 100644
--- a/juddi-client/src/test/resources/META-INF/subscription.xml
+++ b/juddi-client/src/test/resources/META-INF/subscription.xml
@@ -1,4 +1,20 @@
 <?xml version="1.0" encoding="ISO-8859-1" ?>
+<!--
+* Copyright 2001-2009 The Apache Software Foundation.
+*
+* Licensed 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.
+*
+*/ -->
 <uddi xmlns="urn:juddi-apache-org:v3_client" xsi:schemaLocation="classpath:/xsd/uddi-client.xsd" xmlns:xsi="http://www.w3.org/2001/XMLSchema">
     <reloadDelay>5000</reloadDelay>
     <client name="test-client">

http://git-wip-us.apache.org/repos/asf/juddi/blob/0833b028/juddi-client/src/test/resources/META-INF/uddi-subcallback1.xml
----------------------------------------------------------------------
diff --git a/juddi-client/src/test/resources/META-INF/uddi-subcallback1.xml b/juddi-client/src/test/resources/META-INF/uddi-subcallback1.xml
index d4d09c5..a763591 100644
--- a/juddi-client/src/test/resources/META-INF/uddi-subcallback1.xml
+++ b/juddi-client/src/test/resources/META-INF/uddi-subcallback1.xml
@@ -1,4 +1,20 @@
 <?xml version="1.0" encoding="ISO-8859-1" ?>
+<!--
+* Copyright 2001-2009 The Apache Software Foundation.
+*
+* Licensed 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.
+*
+*/ -->
 <uddi xmlns="urn:juddi-apache-org:v3_client" xsi:schemaLocation="classpath:/xsd/uddi-client.xsd" xmlns:xsi="http://www.w3.org/2001/XMLSchema">
     <reloadDelay>5000</reloadDelay>
     <client name="test-client">

http://git-wip-us.apache.org/repos/asf/juddi/blob/0833b028/juddi-client/src/test/resources/META-INF/uddi-subcallback2.xml
----------------------------------------------------------------------
diff --git a/juddi-client/src/test/resources/META-INF/uddi-subcallback2.xml b/juddi-client/src/test/resources/META-INF/uddi-subcallback2.xml
index 83709d7..20fa9ce 100644
--- a/juddi-client/src/test/resources/META-INF/uddi-subcallback2.xml
+++ b/juddi-client/src/test/resources/META-INF/uddi-subcallback2.xml
@@ -1,4 +1,20 @@
 <?xml version="1.0" encoding="ISO-8859-1" ?>
+<!--
+* Copyright 2001-2009 The Apache Software Foundation.
+*
+* Licensed 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.
+*
+*/ -->
 <uddi xmlns="urn:juddi-apache-org:v3_client" xsi:schemaLocation="classpath:/xsd/uddi-client.xsd" xmlns:xsi="http://www.w3.org/2001/XMLSchema">
     <reloadDelay>5000</reloadDelay>
     <client name="test-client">

http://git-wip-us.apache.org/repos/asf/juddi/blob/0833b028/juddi-client/src/test/resources/META-INF/uddi-subcallback3.xml
----------------------------------------------------------------------
diff --git a/juddi-client/src/test/resources/META-INF/uddi-subcallback3.xml b/juddi-client/src/test/resources/META-INF/uddi-subcallback3.xml
index 0f8126d..10b1a7d 100644
--- a/juddi-client/src/test/resources/META-INF/uddi-subcallback3.xml
+++ b/juddi-client/src/test/resources/META-INF/uddi-subcallback3.xml
@@ -1,4 +1,20 @@
 <?xml version="1.0" encoding="ISO-8859-1" ?>
+<!--
+* Copyright 2001-2009 The Apache Software Foundation.
+*
+* Licensed 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.
+*
+*/ -->
 <uddi xmlns="urn:juddi-apache-org:v3_client" xsi:schemaLocation="classpath:/xsd/uddi-client.xsd" xmlns:xsi="http://www.w3.org/2001/XMLSchema">
     <reloadDelay>5000</reloadDelay>
     <client name="test-client">

http://git-wip-us.apache.org/repos/asf/juddi/blob/0833b028/juddi-client/src/test/resources/META-INF/uddi.xml
----------------------------------------------------------------------
diff --git a/juddi-client/src/test/resources/META-INF/uddi.xml b/juddi-client/src/test/resources/META-INF/uddi.xml
index b2941f2..d3adccb 100644
--- a/juddi-client/src/test/resources/META-INF/uddi.xml
+++ b/juddi-client/src/test/resources/META-INF/uddi.xml
@@ -1,4 +1,20 @@
 <?xml version="1.0" encoding="ISO-8859-1" ?>
+<!--
+* Copyright 2001-2009 The Apache Software Foundation.
+*
+* Licensed 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.
+*
+*/ -->
 <uddi xmlns="urn:juddi-apache-org:v3_client" xsi:schemaLocation="classpath:/xsd/uddi-client.xsd" xmlns:xsi="http://www.w3.org/2001/XMLSchema">
     <reloadDelay>5000</reloadDelay>
     <client name="test-client">

http://git-wip-us.apache.org/repos/asf/juddi/blob/0833b028/juddi-client/src/test/resources/META-INF/uddi2.xml
----------------------------------------------------------------------
diff --git a/juddi-client/src/test/resources/META-INF/uddi2.xml b/juddi-client/src/test/resources/META-INF/uddi2.xml
index 84e46fe..9a3ed5c 100644
--- a/juddi-client/src/test/resources/META-INF/uddi2.xml
+++ b/juddi-client/src/test/resources/META-INF/uddi2.xml
@@ -1,4 +1,21 @@
 <?xml version="1.0" encoding="ISO-8859-1" ?>
+
+<!--
+* Copyright 2001-2009 The Apache Software Foundation.
+*
+* Licensed 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.
+*
+*/ -->
 <uddi xmlns="urn:juddi-apache-org:v3_client" xsi:schemaLocation="classpath:/xsd/uddi-client.xsd" xmlns:xsi="http://www.w3.org/2001/XMLSchema">
     <reloadDelay>5000</reloadDelay>
     <client name="second-client">

http://git-wip-us.apache.org/repos/asf/juddi/blob/0833b028/juddi-client/src/test/resources/META-INF/uddi3-enc-aes128.xml
----------------------------------------------------------------------
diff --git a/juddi-client/src/test/resources/META-INF/uddi3-enc-aes128.xml b/juddi-client/src/test/resources/META-INF/uddi3-enc-aes128.xml
index 947903a..749b6e1 100644
--- a/juddi-client/src/test/resources/META-INF/uddi3-enc-aes128.xml
+++ b/juddi-client/src/test/resources/META-INF/uddi3-enc-aes128.xml
@@ -1,4 +1,20 @@
 <?xml version="1.0" encoding="ISO-8859-1" ?>
+<!--
+* Copyright 2001-2009 The Apache Software Foundation.
+*
+* Licensed 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.
+*
+*/ -->
 <uddi xmlns="urn:juddi-apache-org:v3_client" xsi:schemaLocation="classpath:/xsd/uddi-client.xsd" xmlns:xsi="http://www.w3.org/2001/XMLSchema">
         <reloadDelay>5000</reloadDelay>
         <client name="second-client">


---------------------------------------------------------------------
To unsubscribe, e-mail: commits-unsubscribe@juddi.apache.org
For additional commands, e-mail: commits-help@juddi.apache.org