You are viewing a plain text version of this content. The canonical link for it is here.
Posted to commits@cxf.apache.org by bu...@apache.org on 2012/10/02 22:47:26 UTC

svn commit: r833798 - in /websites/production/cxf/content: cache/docs.pageCache docs/service-routing.html

Author: buildbot
Date: Tue Oct  2 20:47:26 2012
New Revision: 833798

Log:
Production update by buildbot for cxf

Modified:
    websites/production/cxf/content/cache/docs.pageCache
    websites/production/cxf/content/docs/service-routing.html

Modified: websites/production/cxf/content/cache/docs.pageCache
==============================================================================
Binary files - no diff available.

Modified: websites/production/cxf/content/docs/service-routing.html
==============================================================================
--- websites/production/cxf/content/docs/service-routing.html (original)
+++ websites/production/cxf/content/docs/service-routing.html Tue Oct  2 20:47:26 2012
@@ -152,7 +152,7 @@ Apache CXF -- Service Routing
 
 <p>Lets see the code:</p>
 
-<div class="code panel" style="border-width: 1px;"><div class="codeHeader panelHeader" style="border-bottom-width: 1px;"><b>Example 1: The server - this server has three endpoints: one endpoint for the dummy service, another two endpoints are different vrersions of Greeter service</b></div><div class="codeContent panelContent">
+<div class="code panel" style="border-width: 1px;"><div class="codeHeader panelHeader" style="border-bottom-width: 1px;"><b>Example 1: The server - this server has three endpoints: one endpoint for the dummy service, another two endpoints are different versions of Greeter service</b></div><div class="codeContent panelContent">
 <pre class="code-java">
 
 <span class="code-keyword">import</span> javax.xml.ws.Endpoint;
@@ -189,7 +189,7 @@ Apache CXF -- Service Routing
     <span class="code-keyword">public</span> <span class="code-keyword">static</span> void main(<span class="code-object">String</span>[] args) {
         <span class="code-keyword">try</span> {
             Server s = <span class="code-keyword">new</span> Server();
-            s.start();
+            s.run();
         } <span class="code-keyword">catch</span> (Exception ex) {
             ex.printStackTrace();
             <span class="code-object">System</span>.exit(-1);