diff --git a/src/docbkx/client.xml b/src/docbkx/client.xml
index 1aeb134b..a9a1cc78 100644
--- a/src/docbkx/client.xml
+++ b/src/docbkx/client.xml
@@ -121,8 +121,8 @@ public class WebServiceClient {
In order to facilitate the sending of plain Java objects, the WebServiceTemplate
has a number of send methods that take an object as an argument for a message's data content.
The method marshalSendAndReceive in WebServiceTemplate
- delegates the conversion of the request object to XML to a Marshaller, and
- the conversion of the response XML to an object to an Unmarshaller.
+ delegates the conversion of the request object to XML to a Marshaller, and
+ the conversion of the response XML to an object to an Unmarshaller.
For more information about marshalling and unmarshaller, refer to .
By using the marshallers, you and your application code can focus on the business object that is being
sent or received and not be concerned with the details of how it is represented as XML.
@@ -133,7 +133,7 @@ public class WebServiceClient {
- WebServiceMessageCallback
+ WebServiceMessageCallback
To accommodate the setting of SOAP headers, and other settings on the message, the
diff --git a/src/docbkx/oxm.xml b/src/docbkx/oxm.xml
index d3394128..c0f8cfa1 100644
--- a/src/docbkx/oxm.xml
+++ b/src/docbkx/oxm.xml
@@ -68,7 +68,7 @@ public interface Marshaller {
void marshal(Object graph, Result result)
throws XmlMappingException, IOException;
}]]>
- The Marshaller interface has one main method, which marshals the given
+ The Marshaller interface has one main method, which marshals the given
object to a given javax.xml.transform.Result. Result is a tagging
interface that basically represents an XML output abstraction: concrete implementations wrap various XML
representations, as indicated in the table below.
diff --git a/src/docbkx/server.xml b/src/docbkx/server.xml
index dd236b7c..ffae9ca7 100644
--- a/src/docbkx/server.xml
+++ b/src/docbkx/server.xml
@@ -108,7 +108,7 @@
MessageDispatcherServlet
- The MessageDispatcherServlet is a standard Servlet which
+ The MessageDispatcherServlet is a standard Servlet which
conveniently extends from the standard Spring Web DispatcherServlet, and wraps
a MessageDispatcher. As such, it combines the attributes of these into one:
as a MessageDispatcher, it follows the same request handling flow as described
@@ -175,7 +175,7 @@
As you can see, the PayloadEndpoint interface defines a single method that
is invoked with the XML payload of a request (typically the contents of the SOAP Body, see
- ). The returned Source, if any, is stored in the
+ ). The returned Source, if any, is stored in the
response XML message. While the PayloadEndpoint interface is quite abstract,
Spring-WS offers a lot of endpoint implementations out of the box that already contain a lot of the
functionality you might need. The PayloadEndpoint interface just defines the