You are viewing a plain text version of this content. The canonical link for it is here.
Posted to axis-cvs@ws.apache.org by de...@apache.org on 2006/12/20 13:23:42 UTC

svn commit: r489066 [23/24] - in /webservices/axis2/branches/java/1_1/modules: adb-codegen/ adb-codegen/src/org/apache/axis2/schema/ adb-codegen/src/org/apache/axis2/schema/i18n/ adb-codegen/src/org/apache/axis2/schema/template/ adb-codegen/test-resour...

Modified: webservices/axis2/branches/java/1_1/modules/samples/userguide/build.xml
URL: http://svn.apache.org/viewvc/webservices/axis2/branches/java/1_1/modules/samples/userguide/build.xml?view=diff&rev=489066&r1=489065&r2=489066
==============================================================================
--- webservices/axis2/branches/java/1_1/modules/samples/userguide/build.xml (original)
+++ webservices/axis2/branches/java/1_1/modules/samples/userguide/build.xml Wed Dec 20 04:23:24 2006
@@ -1,124 +1,141 @@
-<project name="samples" default="generate.service">
-    <property name="mainDir" value="../.."/>
-    <property name="classes.dir" value="build/classes"/>
-    <path id="axis.classpath">
-        <fileset dir="../../lib">
-            <include name="*.jar"/>
-        </fileset>
-        <pathelement location="build/userguide.jar"/>
-    </path>
-
-    <target name="run.client.all"
-            depends="run.client.ping,run.client.blocking,run.client.blockingdual,run.client.nonblocking,run.client.nonblockingdual,run.client.servicewithmodule">
-    </target>
-    
-    <target name="compile">
-    		<mkdir dir="${classes.dir}" />
-		<javac srcdir="src" destdir="${classes.dir}">
-			<classpath refid="axis.classpath" />
-		</javac>
-		<jar destfile="build/userguide.jar">
-            		<fileset dir="${classes.dir}">
-                		<include name="userguide/**"/>
-            		</fileset>
-       		</jar>
-    </target>
-    
-    <target name="generate.service" depends="compile">
-            <jar destfile="build/MyService.aar">
-            <fileset dir="src/userguide/example1/">
-                <include name="META-INF/**"/>
-            </fileset>
-            <fileset dir="${classes.dir}">
-                <include name="userguide/example1/**/*.class"/>
-            </fileset>
-        </jar>
-        <copy file="build/MyService.aar" tofile="../../repository/services/sample-MyService.aar" overwrite="true"/>
-        <jar destfile="build/MyServiceWithModule.aar" >
-            <fileset dir="src/userguide/example2/">
-                <include name="META-INF/**"/>
-            </fileset>
-            <fileset dir="${classes.dir}">
-                <include name="userguide/example2/**/*.class"/>
-            </fileset>
-        </jar>
-        <copy file="build/MyServiceWithModule.aar" tofile="../../repository/services/sample-MyServiceWithModule.aar" overwrite="true"/>
-        <jar destfile="build/WsaMappingService.aar">
-            <fileset dir="src/userguide/example3/">
-                <include name="META-INF/**"/>
-            </fileset>
-            <fileset dir="${classes.dir}">
-                <include name="userguide/example3/**/*.class"/>
-            </fileset>
-        </jar>
-        <copy file="build/WsaMappingService.aar" tofile="../../repository/services/sample-WsaMappingService.aar" overwrite="true"/>
-    </target>
-    
-    <target name="generate.module">
-       <jar destfile="build/logging.mar">
-            <fileset dir="src/userguide/loggingmodule/">
-                <include name="META-INF/**"/>
-            </fileset>
-            <fileset dir="${classes.dir}">
-                <include name="userguide/loggingmodule/**/*.class"/>
-            </fileset>
-       </jar>
-       <copy file="build/logging.mar" tofile="../../repository/modules/sample-logging.mar" overwrite="true"/>
-       <echo message="*** Please add the logging phase to the ../../conf/axis2.xml. For more details please refer to the http://ws.apache.org/axis2/1_1/modules.html ***"/>
-    </target>
-
-    <target name="run.client.blocking" depends="compile">
-        <java classname="userguide.clients.EchoBlockingClient"
-              classpathref="axis.classpath" fork="true">
-            <jvmarg value="-Daxis2.repo=${mainDir}/repository"/>
-        </java>
-    </target>
-    <target name="run.client.blockingdual" depends="compile">
-        <java classname="userguide.clients.EchoBlockingDualClient"
-              classpathref="axis.classpath" fork="true">
-            <jvmarg value="-Daxis2.repo=${mainDir}/repository"/>
-        </java>
-    </target>
-    
-    <target name="run.client.nonblocking" depends="compile">
-        <java classname="userguide.clients.EchoNonBlockingClient"
-              classpathref="axis.classpath" fork="true">
-            <jvmarg value="-Daxis2.repo=${mainDir}/repository"/>
-        </java>
-    </target>
-    
-    <target name="run.client.nonblockingdual" depends="compile">
-        <java classname="userguide.clients.EchoNonBlockingDualClient"
-              classpathref="axis.classpath" fork="true">
-            <jvmarg value="-Daxis2.repo=${mainDir}/repository"/>
-        </java>
-    </target>
-    
-    <target name="run.client.ping" depends="compile">
-        <java classname="userguide.clients.PingClient"
-              classpathref="axis.classpath" fork="true">
-            <jvmarg value="-Daxis2.repo=${mainDir}/repository"/>
-        </java>
-    </target>
-    
-    <target name="run.client.servicewithmodule" depends="compile">
-        <java classname="userguide.clients.ClientForWebServiceWithModule"
-              classpathref="axis.classpath" fork="true">
-            <jvmarg value="-Daxis2.repo=${mainDir}/repository"/>
-        </java>
-    </target>
-    
-    <target name="run.client">
-	<echo message="Please use the following ant targets to run the clients" />
-	<echo message="run.client.ping" />
-	<echo message="run.client.blocking" />
-	<echo message="run.client.blockingdual" />
-	<echo message="run.client.nonblocking" />
-	<echo message="run.client.nonblockingdual" />
-	<echo message="run.client.servicewithmodule" />
-	<echo message="run.client.all  -  run all clients" />
-    </target>
-    <target name="clean">
-	<delete dir="build" />
-    </target>
-</project>
+<!--
+/*
+ * Copyright 2001-2004 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.
+ */
+ -->
+<project name="samples" default="generate.service">
+    <property name="mainDir" value="../.."/>
+    <property name="classes.dir" value="build/classes"/>
+    <path id="axis.classpath">
+        <fileset dir="../../lib">
+            <include name="*.jar"/>
+        </fileset>
+        <pathelement location="build/userguide.jar"/>
+    </path>
+
+    <target name="run.client.all"
+            depends="run.client.ping,run.client.blocking,run.client.blockingdual,run.client.nonblocking,run.client.nonblockingdual,run.client.servicewithmodule">
+    </target>
+    
+    <target name="compile">
+    		<mkdir dir="${classes.dir}" />
+		<javac srcdir="src" destdir="${classes.dir}">
+			<classpath refid="axis.classpath" />
+		</javac>
+		<jar destfile="build/userguide.jar">
+            		<fileset dir="${classes.dir}">
+                		<include name="userguide/**"/>
+            		</fileset>
+       		</jar>
+    </target>
+    
+    <target name="generate.service" depends="compile">
+            <jar destfile="build/MyService.aar">
+            <fileset dir="src/userguide/example1/">
+                <include name="META-INF/**"/>
+            </fileset>
+            <fileset dir="${classes.dir}">
+                <include name="userguide/example1/**/*.class"/>
+            </fileset>
+        </jar>
+        <copy file="build/MyService.aar" tofile="../../repository/services/sample-MyService.aar" overwrite="true"/>
+        <jar destfile="build/MyServiceWithModule.aar" >
+            <fileset dir="src/userguide/example2/">
+                <include name="META-INF/**"/>
+            </fileset>
+            <fileset dir="${classes.dir}">
+                <include name="userguide/example2/**/*.class"/>
+            </fileset>
+        </jar>
+        <copy file="build/MyServiceWithModule.aar" tofile="../../repository/services/sample-MyServiceWithModule.aar" overwrite="true"/>
+        <jar destfile="build/WsaMappingService.aar">
+            <fileset dir="src/userguide/example3/">
+                <include name="META-INF/**"/>
+            </fileset>
+            <fileset dir="${classes.dir}">
+                <include name="userguide/example3/**/*.class"/>
+            </fileset>
+        </jar>
+        <copy file="build/WsaMappingService.aar" tofile="../../repository/services/sample-WsaMappingService.aar" overwrite="true"/>
+    </target>
+    
+    <target name="generate.module">
+       <jar destfile="build/logging.mar">
+            <fileset dir="src/userguide/loggingmodule/">
+                <include name="META-INF/**"/>
+            </fileset>
+            <fileset dir="${classes.dir}">
+                <include name="userguide/loggingmodule/**/*.class"/>
+            </fileset>
+       </jar>
+       <copy file="build/logging.mar" tofile="../../repository/modules/sample-logging.mar" overwrite="true"/>
+       <echo message="*** Please add the logging phase to the ../../conf/axis2.xml. For more details please refer to the http://ws.apache.org/axis2/1_1/modules.html ***"/>
+    </target>
+
+    <target name="run.client.blocking" depends="compile">
+        <java classname="userguide.clients.EchoBlockingClient"
+              classpathref="axis.classpath" fork="true">
+            <jvmarg value="-Daxis2.repo=${mainDir}/repository"/>
+        </java>
+    </target>
+    <target name="run.client.blockingdual" depends="compile">
+        <java classname="userguide.clients.EchoBlockingDualClient"
+              classpathref="axis.classpath" fork="true">
+            <jvmarg value="-Daxis2.repo=${mainDir}/repository"/>
+        </java>
+    </target>
+    
+    <target name="run.client.nonblocking" depends="compile">
+        <java classname="userguide.clients.EchoNonBlockingClient"
+              classpathref="axis.classpath" fork="true">
+            <jvmarg value="-Daxis2.repo=${mainDir}/repository"/>
+        </java>
+    </target>
+    
+    <target name="run.client.nonblockingdual" depends="compile">
+        <java classname="userguide.clients.EchoNonBlockingDualClient"
+              classpathref="axis.classpath" fork="true">
+            <jvmarg value="-Daxis2.repo=${mainDir}/repository"/>
+        </java>
+    </target>
+    
+    <target name="run.client.ping" depends="compile">
+        <java classname="userguide.clients.PingClient"
+              classpathref="axis.classpath" fork="true">
+            <jvmarg value="-Daxis2.repo=${mainDir}/repository"/>
+        </java>
+    </target>
+    
+    <target name="run.client.servicewithmodule" depends="compile">
+        <java classname="userguide.clients.ClientForWebServiceWithModule"
+              classpathref="axis.classpath" fork="true">
+            <jvmarg value="-Daxis2.repo=${mainDir}/repository"/>
+        </java>
+    </target>
+    
+    <target name="run.client">
+	<echo message="Please use the following ant targets to run the clients" />
+	<echo message="run.client.ping" />
+	<echo message="run.client.blocking" />
+	<echo message="run.client.blockingdual" />
+	<echo message="run.client.nonblocking" />
+	<echo message="run.client.nonblockingdual" />
+	<echo message="run.client.servicewithmodule" />
+	<echo message="run.client.all  -  run all clients" />
+    </target>
+    <target name="clean">
+	<delete dir="build" />
+    </target>
+</project>

Modified: webservices/axis2/branches/java/1_1/modules/samples/userguide/src/userguide/example1/META-INF/services.xml
URL: http://svn.apache.org/viewvc/webservices/axis2/branches/java/1_1/modules/samples/userguide/src/userguide/example1/META-INF/services.xml?view=diff&rev=489066&r1=489065&r2=489066
==============================================================================
--- webservices/axis2/branches/java/1_1/modules/samples/userguide/src/userguide/example1/META-INF/services.xml (original)
+++ webservices/axis2/branches/java/1_1/modules/samples/userguide/src/userguide/example1/META-INF/services.xml Wed Dec 20 04:23:24 2006
@@ -1,3 +1,20 @@
+<!--
+/*
+ * Copyright 2001-2004 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.
+ */
+ -->
 <service name="MyService">
     <description>
         This is a sample Web Service with two operations,echo and ping.

Modified: webservices/axis2/branches/java/1_1/modules/samples/userguide/src/userguide/example2/META-INF/services.xml
URL: http://svn.apache.org/viewvc/webservices/axis2/branches/java/1_1/modules/samples/userguide/src/userguide/example2/META-INF/services.xml?view=diff&rev=489066&r1=489065&r2=489066
==============================================================================
--- webservices/axis2/branches/java/1_1/modules/samples/userguide/src/userguide/example2/META-INF/services.xml (original)
+++ webservices/axis2/branches/java/1_1/modules/samples/userguide/src/userguide/example2/META-INF/services.xml Wed Dec 20 04:23:24 2006
@@ -1,3 +1,20 @@
+<!--
+/*
+ * Copyright 2001-2004 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.
+ */
+ -->
 <service name="MyServiceWithModule">
     <description>
         This is a sample Web Service with a logging module engaged.

Modified: webservices/axis2/branches/java/1_1/modules/samples/userguide/src/userguide/example3/META-INF/services.xml
URL: http://svn.apache.org/viewvc/webservices/axis2/branches/java/1_1/modules/samples/userguide/src/userguide/example3/META-INF/services.xml?view=diff&rev=489066&r1=489065&r2=489066
==============================================================================
--- webservices/axis2/branches/java/1_1/modules/samples/userguide/src/userguide/example3/META-INF/services.xml (original)
+++ webservices/axis2/branches/java/1_1/modules/samples/userguide/src/userguide/example3/META-INF/services.xml Wed Dec 20 04:23:24 2006
@@ -1,13 +1,30 @@
-<serviceGroup>
-    <service name="WsaMappingTest">
-        <description>
-            Sample to via WSA Mapping
-        </description>
-        <parameter name="ServiceClass" locked="false">userguide.example3.MyService</parameter>
-        <operation name="echo">
-            <messageReceiver
-                    class="org.apache.axis2.receivers.RawXMLINOutMessageReceiver"/>
-            <actionMapping>urn:sample/echo</actionMapping>
-        </operation>
-    </service>
+<!--
+/*
+ * Copyright 2001-2004 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.
+ */
+ -->
+<serviceGroup>
+    <service name="WsaMappingTest">
+        <description>
+            Sample to via WSA Mapping
+        </description>
+        <parameter name="ServiceClass" locked="false">userguide.example3.MyService</parameter>
+        <operation name="echo">
+            <messageReceiver
+                    class="org.apache.axis2.receivers.RawXMLINOutMessageReceiver"/>
+            <actionMapping>urn:sample/echo</actionMapping>
+        </operation>
+    </service>
 </serviceGroup>

Modified: webservices/axis2/branches/java/1_1/modules/samples/userguide/src/userguide/loggingmodule/META-INF/module.xml
URL: http://svn.apache.org/viewvc/webservices/axis2/branches/java/1_1/modules/samples/userguide/src/userguide/loggingmodule/META-INF/module.xml?view=diff&rev=489066&r1=489065&r2=489066
==============================================================================
--- webservices/axis2/branches/java/1_1/modules/samples/userguide/src/userguide/loggingmodule/META-INF/module.xml (original)
+++ webservices/axis2/branches/java/1_1/modules/samples/userguide/src/userguide/loggingmodule/META-INF/module.xml Wed Dec 20 04:23:24 2006
@@ -1,3 +1,20 @@
+<!--
+/*
+ * Copyright 2001-2004 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.
+ */
+ -->
 <module name="logging" class="userguide.loggingmodule.LoggingModule">
     <InFlow>
         <handler name="InFlowLogHandler" class="userguide.loggingmodule.LogHandler">

Modified: webservices/axis2/branches/java/1_1/modules/samples/version/build.xml
URL: http://svn.apache.org/viewvc/webservices/axis2/branches/java/1_1/modules/samples/version/build.xml?view=diff&rev=489066&r1=489065&r2=489066
==============================================================================
--- webservices/axis2/branches/java/1_1/modules/samples/version/build.xml (original)
+++ webservices/axis2/branches/java/1_1/modules/samples/version/build.xml Wed Dec 20 04:23:24 2006
@@ -1,46 +1,62 @@
-
-<project basedir="." default="generate.service">
-	
-	<property name="dest.dir" value="build" />
-	
-	<property name="dest.dir.classes" value="${dest.dir}/classes" />
-	
-	<property name="axis2.home" value="../../" />
-	
-	<property name="repository.path" value="${axis2.home}/repository/services" />
-	
-	<path id="build.class.path">
-		<fileset dir="${axis2.home}/lib">
-			<include name="*.jar" />
-		</fileset>
-	</path>
-	
-	<target name="clean">
-		<delete dir="${dest.dir}" />
-	</target>
-	
-	<target name="prepare">
-		
-		<mkdir dir="${dest.dir}" />
-		
-		<mkdir dir="${dest.dir.classes}" />
-		
-		<mkdir dir="${dest.dir.classes}/META-INF" />
-	
-	</target>
-	
-	<target name="generate.service" depends="clean,prepare">
-		
-		<copy file="src/sample/axisversion/META-INF/services.xml" tofile="${dest.dir.classes}/META-INF/services.xml" overwrite="true" />
-		
-		<javac srcdir="src" destdir="${dest.dir.classes}" includes="sample/axisversion/**">
-			<classpath refid="build.class.path" />
-		</javac>
-		
-		<jar basedir="${dest.dir.classes}" destfile="${dest.dir}/version.aar" />
-		
-		<copy file="${dest.dir}/version.aar" tofile="${repository.path}/version.aar" overwrite="true" />
-	
-	</target>
-	
-</project>
+<!--
+/*
+ * Copyright 2001-2004 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.
+ */
+ -->
+<project basedir="." default="generate.service">
+	
+	<property name="dest.dir" value="build" />
+	
+	<property name="dest.dir.classes" value="${dest.dir}/classes" />
+	
+	<property name="axis2.home" value="../../" />
+	
+	<property name="repository.path" value="${axis2.home}/repository/services" />
+	
+	<path id="build.class.path">
+		<fileset dir="${axis2.home}/lib">
+			<include name="*.jar" />
+		</fileset>
+	</path>
+	
+	<target name="clean">
+		<delete dir="${dest.dir}" />
+	</target>
+	
+	<target name="prepare">
+		
+		<mkdir dir="${dest.dir}" />
+		
+		<mkdir dir="${dest.dir.classes}" />
+		
+		<mkdir dir="${dest.dir.classes}/META-INF" />
+	
+	</target>
+	
+	<target name="generate.service" depends="clean,prepare">
+		
+		<copy file="src/sample/axisversion/META-INF/services.xml" tofile="${dest.dir.classes}/META-INF/services.xml" overwrite="true" />
+		
+		<javac srcdir="src" destdir="${dest.dir.classes}" includes="sample/axisversion/**">
+			<classpath refid="build.class.path" />
+		</javac>
+		
+		<jar basedir="${dest.dir.classes}" destfile="${dest.dir}/version.aar" />
+		
+		<copy file="${dest.dir}/version.aar" tofile="${repository.path}/version.aar" overwrite="true" />
+	
+	</target>
+	
+</project>

Modified: webservices/axis2/branches/java/1_1/modules/samples/version/src/sample/axisversion/META-INF/services.xml
URL: http://svn.apache.org/viewvc/webservices/axis2/branches/java/1_1/modules/samples/version/src/sample/axisversion/META-INF/services.xml?view=diff&rev=489066&r1=489065&r2=489066
==============================================================================
--- webservices/axis2/branches/java/1_1/modules/samples/version/src/sample/axisversion/META-INF/services.xml (original)
+++ webservices/axis2/branches/java/1_1/modules/samples/version/src/sample/axisversion/META-INF/services.xml Wed Dec 20 04:23:24 2006
@@ -1,9 +1,26 @@
-<service name="Version">
-    <description>
-        This service is to get the running Axis version
-    </description>
-    <parameter name="ServiceClass" locked="false">sample.axisversion.Version</parameter>
-    <operation name="getVersion">
-    <messageReceiver  class="org.apache.axis2.rpc.receivers.RPCMessageReceiver" />
-    </operation>
+<!--
+/*
+ * Copyright 2001-2004 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.
+ */
+ -->
+<service name="Version">
+    <description>
+        This service is to get the running Axis version
+    </description>
+    <parameter name="ServiceClass" locked="false">sample.axisversion.Version</parameter>
+    <operation name="getVersion">
+    <messageReceiver  class="org.apache.axis2.rpc.receivers.RPCMessageReceiver" />
+    </operation>
 </service>

Modified: webservices/axis2/branches/java/1_1/modules/samples/wsdl/Axis2SampleDocLit.wsdl
URL: http://svn.apache.org/viewvc/webservices/axis2/branches/java/1_1/modules/samples/wsdl/Axis2SampleDocLit.wsdl?view=diff&rev=489066&r1=489065&r2=489066
==============================================================================
--- webservices/axis2/branches/java/1_1/modules/samples/wsdl/Axis2SampleDocLit.wsdl (original)
+++ webservices/axis2/branches/java/1_1/modules/samples/wsdl/Axis2SampleDocLit.wsdl Wed Dec 20 04:23:24 2006
@@ -1,4 +1,21 @@
 <?xml version="1.0" encoding="UTF-8"?>
+<!--
+/*
+ * Copyright 2001-2004 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.
+ */
+ -->
 <definitions xmlns="http://schemas.xmlsoap.org/wsdl/" xmlns:SOAP-ENC="http://schemas.xmlsoap.org/soap/encoding/" xmlns:soap="http://schemas.xmlsoap.org/wsdl/soap/" xmlns:tns="http://userguide.axis2.apache.org/Axis2SampleDocLit" xmlns:xsd="http://www.w3.org/2001/XMLSchema" xmlns:xsd1="http://userguide.axis2.apache.org/xsd" xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance" targetNamespace="http://userguide.axis2.apache.org/Axis2SampleDocLit" name="Axis2SampleDocLitService">
 	<types>
 		<schema targetNamespace="http://userguide.axis2.apache.org/xsd" xmlns="http://www.w3.org/2001/XMLSchema" xmlns:wsdl="http://schemas.xmlsoap.org/wsdl/" elementFormDefault="qualified">

Modified: webservices/axis2/branches/java/1_1/modules/samples/wsdl/perf.wsdl
URL: http://svn.apache.org/viewvc/webservices/axis2/branches/java/1_1/modules/samples/wsdl/perf.wsdl?view=diff&rev=489066&r1=489065&r2=489066
==============================================================================
--- webservices/axis2/branches/java/1_1/modules/samples/wsdl/perf.wsdl (original)
+++ webservices/axis2/branches/java/1_1/modules/samples/wsdl/perf.wsdl Wed Dec 20 04:23:24 2006
@@ -1,4 +1,21 @@
 <?xml version="1.0" encoding="UTF-8"?>
+<!--
+/*
+ * Copyright 2001-2004 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.
+ */
+ -->
 <wsdl:definitions xmlns:apachesoap="http://xml.apache.org/xml-soap" xmlns:impl="http://perf.samples" xmlns:intf="http://perf.samples" xmlns:wsdl="http://schemas.xmlsoap.org/wsdl/" xmlns:wsdlsoap="http://schemas.xmlsoap.org/wsdl/soap/" xmlns:xsd="http://www.w3.org/2001/XMLSchema" targetNamespace="http://perf.samples">
 	<wsdl:types>
 		<schema elementFormDefault="qualified" targetNamespace="http://perf.samples" xmlns="http://www.w3.org/2001/XMLSchema">

Modified: webservices/axis2/branches/java/1_1/modules/savan/conf/module.xml
URL: http://svn.apache.org/viewvc/webservices/axis2/branches/java/1_1/modules/savan/conf/module.xml?view=diff&rev=489066&r1=489065&r2=489066
==============================================================================
--- webservices/axis2/branches/java/1_1/modules/savan/conf/module.xml (original)
+++ webservices/axis2/branches/java/1_1/modules/savan/conf/module.xml Wed Dec 20 04:23:24 2006
@@ -1,3 +1,20 @@
+<!--
+/*
+ * Copyright 2001-2004 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.
+ */
+ -->
 <module name="Savan" class="org.apache.savan.module.SavanModule">
 
     <InFlow>

Modified: webservices/axis2/branches/java/1_1/modules/savan/maven.xml
URL: http://svn.apache.org/viewvc/webservices/axis2/branches/java/1_1/modules/savan/maven.xml?view=diff&rev=489066&r1=489065&r2=489066
==============================================================================
--- webservices/axis2/branches/java/1_1/modules/savan/maven.xml (original)
+++ webservices/axis2/branches/java/1_1/modules/savan/maven.xml Wed Dec 20 04:23:24 2006
@@ -1,5 +1,21 @@
 <?xml version="1.0" encoding="UTF-8"?>
-
+<!--
+/*
+ * Copyright 2001-2004 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.
+ */
+ -->
 <!-- $Revision: 1.21 $ $Date: 2004-10-27 20:54:09 +0600 (Wed, 27 Oct 2004) $ -->
 
 <project default="jar"

Modified: webservices/axis2/branches/java/1_1/modules/secpolicy/maven.xml
URL: http://svn.apache.org/viewvc/webservices/axis2/branches/java/1_1/modules/secpolicy/maven.xml?view=diff&rev=489066&r1=489065&r2=489066
==============================================================================
--- webservices/axis2/branches/java/1_1/modules/secpolicy/maven.xml (original)
+++ webservices/axis2/branches/java/1_1/modules/secpolicy/maven.xml Wed Dec 20 04:23:24 2006
@@ -1,4 +1,21 @@
 <?xml version="1.0" encoding="UTF-8"?>
+<!--
+/*
+ * Copyright 2001-2004 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.
+ */
+ -->
 
 <!-- $Revision: 1.21 $ $Date: 2004-10-27 20:54:09 +0600 (Wed, 27 Oct 2004) $ -->
 

Modified: webservices/axis2/branches/java/1_1/modules/security/interop/axis2.crypto.properties
URL: http://svn.apache.org/viewvc/webservices/axis2/branches/java/1_1/modules/security/interop/axis2.crypto.properties?view=diff&rev=489066&r1=489065&r2=489066
==============================================================================
--- webservices/axis2/branches/java/1_1/modules/security/interop/axis2.crypto.properties (original)
+++ webservices/axis2/branches/java/1_1/modules/security/interop/axis2.crypto.properties Wed Dec 20 04:23:24 2006
@@ -1,6 +1,21 @@
-org.apache.ws.security.crypto.provider=org.apache.ws.security.components.crypto.Merlin
-org.apache.ws.security.crypto.merlin.keystore.type=pkcs12
-org.apache.ws.security.crypto.merlin.keystore.password=security
-org.apache.ws.security.crypto.merlin.keystore.alias=16c73ab6-b892-458f-abf5-2f875f74882e
-org.apache.ws.security.crypto.merlin.alias.password=security
-org.apache.ws.security.crypto.merlin.file=x509.PFX.MSFT
+# -------------------------------------------------------------------
+# Copyright 2001-2004 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.
+# -------------------------------------------------------------------
+org.apache.ws.security.crypto.provider=org.apache.ws.security.components.crypto.Merlin
+org.apache.ws.security.crypto.merlin.keystore.type=pkcs12
+org.apache.ws.security.crypto.merlin.keystore.password=security
+org.apache.ws.security.crypto.merlin.keystore.alias=16c73ab6-b892-458f-abf5-2f875f74882e
+org.apache.ws.security.crypto.merlin.alias.password=security
+org.apache.ws.security.crypto.merlin.file=x509.PFX.MSFT

Modified: webservices/axis2/branches/java/1_1/modules/security/interop/axis2.saml.properties
URL: http://svn.apache.org/viewvc/webservices/axis2/branches/java/1_1/modules/security/interop/axis2.saml.properties?view=diff&rev=489066&r1=489065&r2=489066
==============================================================================
--- webservices/axis2/branches/java/1_1/modules/security/interop/axis2.saml.properties (original)
+++ webservices/axis2/branches/java/1_1/modules/security/interop/axis2.saml.properties Wed Dec 20 04:23:24 2006
@@ -1,12 +1,27 @@
-org.apache.ws.security.saml.issuerClass=org.apache.ws.security.saml.SAMLIssuerImpl
-org.apache.ws.security.saml.issuer.cryptoProp.file=axis2.crypto.properties
-org.apache.ws.security.saml.issuer.key.name=16c73ab6-b892-458f-abf5-2f875f74882e
-org.apache.ws.security.saml.issuer.key.password=security
-org.apache.ws.security.saml.issuer=www.example.com
-org.apache.ws.security.saml.subjectNameId.name=uid=joe,ou=people,ou=saml-demo,o=example.com
-org.apache.ws.security.saml.subjectNameId.qualifier=www.example.com
-org.apache.ws.security.saml.authenticationMethod=password
-org.apache.ws.security.saml.confirmationMethod=senderVouches
-#org.apache.ws.security.saml.confirmationMethod=keyHolder
-#org.apache.ws.security.saml
-#org.apache.ws.security.saml
+# -------------------------------------------------------------------
+# Copyright 2001-2004 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.
+# -------------------------------------------------------------------
+org.apache.ws.security.saml.issuerClass=org.apache.ws.security.saml.SAMLIssuerImpl
+org.apache.ws.security.saml.issuer.cryptoProp.file=axis2.crypto.properties
+org.apache.ws.security.saml.issuer.key.name=16c73ab6-b892-458f-abf5-2f875f74882e
+org.apache.ws.security.saml.issuer.key.password=security
+org.apache.ws.security.saml.issuer=www.example.com
+org.apache.ws.security.saml.subjectNameId.name=uid=joe,ou=people,ou=saml-demo,o=example.com
+org.apache.ws.security.saml.subjectNameId.qualifier=www.example.com
+org.apache.ws.security.saml.authenticationMethod=password
+org.apache.ws.security.saml.confirmationMethod=senderVouches
+#org.apache.ws.security.saml.confirmationMethod=keyHolder
+#org.apache.ws.security.saml
+#org.apache.ws.security.saml

Modified: webservices/axis2/branches/java/1_1/modules/security/interop/axis2.saml3.properties
URL: http://svn.apache.org/viewvc/webservices/axis2/branches/java/1_1/modules/security/interop/axis2.saml3.properties?view=diff&rev=489066&r1=489065&r2=489066
==============================================================================
--- webservices/axis2/branches/java/1_1/modules/security/interop/axis2.saml3.properties (original)
+++ webservices/axis2/branches/java/1_1/modules/security/interop/axis2.saml3.properties Wed Dec 20 04:23:24 2006
@@ -1,12 +1,27 @@
-org.apache.ws.security.saml.issuerClass=org.apache.ws.security.saml.SAMLIssuerImpl
-org.apache.ws.security.saml.issuer.cryptoProp.file=axis2.crypto.properties
-org.apache.ws.security.saml.issuer.key.name=16c73ab6-b892-458f-abf5-2f875f74882e
-org.apache.ws.security.saml.issuer.key.password=security
-org.apache.ws.security.saml.issuer=www.example.com
-org.apache.ws.security.saml.subjectNameId.name=uid=joe,ou=people,ou=saml-demo,o=example.com
-org.apache.ws.security.saml.subjectNameId.qualifier=www.example.com
-org.apache.ws.security.saml.authenticationMethod=password
-org.apache.ws.security.saml.confirmationMethod=senderVouches
-#org.apache.ws.security.saml.confirmationMethod=keyHolder
-#org.apache.ws.security.saml
-#org.apache.ws.security.saml
+# -------------------------------------------------------------------
+# Copyright 2001-2004 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.
+# -------------------------------------------------------------------
+org.apache.ws.security.saml.issuerClass=org.apache.ws.security.saml.SAMLIssuerImpl
+org.apache.ws.security.saml.issuer.cryptoProp.file=axis2.crypto.properties
+org.apache.ws.security.saml.issuer.key.name=16c73ab6-b892-458f-abf5-2f875f74882e
+org.apache.ws.security.saml.issuer.key.password=security
+org.apache.ws.security.saml.issuer=www.example.com
+org.apache.ws.security.saml.subjectNameId.name=uid=joe,ou=people,ou=saml-demo,o=example.com
+org.apache.ws.security.saml.subjectNameId.qualifier=www.example.com
+org.apache.ws.security.saml.authenticationMethod=password
+org.apache.ws.security.saml.confirmationMethod=senderVouches
+#org.apache.ws.security.saml.confirmationMethod=keyHolder
+#org.apache.ws.security.saml
+#org.apache.ws.security.saml

Modified: webservices/axis2/branches/java/1_1/modules/security/interop/axis2.saml4.properties
URL: http://svn.apache.org/viewvc/webservices/axis2/branches/java/1_1/modules/security/interop/axis2.saml4.properties?view=diff&rev=489066&r1=489065&r2=489066
==============================================================================
--- webservices/axis2/branches/java/1_1/modules/security/interop/axis2.saml4.properties (original)
+++ webservices/axis2/branches/java/1_1/modules/security/interop/axis2.saml4.properties Wed Dec 20 04:23:24 2006
@@ -1,12 +1,27 @@
-org.apache.ws.security.saml.issuerClass=org.apache.ws.security.saml.SAMLIssuerImpl
-org.apache.ws.security.saml.issuer.cryptoProp.file=axis2.crypto.properties
-org.apache.ws.security.saml.issuer.key.name=16c73ab6-b892-458f-abf5-2f875f74882e
-org.apache.ws.security.saml.issuer.key.password=security
-org.apache.ws.security.saml.issuer=www.example.com
-org.apache.ws.security.saml.subjectNameId.name=uid=joe,ou=people,ou=saml-demo,o=example.com
-org.apache.ws.security.saml.subjectNameId.qualifier=www.example.com
-org.apache.ws.security.saml.authenticationMethod=password
-#org.apache.ws.security.saml.confirmationMethod=senderVouches
-org.apache.ws.security.saml.confirmationMethod=keyHolder
-#org.apache.ws.security.saml
-#org.apache.ws.security.saml
+# -------------------------------------------------------------------
+# Copyright 2001-2004 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.
+# -------------------------------------------------------------------
+org.apache.ws.security.saml.issuerClass=org.apache.ws.security.saml.SAMLIssuerImpl
+org.apache.ws.security.saml.issuer.cryptoProp.file=axis2.crypto.properties
+org.apache.ws.security.saml.issuer.key.name=16c73ab6-b892-458f-abf5-2f875f74882e
+org.apache.ws.security.saml.issuer.key.password=security
+org.apache.ws.security.saml.issuer=www.example.com
+org.apache.ws.security.saml.subjectNameId.name=uid=joe,ou=people,ou=saml-demo,o=example.com
+org.apache.ws.security.saml.subjectNameId.qualifier=www.example.com
+org.apache.ws.security.saml.authenticationMethod=password
+#org.apache.ws.security.saml.confirmationMethod=senderVouches
+org.apache.ws.security.saml.confirmationMethod=keyHolder
+#org.apache.ws.security.saml
+#org.apache.ws.security.saml

Modified: webservices/axis2/branches/java/1_1/modules/security/interop/interop.properties
URL: http://svn.apache.org/viewvc/webservices/axis2/branches/java/1_1/modules/security/interop/interop.properties?view=diff&rev=489066&r1=489065&r2=489066
==============================================================================
--- webservices/axis2/branches/java/1_1/modules/security/interop/interop.properties (original)
+++ webservices/axis2/branches/java/1_1/modules/security/interop/interop.properties Wed Dec 20 04:23:24 2006
@@ -1,5 +1,20 @@
-org.apache.ws.security.crypto.provider=org.apache.ws.security.components.crypto.Merlin
-org.apache.ws.security.crypto.merlin.keystore.type=jks
-org.apache.ws.security.crypto.merlin.keystore.password=password
-org.apache.ws.security.crypto.merlin.file=interop2.jks
-
+# -------------------------------------------------------------------
+# Copyright 2001-2004 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.
+# -------------------------------------------------------------------
+org.apache.ws.security.crypto.provider=org.apache.ws.security.components.crypto.Merlin
+org.apache.ws.security.crypto.merlin.keystore.type=jks
+org.apache.ws.security.crypto.merlin.keystore.password=password
+org.apache.ws.security.crypto.merlin.file=interop2.jks
+

Modified: webservices/axis2/branches/java/1_1/modules/security/interop/ping.wsdl
URL: http://svn.apache.org/viewvc/webservices/axis2/branches/java/1_1/modules/security/interop/ping.wsdl?view=diff&rev=489066&r1=489065&r2=489066
==============================================================================
--- webservices/axis2/branches/java/1_1/modules/security/interop/ping.wsdl (original)
+++ webservices/axis2/branches/java/1_1/modules/security/interop/ping.wsdl Wed Dec 20 04:23:24 2006
@@ -1,3 +1,20 @@
+<!--
+/*
+ * Copyright 2001-2004 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.
+ */
+ -->
 <definitions xmlns:s1="http://docs.oasis-open.org/wss/2004/01/oasis-200401-wss-wssecurity-utility-1.0.xsd"
              xmlns:http="http://schemas.xmlsoap.org/wsdl/http/"
              xmlns:soap="http://schemas.xmlsoap.org/wsdl/soap/"

Modified: webservices/axis2/branches/java/1_1/modules/security/interop/services.xml
URL: http://svn.apache.org/viewvc/webservices/axis2/branches/java/1_1/modules/security/interop/services.xml?view=diff&rev=489066&r1=489065&r2=489066
==============================================================================
--- webservices/axis2/branches/java/1_1/modules/security/interop/services.xml (original)
+++ webservices/axis2/branches/java/1_1/modules/security/interop/services.xml Wed Dec 20 04:23:24 2006
@@ -1,3 +1,20 @@
+<!--
+/*
+ * Copyright 2001-2004 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.
+ */
+ -->
 <!--Auto generated Axis Service XML-->
 <service name="PingPort">
 	<parameter locked="false" name="ServiceClass">org.apache.axis2.oasis.ping.PingPortSkeleton</parameter>

Modified: webservices/axis2/branches/java/1_1/modules/security/test-resources/axis2.xml
URL: http://svn.apache.org/viewvc/webservices/axis2/branches/java/1_1/modules/security/test-resources/axis2.xml?view=diff&rev=489066&r1=489065&r2=489066
==============================================================================
--- webservices/axis2/branches/java/1_1/modules/security/test-resources/axis2.xml (original)
+++ webservices/axis2/branches/java/1_1/modules/security/test-resources/axis2.xml Wed Dec 20 04:23:24 2006
@@ -1,3 +1,20 @@
+<!--
+/*
+ * Copyright 2001-2004 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.
+ */
+ -->
 <axisconfig name="AxisJava2.0">
     <parameter name="hotdeployment" locked="false">true</parameter>
     <parameter name="hotupdate" locked="false">true</parameter>

Modified: webservices/axis2/branches/java/1_1/modules/soapmonitor/src/META-INF/module.xml
URL: http://svn.apache.org/viewvc/webservices/axis2/branches/java/1_1/modules/soapmonitor/src/META-INF/module.xml?view=diff&rev=489066&r1=489065&r2=489066
==============================================================================
--- webservices/axis2/branches/java/1_1/modules/soapmonitor/src/META-INF/module.xml (original)
+++ webservices/axis2/branches/java/1_1/modules/soapmonitor/src/META-INF/module.xml Wed Dec 20 04:23:24 2006
@@ -1,3 +1,20 @@
+<!--
+/*
+ * Copyright 2001-2004 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.
+ */
+ -->
 <module name="soapmonitor" class="org.apache.axis2.handlers.soapmonitor.SOAPMonitorModule">
     <InFlow>
         <handler name="InFlowSOAPMonitorHandler" class="org.apache.axis2.handlers.soapmonitor.SOAPMonitorHandler">

Modified: webservices/axis2/branches/java/1_1/modules/spring/maven.xml
URL: http://svn.apache.org/viewvc/webservices/axis2/branches/java/1_1/modules/spring/maven.xml?view=diff&rev=489066&r1=489065&r2=489066
==============================================================================
--- webservices/axis2/branches/java/1_1/modules/spring/maven.xml (original)
+++ webservices/axis2/branches/java/1_1/modules/spring/maven.xml Wed Dec 20 04:23:24 2006
@@ -1,17 +1,33 @@
-<?xml version="1.0" encoding="UTF-8"?>
-
-<!-- $Revision: 1.21 $ $Date: 2004-10-27 20:54:09 +0600 (Wed, 27 Oct 2004) $ -->
-
-<project default="jar"
-    xmlns:j="jelly:core"
-    xmlns:u="jelly:util"
-    xmlns:maven="jelly:maven"
-    xmlns:deploy="deploy"
-    xmlns:ant="jelly:ant">
-    <preGoal name="itest:compile">
-        <u:file var="file" name="${maven.itest.src}"/>
-        <j:if test="${!file.exists()}">
-            <j:expr value="${context.setVariable('maven.itest.skip', 'true')}"/>
-        </j:if>
-    </preGoal>
-</project>
+<?xml version="1.0" encoding="UTF-8"?>
+<!--
+/*
+ * Copyright 2001-2004 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.
+ */
+ -->
+<!-- $Revision: 1.21 $ $Date: 2004-10-27 20:54:09 +0600 (Wed, 27 Oct 2004) $ -->
+
+<project default="jar"
+    xmlns:j="jelly:core"
+    xmlns:u="jelly:util"
+    xmlns:maven="jelly:maven"
+    xmlns:deploy="deploy"
+    xmlns:ant="jelly:ant">
+    <preGoal name="itest:compile">
+        <u:file var="file" name="${maven.itest.src}"/>
+        <j:if test="${!file.exists()}">
+            <j:expr value="${context.setVariable('maven.itest.skip', 'true')}"/>
+        </j:if>
+    </preGoal>
+</project>

Modified: webservices/axis2/branches/java/1_1/modules/tool/create-project.xml
URL: http://svn.apache.org/viewvc/webservices/axis2/branches/java/1_1/modules/tool/create-project.xml?view=diff&rev=489066&r1=489065&r2=489066
==============================================================================
--- webservices/axis2/branches/java/1_1/modules/tool/create-project.xml (original)
+++ webservices/axis2/branches/java/1_1/modules/tool/create-project.xml Wed Dec 20 04:23:24 2006
@@ -1,3 +1,20 @@
+<!--
+/*
+ * Copyright 2001-2004 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.
+ */
+ -->
 <project basedir="." default="all">
 
     <!--Set your elcipse home directory  -->

Modified: webservices/axis2/branches/java/1_1/modules/tool/maven.xml
URL: http://svn.apache.org/viewvc/webservices/axis2/branches/java/1_1/modules/tool/maven.xml?view=diff&rev=489066&r1=489065&r2=489066
==============================================================================
--- webservices/axis2/branches/java/1_1/modules/tool/maven.xml (original)
+++ webservices/axis2/branches/java/1_1/modules/tool/maven.xml Wed Dec 20 04:23:24 2006
@@ -1,5 +1,22 @@
 <?xml version="1.0" encoding="UTF-8"?>
 
+<!--
+/*
+ * Copyright 2001-2004 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.
+ */
+ -->
 <!-- $Revision: 1.21 $ $Date: 2004-10-27 20:54:09 +0600 (Wed, 27 Oct 2004) $ -->
 
 <project default="jar"

Modified: webservices/axis2/branches/java/1_1/modules/webapp/Error/AuthError.html
URL: http://svn.apache.org/viewvc/webservices/axis2/branches/java/1_1/modules/webapp/Error/AuthError.html?view=diff&rev=489066&r1=489065&r2=489066
==============================================================================
--- webservices/axis2/branches/java/1_1/modules/webapp/Error/AuthError.html (original)
+++ webservices/axis2/branches/java/1_1/modules/webapp/Error/AuthError.html Wed Dec 20 04:23:24 2006
@@ -1,3 +1,20 @@
+<!--
+/*
+ * Copyright 2001-2004 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.
+ */
+ -->
 <html>
  <header><title>Error In Admin Application</title></header>
  <body>

Modified: webservices/axis2/branches/java/1_1/modules/webapp/Error/GenError.html
URL: http://svn.apache.org/viewvc/webservices/axis2/branches/java/1_1/modules/webapp/Error/GenError.html?view=diff&rev=489066&r1=489065&r2=489066
==============================================================================
--- webservices/axis2/branches/java/1_1/modules/webapp/Error/GenError.html (original)
+++ webservices/axis2/branches/java/1_1/modules/webapp/Error/GenError.html Wed Dec 20 04:23:24 2006
@@ -1,3 +1,20 @@
+<!--
+/*
+ * Copyright 2001-2004 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.
+ */
+ -->
 <html>
  <header><title>Error In Admin Application</title></header>
  <body>

Modified: webservices/axis2/branches/java/1_1/modules/webapp/conf/web.xml
URL: http://svn.apache.org/viewvc/webservices/axis2/branches/java/1_1/modules/webapp/conf/web.xml?view=diff&rev=489066&r1=489065&r2=489066
==============================================================================
--- webservices/axis2/branches/java/1_1/modules/webapp/conf/web.xml (original)
+++ webservices/axis2/branches/java/1_1/modules/webapp/conf/web.xml Wed Dec 20 04:23:24 2006
@@ -1,5 +1,21 @@
 <?xml version="1.0" encoding="ISO-8859-1"?>
-
+<!--
+/*
+ * Copyright 2001-2004 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.
+ */
+ -->
 <!DOCTYPE web-app PUBLIC "-//Sun Microsystems, Inc.//DTD Web Application 2.3//EN" "http://java.sun.com/dtd/web-app_2_3.dtd">
 
 <web-app>

Modified: webservices/axis2/branches/java/1_1/modules/webapp/conf/weblogic.xml
URL: http://svn.apache.org/viewvc/webservices/axis2/branches/java/1_1/modules/webapp/conf/weblogic.xml?view=diff&rev=489066&r1=489065&r2=489066
==============================================================================
--- webservices/axis2/branches/java/1_1/modules/webapp/conf/weblogic.xml (original)
+++ webservices/axis2/branches/java/1_1/modules/webapp/conf/weblogic.xml Wed Dec 20 04:23:24 2006
@@ -1,6 +1,23 @@
 <!DOCTYPE weblogic-web-app PUBLIC "-//BEA
 Systems, Inc.//DTD Web Application 7.0//EN"
 "http://www.bea.com/servers/wls700/dtd/weblogic700-web-jar.dtd">
+<!--
+/*
+ * Copyright 2001-2004 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.
+ */
+ -->
 <weblogic-web-app>
 	<container-descriptor>
 		<prefer-web-inf-classes>true</prefer-web-inf-classes>

Modified: webservices/axis2/branches/java/1_1/modules/webapp/scripts/build.xml
URL: http://svn.apache.org/viewvc/webservices/axis2/branches/java/1_1/modules/webapp/scripts/build.xml?view=diff&rev=489066&r1=489065&r2=489066
==============================================================================
--- webservices/axis2/branches/java/1_1/modules/webapp/scripts/build.xml (original)
+++ webservices/axis2/branches/java/1_1/modules/webapp/scripts/build.xml Wed Dec 20 04:23:24 2006
@@ -1,67 +1,84 @@
-<project basedir="../" default="create.war">
-	<property name="dist" value="dist" />
-	<property name="temp" value="${dist}/temp" />
-
-	<target name="init">
-		<mkdir dir="${dist}" />
-		<mkdir dir="${temp}" />
-		<copy toDir="${temp}">
-			<fileset dir="webapp">
-				<include name="**/**" />
-				<exclude name="**/web.xml"/>
-			</fileset>
-		</copy>
-	</target>
-	
-	<target depends="init" name="prepare.repo">
-		
-		<!-- Copying the axis2 repository from ../repository -->
-		<copy toDir="${temp}/WEB-INF">
-			<fileset dir="repository">
-				<include name="**/**" />
-			</fileset>
-		</copy>
-
-		<!-- Creating the services.list -->
-		<path id="services.archives">
-			<fileset dir="${temp}/WEB-INF/services">
-				<include name="*.aar" />
-			</fileset>
-		</path>
-		<pathconvert pathsep="${line.separator}" property="echo.services.archives" refid="services.archives">
-			<flattenmapper />
-		</pathconvert>
-		<echo file="${temp}/WEB-INF/services/services.list" message="${echo.services.archives}" />
-
-		<!-- Creating the modules.list -->
-		<path id="modules.archives">
-			<fileset dir="${temp}/WEB-INF/modules">
-				<include name="*.mar" />
-			</fileset>
-		</path>
-		<pathconvert pathsep="${line.separator}" property="echo.modules.archives" refid="modules.archives">
-			<flattenmapper />
-		</pathconvert>
-		<echo file="${temp}/WEB-INF/modules/modules.list" message="${echo.modules.archives}" />
-
-		<!-- Copying the axis2.xml from ../conf -->
-		<mkdir dir="${temp}/WEB-INF/conf" />
-		<copy file="conf/axis2.xml" toDir="${temp}/WEB-INF/conf" />
-	</target>
-	
-	<target depends="init,prepare.repo" name="create.war">
-		<war destfile="dist/axis2.war" webxml="webapp/WEB-INF/web.xml">
-			<lib dir="lib">
-				<include name="**" />
-				<exclude name="**servlet**" />
-				<exclude name="ant*.jar" />
-			</lib>
-			<webinf dir="${temp}/WEB-INF" />
-			<fileset dir="${temp}">
-				<include name="**/axis2-web/**" />
-			</fileset>
-		</war>
-		<delete dir="${temp}" />
-	</target>
-</project>
-
+<!--
+/*
+ * Copyright 2001-2004 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.
+ */
+ -->
+<project basedir="../" default="create.war">
+	<property name="dist" value="dist" />
+	<property name="temp" value="${dist}/temp" />
+
+	<target name="init">
+		<mkdir dir="${dist}" />
+		<mkdir dir="${temp}" />
+		<copy toDir="${temp}">
+			<fileset dir="webapp">
+				<include name="**/**" />
+				<exclude name="**/web.xml"/>
+			</fileset>
+		</copy>
+	</target>
+	
+	<target depends="init" name="prepare.repo">
+		
+		<!-- Copying the axis2 repository from ../repository -->
+		<copy toDir="${temp}/WEB-INF">
+			<fileset dir="repository">
+				<include name="**/**" />
+			</fileset>
+		</copy>
+
+		<!-- Creating the services.list -->
+		<path id="services.archives">
+			<fileset dir="${temp}/WEB-INF/services">
+				<include name="*.aar" />
+			</fileset>
+		</path>
+		<pathconvert pathsep="${line.separator}" property="echo.services.archives" refid="services.archives">
+			<flattenmapper />
+		</pathconvert>
+		<echo file="${temp}/WEB-INF/services/services.list" message="${echo.services.archives}" />
+
+		<!-- Creating the modules.list -->
+		<path id="modules.archives">
+			<fileset dir="${temp}/WEB-INF/modules">
+				<include name="*.mar" />
+			</fileset>
+		</path>
+		<pathconvert pathsep="${line.separator}" property="echo.modules.archives" refid="modules.archives">
+			<flattenmapper />
+		</pathconvert>
+		<echo file="${temp}/WEB-INF/modules/modules.list" message="${echo.modules.archives}" />
+
+		<!-- Copying the axis2.xml from ../conf -->
+		<mkdir dir="${temp}/WEB-INF/conf" />
+		<copy file="conf/axis2.xml" toDir="${temp}/WEB-INF/conf" />
+	</target>
+	
+	<target depends="init,prepare.repo" name="create.war">
+		<war destfile="dist/axis2.war" webxml="webapp/WEB-INF/web.xml">
+			<lib dir="lib">
+				<include name="**" />
+				<exclude name="**servlet**" />
+				<exclude name="ant*.jar" />
+			</lib>
+			<webinf dir="${temp}/WEB-INF" />
+			<fileset dir="${temp}">
+				<include name="**/axis2-web/**" />
+			</fileset>
+		</war>
+		<delete dir="${temp}" />
+	</target>
+</project>
+

Modified: webservices/axis2/branches/java/1_1/modules/xmlbeans/maven.xml
URL: http://svn.apache.org/viewvc/webservices/axis2/branches/java/1_1/modules/xmlbeans/maven.xml?view=diff&rev=489066&r1=489065&r2=489066
==============================================================================
--- webservices/axis2/branches/java/1_1/modules/xmlbeans/maven.xml (original)
+++ webservices/axis2/branches/java/1_1/modules/xmlbeans/maven.xml Wed Dec 20 04:23:24 2006
@@ -1,20 +1,37 @@
-<?xml version="1.0" encoding="UTF-8"?>
-
-<!-- $Revision: 1.21 $ $Date: 2004-10-27 20:54:09 +0600 (Wed, 27 Oct 2004) $ -->
-
-<project default="jar"
-         xmlns:j="jelly:core"
-         xmlns:u="jelly:util"
-         xmlns:maven="jelly:maven"
-         xmlns:util="jelly:util"
-         xmlns:deploy="deploy"
-         xmlns:ant="jelly:ant">
-
-    <preGoal name="itest:compile">
-        <u:file var="file" name="${maven.itest.src}"/>
-        <j:if test="${!file.exists()}">
-            <j:expr value="${context.setVariable('maven.itest.skip', 'true')}"/>
-        </j:if>
-    </preGoal>
-
-</project>
+<?xml version="1.0" encoding="UTF-8"?>
+<!--
+/*
+ * Copyright 2001-2004 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.
+ */
+ -->
+
+<!-- $Revision: 1.21 $ $Date: 2004-10-27 20:54:09 +0600 (Wed, 27 Oct 2004) $ -->
+
+<project default="jar"
+         xmlns:j="jelly:core"
+         xmlns:u="jelly:util"
+         xmlns:maven="jelly:maven"
+         xmlns:util="jelly:util"
+         xmlns:deploy="deploy"
+         xmlns:ant="jelly:ant">
+
+    <preGoal name="itest:compile">
+        <u:file var="file" name="${maven.itest.src}"/>
+        <j:if test="${!file.exists()}">
+            <j:expr value="${context.setVariable('maven.itest.skip', 'true')}"/>
+        </j:if>
+    </preGoal>
+
+</project>

Modified: webservices/axis2/branches/java/1_1/modules/xmlbeans/src/org/apache/axis2/xmlbeans/template/XmlbeansDatabindingTemplate.xsl
URL: http://svn.apache.org/viewvc/webservices/axis2/branches/java/1_1/modules/xmlbeans/src/org/apache/axis2/xmlbeans/template/XmlbeansDatabindingTemplate.xsl?view=diff&rev=489066&r1=489065&r2=489066
==============================================================================
--- webservices/axis2/branches/java/1_1/modules/xmlbeans/src/org/apache/axis2/xmlbeans/template/XmlbeansDatabindingTemplate.xsl (original)
+++ webservices/axis2/branches/java/1_1/modules/xmlbeans/src/org/apache/axis2/xmlbeans/template/XmlbeansDatabindingTemplate.xsl Wed Dec 20 04:23:24 2006
@@ -1,3 +1,20 @@
+<!--
+/*
+ * Copyright 2001-2004 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.
+ */
+ -->
 <xsl:stylesheet version="1.0" xmlns:xsl="http://www.w3.org/1999/XSL/Transform">
     <xsl:output method="text"/>
 

Modified: webservices/axis2/branches/java/1_1/modules/xmlbeans/test-resources/BookQuote.wsdl
URL: http://svn.apache.org/viewvc/webservices/axis2/branches/java/1_1/modules/xmlbeans/test-resources/BookQuote.wsdl?view=diff&rev=489066&r1=489065&r2=489066
==============================================================================
--- webservices/axis2/branches/java/1_1/modules/xmlbeans/test-resources/BookQuote.wsdl (original)
+++ webservices/axis2/branches/java/1_1/modules/xmlbeans/test-resources/BookQuote.wsdl Wed Dec 20 04:23:24 2006
@@ -1,62 +1,79 @@
-<?xml version="1.0" encoding="UTF-8"?>
-<definitions xmlns:mh="http://www.Monson-Haefel.com/jwsbook/BookQuote" xmlns="http://schemas.xmlsoap.org/wsdl/"
-             xmlns:xsd="http://www.w3.org/2001/XMLSchema" xmlns:soap="http://schemas.xmlsoap.org/wsdl/soap/"
-             targetNamespace="http://www.Monson-Haefel.com/jwsbook/BookQuote"
-             xmlns:types="http://www.Monson-Haefel.com/jwsbook/BookQuote/xsd" name="BookQuote">
-    <types>
-    <xsd:schema elementFormDefault="qualified"
-                targetNamespace="http://www.Monson-Haefel.com/jwsbook/BookQuote/xsd">
-      <xsd:element name="faultElement" type="xsd:anyType"/>
-    </xsd:schema>
-  </types>
-	<message name="BookQuote_getBookPrice">
-		<part name="isbn" type="xsd:anyType"/>
-		<part name="number" type="xsd:int"/>
-	</message>
-	<message name="BookQuote_getBookPriceResponse">
-		<part name="result" type="xsd:anyType"/>
-	</message>
-	<message name="InvalidIsbnFault">
-        <part name="message" element="types:faultElement"/>
-	</message>
-	<portType name="BookQuote">
-		<operation name="getBookPrice">
-			<input message="mh:BookQuote_getBookPrice"/>
-			<output message="mh:BookQuote_getBookPriceResponse"/>
-			<fault name="InvalidIsbnFault" message="mh:InvalidIsbnFault"/>
-		</operation>
-		<operation name="getBookPriceNonRobust">
-			<input message="mh:BookQuote_getBookPrice"/>
-			<output message="mh:BookQuote_getBookPriceResponse"/>
-		</operation>
-	</portType>
-	<binding name="BookQuoteBinding" type="mh:BookQuote">
-		<soap:binding style="rpc" transport="http://schemas.xmlsoap.org/soap/http"/>
-		<operation name="getBookPrice">
-			<soap:operation soapAction="myAction"/>
-			<input>
-				<soap:body use="literal" namespace="http://www.Monson-Haefel.com/jwsbook/BookQuote/BookQuote"/>
-			</input>
-			<output>
-				<soap:body use="literal" namespace="http://www.Monson-Haefel.com/jwsbook/BookQuote/BookQuote"/>
-			</output>
-			<fault name="InvalidIsbnFault">
-				<soap:fault name="InvalidIsbnFault" use="literal"/>
-			</fault>	
-		</operation>
-		<operation name="getBookPriceNonRobust">
-			<soap:operation soapAction="myAction2"/>
-			<input>
-				<soap:body use="literal" namespace="http://www.Monson-Haefel.com/jwsbook/BookQuote/BookQuote"/>
-			</input>
-			<output>
-				<soap:body use="literal" namespace="http://www.Monson-Haefel.com/jwsbook/BookQuote/BookQuote"/>
-			</output>
-		</operation>
-	</binding>
-	<service name="BookQuoteService">
-		<port name="BookQuotePort" binding="mh:BookQuoteBinding">
-			<soap:address location="http://www.Monson-Haefel.com/jwsbook/BookQuoteService"/>
-		</port>
-	</service>
-</definitions>
+<?xml version="1.0" encoding="UTF-8"?>
+<!--
+/*
+ * Copyright 2001-2004 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.
+ */
+ -->
+<definitions xmlns:mh="http://www.Monson-Haefel.com/jwsbook/BookQuote" xmlns="http://schemas.xmlsoap.org/wsdl/"
+             xmlns:xsd="http://www.w3.org/2001/XMLSchema" xmlns:soap="http://schemas.xmlsoap.org/wsdl/soap/"
+             targetNamespace="http://www.Monson-Haefel.com/jwsbook/BookQuote"
+             xmlns:types="http://www.Monson-Haefel.com/jwsbook/BookQuote/xsd" name="BookQuote">
+    <types>
+    <xsd:schema elementFormDefault="qualified"
+                targetNamespace="http://www.Monson-Haefel.com/jwsbook/BookQuote/xsd">
+      <xsd:element name="faultElement" type="xsd:anyType"/>
+    </xsd:schema>
+  </types>
+	<message name="BookQuote_getBookPrice">
+		<part name="isbn" type="xsd:anyType"/>
+		<part name="number" type="xsd:int"/>
+	</message>
+	<message name="BookQuote_getBookPriceResponse">
+		<part name="result" type="xsd:anyType"/>
+	</message>
+	<message name="InvalidIsbnFault">
+        <part name="message" element="types:faultElement"/>
+	</message>
+	<portType name="BookQuote">
+		<operation name="getBookPrice">
+			<input message="mh:BookQuote_getBookPrice"/>
+			<output message="mh:BookQuote_getBookPriceResponse"/>
+			<fault name="InvalidIsbnFault" message="mh:InvalidIsbnFault"/>
+		</operation>
+		<operation name="getBookPriceNonRobust">
+			<input message="mh:BookQuote_getBookPrice"/>
+			<output message="mh:BookQuote_getBookPriceResponse"/>
+		</operation>
+	</portType>
+	<binding name="BookQuoteBinding" type="mh:BookQuote">
+		<soap:binding style="rpc" transport="http://schemas.xmlsoap.org/soap/http"/>
+		<operation name="getBookPrice">
+			<soap:operation soapAction="myAction"/>
+			<input>
+				<soap:body use="literal" namespace="http://www.Monson-Haefel.com/jwsbook/BookQuote/BookQuote"/>
+			</input>
+			<output>
+				<soap:body use="literal" namespace="http://www.Monson-Haefel.com/jwsbook/BookQuote/BookQuote"/>
+			</output>
+			<fault name="InvalidIsbnFault">
+				<soap:fault name="InvalidIsbnFault" use="literal"/>
+			</fault>	
+		</operation>
+		<operation name="getBookPriceNonRobust">
+			<soap:operation soapAction="myAction2"/>
+			<input>
+				<soap:body use="literal" namespace="http://www.Monson-Haefel.com/jwsbook/BookQuote/BookQuote"/>
+			</input>
+			<output>
+				<soap:body use="literal" namespace="http://www.Monson-Haefel.com/jwsbook/BookQuote/BookQuote"/>
+			</output>
+		</operation>
+	</binding>
+	<service name="BookQuoteService">
+		<port name="BookQuotePort" binding="mh:BookQuoteBinding">
+			<soap:address location="http://www.Monson-Haefel.com/jwsbook/BookQuoteService"/>
+		</port>
+	</service>
+</definitions>

Modified: webservices/axis2/branches/java/1_1/modules/xmlbeans/test-resources/BookQuote2.wsdl
URL: http://svn.apache.org/viewvc/webservices/axis2/branches/java/1_1/modules/xmlbeans/test-resources/BookQuote2.wsdl?view=diff&rev=489066&r1=489065&r2=489066
==============================================================================
--- webservices/axis2/branches/java/1_1/modules/xmlbeans/test-resources/BookQuote2.wsdl (original)
+++ webservices/axis2/branches/java/1_1/modules/xmlbeans/test-resources/BookQuote2.wsdl Wed Dec 20 04:23:24 2006
@@ -1,4 +1,21 @@
 <?xml version="1.0" encoding="UTF-8"?>
+<!--
+/*
+ * Copyright 2001-2004 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.
+ */
+ -->
 <definitions xmlns:mh="http://www.Monson-Haefel.com/jwsbook/BookQuote" 
              xmlns="http://schemas.xmlsoap.org/wsdl/" 
              xmlns:xsd="http://www.w3.org/2001/XMLSchema" 
@@ -6,12 +23,12 @@
              xmlns:types="http://www.Monson-Haefel.com/jwsbook/BookQuote/xsd"
              targetNamespace="http://www.Monson-Haefel.com/jwsbook/BookQuote"
              name="BookQuote">
-    <types>
-    <xsd:schema elementFormDefault="qualified"
-                targetNamespace="http://www.Monson-Haefel.com/jwsbook/BookQuote/xsd">
-      <xsd:element name="faultElement" type="xsd:string"/>
-    </xsd:schema>
-  </types>
+    <types>
+    <xsd:schema elementFormDefault="qualified"
+                targetNamespace="http://www.Monson-Haefel.com/jwsbook/BookQuote/xsd">
+      <xsd:element name="faultElement" type="xsd:string"/>
+    </xsd:schema>
+  </types>
 	<message name="BookQuote_getBookPrice">
 		<part name="isbn" type="xsd:string"/>
 		<part name="number" type="xsd:int"/>
@@ -20,7 +37,7 @@
 		<part name="result" type="xsd:string"/>
 	</message>
 	<message name="InvalidIsbnFault">
-        <part name="message" element="types:faultElement"/>
+        <part name="message" element="types:faultElement"/>
 	</message>
 	<portType name="BookQuote">
 		<operation name="getBookPrice">

Modified: webservices/axis2/branches/java/1_1/modules/xmlbeans/test-resources/InteropTest.wsdl
URL: http://svn.apache.org/viewvc/webservices/axis2/branches/java/1_1/modules/xmlbeans/test-resources/InteropTest.wsdl?view=diff&rev=489066&r1=489065&r2=489066
==============================================================================
--- webservices/axis2/branches/java/1_1/modules/xmlbeans/test-resources/InteropTest.wsdl (original)
+++ webservices/axis2/branches/java/1_1/modules/xmlbeans/test-resources/InteropTest.wsdl Wed Dec 20 04:23:24 2006
@@ -1,4 +1,21 @@
 <?xml version="1.0"?>
+<!--
+/*
+ * Copyright 2001-2004 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.
+ */
+ -->
 <!-- This WSDL file is a combination of the InteropTest.wsdl -->
 <!-- and InteropTest2.wsdl files from White Mesa -->
 <definitions name="InteropTest" targetNamespace="http://soapinterop.org/" xmlns="http://schemas.xmlsoap.org/wsdl/" xmlns:soap="http://schemas.xmlsoap.org/wsdl/soap/" xmlns:xsd="http://www.w3.org/2001/XMLSchema" xmlns:SOAP-ENC="http://schemas.xmlsoap.org/soap/encoding/" xmlns:tns="http://soapinterop.org/" xmlns:s="http://soapinterop.org/xsd" xmlns:wsdl="http://schemas.xmlsoap.org/wsdl/" xmlns:xml-soap="http://xml.apache.org/xml-soap">

Modified: webservices/axis2/branches/java/1_1/modules/xmlbeans/test-resources/InteropTestDocLit2.wsdl
URL: http://svn.apache.org/viewvc/webservices/axis2/branches/java/1_1/modules/xmlbeans/test-resources/InteropTestDocLit2.wsdl?view=diff&rev=489066&r1=489065&r2=489066
==============================================================================
--- webservices/axis2/branches/java/1_1/modules/xmlbeans/test-resources/InteropTestDocLit2.wsdl (original)
+++ webservices/axis2/branches/java/1_1/modules/xmlbeans/test-resources/InteropTestDocLit2.wsdl Wed Dec 20 04:23:24 2006
@@ -1,4 +1,21 @@
 <?xml version="1.0" encoding="UTF-8"?>
+<!--
+/*
+ * Copyright 2001-2004 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.
+ */
+ -->
 <definitions name="WSDLInteropTestDocLitService"
     targetNamespace="http://soapinterop.org/WSDLInteropTestDocLit"
     xmlns="http://schemas.xmlsoap.org/wsdl/"

Modified: webservices/axis2/branches/java/1_1/modules/xmlbeans/test-resources/SalesRankNPrice.wsdl
URL: http://svn.apache.org/viewvc/webservices/axis2/branches/java/1_1/modules/xmlbeans/test-resources/SalesRankNPrice.wsdl?view=diff&rev=489066&r1=489065&r2=489066
==============================================================================
--- webservices/axis2/branches/java/1_1/modules/xmlbeans/test-resources/SalesRankNPrice.wsdl (original)
+++ webservices/axis2/branches/java/1_1/modules/xmlbeans/test-resources/SalesRankNPrice.wsdl Wed Dec 20 04:23:24 2006
@@ -1,4 +1,21 @@
 <?xml version="1.0" encoding="utf-8"?>
+<!--
+/*
+ * Copyright 2001-2004 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.
+ */
+ -->
 <definitions xmlns:http="http://schemas.xmlsoap.org/wsdl/http/" xmlns:soap="http://schemas.xmlsoap.org/wsdl/soap/" xmlns:s="http://www.w3.org/2001/XMLSchema" xmlns:s0="http://www.PerfectXML.com/NETWebSvcs/BookService" xmlns:soapenc="http://schemas.xmlsoap.org/soap/encoding/" xmlns:tm="http://microsoft.com/wsdl/mime/textMatching/" xmlns:mime="http://schemas.xmlsoap.org/wsdl/mime/" targetNamespace="http://www.PerfectXML.com/NETWebSvcs/BookService" xmlns="http://schemas.xmlsoap.org/wsdl/">
     <types>
         <s:schema elementFormDefault="qualified" targetNamespace="http://www.PerfectXML.com/NETWebSvcs/BookService">

Modified: webservices/axis2/branches/java/1_1/modules/xmlbeans/test-resources/complex-doc-literal.wsdl
URL: http://svn.apache.org/viewvc/webservices/axis2/branches/java/1_1/modules/xmlbeans/test-resources/complex-doc-literal.wsdl?view=diff&rev=489066&r1=489065&r2=489066
==============================================================================
--- webservices/axis2/branches/java/1_1/modules/xmlbeans/test-resources/complex-doc-literal.wsdl (original)
+++ webservices/axis2/branches/java/1_1/modules/xmlbeans/test-resources/complex-doc-literal.wsdl Wed Dec 20 04:23:24 2006
@@ -1,4 +1,21 @@
 <?xml version="1.0" encoding="UTF-8"?>
+<!--
+/*
+ * Copyright 2001-2004 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.
+ */
+ -->
 <definitions
 	xmlns="http://schemas.xmlsoap.org/wsdl/"
 	xmlns:tns="http://soapinterop.org/wsdl"



---------------------------------------------------------------------
To unsubscribe, e-mail: axis-cvs-unsubscribe@ws.apache.org
For additional commands, e-mail: axis-cvs-help@ws.apache.org