You are viewing a plain text version of this content. The canonical link for it is here.
Posted to wsrf-commits@ws.apache.org by ip...@apache.org on 2005/10/24 17:04:58 UTC

svn commit: r328079 - in /webservices/wsrf/trunk/src/site/content/xdocs: dev_guide/deploy.xml tutorial/wsdl2java.xml

Author: ips
Date: Mon Oct 24 08:04:54 2005
New Revision: 328079

URL: http://svn.apache.org/viewcvs?rev=328079&view=rev
Log:
removed addressing handler entries from docs

Modified:
    webservices/wsrf/trunk/src/site/content/xdocs/dev_guide/deploy.xml
    webservices/wsrf/trunk/src/site/content/xdocs/tutorial/wsdl2java.xml

Modified: webservices/wsrf/trunk/src/site/content/xdocs/dev_guide/deploy.xml
URL: http://svn.apache.org/viewcvs/webservices/wsrf/trunk/src/site/content/xdocs/dev_guide/deploy.xml?rev=328079&r1=328078&r2=328079&view=diff
==============================================================================
--- webservices/wsrf/trunk/src/site/content/xdocs/dev_guide/deploy.xml (original)
+++ webservices/wsrf/trunk/src/site/content/xdocs/dev_guide/deploy.xml Mon Oct 24 08:04:54 2005
@@ -84,24 +84,14 @@
 					</p>
 					<p>The file contains a deployment entry for each Web service. For example, the entry for the FileSystem example service is:
              				</p>
-					<source><![CDATA[    <service name="filesystem" provider="java:WSRF" style="document" use="literal">
-      <wsdlFile>/wsdl/FileSystem.wsdl</wsdlFile>      
-      <requestFlow>
-         <handler type="java:org.apache.axis.handlers.JAXRPCHandler">
-            <parameter name="className" value="org.apache.ws.addressing.handler.WSAddressingHandler"/>
-         </handler>
-      </requestFlow>      
-   </service>]]></source>
+					<source><![CDATA[  <service name="filesystem" provider="java:WSRF" style="document" use="literal">
+    <wsdlFile>/wsdl/FileSystem.wsdl</wsdlFile>      
+  </service>]]></source>
 					<p>The service <code>name</code> attribute is the endpoint name and should be the same as the port's <code>name</code> attribute 
 					from your WSDL file. This will ensure people consuming your WSDL will be able to invoke your service.
              				</p>
 					<p>Notice the entry for <code>wsdlFile</code> which points to the <code>/wsdl/FileSystem.wsdl</code>.
              				This translates to the wsdl directory under the <code>WEB-INF/classes</code> directory.
-             				</p>
-					<p>The last part is the <code>requestFlow</code>. This xml fragment is necessary to ensure the
-             				requests are routed through Apache WSRF's WS-Addressing handler. This is static and should
-             				always be present.  We do not define it globally in case there are other services
-             				deployed which do not use WS-Addressing.
              				</p>
 				</li>
 			</ol>

Modified: webservices/wsrf/trunk/src/site/content/xdocs/tutorial/wsdl2java.xml
URL: http://svn.apache.org/viewcvs/webservices/wsrf/trunk/src/site/content/xdocs/tutorial/wsdl2java.xml?rev=328079&r1=328078&r2=328079&view=diff
==============================================================================
--- webservices/wsrf/trunk/src/site/content/xdocs/tutorial/wsdl2java.xml (original)
+++ webservices/wsrf/trunk/src/site/content/xdocs/tutorial/wsdl2java.xml Mon Oct 24 08:04:54 2005
@@ -1,6 +1,8 @@
 <?xml version="1.0"?>
+
 <!DOCTYPE document PUBLIC "-//APACHE//DTD Documentation V2.0//EN"
           "http://forrest.apache.org/dtd/document-v20.dtd">
+
 <document>
 	<header>
 		<title>Run the Wsdl2Java Tool</title>