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 di...@apache.org on 2007/07/31 16:11:36 UTC

svn commit: r561334 - in /webservices/axis2/branches/java/1_3/modules/documentation/xdocs: faq.xml index.xml siteHowTo.xml

Author: dims
Date: Tue Jul 31 07:11:35 2007
New Revision: 561334

URL: http://svn.apache.org/viewvc?view=rev&rev=561334
Log:
Documentation cleanup

Modified:
    webservices/axis2/branches/java/1_3/modules/documentation/xdocs/faq.xml
    webservices/axis2/branches/java/1_3/modules/documentation/xdocs/index.xml
    webservices/axis2/branches/java/1_3/modules/documentation/xdocs/siteHowTo.xml

Modified: webservices/axis2/branches/java/1_3/modules/documentation/xdocs/faq.xml
URL: http://svn.apache.org/viewvc/webservices/axis2/branches/java/1_3/modules/documentation/xdocs/faq.xml?view=diff&rev=561334&r1=561333&r2=561334
==============================================================================
--- webservices/axis2/branches/java/1_3/modules/documentation/xdocs/faq.xml (original)
+++ webservices/axis2/branches/java/1_3/modules/documentation/xdocs/faq.xml Tue Jul 31 07:11:35 2007
@@ -50,10 +50,6 @@
 <ul>
 <li><a href="#a1">I'm having a problem using Axis2. What should I
 do?</a></li>
-<!--li><a href="#a2">What is OMElement, What does it represent?</a></li-->
-<li><a href="#a3">Integration security tests fail with JDK
-1.5</a></li>
-<li><a href="#a4">Axis2 is not working with Java 6</a></li>
 </ul>
 </li>
 <li>Class Loading Issues
@@ -87,12 +83,6 @@
 view the WSDL file.<br /></a></li>
 </ul>
 </li>
-<li>WSDL and Code Generation
-<ul>
-<li><a href="#g1">Given a WSDL 2.0 document with HTTP Binding to
-WSDL2Java, should it not be able to generate a client stub</a></li>
-</ul>
-</li>
 </ul>
 <h2>General</h2>
 <ol>
@@ -135,30 +125,6 @@
 Yes we also accept all the blames about Axis2 in these mailing
 lists, as those will definitely help us to improve Axis2 :) .</p>
 </li>
-<li><a name="a3" id="a3"></a><strong>Integration security tests
-fail with JDK 1.5</strong><br />
-<p>You have to add Bouncy Castle as a JCE provider. Add the
-following entry to java.security file of the appropriate JRE on
-your machine. This file is available in the lib\security\ directory
-within the JRE directory.</p>
-<p>
-security.provider.7=org.bouncycastle.jce.provider.BouncyCastleProvider</p>
-<p>security.provider.# will have to be decided depending on the
-existing entries in the java.security file</p>
-<p>NOTE: For Windows XP, the correct version can be found using
-'java -version'. The correct file is JRE (typically c:\Program
-Files\Java\jre&lt;version&gt;\lib\security\java.security.</p>
-</li>
-<li><a name="a4" id="a4"></a><strong>Axis2 is not working with Java
-6</strong><br />
-<p>You have to copy the stax-api jar in the Axis2 distribution into
-your JRE's endorsed directory (see info on endorsed directory here
-- <a href=
-"http://java.sun.com/j2se/1.4.2/docs/guide/standards/">http://java.sun.com/j2se/1.4.2/docs/guide/standards/</a>).</p>
-<p>This issue can also be resolved by copying the stax-api jar to
-Tomcat's common/endorsed folder, when deploying Axis2 in
-Tomcat.</p>
-</li>
 </ol>
 <h2>Class Loading Issues</h2>
 <ol>
@@ -288,24 +254,6 @@
 <a href=
 "http://www.apache.org/dist/java-repository/xalan/jars/">xalan-2.7.0.jar</a>
 into the axis2/WEB-INF/lib directory</p>
-</li>
-</ol>
-<h2>WSDL and Code Generation</h2>
-<ol>
-<li><a name="g1" id="g1"></a><strong>Given a WSDL 2.0 document with
-HTTP Binding to WSDL2Java, should it not be able to generate a
-client stub similar to what happens given a WSDL 1.1 document with
-SOAP Binding?</strong></li>
-<li style="list-style: none; display: inline">
-<p>WSDL 2.0 is not supported yet. We do not have a working WSDL 2.0
-reader.</p>
-<p>However the codegen engine works off WOM (not WSDL4J). Hence if
-the WSDL 2.0 reader is done, we are all set to generate code for
-it.</p>
-<p>And yes, it is perfectly possible for the codegen to generate
-code for the HTTP binding. We already have the client API support
-for making the REST calls and it should be a matter of putting in a
-correct template.</p>
 </li>
 </ol>
 </body>

Modified: webservices/axis2/branches/java/1_3/modules/documentation/xdocs/index.xml
URL: http://svn.apache.org/viewvc/webservices/axis2/branches/java/1_3/modules/documentation/xdocs/index.xml?view=diff&rev=561334&r1=561333&r2=561334
==============================================================================
--- webservices/axis2/branches/java/1_3/modules/documentation/xdocs/index.xml (original)
+++ webservices/axis2/branches/java/1_3/modules/documentation/xdocs/index.xml Tue Jul 31 07:11:35 2007
@@ -76,7 +76,7 @@
 also has integrated support for the widely popular <a href=
 "http://www.xfront.com/REST-Web-Services.html">REST style of Web
 services</a>. The same business logic implementation can offer both
-a WS-* style interface as well as a REST style interface
+a WS-* style interface as well as a REST/POX style interface
 simultaneously.</p>
 <p>Apache Axis2 is more efficient, more modular and more
 XML-oriented than the older version. It is carefully designed to

Modified: webservices/axis2/branches/java/1_3/modules/documentation/xdocs/siteHowTo.xml
URL: http://svn.apache.org/viewvc/webservices/axis2/branches/java/1_3/modules/documentation/xdocs/siteHowTo.xml?view=diff&rev=561334&r1=561333&r2=561334
==============================================================================
--- webservices/axis2/branches/java/1_3/modules/documentation/xdocs/siteHowTo.xml (original)
+++ webservices/axis2/branches/java/1_3/modules/documentation/xdocs/siteHowTo.xml Tue Jul 31 07:11:35 2007
@@ -34,7 +34,7 @@
 "http://maven.apache.org/">Maven2</a>. The build has been
 specifically tested to work with Maven version 2.0.7. To install
 Maven, download the distributions and follow the instructions in
-the documentation. Make sure you don't forget to put MAVEN_HOME/bin
+the documentation. Make sure you don't forget to add MAVEN_HOME/bin
 directory in the path.</p>
 <h2>Checking out Axis 2.0</h2>
 <p>Checkout the <a href=
@@ -44,19 +44,18 @@
 "https://svn.apache.org/repos/asf/webservices/axis2/trunk/java">commiter
 check out.</a></p>
 <h2>Building the Site</h2>
-<p>Type <i>mvn site</i> at the root of your project
-folder. It will take some time to build the whole site. The built
-site will be available under targets/site.</p>
+<p>cd to modules/documentation and type <i>mvn install</i> The built
+site will be available under target/site.</p>
 <h2>FAQ</h2>
 <ol>
 <li>How can I update a document in the site ?<br />
-Get a commiter check out. All the documents are in HTML format
-under the xdocs folder, and you can change only the documents found
-under this folder. Change the relevant file and run maven
-"html2xdoc:transform". New documentation will be available under
+Get a commiter check out. All the documents are in XHTML format
+under the modules/documentation/xdocs folder, and you can change only the documents found
+under this folder. Change the relevant file and run <i>mvn
+install</i>. New documentation will be available under
 the target folder.</li>
 <li>How can I add a new document?<br />
-Put the new document in the xdocs folder. Change the navigation.xml
+Add the new document in the xdocs folder. Change the navigation.xml
 found under the xdocs folder by adding a link to the newly added
 document. Re-generate the site.<br />
 Please make sure you have not included any of the illegal



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