Fourty Six Pages
Fourty Six Pages
TipTec Development [email protected] http://www.agileskills2.org All rights reserved. No part of this publication may be reproduced, stored in a retrieval system or transmitted, in any form or by any means, electronic, mechanical, photocopying, recording, or otherwise, without the prior written permission of the publisher. 978-99937-929-1-8 Second edition March 2008
ISBN: Edition:
Foreword
Learn web services and Apache Axis2 easily
If you'd like to learn how to create web services (in particular, using Apache Axis2) and make some sense of various standards like SOAP, WSDL, MTOM, WS-Addressing, WS-Security, WS-Policy, XML Encryption and XML Signature, then this book is for you. Why?
It has a tutorial style that walks you through in a step-by-step manner. It is concise. There is no lengthy, abstract description. Many diagrams are used to show the flow of processing and high level concepts so that you get a whole picture of what's happening. The first 46 pages are freely available on http://www.agileskills2.org. You can judge it yourself.
How to work with Axis2 1.3. How to use Eclipse Europa (WTP 2.0) with Axis2. How to invoke asynchronous operations using WS-Addressing. How to encrypt and sign SOAP messages using Rampart. How to send user authentication information using Rampart. How to send and receive binary files using MTOM. How to integrate Axis2 with Spring.
Acknowledgments
I'd like to thank:
The Axis developers for creating Axis. The WSS4J developers for creating WSS4J. Anne Thomas Manes, an expert in web services, for reviewing the book (first edition). Helena Lei for proofreading this book. Eugenia Chan Peng U for doing book cover and layout design.
Table of Contents
Foreword.........................................................................................3 Learn web services and Apache Axis2 easily............................3 Unique contents in this book......................................................3 Target audience and prerequisites.............................................3 Acknowledgments.......................................................................4 Chapter 1 Designing the interface for a simple web service..........9 What's in this chapter?.............................................................10 Providing cross platform operations across the Internet..........10 RPC style web service..............................................................11 Document style web service.....................................................14 Determining the operation for a document style web service. .17 Port type...................................................................................18 Binding......................................................................................19 Port...........................................................................................20 Target namespace....................................................................22 WSDL.......................................................................................24 Summary..................................................................................25 Chapter 2 Implementing a web service........................................27 What's in this chapter?.............................................................28 Installing Eclipse.......................................................................28 Installing Axis2..........................................................................28 Installing the Axis2 plugin for Eclipse.......................................30 WSDL file for the web service..................................................31 RPC version of the web service...............................................35 Creating the WSDL file visually................................................36 Validating the WSDL file...........................................................45 Generating a service stub.........................................................46 Implementing the web service..................................................52 Deploying a web service...........................................................53 Creating a client using a client stub..........................................55 Undeploying a web service.......................................................58 Summary..................................................................................59 Chapter 3 Optimizing the development environment...................61 What's in this chapter?.............................................................62 Placing the class files into Axis directly....................................62 Making changes take effect immediately.................................64
Debugging a web service.........................................................66 Generating code automatically.................................................69 Generating client code automatically.......................................75 Summary..................................................................................76 Chapter 4 Understanding the calling process..............................77 What's in this chapter?.............................................................78 Calling a web service without a client stub...............................78 Seeing the SOAP messages....................................................79 Summary..................................................................................83 Chapter 5 Accepting multiple parameters....................................85 What's in this chapter?.............................................................86 Accepting multiple parameters.................................................86 Interoperability..........................................................................93 Summary..................................................................................93 Chapter 6 Sending and receiving complex data structures..........95 What's in this chapter?.............................................................96 Product query...........................................................................96 Avoiding the type suffix...........................................................105 Sending more data in a message..........................................107 Returning faults......................................................................108 Using encoded........................................................................116 Referring to existing XML elements.......................................117 Retrieving WSDL files using HTTP........................................122 Summary................................................................................122 Chapter 7 Sending binary files...................................................123 What's in this chapter?...........................................................124 Providing the image of a product...........................................124 Enabling MTOM in the service...............................................129 Interoperability........................................................................129 Summary................................................................................130 Chapter 8 Invoking lengthy operations.......................................131 What's in this chapter?...........................................................132 Providing lengthy operations..................................................132 Creating the WSDL for business registrations.......................135 Creating a new thread for lengthy processing........................139 Creating an asynchronous client............................................141 Inspecting the WS-Addressing header blocks.......................144 Avoiding modifications to the message receiver....................145 Summary................................................................................146
Chapter 9 Signing and encrypting SOAP messages.................149 What's in this chapter?...........................................................150 Private key and public key......................................................150 Digital signature......................................................................152 Signing and encrypting...........................................................153 Certificate and CA..................................................................154 Distinguished name................................................................155 Performance issue with asymmetric encryption.....................155 Keeping key pair and certificates in Java...............................156 Generating a key pair.............................................................157 Setting up a CA......................................................................161 Importing the certificate into the keystore..............................164 Installing Rampart...................................................................167 Signing SOAP messages.......................................................168 Supporting digital signatures in the web service....................174 Encrypting SOAP messages..................................................179 Security issues when performing both signing and encrypting ................................................................................................184 Protecting WS-Addressing header elements.........................187 Sending login information.......................................................188 Modifying services.xml programatically..................................194 Summary................................................................................196 Chapter 10 Integrating Your Web Services with Tomcat and Spring..........................................................................................199 What's in this chapter?...........................................................200 Axis server as a mini-web server............................................200 Installing Tomcat....................................................................200 Running the Axis server inside Tomcat..................................203 Invoking Spring beans from your web service.......................206 Summary................................................................................211 References..................................................................................213 Alphabetical Index......................................................................215
Chapter 1
Chapter 1
10
A web server at http://www.ttdev.com A web service at the path /SimpleService An operation Name: concat
Internet
However, you hope to provide a globally unique name to each operation so that you can have your "concat" operation while another person may have his
11
"concat" operation. So, in addition to the name, you may declare that the "concat" name above is in the "namespace" of http://ttdev.com/ss (see the diagram below). A namespace is just like a Java package, but it is not in a dot format like com.ttdev.foo; it is in the format of a URL. So, the full name of the operation will be "concat" in namespace http://ttdev.com/ss. The name "concat" is called the "local name". The full name is called a "QName (qualified name)":
A web server at http://www.ttdev.com A web service at the path /SimpleService An operation Local name: concat Namespace: http://ttdev.com/ss
Internet
You may wonder what this http://ttdev.com/ss namespace means. The answer is that it has no particular meaning. Even though it is a URL, it does NOT mean that you can use a browser to access this URL to get a web page (if you do, you may get a file not found error). The only important thing is that it must be globally unique. As I have registered the domain name ttdev.com, it must be globally unique. Note that the namespace is a completely different concept from the endpoint. The endpoint really is the location, while the namespace is just a unique id. I could easily move the web service to another web server and thus it will have a different endpoint, but the namespaces of its operations will remain unchanged.
12
An operation Local name: concat Namespace: http://ttdev.com/ss Parameters: s1: string s2: string Return: string
However, what does the above "string" type mean? Is it the Java string type? No, you can't say that because it must be language neutral. Fortunately, the XML schema specification defines some basic data types including a string type. Each of these data types has a QName as its id. For example: Data type string integer int Local name string namespace http://www.w3.org/2001/XMLSchema http://www.w3.org/2001/XMLSchema
... ... ... So, the interface of your operation should be written as:
An operation Local name: concat Namespace: http://ttdev.com/ss Parameters: s1: string in http://www.w3.org/2001/XMLSchema s2: string in http://www.w3.org/2001/XMLSchema Return: string in http://www.w3.org/2001/XMLSchema
Actually, in web services, a method call is called an "input message" and a parameter is called a "part". The return value is called an "output message" and may contain multiple parts. So, it is more correct to say:
An operation Local name: concat Namespace: http://ttdev.com/ss Input message: Part 1: Name: s1 Type: string in http://www.w3.org/2001/XMLSchema Part 2: Name: s2 Type: string in http://www.w3.org/2001/XMLSchema Output message: Part 1: Name: return Type: string in http://www.w3.org/2001/XMLSchema
When someone calls this operation, he can send you an XML element as the input message like:
13
Local name: concat Namespace: http://ttdev.com/ss Input message: Part 1: Name: s1 Type: string in http://www.w3.org/2001/XMLSchema Part 2: Name: s2 Type: string in http://www.w3.org/2001/XMLSchema Output message: Part 1: Name: return Type: string in http://www.w3.org/2001/XMLSchema The QName of this XML element is exactly that of the operation he is trying to call foo is a "namespace prefix" representing the http://ttdev.com/ss in the rest of this element including its children. <foo:concat xmlns:foo="http://ttdev.com/ss"> <s1>abc</s1> <s2>123</s2> </foo:concat>
There is a child element for each part. Each child element has the same name as that part ("s1" in this case).
Each child element has the same name as a part in the output message ("return" in this case).
This kind of web service is called "RPC style" web service (RPC stands for
14
"Remote Procedure Call"). That is, the operation QName and the names of the parts are used to create the input and output messages.
<xsd:schema targetNamespace="http://ttdev.com/ss" xmlns:xsd="http://www.w3.org/2001/XMLSchema"> <xsd:element name="concatRequest"> <xsd:complexType> It contains a <xsd:sequence> sequence of child <xsd:element name="s1" type="xsd:string"/> elements. The first <xsd:element name="s2" type="xsd:string"/> is an <s1> </xsd:sequence> element, then is an </xsd:complexType> <s2> element. </xsd:element> </xsd:schema>
Note that the schema is included in the interface of your web service:
15
A web service A schema <xsd:schema targetNamespace="http://ttdev.com/ss" xmlns:xsd="http://www.w3.org/2001/XMLSchema"> <xsd:element name="concatRequest"> <xsd:complexType> <xsd:sequence> <xsd:element name="s1" type="xsd:string"/> <xsd:element name="s2" type="xsd:string"/> </xsd:sequence> </xsd:complexType> </xsd:element> </xsd:schema> An operation Local name: concat Namespace: http://ttdev.com/ss Input message: Part 1: Name: concatRequest Element: concatRequest in http://ttdev.com/ss Output message: ...
As you can see above, a part may be declared as a particular element (<concatRequest> defined in your schema) or as any element having a particular type (string defined in XML schema specification). In either case it is identified using a QName. When someone calls this operation, he will send you a <concatRequest> element as the input message like:
<foo:concatRequest xmlns:foo="http://ttdev.com/ss"> <s1>abc</s1> <s2>123</s2> </foo:concatRequest>
Similarly, for the output message, you may specify that it contains only one part and that part is a <concatResponse> element:
16
A web service A schema <xsd:schema targetNamespace="http://ttdev.com/ss" xmlns:xsd="http://www.w3.org/2001/XMLSchema"> <xsd:element name="concatRequest"> <xsd:complexType> <xsd:sequence> <xsd:element name="s1" type="xsd:string"/> <xsd:element name="s2" type="xsd:string"/> </xsd:sequence> </xsd:complexType> </xsd:element> <xsd:element name="concatResponse" type="xsd:string"/> </xsd:schema> An operation Local name: concat Namespace: http://ttdev.com/ss Input message: Part 1: Name: concatRequest Element: concatRequest in http://ttdev.com/ss Output message: Part 1: Name: concatResponse Element: concatResponse in http://ttdev.com/ss This <concatResponse> element is a "simple type element", meaning that it has no attribute and can't have elements in its body (so only simple string or number in its body). <foo:concatResponse xmlns:foo="http://ttdev.com/ss">abc123</foo:concatResponse>
This kind of web service is called "document style" web service. That is, the input message will contain a single part only which is well defined in a schema. The same is true of the output message. If you go back to check the input message for the RPC style service, it should be revised as:
17
<foo:concat> xmlns:foo="http://ttdev.com/ss" xmlns:xsd="http://www.w3.org/2001/XMLSchema" xmlns:xsi="http://www.w3.org/2001/XMLSchema-Instance"> <s1 xsi:type="xsd:string">abc</s1> <s2 xsi:type="xsd:string">123</s2> </foo:concat> This attribute is used to explicitly state the XML data type of the body of an element ("abc" here). This is useful when the element (<s1>) itself is not defined in a schema. This "type" attribute is defined in the http://www.w3.org/2001/XMLSchema-Instance namespace, so you need to introduce a prefix for it:
This is because <foo:concat>, <s1> and <s2> are not defined in any schema and therefore you must explicitly state the XML element types of the content of <s1> and <s2>. Now, let's compare the input messages of the RPC style web service and the document style web service: RPC style
<foo:concat> xmlns:foo="http://ttdev.com/ss" xmlns:xsd="http://www.w3.org/2001/XMLSchema" xmlns:xsi="http://www.w3.org/2001/XMLSchema-Instance"> <s1 xsi:type="xsd:string">abc</s1> <s2 xsi:type="xsd:string">123</s2> </foo:concat>
Document style
Not much difference, right? The significant difference is that the former can't be validated with a schema while the latter can. Therefore, document style web service is becoming the dominant style. According to an organization called "WS-I (web services interoperability organization)", you should use document style web services only.
18
case, it will see if the input message is a <concatRequest> or a <someElement> to determine. What if both take a <someElement>? Then it is an error and it won't work:
A web service A schema ...
An operation Local name: concat Namespace: http://ttdev.com/ss Input message: Part 1: Name: concatRequest Element: concatRequest in http://ttdev.com/ss Output message: ... An operation Local name: bar Namespace: http://ttdev.com/ss Input message: Part 1: Name: barRequest Element: someElement in http://ttdev.com/ss Output message: ...
Port type
Actually, a web service doesn't directly contain a list of operations. Instead (see the diagram below), operations are grouped into one or more "port types". A port type is like a Java class and each operation in it is like a static method. For example, in the web service above, you could have a port type named "stringUtil" containing operations for strings, while having another port type named "dateUtil" containing operations for dates. The name of a port type must also be a QName:
19
A port type Local name: stringUtil Namespace: http://ttdev.com/ss An operation Local name: concat Namespace: http://ttdev.com/ss ... An operation Local name: bar Namespace: http://ttdev.com/ss ...
A port type Local name: dateUtil Namespace: http://ttdev.com/ss An operation Local name: ... Namespace: http://ttdev.com/ss ... An operation Local name: ... Namespace: http://ttdev.com/ss ...
Binding
Actually, a port type may allow you to access it using different message formats. The message format that you have seen is called the "Simple Object Access Protocol (SOAP)" format. It is possible that, say, the stringUtil port type may also support a plain text format:
concat(s1='abc', s2='123')
In addition to the message format, a port type may allow the message to be carried (transported) in an HTTP POST request or in an email. Each supported combination is called a "binding":
20
For example
For example
What bindings should your port type support? SOAP+HTTP is the most common combination. So, you should probably use this binding in practice.
Port
Suppose that there are just too many people using your web service, you decide to make it available on more than one computers. For example (see the diagram below), you may deploy the above binding 1 on computers c1, c2 and c3 and deploy binding 2 on c3. In that case it is said that you have four ports. Three ports are using binding 1 and one using binding 2:
21
Port 1
Port 2
Port 3 Port 4
c1
c2
c3
Note that it does NOT mean that the requests received by these three computers will be forwarded to a computer hiding behind for processing. Instead, it means that there is some software implementing the port type installed on these three computers. There is no requirement that the same piece of software is installed onto the different computers. For example, on c1, port 1 may be written in Java, while on c2, port 2 may be written in C#. The important point is that they both support the operations specified in port type stringUtil and the message format and transport specified in the binding 1. Port 4 must also implement the same operations too (same port type) but the message format and transport are different. To tell others about this arrangement, you include these ports in the interface of the web service:
22
Target namespace
You have been using the same namespace for the operation names, port type names and etc. in this web service. Do they have to be in the same namespace? By default, this is the case: There is a single namespace for a web service to put the names into. This is called the "target namespace" for the web service:
23
You've been using http://ttdev.com/ss as the target namespace. Is it a good choice? Basically a namespace is good as long as it is globally unique. So this one should be good. However, people may try to download a web page from this URL. When it doesn't work, they may suspect that your web service is out of order. To avoid this confusion, you may use something called URN (Uniform Resource Name) as the namespace. A namespace must be a URI. URI stands for Uniform Resource Identifier. There are two kinds of URI. One is URL such as http://www.foo.com/bar. The other is URN. A URN takes the format of urn:<some-object-type>:<someobject-id>. For example, International ISBN Agency has made a request to the IANA (International Assigned Numbers Association) that it would like to manage the object type named "isbn". After the request has been approved, the International ISBN Agency can declare that a URN urn:isbn:1-23-456789-0 will identify a book whose ISBN is 1-23-456789-0. It can determine the meaning of the object id without consulting IANA at all. Similarly, you may submit a request to IANA to register your Internet domain name such as foo.com as the object type. Then on approval you can use URNs like urn:foo.com:xyz to identify an object xyz in your company. What xyz means or its format is completely up to you to decide. For example, you may use urn:foo.com:product:123 (so xyz is product:123) to mean the product #123 produced by your company, or urn:foo.com:patent/123 (so xyz is patent/123) to mean a patent coded 123 in your company.
24
However, this will create a lot of workload on you and on IANA (one registration per company!). As you have already registered the domain name foo.com, it is unlikely that someone will use it in their URN's. So, you may want to go ahead and use foo.com, or, as many people do, foo-com as the object type without registration with IANA and hope that there won't be any collision. An XML namespace must be a URI. You can use a URL or a URN. Functionally there is no difference at all. For example, you may use say urn:ttdev.com:ss as the target namespace for your web service instead of http://ttdev.com/ss without changing any functionality. By the way, if you are going to lookup references on URN, do NOT try to find terms like "object type" or "object id". The official terms are:
URN namespace specific string (NSS) urn:isbn:1-23-456789-0 URN namespace identifier (NID). This namespace is NOT the namespace in XML!
WSDL
By now you have finished designing the interface for your web service:
25
It fully describes your web service. This description language (terms and concepts) is called "WSDL (Web Services Description Language)".
Summary
A web service is platform neutral, language neutral and can be accessed across the Internet. A web service has one or more ports. Each port is a binding deployed at a certain network address (endpoint). A binding is a port type using a particular message format and a particular transport protocol. A port type contains one or more operations. An operation has an input message and an output message. Each message has one or more parts. Each part is either a certain element defined in the schema of the web service, or any element belonging to a certain element type in that schema. All this information is fully described in WSDL. To call a RPC style web service, one will create an XML element with the name of the operation and a child element for each of its input message part. To call a document style web service, one will just send the one and only part of its input message. Because the XML element used to call a RPC style web service is not defined in any schema, for better interoperability, one should create document style web services. The web service, and each of its ports, bindings, port types and operations, has a QName uniquely identifying it. A QName has a local part and an XML
26
namespace. An XML namespace is a URI that is globally unique. By default the names of all these components are put into the target namespace of the web service. There are two kinds of URI: URL and URN. URN takes the form of urn:<NID>:<NSS>. You can use either as an XML namespace. The only difference is that a URL is suggesting that it is the location of an object, while a URN is purely an id of the object.
27
Chapter 2
Chapter 2
28
Installing Eclipse
You need to make sure you have Eclipse v3.3 (or later) installed and it is the bundle for Java EE (the bundle for Java SE is NOT enough). If not, go to http:// www.eclipse.org to download the Eclipse IDE for Java EE Developers (e.g., eclipse-jee-europa-fall-win32.zip). Unzip it into c:\eclipse. Then, create a shortcut to run "c:\eclipse\eclipse -data c:\workspace". This way, it will store your projects under the c:\workspace folder. To see if it's working, run it and make sure you can switch to the Java EE perspective:
BUG ALERT: If you're using Eclipse 3.3.1, there is a serious bug in it: When visually editing WSDL files Eclipse will frequently crash with an OutOfMemoryError. To fix it, modify c:\eclipse\eclipse.ini:
-showsplash org.eclipse.platform --launcher.XXMaxPermSize 256m -vmargs -Xms40m -Xmx256m -XX:MaxPermSize=256m
Installing Axis2
Next, go to http://ws.apache.org/axis2 to download the "Standard Binary Distribution" (e.g. axis2-1.3-bin.zip). Unzip it into c:\axis. To run the Axis server, change into c:\axis\bin and run axis2server.bat. You should see:
29
It means that there is an existing web service called "Version" available. Click on that "Version" link and you should see its WSDL file:
30
31
32
Target namespace: http://ttdev.com/ss Schema <xsd:schema targetNamespace="http://ttdev.com/ss xmlns:tns="http://ttdev.com/ss" xmlns:xsd="http://www.w3.org/2001/XMLSchema"> <xsd:element name="concatRequest"> <xsd:complexType> <xsd:sequence> <xsd:element name="s1" type="xsd:string"/> <xsd:element name="s2" type="xsd:string"/> </xsd:sequence> </xsd:complexType> </xsd:element> <xsd:element name="concatResponse" type="xsd:string"/> </xsd:schema> Port type Name: ... Operations: Name: concat Input msg: Part 1: Name: concatRequest Element: concatRequest element as defined in the schema Output msg: Part 1: Name: concatRequest Element: concatResponse element as defined in the schema Binding Name: ... Port type: Format: SOAP Transport: HTTP Port Name: ... Binding: Endpoint: ...
33
The names of the port types, operations, bindings and ports will be put into this namespace
All the elements and element types defined in the schema will be put into this namespace
<?xml version="1.0" encoding="UTF-8"?> <wsdl:definitions xmlns:soap="http://schemas.xmlsoap.org/wsdl/soap/" xmlns:tns="http://ttdev.com/ss" xmlns:wsdl="http://schemas.xmlsoap.org/wsdl/" xmlns:xsd="http://www.w3.org/2001/XMLSchema" name="SimpleService" targetNamespace="http://ttdev.com/ss"> <wsdl:types> <xsd:schema targetNamespace="http://ttdev.com/ss" Put the schema xmlns:tns="http://ttdev.com/ss"> into the <types> <xsd:element name="concatRequest"> section <xsd:complexType> <xsd:sequence> <xsd:element name="s1" type="xsd:string"/> <xsd:element name="s2" type="xsd:string"/> </xsd:sequence> </xsd:complexType> The input message </xsd:element> <xsd:element name="concatResponse" type="xsd:string"/> contains a single part. The name of the part </xsd:schema> is unimportant. </wsdl:types> <wsdl:message name="concatRequest"> <wsdl:part name="concatRequest" element="tns:concatRequest" /> </wsdl:message> <wsdl:message name="concatResponse"> <wsdl:part name="concatResponse" element="tns:concatResponse" /> </wsdl:message> <wsdl:portType name="SimpleService"> The output message <wsdl:operation name="concat"> contains a single part. <wsdl:input message="tns:concatRequest" /> The name of the part <wsdl:output message="tns:concatResponse" /> is unimportant. </wsdl:operation> </wsdl:portType> ... concat operation </wsdl:definitions>
This defines the schema and the port type. To define the binding and the port:
34
<?xml version="1.0" encoding="UTF-8"?> <wsdl:definitions xmlns:soap="http://schemas.xmlsoap.org/wsdl/soap/" xmlns:tns="http://ttdev.com/ss" xmlns:wsdl="http://schemas.xmlsoap.org/wsdl/" xmlns:xsd="http://www.w3.org/2001/XMLSchema" name="SimpleService" targetNamespace="http://ttdev.com/ss"> The binding uses the SOAP format <wsdl:types> and HTTP transport. SOAP ... supports RPC and document styles. </wsdl:types> Here you use the document style. <wsdl:message name="concatRequest"> <wsdl:part name="concatRequest" element="tns:concatRequest" /> </wsdl:message> <wsdl:message name="concatResponse"> <wsdl:part name="concatResponse" element="tns:concatResponse" /> </wsdl:message> <wsdl:portType name="SimpleService"> This binding <wsdl:operation name="concat"> implements this <wsdl:input message="tns:concatRequest" /> port type <wsdl:output message="tns:concatResponse" /> </wsdl:operation> </wsdl:portType> <wsdl:binding name="SimpleServiceSOAP" type="tns:SimpleService"> <soap:binding style="document" transport="http://schemas.xmlsoap.org/soap/http" /> </wsdl:binding> The port supports this binding <wsdl:service name="SimpleService"> <wsdl:port binding="tns:SimpleServiceSOAP" name="SimpleServiceSOAP"> The port <soap:address location="http://localhost:8080/axis2/services/SimpleServiceSOAP"/> </wsdl:port> </wsdl:service> </wsdl:definitions> URL to the Axis server Must be the word Name of the port "services" The endpoint of the port
35
<wsdl:definitions ...> ... <wsdl:message name="concatRequest"> <wsdl:part name="concatRequest" element="tns:concatRequest" /> </wsdl:message> <wsdl:message name="concatResponse"> <wsdl:part name="concatResponse" element="tns:concatResponse " /> </wsdl:message> ... <wsdl:binding name="SimpleServiceSOAP" type="tns:SimpleService"> <soap:binding style="document" transport="http://schemas.xmlsoap.org/soap/http" /> <wsdl:operation name="concat"> <soap:operation The soap action is used soapAction="http://ttdev.com/ss/concat" /> to tell the HTTP server <wsdl:input> (Tomcat) that it is a <soap:body parts="concatRequest" use="literal" /> SOAP message and its </wsdl:input> purpose. It is up to the <wsdl:output> HTTP server to <soap:body parts="concatResponse" use="literal" /> interpret the actual </wsdl:output> meaning. In your case, </wsdl:operation> it is useless because </wsdl:binding> Axis will handle the ... Literal means the message SOAP message, not </wsdl:definitions> parts are already in XML. No Tomcat. need to convert (encode) it further. Put the input message parts listed The output message here (just one in this case: the A SOAP message is like a mail. The parts listed here will <concatRequest> element) into the outermost is an <Envelope>. The be put into the body body of the SOAP request main content is in a <Body>. One or of the SOAP message: more headers can be put into response message. <Header>. <soap-env:Envelope xmlns:soap-env="http://schemas.xmlsoap.org/soap/envelope/"> <soap-env:Header> The <Header> is optional <...> A "header entry" or "header element". It is </...> used like email headers. <...> Another header element </...> </soap-env:Header> It must have a <Body>. The real message <soap-env:Body> content is put there. <foo:concatRequest...> This is called a "body entry" or "body <s1>...</s1> element" <s2>...</s2> </foo:concatRequest> Another body element. However, in most <...> cases you should have a single message </...> part and thus a single body element only. </soap-env:Body> Otherwise interoperability will be affected. </soap-env:Envelope>
36
<wsdl:definitions ...> <wsdl:types> <xsd:schema ...> <xsd:element name="concatRequest"> <xsd:complexType> Don't need these <xsd:sequence> any more <xsd:element name="s1" type="xsd:string"/> <xsd:element name="s2" type="xsd:string"/> </xsd:sequence> </xsd:complexType> </xsd:element> <xsd:element name="concatResponse" type="xsd:string"/> </xsd:schema> <wsdl:types/> <wsdl:message name="concatRequest"> The input message has two parts. <wsdl:part name="s1" type="xsd:string" /> Each part is of element type <wsdl:part name="s2" type="xsd:string" /> xsd:string (not elements). </wsdl:message> <wsdl:message name="concatResponse"> The output message has one part. <wsdl:part name="return" type="xsd:string" /> It is of element type xsd:string (not </wsdl:message> elements). <wsdl:portType name="SimpleService"> <wsdl:operation name="concat"> <wsdl:input message="tns:concatRequest" /> <wsdl:output message="tns:concatResponse" /> </wsdl:operation> RPC style </wsdl:portType> <wsdl:binding name="SimpleServiceSOAP" type="tns:SimpleService"> <soap:binding style="rpc" transport="http://schemas.xmlsoap.org/soap/http" /> <wsdl:operation name="concat"> Two message parts are listed. <soap:operation soapAction="http://ttdev.com/ss/concat" /> So, they will be included into the <Body> (but not directly). As it is <wsdl:input> a RPC style service, the caller <soap:body parts="s1 s2" use="literal" /> must create an element with the </wsdl:input> QName of the operation and then <wsdl:output> <soap:body parts="return" use="literal" /> add each message part listed here as a child element. So it </wsdl:output> should still have a single element </wsdl:operation> in the <Body>: </wsdl:binding> ... </wsdl:definitions> <soap-env:Envelope xmlns:soap-env="http://schemas.xmlsoap.org/soap/envelope/"> <soap-env:Header> ... </soap-env:Header> <soap-env:Body> <foo:concat ...> <s1>...</s1> <s2>...</s2> </foo:concat> </soap-env:Body> </soap-env:Envelope>
No schema to validate it
As RPC style is not good for interoperability, you'll continue to use the document style version.
37
use the Eclipse to do it. First, create a new Java project named SimpleService in Eclipse:
Make sure you use separate folders for sources and class files. Then go ahead and complete the creation of the project. Next, right click the project and choose "New | Other" and then "Web Services | WSDL":
If you don't see this option, it means that you haven't installed the Java EE version of Eclipse. If it is working, click "Next" and enter SimpleService.wsdl as the filename:
38
Use the SOAP format Remember, you're using the document style (the only input message part is the whole message) and literal use for that part.
39
This is the WSDL code. To edit it visually, click the "Design" tab at the bottom of the editor window. Then you'll see:
The service A binding (SOAP and HTTP) Port type
Part name
40
SimpleService:
For the moment, the input part is an <concat> element. You'd like to change it to <concatRequest>. But for now, put the cursor on the arrow to its right first. The arrow will turn into blue color. Wait a couple of seconds then a preview window will appear showing the definition of the <concat> element:
Clicking anywhere else will make that preview window disappear. To edit the schema definition, click on the blue arrow. A new editor window will appear:
41
To edit it visually, click the "Design" tab at the bottom, you'll see:
"e" means an element This symbol means that it is a <sequence>. In this case there is only one child element <in> which is a string: <xsd:complexType> <xsd:sequence> <xsd:element name="in" type="xsd:string"/> </xsd:sequence> </xsd:complexType>
Right click it and choose "Add Element" and set the name to "s2":
By default the type is already set to string. If you wanted it to be say an int instead, you would double click on the type and it would become a combo box
42
If you wanted s2 to appear before s1 in the sequence, you could drag it and drop it before s1:
But for now, make sure it is s1 first and then s2. Next, right click on the <concat> element and choose "Refactor | Rename", then change its name to concatRequest:
You're done with the <concatRequest> element. Now return to the WSDL editor to work on the response message. For the moment, the <concatResponse> is like:
43
However, in your design, the response is simple type element, not a complex type element:
Its body contains a string instead of other elements <foo:concatResponse xmlns:foo="http://ttdev.com/ss">abc123</foo:concatResponse>
44
Choose "string":
You can also type "s" so that only those starting with "s" will be listed
That's it. To review the whole schema, click on the icon at the upper left corner:
45
46