Author: buildbot
Date: Sun Dec 16 17:48:07 2012
New Revision: 842693
Log:
Production update by buildbot for cxf
Modified:
websites/production/cxf/content/cache/docs.pageCache
websites/production/cxf/content/docs/a-simple-jax-ws-service.html
websites/production/cxf/content/docs/defining-contract-first-webservices-with-wsdl-generation-from-java.html
websites/production/cxf/content/docs/writing-a-service-with-spring.html
Modified: websites/production/cxf/content/cache/docs.pageCache
==============================================================================
Binary files - no diff available.
Modified: websites/production/cxf/content/docs/a-simple-jax-ws-service.html
==============================================================================
--- websites/production/cxf/content/docs/a-simple-jax-ws-service.html (original)
+++ websites/production/cxf/content/docs/a-simple-jax-ws-service.html Sun Dec
16 17:48:07 2012
@@ -226,7 +226,7 @@ HelloWorldImpl implementor = <span class
<p>whole code at
<a shape="rect" class="external-link"
href="http://svn.apache.org/repos/asf/cxf/trunk/distribution/src/main/release/samples/java_first_jaxws/src/main/java/demo/hw/server/Server.java">http://svn.apache.org/repos/asf/cxf/trunk/distribution/src/main/release/samples/java_first_jaxws/src/main/java/demo/hw/server/Server.java</a></p>
-<p>Alternatively you can use the follwing code. This gives you more control
over the behaviour. For example you can add a logging interceptor:</p>
+<p>Alternatively you can use the following code. This gives you more control
over the behaviour. For example you can add a logging interceptor:</p>
<div class="code panel" style="border-width: 1px;"><div class="codeContent
panelContent">
<pre class="code-java">
Modified:
websites/production/cxf/content/docs/defining-contract-first-webservices-with-wsdl-generation-from-java.html
==============================================================================
---
websites/production/cxf/content/docs/defining-contract-first-webservices-with-wsdl-generation-from-java.html
(original)
+++
websites/production/cxf/content/docs/defining-contract-first-webservices-with-wsdl-generation-from-java.html
Sun Dec 16 17:48:07 2012
@@ -251,15 +251,15 @@ Apache CXF -- Defining Contract first we
<div class="code panel" style="border-width: 1px;"><div class="codeContent
panelContent">
<pre class="code-xml">
<span class="code-tag"><xs:element name=<span
class="code-quote">"NoSuchCustomer"</span> type=<span
class="code-quote">"tns:NoSuchCustomer"</span>/></span>
- <span class="code-tag"><xs:complexType name=<span
class="code-quote">"NoSuchCustomer"</span>></span>
- <span class="code-tag"><xs:sequence></span>
- <span class="code-tag"><xs:element name=<span
class="code-quote">"customerName"</span> nillable=<span
class="code-quote">"true"</span> type=<span
class="code-quote">"xs:string"</span>/></span>
- <span class="code-tag"></xs:sequence></span>
- <span class="code-tag"></xs:complexType></span>
- <span class="code-tag"><wsdl:message name=<span
class="code-quote">"NoSuchCustomerException"</span>></span>
+<span class="code-tag"><xs:complexType name=<span
class="code-quote">"NoSuchCustomer"</span>></span>
+ <span class="code-tag"><xs:sequence></span>
+ <span class="code-tag"><xs:element name=<span
class="code-quote">"customerName"</span> nillable=<span
class="code-quote">"true"</span> type=<span
class="code-quote">"xs:string"</span>/></span>
+ <span class="code-tag"></xs:sequence></span>
+<span class="code-tag"></xs:complexType></span>
+<span class="code-tag"><wsdl:message name=<span
class="code-quote">"NoSuchCustomerException"</span>></span>
<span class="code-tag"><wsdl:part name=<span
class="code-quote">"NoSuchCustomerException"</span> element=<span
class="code-quote">"tns:NoSuchCustomer"</span>></span>
<span class="code-tag"></wsdl:part></span>
- <span class="code-tag"></wsdl:message></span>
+<span class="code-tag"></wsdl:message></span>
</pre>
</div></div>
<p>The wsdl defines a SOAP/HTTP binding by default but can also be used to
build services based on JMS as I will show in my next post.</p>
Modified:
websites/production/cxf/content/docs/writing-a-service-with-spring.html
==============================================================================
--- websites/production/cxf/content/docs/writing-a-service-with-spring.html
(original)
+++ websites/production/cxf/content/docs/writing-a-service-with-spring.html Sun
Dec 16 17:48:07 2012
@@ -259,7 +259,7 @@ http://cxf.apache.org/jaxws http://cxf.a
<div class="code panel" style="border-width: 1px;"><div class="codeContent
panelContent">
<pre class="code-java">
ApplicationContext context = ...; <span class="code-comment">// your Spring
ApplicationContext
-</span>HellWorld client = (HelloWorld) context.getBean(<span
class="code-quote">"helloClient"</span>);
+</span>HelloWorld client = (HelloWorld) context.getBean(<span
class="code-quote">"helloClient"</span>);
</pre>
</div></div>