You are viewing a plain text version of this content. The canonical link for it is here.
Posted to java-dev@axis.apache.org by ch...@apache.org on 2007/04/05 08:20:42 UTC

svn commit: r525720 - in /webservices/axis2/branches/java/1_2/xdocs/tools: 1_1/maven-plugins/maven-java2wsdl-plugin.html 1_2/maven-plugins/maven-java2wsdl-plugin.html

Author: chatra
Date: Wed Apr  4 23:20:42 2007
New Revision: 525720

URL: http://svn.apache.org/viewvc?view=rev&rev=525720
Log:
resolved issue in https://issues.apache.org/jira/browse/AXIS2-1789

Modified:
    webservices/axis2/branches/java/1_2/xdocs/tools/1_1/maven-plugins/maven-java2wsdl-plugin.html
    webservices/axis2/branches/java/1_2/xdocs/tools/1_2/maven-plugins/maven-java2wsdl-plugin.html

Modified: webservices/axis2/branches/java/1_2/xdocs/tools/1_1/maven-plugins/maven-java2wsdl-plugin.html
URL: http://svn.apache.org/viewvc/webservices/axis2/branches/java/1_2/xdocs/tools/1_1/maven-plugins/maven-java2wsdl-plugin.html?view=diff&rev=525720&r1=525719&r2=525720
==============================================================================
--- webservices/axis2/branches/java/1_2/xdocs/tools/1_1/maven-plugins/maven-java2wsdl-plugin.html (original)
+++ webservices/axis2/branches/java/1_2/xdocs/tools/1_1/maven-plugins/maven-java2wsdl-plugin.html Wed Apr  4 23:20:42 2007
@@ -1,126 +1,126 @@
-<html>
-<head>
-  <meta http-equiv="content-type" content="">
-  <title>Maven2 Java2WSDL Plug-in Guide</title>
-  <link href="../../../css/axis-docs.css" rel="stylesheet" type="text/css"
-  media="all">
-</head>
-
-<body>
-<h1>Maven2 Java2WSDL Plug-in Guide</h1>
-
-<h2>Introduction</h2>
-
-<p>This plugin takes as input a Java class and generates a WSDL, which
-describes a Web service for invoking the classes methods.</p>
-
-<p><a href="http://ws.apache.org/axis2/tools/index.html"
-target="_blank">[Download Plugin Tool]</a></p>
-
-<h2>Goals</h2>
-
-<p>The Java2WSDL plugin offers a single goal:</p>
-<ul>
-  <li>java2wsdl (default): Reads a java class and generates a WSDL for
-    invoking the classes methods as a Web service.</li>
-</ul>
-
-<p>To run the plugin, add the following section to your <a
-href="http://maven.apache.org/guides/introduction/introduction-to-the-pom.html">POM</a>
-(Project Object Model):</p>
-<pre>  &lt;build&gt;
-    &lt;plugins&gt;
-      &lt;plugin&gt;
-        &lt;groupId&gt;org.apache.axis2.maven2&lt;/groupId&gt;
-        &lt;artifactId&gt;axis2-java2wsdl-maven-plugin&lt;/artifactId&gt;
-        &lt;executions&gt;
-          &lt;execution&gt;
-            &lt;goals&gt;
-              &lt;goal&gt;java2wsdl&lt;/goal&gt;
-            &lt;/goals&gt;
-          &lt;/execution&gt;
-          &lt;configuration&gt;
-            &lt;className&gt;com.foo.myservice.MyHandler&lt;/className&gt;
-          &lt;/configuration&gt;
-        &lt;/executions&gt;
-      &lt;/plugin&gt;
-    &lt;/plugins&gt;
-  &lt;/build&gt;
-  </pre>
-
-<p>The plugin will be invoked automatically in the generate-resources phase.
-You can also invoke it directly from the command line by running the
-command:</p>
-<pre>mvn java2wsdl:java2wsdl</pre>
-
-<h3>The Java2WSDL Goal</h3>
-
-<p>By default, the plugin reads the given Java class and creates a file
-<strong>target/generated-resources/java2wsdl/service.xml</strong>. The Java
-class is given by the configuration element <strong>className</strong>
-above.</p>
-
-<h2>Configuration</h2>
-
-<p>The Java2WSDL goal takes the following parameters as input. All parameters
-can be set from the command line by using properties. For example, the
-parameter "className" may be set using the property
-"axis2.java2wsdl.className". If the parameter isn't set via property or in
-the POM, then a default value applies.</p>
-
-<table border="2">
-  <tbody>
-    <tr>
-      <td><strong>Parameter name</strong></td>
-      <td><strong>Command line property</strong></td>
-      <td><strong>Description</strong></td>
-      <td><strong>Default value</strong></td>
-    </tr>
-    <tr>
-      <td>className</td>
-      <td>${axis2.java2wsdl.className}</td>
-      <td>Fully qualified name of the class, which is being read and
-        transformed into a WSDL</td>
-      <td></td>
-    </tr>
-    <tr>
-      <td>outputFileName</td>
-      <td>${axis2.java2wsdl.outputFileName}</td>
-      <td>Path of the generated service file.</td>
-      <td></td>
-    </tr>
-    <tr>
-      <td>schemaTargetNamespace</td>
-      <td>${axis2.java2wsdl.schemaTargetNamespace}</td>
-      <td>Target namespace of the generated schema.</td>
-      <td></td>
-    </tr>
-    <tr>
-      <td>schemaTargetNamespacePrefix</td>
-      <td>${axis2.java2wsdl.schemaTargetNamespacePrefix}</td>
-      <td>Prefix, which is being associated with the schemas target
-      namespace.</td>
-      <td></td>
-    </tr>
-    <tr>
-      <td>serviceName</td>
-      <td>${axis2.java2wsdl.serviceName}</td>
-      <td>Name of the generated Web service.</td>
-      <td>Unqualified name of the input class.</td>
-    </tr>
-    <tr>
-      <td>targetNamespace</td>
-      <td>${axis2.java2wsdl.targetNamespace}</td>
-      <td>Target namespace of the generated WSDL</td>
-      <td>Default namespace</td>
-    </tr>
-    <tr>
-      <td>targetNamespacePrefix</td>
-      <td>${axis2.java2wsdl.targetNamespacePrefix}</td>
-      <td>Prefix, which is being associated with the target namespace</td>
-      <td></td>
-    </tr>
-  </tbody>
-</table>
-</body>
-</html>
+<html>
+<head>
+  <meta http-equiv="content-type" content="">
+  <title>Maven2 Java2WSDL Plug-in Guide</title>
+  <link href="../../../css/axis-docs.css" rel="stylesheet" type="text/css"
+  media="all">
+</head>
+
+<body>
+<h1>Maven2 Java2WSDL Plug-in Guide</h1>
+
+<h2>Introduction</h2>
+
+<p>This plugin takes as input a Java class and generates a WSDL, which
+describes a Web service for invoking the classes methods.</p>
+
+<p><a href="http://ws.apache.org/axis2/tools/index.html"
+target="_blank">[Download Plugin Tool]</a></p>
+
+<h2>Goals</h2>
+
+<p>The Java2WSDL plugin offers a single goal:</p>
+<ul>
+  <li>java2wsdl (default): Reads a java class and generates a WSDL for
+    invoking the classes methods as a Web service.</li>
+</ul>
+
+<p>To run the plugin, add the following section to your <a
+href="http://maven.apache.org/guides/introduction/introduction-to-the-pom.html">POM</a>
+(Project Object Model):</p>
+<pre>  &lt;build&gt;
+    &lt;plugins&gt;
+      &lt;plugin&gt;
+        &lt;groupId&gt;org.apache.axis2.maven2&lt;/groupId&gt;
+        &lt;artifactId&gt;axis2-java2wsdl-maven-plugin&lt;/artifactId&gt;
+        &lt;configuration&gt;
+          &lt;className&gt;com.foo.myservice.MyHandler&lt;/className&gt;
+        &lt;/configuration&gt;
+        &lt;executions&gt;
+          &lt;execution&gt;
+            &lt;goals&gt;
+              &lt;goal&gt;java2wsdl&lt;/goal&gt;
+            &lt;/goals&gt;
+          &lt;/execution&gt;
+         &lt;/executions&gt;
+      &lt;/plugin&gt;
+    &lt;/plugins&gt;
+  &lt;/build&gt;
+  </pre>
+
+<p>The plugin will be invoked automatically in the generate-resources phase.
+You can also invoke it directly from the command line by running the
+command:</p>
+<pre>mvn java2wsdl:java2wsdl</pre>
+
+<h3>The Java2WSDL Goal</h3>
+
+<p>By default, the plugin reads the given Java class and creates a file
+<strong>target/generated-resources/java2wsdl/service.xml</strong>. The Java
+class is given by the configuration element <strong>className</strong>
+above.</p>
+
+<h2>Configuration</h2>
+
+<p>The Java2WSDL goal takes the following parameters as input. All parameters
+can be set from the command line by using properties. For example, the
+parameter "className" may be set using the property
+"axis2.java2wsdl.className". If the parameter isn't set via property or in
+the POM, then a default value applies.</p>
+
+<table border="2">
+  <tbody>
+    <tr>
+      <td><strong>Parameter name</strong></td>
+      <td><strong>Command line property</strong></td>
+      <td><strong>Description</strong></td>
+      <td><strong>Default value</strong></td>
+    </tr>
+    <tr>
+      <td>className</td>
+      <td>${axis2.java2wsdl.className}</td>
+      <td>Fully qualified name of the class, which is being read and
+        transformed into a WSDL</td>
+      <td></td>
+    </tr>
+    <tr>
+      <td>outputFileName</td>
+      <td>${axis2.java2wsdl.outputFileName}</td>
+      <td>Path of the generated service file.</td>
+      <td></td>
+    </tr>
+    <tr>
+      <td>schemaTargetNamespace</td>
+      <td>${axis2.java2wsdl.schemaTargetNamespace}</td>
+      <td>Target namespace of the generated schema.</td>
+      <td></td>
+    </tr>
+    <tr>
+      <td>schemaTargetNamespacePrefix</td>
+      <td>${axis2.java2wsdl.schemaTargetNamespacePrefix}</td>
+      <td>Prefix, which is being associated with the schemas target
+      namespace.</td>
+      <td></td>
+    </tr>
+    <tr>
+      <td>serviceName</td>
+      <td>${axis2.java2wsdl.serviceName}</td>
+      <td>Name of the generated Web service.</td>
+      <td>Unqualified name of the input class.</td>
+    </tr>
+    <tr>
+      <td>targetNamespace</td>
+      <td>${axis2.java2wsdl.targetNamespace}</td>
+      <td>Target namespace of the generated WSDL</td>
+      <td>Default namespace</td>
+    </tr>
+    <tr>
+      <td>targetNamespacePrefix</td>
+      <td>${axis2.java2wsdl.targetNamespacePrefix}</td>
+      <td>Prefix, which is being associated with the target namespace</td>
+      <td></td>
+    </tr>
+  </tbody>
+</table>
+</body>
+</html>

Modified: webservices/axis2/branches/java/1_2/xdocs/tools/1_2/maven-plugins/maven-java2wsdl-plugin.html
URL: http://svn.apache.org/viewvc/webservices/axis2/branches/java/1_2/xdocs/tools/1_2/maven-plugins/maven-java2wsdl-plugin.html?view=diff&rev=525720&r1=525719&r2=525720
==============================================================================
--- webservices/axis2/branches/java/1_2/xdocs/tools/1_2/maven-plugins/maven-java2wsdl-plugin.html (original)
+++ webservices/axis2/branches/java/1_2/xdocs/tools/1_2/maven-plugins/maven-java2wsdl-plugin.html Wed Apr  4 23:20:42 2007
@@ -1,126 +1,126 @@
-<html>
-<head>
-  <meta http-equiv="content-type" content="">
-  <title>Maven2 Java2WSDL Plug-in Guide</title>
-  <link href="../../../css/axis-docs.css" rel="stylesheet" type="text/css"
-  media="all">
-</head>
-
-<body>
-<h1>Maven2 Java2WSDL Plug-in Guide</h1>
-
-<h2>Introduction</h2>
-
-<p>This plugin takes as input a Java class and generates a WSDL, which
-describes a Web service for invoking the classes methods.</p>
-
-<p><a href="http://ws.apache.org/axis2/tools/index.html"
-target="_blank">[Download Plugin Tool]</a></p>
-
-<h2>Goals</h2>
-
-<p>The Java2WSDL plugin offers a single goal:</p>
-<ul>
-  <li>java2wsdl (default): Reads a java class and generates a WSDL for
-    invoking the classes methods as a Web service.</li>
-</ul>
-
-<p>To run the plugin, add the following section to your <a
-href="http://maven.apache.org/guides/introduction/introduction-to-the-pom.html">POM</a>
-(Project Object Model):</p>
-<pre>  &lt;build&gt;
-    &lt;plugins&gt;
-      &lt;plugin&gt;
-        &lt;groupId&gt;org.apache.axis2.maven2&lt;/groupId&gt;
-        &lt;artifactId&gt;axis2-java2wsdl-maven-plugin&lt;/artifactId&gt;
-        &lt;executions&gt;
-          &lt;execution&gt;
-            &lt;goals&gt;
-              &lt;goal&gt;java2wsdl&lt;/goal&gt;
-            &lt;/goals&gt;
-          &lt;/execution&gt;
-          &lt;configuration&gt;
-            &lt;className&gt;com.foo.myservice.MyHandler&lt;/className&gt;
-          &lt;/configuration&gt;
-        &lt;/executions&gt;
-      &lt;/plugin&gt;
-    &lt;/plugins&gt;
-  &lt;/build&gt;
-  </pre>
-
-<p>The plugin will be invoked automatically in the generate-resources phase.
-You can also invoke it directly from the command line by running the
-command:</p>
-<pre>mvn java2wsdl:java2wsdl</pre>
-
-<h3>The Java2WSDL Goal</h3>
-
-<p>By default, the plugin reads the given Java class and creates a file
-<strong>target/generated-resources/java2wsdl/service.xml</strong>. The Java
-class is given by the configuration element <strong>className</strong>
-above.</p>
-
-<h2>Configuration</h2>
-
-<p>The Java2WSDL goal takes the following parameters as input. All parameters
-can be set from the command line by using properties. For example, the
-parameter "className" may be set using the property
-"axis2.java2wsdl.className". If the parameter isn't set via property or in
-the POM, then a default value applies.</p>
-
-<table border="2">
-  <tbody>
-    <tr>
-      <td><strong>Parameter name</strong></td>
-      <td><strong>Command line property</strong></td>
-      <td><strong>Description</strong></td>
-      <td><strong>Default value</strong></td>
-    </tr>
-    <tr>
-      <td>className</td>
-      <td>${axis2.java2wsdl.className}</td>
-      <td>Fully qualified name of the class, which is being read and
-        transformed into a WSDL</td>
-      <td></td>
-    </tr>
-    <tr>
-      <td>outputFileName</td>
-      <td>${axis2.java2wsdl.outputFileName}</td>
-      <td>Path of the generated service file.</td>
-      <td></td>
-    </tr>
-    <tr>
-      <td>schemaTargetNamespace</td>
-      <td>${axis2.java2wsdl.schemaTargetNamespace}</td>
-      <td>Target namespace of the generated schema.</td>
-      <td></td>
-    </tr>
-    <tr>
-      <td>schemaTargetNamespacePrefix</td>
-      <td>${axis2.java2wsdl.schemaTargetNamespacePrefix}</td>
-      <td>Prefix, which is being associated with the schemas target
-      namespace.</td>
-      <td></td>
-    </tr>
-    <tr>
-      <td>serviceName</td>
-      <td>${axis2.java2wsdl.serviceName}</td>
-      <td>Name of the generated Web service.</td>
-      <td>Unqualified name of the input class.</td>
-    </tr>
-    <tr>
-      <td>targetNamespace</td>
-      <td>${axis2.java2wsdl.targetNamespace}</td>
-      <td>Target namespace of the generated WSDL</td>
-      <td>Default namespace</td>
-    </tr>
-    <tr>
-      <td>targetNamespacePrefix</td>
-      <td>${axis2.java2wsdl.targetNamespacePrefix}</td>
-      <td>Prefix, which is being associated with the target namespace</td>
-      <td></td>
-    </tr>
-  </tbody>
-</table>
-</body>
-</html>
+<html>
+<head>
+  <meta http-equiv="content-type" content="">
+  <title>Maven2 Java2WSDL Plug-in Guide</title>
+  <link href="../../../css/axis-docs.css" rel="stylesheet" type="text/css"
+  media="all">
+</head>
+
+<body>
+<h1>Maven2 Java2WSDL Plug-in Guide</h1>
+
+<h2>Introduction</h2>
+
+<p>This plugin takes as input a Java class and generates a WSDL, which
+describes a Web service for invoking the classes methods.</p>
+
+<p><a href="http://ws.apache.org/axis2/tools/index.html"
+target="_blank">[Download Plugin Tool]</a></p>
+
+<h2>Goals</h2>
+
+<p>The Java2WSDL plugin offers a single goal:</p>
+<ul>
+  <li>java2wsdl (default): Reads a java class and generates a WSDL for
+    invoking the classes methods as a Web service.</li>
+</ul>
+
+<p>To run the plugin, add the following section to your <a
+href="http://maven.apache.org/guides/introduction/introduction-to-the-pom.html">POM</a>
+(Project Object Model):</p>
+<pre>  &lt;build&gt;
+    &lt;plugins&gt;
+      &lt;plugin&gt;
+        &lt;groupId&gt;org.apache.axis2.maven2&lt;/groupId&gt;
+        &lt;artifactId&gt;axis2-java2wsdl-maven-plugin&lt;/artifactId&gt;
+        &lt;configuration&gt;
+          &lt;className&gt;com.foo.myservice.MyHandler&lt;/className&gt;
+        &lt;/configuration&gt;
+        &lt;executions&gt;
+          &lt;execution&gt;
+            &lt;goals&gt;
+              &lt;goal&gt;java2wsdl&lt;/goal&gt;
+            &lt;/goals&gt;
+          &lt;/execution&gt;
+         &lt;/executions&gt;
+      &lt;/plugin&gt;
+    &lt;/plugins&gt;
+  &lt;/build&gt;
+  </pre>
+
+<p>The plugin will be invoked automatically in the generate-resources phase.
+You can also invoke it directly from the command line by running the
+command:</p>
+<pre>mvn java2wsdl:java2wsdl</pre>
+
+<h3>The Java2WSDL Goal</h3>
+
+<p>By default, the plugin reads the given Java class and creates a file
+<strong>target/generated-resources/java2wsdl/service.xml</strong>. The Java
+class is given by the configuration element <strong>className</strong>
+above.</p>
+
+<h2>Configuration</h2>
+
+<p>The Java2WSDL goal takes the following parameters as input. All parameters
+can be set from the command line by using properties. For example, the
+parameter "className" may be set using the property
+"axis2.java2wsdl.className". If the parameter isn't set via property or in
+the POM, then a default value applies.</p>
+
+<table border="2">
+  <tbody>
+    <tr>
+      <td><strong>Parameter name</strong></td>
+      <td><strong>Command line property</strong></td>
+      <td><strong>Description</strong></td>
+      <td><strong>Default value</strong></td>
+    </tr>
+    <tr>
+      <td>className</td>
+      <td>${axis2.java2wsdl.className}</td>
+      <td>Fully qualified name of the class, which is being read and
+        transformed into a WSDL</td>
+      <td></td>
+    </tr>
+    <tr>
+      <td>outputFileName</td>
+      <td>${axis2.java2wsdl.outputFileName}</td>
+      <td>Path of the generated service file.</td>
+      <td></td>
+    </tr>
+    <tr>
+      <td>schemaTargetNamespace</td>
+      <td>${axis2.java2wsdl.schemaTargetNamespace}</td>
+      <td>Target namespace of the generated schema.</td>
+      <td></td>
+    </tr>
+    <tr>
+      <td>schemaTargetNamespacePrefix</td>
+      <td>${axis2.java2wsdl.schemaTargetNamespacePrefix}</td>
+      <td>Prefix, which is being associated with the schemas target
+      namespace.</td>
+      <td></td>
+    </tr>
+    <tr>
+      <td>serviceName</td>
+      <td>${axis2.java2wsdl.serviceName}</td>
+      <td>Name of the generated Web service.</td>
+      <td>Unqualified name of the input class.</td>
+    </tr>
+    <tr>
+      <td>targetNamespace</td>
+      <td>${axis2.java2wsdl.targetNamespace}</td>
+      <td>Target namespace of the generated WSDL</td>
+      <td>Default namespace</td>
+    </tr>
+    <tr>
+      <td>targetNamespacePrefix</td>
+      <td>${axis2.java2wsdl.targetNamespacePrefix}</td>
+      <td>Prefix, which is being associated with the target namespace</td>
+      <td></td>
+    </tr>
+  </tbody>
+</table>
+</body>
+</html>



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