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 pr...@apache.org on 2007/06/10 13:42:22 UTC

svn commit: r545866 [7/7] - in /webservices/axis2/branches/java/jaxws21: modules/adb-codegen/src/org/apache/axis2/schema/ modules/adb/src/org/apache/axis2/databinding/types/ modules/adb/src/org/apache/axis2/databinding/utils/ modules/adb/src/org/apache...

Modified: webservices/axis2/branches/java/jaxws21/modules/samples/servicelifecycle/build.xml
URL: http://svn.apache.org/viewvc/webservices/axis2/branches/java/jaxws21/modules/samples/servicelifecycle/build.xml?view=diff&rev=545866&r1=545865&r2=545866
==============================================================================
--- webservices/axis2/branches/java/jaxws21/modules/samples/servicelifecycle/build.xml (original)
+++ webservices/axis2/branches/java/jaxws21/modules/samples/servicelifecycle/build.xml Sun Jun 10 04:42:12 2007
@@ -1,102 +1,102 @@
-<project basedir="." default="build" name="Library">
-
-    <property environment="env"/>
-    <property name="service-name" value="Library.aar"/>
-    <property name="dest.dir" value="target"/>
-    <property name="axis2.home" value="../../" />
-
-	<property name="repository.path" value="${axis2.home}/repository/services" />
-
-    <property name="dest.dir.classes" value="${dest.dir}/classes"/>
-
-    <property name="dest.dir.lib" value="${dest.dir}/lib"/>
-    <property name="catalina-modules"
-              value="${env.CATALINA_HOME}/webapps/axis2/WEB-INF/services"/>
-
-    <path id="build.class.path">
-        <fileset dir="../../lib">
-            <include name="*.jar"/>
-        </fileset>
-    </path>
-
-    <target name="clean">
-        <delete dir="${dest.dir}"/>
-    </target>
-
-    <target name="prepare" depends="clean">
-
-        <mkdir dir="${dest.dir}"/>
-
-        <mkdir dir="${dest.dir.classes}"/>
-
-        <mkdir dir="${dest.dir.classes}/META-INF"/>
-
-    </target>
-
-    <target name="build" depends="prepare">
-
-        <mkdir dir="${dest.dir}"/>
-
-        <mkdir dir="${dest.dir.classes}"/>
-        <mkdir dir="${dest.dir.classes}/META-INF"/>
-
-        <copy file="src/META-INF/services.xml"
-              tofile="${dest.dir.classes}/META-INF/services.xml"
-              overwrite="true"/>
-
-        <javac debug="on" srcdir="src" destdir="${dest.dir.classes}" includes="sample/**">
-            <classpath refid="build.class.path"/>
-        </javac>
-
-        <jar basedir="${dest.dir.classes}"
-             destfile="${dest.dir}/${service-name}"/>
-
-    </target>
-
-     <target name="generate.service" depends="prepare">
-
-        <mkdir dir="${dest.dir}"/>
-
-        <mkdir dir="${dest.dir.classes}"/>
-        <mkdir dir="${dest.dir.classes}/META-INF"/>
-
-        <copy file="src/META-INF/services.xml"
-              tofile="${dest.dir.classes}/META-INF/services.xml"
-              overwrite="true"/>
-
-        <javac debug="on" srcdir="src" destdir="${dest.dir.classes}" includes="sample/**">
-            <classpath refid="build.class.path"/>
-        </javac>
-
-        <jar basedir="${dest.dir.classes}"
-             destfile="${repository.path}/${service-name}"/>
-
-    </target>
-
-
-
-    <target name="run.client" depends="prepare">
-        <mkdir dir="${dest.dir}"/>
-        <mkdir dir="${dest.dir.classes}"/>
-        <javac debug="on" srcdir="src" destdir="${dest.dir.classes}" includes="client/**">
-            <classpath>
-                <fileset dir="../../lib">
-                    <include name="*.jar"/>
-                </fileset>
-            </classpath>
-        </javac>
-
-        <java classname="client.LibraryServiceClient">
-            <classpath>
-                <pathelement location="${dest.dir.classes}"/>
-                <fileset dir="../../lib">
-                    <include name="*.jar"/>
-                </fileset>
-            </classpath>
-        </java>
-	</target>
-    <target name="copy.to.tomcat" depends="build">
-        <copy file="${dest.dir}/${service-name}" todir="${catalina-modules}"/>
-    </target>
-
-</project>
+<project name="servicelifecycle" basedir="." default="build">
+
+    <property environment="env"/>
+    <property name="service-name" value="Library.aar"/>
+    <property name="dest.dir" value="target"/>
+    <property name="axis2.home" value="../../" />
+
+	<property name="repository.path" value="${axis2.home}/repository/services" />
+
+    <property name="dest.dir.classes" value="${dest.dir}/classes"/>
+
+    <property name="dest.dir.lib" value="${dest.dir}/lib"/>
+    <property name="catalina-modules"
+              value="${env.CATALINA_HOME}/webapps/axis2/WEB-INF/services"/>
+
+    <path id="build.class.path">
+        <fileset dir="../../lib">
+            <include name="*.jar"/>
+        </fileset>
+    </path>
+
+    <target name="clean">
+        <delete dir="${dest.dir}"/>
+    </target>
+
+    <target name="prepare" depends="clean">
+
+        <mkdir dir="${dest.dir}"/>
+
+        <mkdir dir="${dest.dir.classes}"/>
+
+        <mkdir dir="${dest.dir.classes}/META-INF"/>
+
+    </target>
+
+    <target name="build" depends="prepare">
+
+        <mkdir dir="${dest.dir}"/>
+
+        <mkdir dir="${dest.dir.classes}"/>
+        <mkdir dir="${dest.dir.classes}/META-INF"/>
+
+        <copy file="src/META-INF/services.xml"
+              tofile="${dest.dir.classes}/META-INF/services.xml"
+              overwrite="true"/>
+
+        <javac debug="on" srcdir="src" destdir="${dest.dir.classes}" includes="sample/**">
+            <classpath refid="build.class.path"/>
+        </javac>
+
+        <jar basedir="${dest.dir.classes}"
+             destfile="${dest.dir}/${service-name}"/>
+
+    </target>
+
+     <target name="generate.service" depends="prepare">
+
+        <mkdir dir="${dest.dir}"/>
+
+        <mkdir dir="${dest.dir.classes}"/>
+        <mkdir dir="${dest.dir.classes}/META-INF"/>
+
+        <copy file="src/META-INF/services.xml"
+              tofile="${dest.dir.classes}/META-INF/services.xml"
+              overwrite="true"/>
+
+        <javac debug="on" srcdir="src" destdir="${dest.dir.classes}" includes="sample/**">
+            <classpath refid="build.class.path"/>
+        </javac>
+
+        <jar basedir="${dest.dir.classes}"
+             destfile="${repository.path}/${service-name}"/>
+
+    </target>
+
+
+
+    <target name="run.client" depends="prepare">
+        <mkdir dir="${dest.dir}"/>
+        <mkdir dir="${dest.dir.classes}"/>
+        <javac debug="on" srcdir="src" destdir="${dest.dir.classes}" includes="client/**">
+            <classpath>
+                <fileset dir="../../lib">
+                    <include name="*.jar"/>
+                </fileset>
+            </classpath>
+        </javac>
+
+        <java classname="client.LibraryServiceClient">
+            <classpath>
+                <pathelement location="${dest.dir.classes}"/>
+                <fileset dir="../../lib">
+                    <include name="*.jar"/>
+                </fileset>
+            </classpath>
+        </java>
+	</target>
+    <target name="copy.to.tomcat" depends="build">
+        <copy file="${dest.dir}/${service-name}" todir="${catalina-modules}"/>
+    </target>
+
+</project>

Modified: webservices/axis2/branches/java/jaxws21/modules/samples/userguide/README.txt
URL: http://svn.apache.org/viewvc/webservices/axis2/branches/java/jaxws21/modules/samples/userguide/README.txt?view=diff&rev=545866&r1=545865&r2=545866
==============================================================================
--- webservices/axis2/branches/java/jaxws21/modules/samples/userguide/README.txt (original)
+++ webservices/axis2/branches/java/jaxws21/modules/samples/userguide/README.txt Sun Jun 10 04:42:12 2007
@@ -1,80 +1,80 @@
-Axis2 User's Guide Sample
-=========================
-
-This sample contains the source code relevant to xdocs/1_1/adv-userguide.html, 
-more specifically to xdocs/1_1/dii.html and xmlbased-server.html which are sections 
-of Axis2 Advance User's Guide found in the Dcouments Distribution.
-
-The sample explains how to write a Web service and Web service client with 
-Apache Axis2 using XML based client APIs (Axis2's Primary APIs).
-
-Introduction
-============
-
-The following sample clients are located at 
-Axis2_home/samples/userguide/samples/userguide/src/userguide/clients directory. 
-
-EchoBlockingClient.java -- Demonstrates the request-response, blocking client which 
-is written using Axis2's primary APIs.
-
-EchoBlockingDualClient.java -- Demonstrates the request-response, blocking client which 
-uses two transport connections and written using Axis2's primary APIs.
-
-EchoNonBlockingClient.java -- Demonstrates the request-response, non-blocking invocation 
-which is written using Axis2's primary APIs.
-
-EchoNonBlockingDualClient.java -- Demonstrates the request-response, non-blocking invocation 
-using two transport connections and is written using Axis2's primary APIs.
-
-MailClient.java -- Represents a client for invoking 
-
-PingClient.java -- Represents a simple one-way client which is written using Axis2's primary APIs.
-
-RESTClient.java -- Represents a client for invoking a REST Web service
-
-TCPClient.java -- Demonstrates a client for invoking a Web service using TCP
-
-example1, example2 and example3 directories inside Axis2_home/samples/userguide/src/userguide 
-contain the Web services which are invoked by the above clients.
-
-
-Pre-Requisites
-==============
-
-Apache Ant 1.6.2 or later
-
-Building the Service
-====================
-
-* Type "ant generate.service" or just "ant" from Axis2_HOME/samples/userguide
-* Then go to Axis2_HOME/bin directory and run either axis2server.bat or axis2server.sh depending on your platform.
-
-Alternatively you can copy the the generated service archives in to a servlet container.
-
-If you go to http://localhost:8080/axis2/, you should see MyService, MyServiceWithModule are deployed. 
-
-
-Running the Clients
-===================
-
-Type the following ant commands from Axis2_HOME/samples/userguide to run the clients one by one.
-
- * "ant run.client.blocking"
-   This invokes MyService through a request-response, blocking client.   
- * "ant run.client.blockingdual"
-   This invokes MyService through a request-response, blocking client via dual transport channels.   
- * "ant run.client.nonblocking"
-   This invokes MyService through a request-response, non-blocking client.  
- * "ant run.client.nonblockingdual"
-   This invokes MyService through a request-response, non-blocking client via dual transport channels.   
- * "ant run.client.ping"
-   This invokes MyService through a one-way client
-
- 
-You can find more information on the above clients in Axis2 users guide, RESTFul Web services support, 
-TCP Transport documents found in the Documents Distribution's xdocs directory. Also, you may find it 
-useful to try out the above services and clients while going through these documents.
-
-Help
-====
-Please contact axis-user list (axis-user@ws.apache.org) if you have any trouble running the sample.
+Axis2 User's Guide Sample
+=========================
+
+This sample contains the source code relevant to xdocs/1_1/adv-userguide.html, 
+more specifically to xdocs/1_1/dii.html and xmlbased-server.html which are sections 
+of the Axis2 Advanced User's Guide found in the Documents Distribution.
+
+The sample explains how to write a Web service and Web service client with 
+Apache Axis2 using XML based client APIs (Axis2's Primary APIs).
+
+Introduction
+============
+
+The following sample clients are located at 
+Axis2_home/samples/userguide/samples/userguide/src/userguide/clients directory. 
+
+EchoBlockingClient.java -- Demonstrates the request-response, blocking client which 
+is written using Axis2's primary APIs.
+
+EchoBlockingDualClient.java -- Demonstrates the request-response, blocking client which 
+uses two transport connections and written using Axis2's primary APIs.
+
+EchoNonBlockingClient.java -- Demonstrates the request-response, non-blocking invocation 
+which is written using Axis2's primary APIs.
+
+EchoNonBlockingDualClient.java -- Demonstrates the request-response, non-blocking invocation 
+using two transport connections and is written using Axis2's primary APIs.
+
+MailClient.java -- Represents a client for invoking 
+
+PingClient.java -- Represents a simple one-way client which is written using Axis2's primary APIs.
+
+RESTClient.java -- Represents a client for invoking a REST Web service
+
+TCPClient.java -- Demonstrates a client for invoking a Web service using TCP
+
+example1, example2 and example3 directories inside Axis2_home/samples/userguide/src/userguide 
+contain the Web services which are invoked by the above clients.
+
+
+Pre-Requisites
+==============
+
+Apache Ant 1.6.2 or later
+
+Building the Service
+====================
+
+* Type "ant generate.service" or just "ant" from Axis2_HOME/samples/userguide
+* Then go to Axis2_HOME/bin directory and run either axis2server.bat or axis2server.sh depending on your platform.
+
+Alternatively you can copy the the generated service archives in to a servlet container.
+
+If you go to http://localhost:8080/axis2/, you should see MyService, MyServiceWithModule are deployed. 
+
+
+Running the Clients
+===================
+
+Type the following ant commands from Axis2_HOME/samples/userguide to run the clients one by one.
+
+ * "ant run.client.blocking"
+   This invokes MyService through a request-response, blocking client.   
+ * "ant run.client.blockingdual"
+   This invokes MyService through a request-response, blocking client via dual transport channels.   
+ * "ant run.client.nonblocking"
+   This invokes MyService through a request-response, non-blocking client.  
+ * "ant run.client.nonblockingdual"
+   This invokes MyService through a request-response, non-blocking client via dual transport channels.   
+ * "ant run.client.ping"
+   This invokes MyService through a one-way client
+
+ 
+You can find more information on the above clients in Axis2 users guide, RESTFul Web services support, 
+TCP Transport documents found in the Documents Distribution's xdocs directory. Also, you may find it 
+useful to try out the above services and clients while going through these documents.
+
+Help
+====
+Please contact axis-user list (axis-user@ws.apache.org) if you have any trouble running the sample.

Modified: webservices/axis2/branches/java/jaxws21/modules/samples/userguide/build.xml
URL: http://svn.apache.org/viewvc/webservices/axis2/branches/java/jaxws21/modules/samples/userguide/build.xml?view=diff&rev=545866&r1=545865&r2=545866
==============================================================================
--- webservices/axis2/branches/java/jaxws21/modules/samples/userguide/build.xml (original)
+++ webservices/axis2/branches/java/jaxws21/modules/samples/userguide/build.xml Sun Jun 10 04:42:12 2007
@@ -1,132 +1,132 @@
-<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"/>
-	    <jvmarg value="-Daxis2.xml=conf/axis2.xml"/>
-        </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"/>
-	    <jvmarg value="-Daxis2.xml=conf/axis2.xml"/>
-        </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"/>
-	    <jvmarg value="-Daxis2.xml=conf/axis2.xml"/>
-        </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"/>
-	    <jvmarg value="-Daxis2.xml=conf/axis2.xml"/>
-        </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"/>
-	    <jvmarg value="-Daxis2.xml=conf/axis2.xml"/>
-        </java>
-    </target>
-    
-    <target name="run.client.servicewithmodule" depends="compile">
-    	<echo message="${mainDir}" />
-	<echo message="${mainDir}/repository/conf/axis2.xml" />
-        <java classname="userguide.clients.ClientForWebServiceWithModule"
-              classpathref="axis.classpath" fork="true">
-           <jvmarg value="-Daxis2.repo=${mainDir}/repository"/>	   
-	   <jvmarg value="-Daxis2.xml=conf/axis2.xml"/>
-        </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>
+<project name="userguide" 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"/>
+	    <jvmarg value="-Daxis2.xml=conf/axis2.xml"/>
+        </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"/>
+	    <jvmarg value="-Daxis2.xml=conf/axis2.xml"/>
+        </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"/>
+	    <jvmarg value="-Daxis2.xml=conf/axis2.xml"/>
+        </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"/>
+	    <jvmarg value="-Daxis2.xml=conf/axis2.xml"/>
+        </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"/>
+	    <jvmarg value="-Daxis2.xml=conf/axis2.xml"/>
+        </java>
+    </target>
+    
+    <target name="run.client.servicewithmodule" depends="compile">
+    	<echo message="${mainDir}" />
+	<echo message="${mainDir}/repository/conf/axis2.xml" />
+        <java classname="userguide.clients.ClientForWebServiceWithModule"
+              classpathref="axis.classpath" fork="true">
+           <jvmarg value="-Daxis2.repo=${mainDir}/repository"/>	   
+	   <jvmarg value="-Daxis2.xml=conf/axis2.xml"/>
+        </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/jaxws21/modules/samples/version/build.xml
URL: http://svn.apache.org/viewvc/webservices/axis2/branches/java/jaxws21/modules/samples/version/build.xml?view=diff&rev=545866&r1=545865&r2=545866
==============================================================================
--- webservices/axis2/branches/java/jaxws21/modules/samples/version/build.xml (original)
+++ webservices/axis2/branches/java/jaxws21/modules/samples/version/build.xml Sun Jun 10 04:42:12 2007
@@ -1,46 +1,45 @@
-
-<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>
+<project name="version" 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/jaxws21/modules/tool/axis2-eclipse-codegen-plugin/pom.xml
URL: http://svn.apache.org/viewvc/webservices/axis2/branches/java/jaxws21/modules/tool/axis2-eclipse-codegen-plugin/pom.xml?view=diff&rev=545866&r1=545865&r2=545866
==============================================================================
--- webservices/axis2/branches/java/jaxws21/modules/tool/axis2-eclipse-codegen-plugin/pom.xml (original)
+++ webservices/axis2/branches/java/jaxws21/modules/tool/axis2-eclipse-codegen-plugin/pom.xml Sun Jun 10 04:42:12 2007
@@ -137,9 +137,8 @@
 			</exclusions>
 		</dependency>
 		<dependency>
-			<groupId>javax.mail</groupId>
-			<artifactId>mail</artifactId>
-			<version>${javamail.version}</version>
+			<groupId>org.apache.geronimo.specs</groupId>
+			<artifactId>geronimo-javamail_1.4_spec</artifactId>
 		</dependency>
 		<dependency>
 			<groupId>annogen</groupId>

Modified: webservices/axis2/branches/java/jaxws21/modules/tool/axis2-eclipse-codegen-plugin/src/main/java/org/apache/axis2/tool/codegen/eclipse/ui/OutputPage.java
URL: http://svn.apache.org/viewvc/webservices/axis2/branches/java/jaxws21/modules/tool/axis2-eclipse-codegen-plugin/src/main/java/org/apache/axis2/tool/codegen/eclipse/ui/OutputPage.java?view=diff&rev=545866&r1=545865&r2=545866
==============================================================================
--- webservices/axis2/branches/java/jaxws21/modules/tool/axis2-eclipse-codegen-plugin/src/main/java/org/apache/axis2/tool/codegen/eclipse/ui/OutputPage.java (original)
+++ webservices/axis2/branches/java/jaxws21/modules/tool/axis2-eclipse-codegen-plugin/src/main/java/org/apache/axis2/tool/codegen/eclipse/ui/OutputPage.java Sun Jun 10 04:42:12 2007
@@ -74,6 +74,12 @@
 	
 	private String axis2LibsLocation = null;
 	
+	private Label hintLabel;
+	
+	private Button hintButton;
+	
+	private boolean hintVisible = false;
+	
 
 	/**
 	 * 
@@ -319,15 +325,24 @@
 		
 		gd = new GridData(GridData.FILL_HORIZONTAL);
 		gd.horizontalSpan = 3; 
-		Label hintLabel = new Label(container, SWT.NULL);
+		
+		hintButton = new Button(container, SWT.PUSH);
+		hintButton.setText(CodegenWizardPlugin
+				.getResourceString("page3.hint.off"));
+		hintButton.addSelectionListener(new SelectionAdapter() {
+			public void widgetSelected(SelectionEvent e) {
+				handleHintBrowse();
+			}
+		});
+		
+		gd = new GridData(GridData.FILL_HORIZONTAL);
+		gd.horizontalSpan = 3;
+		hintLabel = new Label(container, SWT.NULL);
 		hintLabel
 				.setText(CodegenWizardPlugin
 						.getResourceString("page3.hint.caption"));
 		hintLabel.setLayoutData(gd);
-//		hintLabel.setFont(new Font(new Device() {
-//				public int internal_new_GC(GCData data) {return 0;}
-//				public void internal_dispose_GC(int handle, GCData data) {}
-//												},"hintFont",8,SWT.NORMAL));
+		hintLabel.setVisible(hintVisible);
 		
 		disableControls();
 		
@@ -339,6 +354,21 @@
 		if (restoredFromPreviousSettings) {
 			handleModifyEvent();
 		}
+	}
+	
+	private void handleHintBrowse() {
+		if (hintVisible) {
+			hintButton.setText(CodegenWizardPlugin
+					.getResourceString("page3.hint.off"));
+			hintVisible = false;
+			hintLabel.setVisible(hintVisible);
+		} else {
+			hintButton.setText(CodegenWizardPlugin
+					.getResourceString("page3.hint.on"));
+			hintVisible = true;
+			hintLabel.setVisible(hintVisible);
+		}
+		
 	}
 
 	/**

Modified: webservices/axis2/branches/java/jaxws21/modules/tool/axis2-eclipse-codegen-plugin/src/main/java/org/apache/axis2/tool/codegen/resource/Codegen.properties
URL: http://svn.apache.org/viewvc/webservices/axis2/branches/java/jaxws21/modules/tool/axis2-eclipse-codegen-plugin/src/main/java/org/apache/axis2/tool/codegen/resource/Codegen.properties?view=diff&rev=545866&r1=545865&r2=545866
==============================================================================
--- webservices/axis2/branches/java/jaxws21/modules/tool/axis2-eclipse-codegen-plugin/src/main/java/org/apache/axis2/tool/codegen/resource/Codegen.properties (original)
+++ webservices/axis2/branches/java/jaxws21/modules/tool/axis2-eclipse-codegen-plugin/src/main/java/org/apache/axis2/tool/codegen/resource/Codegen.properties Sun Jun 10 04:42:12 2007
@@ -100,7 +100,9 @@
 page3.hint.caption=Hint : If you have Axis2 binary distribution or Axis source, then you can add those libs also to the\n resulted codegen project by checking the \"Add Axis2 Libraries to the codegen resulted project\"\n check box and specifying the Axis2 home. Another option you have is to compile the codegen \n result project and add it as a jar file in the lib directory of the resulted project, for that you can \n check the \"Create a jar file of codegen result project and add to resulted project lib folder\" \n checkbox and then give the jar file name that you prefer. \n If you are adding the codegen result to a eclipse project on current eclipse workspace, \n please make sure to refresh that particular eclipse project. \n Also if you select the options to add libs to the project, make sure to add those libs to the \n project library path.
 page3.loadlib.success.caption=Axis libs loaded successfully !!
 page3.loadlib.fail.caption=Axis libs are not available!! Please verify the entered path!!
-page3.loadlib.fail.message=Axis libs are not available!! Please verify the entered path, If you point to source try maven goal create-lib !! 
+page3.loadlib.fail.message=Axis libs are not available!! Please verify the entered path, If you point to source try maven goal create-lib !!
+page3.hint.on=Page Hint >>
+page3.hint.off=Page Hint <<
 #errors
 page3.error.nolocation=output location needs to be specified
 #

Modified: webservices/axis2/branches/java/jaxws21/modules/tool/axis2-idea-plugin/src/main/java/org/apache/axis2/tools/bean/CodegenBean.java
URL: http://svn.apache.org/viewvc/webservices/axis2/branches/java/jaxws21/modules/tool/axis2-idea-plugin/src/main/java/org/apache/axis2/tools/bean/CodegenBean.java?view=diff&rev=545866&r1=545865&r2=545866
==============================================================================
--- webservices/axis2/branches/java/jaxws21/modules/tool/axis2-idea-plugin/src/main/java/org/apache/axis2/tools/bean/CodegenBean.java (original)
+++ webservices/axis2/branches/java/jaxws21/modules/tool/axis2-idea-plugin/src/main/java/org/apache/axis2/tools/bean/CodegenBean.java Sun Jun 10 04:42:12 2007
@@ -191,6 +191,10 @@
                 optionMap.put(CommandLineOptionConstants.WSDL2JavaConstants.GENERATE_ALL_OPTION, new CommandLineOption(
                         CommandLineOptionConstants.WSDL2JavaConstants.GENERATE_ALL_OPTION, new String[0]));
             }
+            if (isServerSideInterface ) {
+                optionMap.put(CommandLineOptionConstants.WSDL2JavaConstants.SERVER_SIDE_INTERFACE_OPTION, new CommandLineOption(
+                        CommandLineOptionConstants.WSDL2JavaConstants.SERVER_SIDE_INTERFACE_OPTION, new String[0]));
+            }
         }
         //test case
         if (isTestCase) {

Modified: webservices/axis2/branches/java/jaxws21/modules/tool/axis2-idea-plugin/src/main/java/org/apache/axis2/tools/idea/BottomPanel.java
URL: http://svn.apache.org/viewvc/webservices/axis2/branches/java/jaxws21/modules/tool/axis2-idea-plugin/src/main/java/org/apache/axis2/tools/idea/BottomPanel.java?view=diff&rev=545866&r1=545865&r2=545866
==============================================================================
--- webservices/axis2/branches/java/jaxws21/modules/tool/axis2-idea-plugin/src/main/java/org/apache/axis2/tools/idea/BottomPanel.java (original)
+++ webservices/axis2/branches/java/jaxws21/modules/tool/axis2-idea-plugin/src/main/java/org/apache/axis2/tools/idea/BottomPanel.java Sun Jun 10 04:42:12 2007
@@ -6,6 +6,7 @@
 import java.awt.event.ActionListener;
 import java.io.File;
 import java.io.StringWriter;
+import java.util.TimerTask;
 
 /*
 * Copyright 2004,2005 The Apache Software Foundation.
@@ -96,88 +97,119 @@
                 }
             }
 
-            String selected = java2CodeFrame.secondPanel.cmbCodeGenOption.getSelectedItem().toString() ;
-            if (selected.equalsIgnoreCase("default")) {
-                File temp = java2CodeFrame.secondPanel.codegenBean.getTemp();
-                java2CodeFrame.secondPanel.setDefaultCommonConfigurations();
-                java2CodeFrame.secondPanel.codegenBean.setOutput(temp.getAbsolutePath() );
-
-                try {
-
-                    java2CodeFrame.generateDefaultClientCode( temp) ;
-                } catch (Exception e1) {
-                    StringWriter writer = new StringWriter();
-                    JOptionPane.showMessageDialog(java2CodeFrame, "Code genaration failed!" + writer.toString(),
-                            "Axis2 code generation", JOptionPane.ERROR_MESSAGE);
-                    java2CodeFrame.dispose();
-                    return;
-                }
-
-                JOptionPane.showMessageDialog(java2CodeFrame, "Code generation successful!",
-                        "Axis2 code generation", JOptionPane.INFORMATION_MESSAGE);
-                java2CodeFrame.dispose();
-                return;
-
-            }
+            final String selected = java2CodeFrame.secondPanel.cmbCodeGenOption.getSelectedItem().toString() ;
+            java2CodeFrame.outputpane.progressBar.setVisible(true);
+            final BarThread stepper = new BarThread(java2CodeFrame.outputpane.progressBar);
+            stepper.start();
+            new java.util.Timer(true).schedule(new TimerTask() {
+                public void run() {
+                    stepper.requestStop();
 
-            else if (selected.equalsIgnoreCase("custom")) {
+                }
+            }, 1000);
 
-                String output = java2CodeFrame.outputpane.buttonGroup.getSelection().getActionCommand();
+            new Thread(){public void run(){
+                if (selected.equalsIgnoreCase("default")) {
 
-                if (output.equalsIgnoreCase("radCurrentProject")) {
+                    String output = java2CodeFrame.outputpane.buttonGroup.getSelection().getActionCommand();
+                    java2CodeFrame.secondPanel.setDefaultCommonConfigurations();
 
-                    File temp = java2CodeFrame.secondPanel.codegenBean.getTemp();
-                    java2CodeFrame.secondPanel.codegenBean.setOutput(temp.getAbsolutePath());
-                    try {
-                        java2CodeFrame.generatecode();
-                        java2CodeFrame.copyDirectory(new File(temp + File.separator + "src"), new File((String) java2CodeFrame.outputpane.cmbModuleSrc.getSelectedItem()));
-                        File src = new File(temp + File.separator + "resources");
-                        if (src.isDirectory())
-                            java2CodeFrame.copyDirectory(src, new File((String) java2CodeFrame.outputpane.cmbModuleSrc.getSelectedItem() + File.separator + ".." + File.separator + "resources"));
-
-                        java2CodeFrame.deleteDirectory(temp);
-                    } catch (Exception e1) {
-                        StringWriter writer = new StringWriter();
-                        JOptionPane.showMessageDialog(java2CodeFrame, "Code genaration failed!" + writer.toString(),
-                                "Axis2 code generation", JOptionPane.ERROR_MESSAGE);
+                    if (output.equalsIgnoreCase("radCurrentProject")) {
+
+                        File temp = java2CodeFrame.secondPanel.codegenBean.getTemp();
+                        java2CodeFrame.secondPanel.codegenBean.setOutput(temp.getAbsolutePath() );
+                        try {
+                            java2CodeFrame.generatecode() ;
+                            java2CodeFrame.copyDirectory(new File(temp + File.separator + "src"), new File((String) java2CodeFrame.outputpane.cmbModuleSrc.getSelectedItem()));
+                            File src = new File(temp + File.separator + "resources");
+                            if (src.isDirectory())
+                                java2CodeFrame.copyDirectory(src, new File((String) java2CodeFrame.outputpane.cmbModuleSrc.getSelectedItem() + File.separator + ".." + File.separator + "resources"));
+
+                            java2CodeFrame.deleteDirectory(temp);
+                        } catch (Exception e1) {
+                            java2CodeFrame.outputpane.progressBar.setVisible(false);
+                            StringWriter writer = new StringWriter();
+                            JOptionPane.showMessageDialog(java2CodeFrame, "Code genaration failed!" + writer.toString(),
+                                    "Axis2 code generation", JOptionPane.ERROR_MESSAGE);
+                            java2CodeFrame.dispose();
+                            return;
+                        }
+                        java2CodeFrame.outputpane.progressBar.setVisible(false);
+                        JOptionPane.showMessageDialog(java2CodeFrame, "Code generation successful!",
+                                "Axis2 code generation", JOptionPane.INFORMATION_MESSAGE);
+                        java2CodeFrame.dispose();
+                        return;
+                    }else if(output.equalsIgnoreCase("radCustomLocation") ){
+                        try{
+                            java2CodeFrame.generatecode();
+                        } catch (Exception e1) {
+                            java2CodeFrame.outputpane.progressBar.setVisible(false);
+                            StringWriter writer = new StringWriter();
+                            JOptionPane.showMessageDialog(java2CodeFrame, "Code genaration failed!" + writer.toString(),
+                                    "Axis2 code generation", JOptionPane.ERROR_MESSAGE);
+                            java2CodeFrame.dispose();
+                            return;
+                        }
+                        java2CodeFrame.outputpane.progressBar.setVisible(false);
+                        JOptionPane.showMessageDialog(java2CodeFrame, "Code generation successful!",
+                                "Axis2 code generation", JOptionPane.INFORMATION_MESSAGE);
                         java2CodeFrame.dispose();
                         return;
                     }
-
                 }
-                else
-                {
 
-                    try {
+                else if (selected.equalsIgnoreCase("custom")) {
 
-                        java2CodeFrame.generatecode();
-
-                    } catch (Exception e1) {
-                        StringWriter writer = new StringWriter();
-                        JOptionPane.showMessageDialog(java2CodeFrame, "Code genaration failed!" + writer.toString(),
-                                "Axis2 code generation", JOptionPane.ERROR_MESSAGE);
+                    String output = java2CodeFrame.outputpane.buttonGroup.getSelection().getActionCommand();
+                    java2CodeFrame.secondPanel.fillBean();
+                    if (output.equalsIgnoreCase("radCurrentProject")) {
+
+                        File temp = java2CodeFrame.secondPanel.codegenBean.getTemp();
+                        java2CodeFrame.secondPanel.codegenBean.setOutput(temp.getAbsolutePath());
+                        //java2CodeFrame.secondPanel.codegenBean.setProject();
+                        try {
+                            java2CodeFrame.generatecode();
+                            java2CodeFrame.copyDirectory(new File(temp + File.separator + "src"), new File((String) java2CodeFrame.outputpane.cmbModuleSrc.getSelectedItem()));
+                            File src = new File(temp + File.separator + "resources");
+                            if (src.isDirectory())
+                                java2CodeFrame.copyDirectory(src, new File((String) java2CodeFrame.outputpane.cmbModuleSrc.getSelectedItem() + File.separator + ".." + File.separator + "resources"));
+
+                            java2CodeFrame.deleteDirectory(temp);
+                        } catch (Exception e1) {
+                            StringWriter writer = new StringWriter();
+                            java2CodeFrame.outputpane.progressBar.setVisible(false);
+                            JOptionPane.showMessageDialog(java2CodeFrame, "Code genaration failed!" + writer.toString(),
+                                    "Axis2 code generation", JOptionPane.ERROR_MESSAGE);
+                            java2CodeFrame.dispose();
+                            return;
+                        }
+                        java2CodeFrame.outputpane.progressBar.setVisible(false);
+                        JOptionPane.showMessageDialog(java2CodeFrame, "Code generation successful!",
+                                "Axis2 code generation", JOptionPane.INFORMATION_MESSAGE);
+                        java2CodeFrame.dispose();
+                        return;
+                    }
+                    else if(output.equalsIgnoreCase("radCustomLocation"))
+                    {
+                        try {
+                            java2CodeFrame.generatecode();
+                        } catch (Exception e1) {
+                            java2CodeFrame.outputpane.progressBar.setVisible(false);
+                            StringWriter writer = new StringWriter();
+                            JOptionPane.showMessageDialog(java2CodeFrame, "Code genaration failed!" + writer.toString(),
+                                    "Axis2 code generation", JOptionPane.ERROR_MESSAGE);
+                            java2CodeFrame.dispose();
+                            return;
+                        }
+                        java2CodeFrame.outputpane.progressBar.setVisible(false);
+                        JOptionPane.showMessageDialog(java2CodeFrame, "Code generation successful!",
+                                "Axis2 code generation", JOptionPane.INFORMATION_MESSAGE);
                         java2CodeFrame.dispose();
                         return;
                     }
                 }
-
             }
-            try {
-
-                java2CodeFrame.generatecode();
-
-            } catch (Exception e1) {
-                System.out.println(e1);
-                StringWriter writer = new StringWriter();
-                JOptionPane.showMessageDialog(java2CodeFrame, "Code genaration failed!" + writer.toString(),
-                        "Axis2 code generation", JOptionPane.ERROR_MESSAGE);
-                java2CodeFrame.dispose();
-                return;
-            }
-            JOptionPane.showMessageDialog(java2CodeFrame, "Code generation successful!",
-                    "Axis2 code generation", JOptionPane.INFORMATION_MESSAGE);
-            java2CodeFrame.dispose();
-            return;
+            }.start();
 
         } else if (obj == btnNext) {
 

Modified: webservices/axis2/branches/java/jaxws21/modules/tool/axis2-idea-plugin/src/main/java/org/apache/axis2/tools/idea/Java2CodeFrame.java
URL: http://svn.apache.org/viewvc/webservices/axis2/branches/java/jaxws21/modules/tool/axis2-idea-plugin/src/main/java/org/apache/axis2/tools/idea/Java2CodeFrame.java?view=diff&rev=545866&r1=545865&r2=545866
==============================================================================
--- webservices/axis2/branches/java/jaxws21/modules/tool/axis2-idea-plugin/src/main/java/org/apache/axis2/tools/idea/Java2CodeFrame.java (original)
+++ webservices/axis2/branches/java/jaxws21/modules/tool/axis2-idea-plugin/src/main/java/org/apache/axis2/tools/idea/Java2CodeFrame.java Sun Jun 10 04:42:12 2007
@@ -277,6 +277,7 @@
                         , "  set the output project for the generated code");
                 this.secondPanel.setVisible(false);
                 this.plMiddle.setVisible(false);
+                this.secondPanel.fillBean();
                 outputpane.loadCmbCurrentProject();
                 outputpane.loadcmbModuleSrcProject();
                 this.outputpane.setVisible(true);

Modified: webservices/axis2/branches/java/jaxws21/modules/tool/axis2-idea-plugin/src/main/java/org/apache/axis2/tools/idea/OutPutPane.java
URL: http://svn.apache.org/viewvc/webservices/axis2/branches/java/jaxws21/modules/tool/axis2-idea-plugin/src/main/java/org/apache/axis2/tools/idea/OutPutPane.java?view=diff&rev=545866&r1=545865&r2=545866
==============================================================================
--- webservices/axis2/branches/java/jaxws21/modules/tool/axis2-idea-plugin/src/main/java/org/apache/axis2/tools/idea/OutPutPane.java (original)
+++ webservices/axis2/branches/java/jaxws21/modules/tool/axis2-idea-plugin/src/main/java/org/apache/axis2/tools/idea/OutPutPane.java Sun Jun 10 04:42:12 2007
@@ -42,6 +42,7 @@
     JRadioButton radCustomLocation;
 
     ButtonGroup buttonGroup;
+    ProgressBarPanel progressBar;
 
     JLabel lblModuleSrc;
     JComboBox cmbModuleSrc;
@@ -96,10 +97,10 @@
         cmbModuleSrc.setEnabled(true);
         add(cmbModuleSrc);
 
-
-//        loadCmbCurrentProject();
-//        loadcmbModuleSrcProject();
-
+        progressBar= new ProgressBarPanel();
+        progressBar.setVisible(false);
+        progressBar.setBorder(BorderFactory.createTitledBorder("") );
+        add(progressBar );
 
         setSize(getPreferredSize());
     }
@@ -189,70 +190,75 @@
             loadcmbModuleSrcProject();
         }
     }
+}
 
-    class OutPutPaneLayout implements LayoutManager {
+class OutPutPaneLayout implements LayoutManager {
 
-        public OutPutPaneLayout() {
-        }
+    public OutPutPaneLayout() {
+    }
 
-        public void addLayoutComponent(String name, Component comp) {
-        }
+    public void addLayoutComponent(String name, Component comp) {
+    }
 
-        public void removeLayoutComponent(Component comp) {
-        }
+    public void removeLayoutComponent(Component comp) {
+    }
 
-        public Dimension preferredLayoutSize(Container parent) {
-            Dimension dim = new Dimension(0, 0);
+    public Dimension preferredLayoutSize(Container parent) {
+        Dimension dim = new Dimension(0, 0);
 
-            Insets insets = parent.getInsets();
-            dim.width = 611 + insets.left + insets.right;
-            dim.height = 600 + insets.top + insets.bottom;
+        Insets insets = parent.getInsets();
+        dim.width = 611 + insets.left + insets.right;
+        dim.height = 600 + insets.top + insets.bottom;
 
-            return dim;
-        }
+        return dim;
+    }
 
-        public Dimension minimumLayoutSize(Container parent) {
-            return new Dimension(0, 0);
-        }
+    public Dimension minimumLayoutSize(Container parent) {
+        return new Dimension(0, 0);
+    }
 
-        public void layoutContainer(Container parent) {
-            Insets insets = parent.getInsets();
+    public void layoutContainer(Container parent) {
+        Insets insets = parent.getInsets();
 
-            Component c;
-            c = parent.getComponent(2);
-            if (c.isVisible()) {
-                c.setBounds(insets.left + 8, insets.top + 8, 350, 24);
-            }
-            c = parent.getComponent(3);
-            if (c.isVisible()) {
-                c.setBounds(insets.left + 30, insets.top + 40, 150, 24);
-            }
-            c = parent.getComponent(5);
-            if (c.isVisible()) {
-                c.setBounds(insets.left + 200, insets.top + 40, 330, 24);
-            }
-            c = parent.getComponent(6);
-            if (c.isVisible()) {
-                c.setBounds(insets.left + 30, insets.top + 70, 150, 24);
-            }
-            c = parent.getComponent(7);
-            if (c.isVisible()) {
-                c.setBounds(insets.left + 200, insets.top + 70, 330, 24);
-            }
-            c = parent.getComponent(4);
-            if (c.isVisible()) {
-                c.setBounds(insets.left + 8, insets.top + 100, 350, 24);
-            }
-            c = parent.getComponent(0);
-            if (c.isVisible()) {
-                c.setBounds(insets.left + 30, insets.top + 130, 350, 24);
-            }
-            c = parent.getComponent(1);
-            if (c.isVisible()) {
-                c.setBounds(insets.left + 400, insets.top + 130, 80, 24);
-            }
+        Component c;
+        c = parent.getComponent(2);
+        if (c.isVisible()) {
+            c.setBounds(insets.left + 8, insets.top + 8, 350, 24);
+        }
+        c = parent.getComponent(3);
+        if (c.isVisible()) {
+            c.setBounds(insets.left + 30, insets.top + 40, 150, 24);
+        }
+        c = parent.getComponent(5);
+        if (c.isVisible()) {
+            c.setBounds(insets.left + 200, insets.top + 40, 330, 24);
+        }
+        c = parent.getComponent(6);
+        if (c.isVisible()) {
+            c.setBounds(insets.left + 30, insets.top + 70, 150, 24);
+        }
+        c = parent.getComponent(7);
+        if (c.isVisible()) {
+            c.setBounds(insets.left + 200, insets.top + 70, 330, 24);
+        }
+        c = parent.getComponent(4);
+        if (c.isVisible()) {
+            c.setBounds(insets.left + 8, insets.top + 100, 350, 24);
+        }
+        c = parent.getComponent(0);
+        if (c.isVisible()) {
+            c.setBounds(insets.left + 30, insets.top + 130, 350, 24);
+        }
+        c = parent.getComponent(1);
+        if (c.isVisible()) {
+            c.setBounds(insets.left + 400, insets.top + 130, 80, 24);
+        }
+         c = parent.getComponent(8);
+        if (c.isVisible()) {
+            c.setBounds(insets.left + 20, insets.top + 375, 510, 80);
         }
     }
-
 }
+
+
 

Modified: webservices/axis2/branches/java/jaxws21/modules/tool/axis2-idea-plugin/src/main/java/org/apache/axis2/tools/idea/SecondFrame.java
URL: http://svn.apache.org/viewvc/webservices/axis2/branches/java/jaxws21/modules/tool/axis2-idea-plugin/src/main/java/org/apache/axis2/tools/idea/SecondFrame.java?view=diff&rev=545866&r1=545865&r2=545866
==============================================================================
--- webservices/axis2/branches/java/jaxws21/modules/tool/axis2-idea-plugin/src/main/java/org/apache/axis2/tools/idea/SecondFrame.java (original)
+++ webservices/axis2/branches/java/jaxws21/modules/tool/axis2-idea-plugin/src/main/java/org/apache/axis2/tools/idea/SecondFrame.java Sun Jun 10 04:42:12 2007
@@ -227,7 +227,7 @@
         rdasync .setEnabled(false);
         serverSide .setEnabled(false);
         serverSideInterface .setEnabled(false);
-        serviceXML .setEnabled(false);
+        serviceXML.setEnabled(false);
         all.setEnabled(false);
         table.setEnabled(false);
         spTable.setEnabled(false);

Modified: webservices/axis2/branches/java/jaxws21/modules/tool/axis2-java2wsdl-maven-plugin/src/main/java/org/apache/axis2/maven2/java2wsdl/Java2WSDLMojo.java
URL: http://svn.apache.org/viewvc/webservices/axis2/branches/java/jaxws21/modules/tool/axis2-java2wsdl-maven-plugin/src/main/java/org/apache/axis2/maven2/java2wsdl/Java2WSDLMojo.java?view=diff&rev=545866&r1=545865&r2=545866
==============================================================================
--- webservices/axis2/branches/java/jaxws21/modules/tool/axis2-java2wsdl-maven-plugin/src/main/java/org/apache/axis2/maven2/java2wsdl/Java2WSDLMojo.java (original)
+++ webservices/axis2/branches/java/jaxws21/modules/tool/axis2-java2wsdl-maven-plugin/src/main/java/org/apache/axis2/maven2/java2wsdl/Java2WSDLMojo.java Sun Jun 10 04:42:12 2007
@@ -28,8 +28,8 @@
 import org.apache.maven.plugin.MojoFailureException;
 import org.apache.maven.project.MavenProject;
 import org.apache.ws.java2wsdl.Java2WSDLCodegenEngine;
-import org.apache.ws.java2wsdl.Java2WSDLConstants;
 import org.apache.ws.java2wsdl.utils.Java2WSDLCommandLineOption;
+import org.apache.axis2.description.java2wsdl.Java2WSDLConstants;
 
 
 /**

Modified: webservices/axis2/branches/java/jaxws21/xdocs/@axis2_version_dir@/reference.html
URL: http://svn.apache.org/viewvc/webservices/axis2/branches/java/jaxws21/xdocs/%40axis2_version_dir%40/reference.html?view=diff&rev=545866&r1=545865&r2=545866
==============================================================================
--- webservices/axis2/branches/java/jaxws21/xdocs/@axis2_version_dir@/reference.html (original)
+++ webservices/axis2/branches/java/jaxws21/xdocs/@axis2_version_dir@/reference.html Sun Jun 10 04:42:12 2007
@@ -26,7 +26,7 @@
         -a : Generate async style code only. Default is off
         -s : Generate sync style code only. Default is off. takes precedence over -a
         -p &lt;package name&gt; : set custom package name
-        -l &lt;language&gt; : valid languages are java and csharp. Default is java
+        -l &lt;language&gt; : valid languages are java and c. Default is java
         -t : Generate TestCase to test the generated code
         -ss : Generate server side code (i.e. skeletons). Default is off
         -sd : Generate service descriptor (i.e. services.xml). Default is off. Valid with -ss



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