uCosminexus Application Server, Web Service Development Guide

[Contents][Glossary][Index][Back][Next]

15.1 Default mapping from WSDL to Java

When the cjwsimport command is executed, WSDL is mapped to the Java source. The following table describes the correspondence relationship in this case:

Table 15-1 List of mapping of WSDL to Java source

No. WSDL Java source Reference
1 Namespace Package name 15.1.1
2 Port type SEI name 15.1.2
3 Operation Method name 15.1.3
4 Part Parameter and return value 15.1.4, 15.1.5
5 Type Parameter and return value 15.1.6
6 Fault Exception class 15.1.7
7 Binding javax.jws.soap.SOAPBinding annotation 15.1.8
8 Service The serviceName attribute of the javax.jws.WebService annotation 15.1.9
Organization of this section
15.1.1 Mapping a namespace to a package name
15.1.2 Mapping a port type to a SEI name
15.1.3 Mapping from an operation to a method name
15.1.4 Mapping a message part to a parameter and return value (For wrapper style)
15.1.5 Mapping the message part to the parameter and return value (For non-wrapper style)
15.1.6 Mapping the schema type to the Java type
15.1.7 Mapping the fault to the exception class
15.1.8 Mapping the binding extension element to the parameter
15.1.9 Mapping the service and port to the service class
15.1.10 Mapping to the skeleton class
15.1.11 Precautions on mapping from WSDL to Java