Programming Web Services for WebLogic Server
![]() |
![]() |
![]() |
![]() |
![]() |
![]() |
This section describes the contents and organization of this guide—Programming Web Services for WebLogic Server.
This document is a resource for software developers who develop WebLogic Web Services. It also contains information that is useful for business analysts and system architects who are evaluating WebLogic Server or considering the use of WebLogic Web Services for a particular application.
The topics in this document are relevant during the design and development phases of a software project. The document also includes topics that are useful in solving application problems that are discovered during test and pre-production phases of a project.
This document does not address production phase administration, monitoring, or performance tuning Web Service topics. For links to WebLogic Server® documentation and resources for these topics, see Related Documentation.
It is assumed that the reader is familiar with J2EE and Web Services concepts, the Java programming language, Enterprise Java Beans (EJBs), and Web technologies. This document emphasizes the value-added features provided by WebLogic Web Services and key information about how to use WebLogic Server features and facilities to get a WebLogic Web Service application up and running.
This document is organized as follows:
clientgen
.weblogic-webservices.xml
.
This document contains Web Service-specific design and development information.
For comprehensive guidelines for developing, deploying, and monitoring WebLogic Server applications, see the following documents:
In addition to this document, BEA Systems provides a variety of code samples for Web Services developers. The examples and tutorials illustrate WebLogic Web Services in action, and provide practical instructions on how to perform key Web Service development tasks.
BEA recommends that you run some or all of the Web Service examples before programming your own application that use Web Services.
Many of the samples described in this guide are available for download from the dev2dev CodeShare site. Each example is self-contained and requires only that you install WebLogic Server, create a domain, and start a server instance. All needed files, such as the JWS file that implements the sample Web Service, the Java client to invoke the Web Service, and the Ant build.xml
file to build, deploy, and run the example are included in the ZIP file.
MedRec is an end-to-end sample J2EE application shipped with WebLogic Server that simulates an independent, centralized medical record management system. The MedRec application provides a framework for patients, doctors, and administrators to manage patient data using a variety of different clients.
MedRec demonstrates WebLogic Server and J2EE features, and highlights BEA-recommended best practices. MedRec is included in the WebLogic Server distribution, and can be accessed from the Start menu on Windows machines. For Linux and other platforms, you can start MedRec from the WL_HOME\samples\domains\medrec
directory, where WL_HOME
is the top-level installation directory for WebLogic Server.
As companion documentation to the MedRec application, BEA provides development tutorials that provide step-by-step procedures for key development tasks, including Web Service-specific tasks. See Application Examples and Tutorials for the latest information.
WebLogic Server optionally installs API code examples in WL_HOME
\samples\server\examples\src\examples\webservices
, where WL_HOME
is the top-level directory of your WebLogic Server installation. You can start the examples server, and obtain information about the samples and how to run them from the WebLogic Server Start menu.
Additional API examples for download can be found at http://dev2dev.bea.com. These examples include BEA-certified ones, as well as examples submitted by fellow developers.
For release-specific information, see these sections in WebLogic Server Release Notes:
Web Services is one of the most important themes of J2EE 1.4, and thus of WebLogic Server 9.0. J2EE 1.4 introduces a standard Java component model for authoring Web Services with the inclusion of new specifications such as Implementing Enterprise Web Services (JSR-921) and Java API for XML Registries (JAX-R), as well as the updated JAX-RPC and SAAJ specifications. Because the implementation of Web Services is now a J2EE standard, there have been many changes between 8.1 and 9.0 WebLogic Web Services.
In particular, the programming model used to create WebLogic Web Services has changed to take advantage of the powerful new metadata annotations feature introduced in Version 5.0 of the JDK. In 9.0 you use JWS metadata annotations to annotate a Java file with information that specifies the shape and behavior of the Web Service. These JWS annotations include both the standard ones defined by the Web Services Metadata for the Java Platform specification (JSR-181), as well as additional WebLogic-specific ones. This JWS-based programming model is similar to that of WebLogic Workshop 8.1, although in 8.1 the metadata was specified via Javadoc tags. The WebLogic Web Services programming model in 8.1, by contrast, used the many attributes of the Web Service Ant tasks, such as servicegen
, to specify the shape and behavior of the Web Service. Occasionally programmers had to update the deployment descriptor file (webservices.xml
) manually to specify characteristics of the Web Service. The new programming model makes implementing Web Services much easier and quicker.
See Programming the JWS File, for more information.
Additionally, the runtime environment upon which WebLogic Web Services 9.0 run has been completely rewritten to support the Implementing Enterprise Web Services, Version 1.1 (JSR-921), specification. This means that Web Services created in 9.0 are internally implemented differently from those created in 8.1 and both run in completely different runtime environments. The 8.1 runtime environment has been deprecated, although it will continue to be supported for a limited number of future WebLogic Server releases. This means that even though 8.1 WebLogic Web Services run correctly on WebLogic Server 9.0, this may not always be true and BEA recommends that you upgrade the 8.1 Web Services to run in the 9.0 runtime environment.
See Anatomy of a WebLogic Web Service for more information.
The following list summarizes the main features of WebLogic Web Services and provides links for additional detailed information:
See Use of WS-Policy Files for Web Service Reliable Messaging Configuration and Using WS-Policy Files for Message-Level Security Configuration.
This section describes, at a high-level, the major changes that have occurred between the Beta and GA versions of this release of WebLogic Web Services. The section does not describe new functionality; see Summary of WebLogic Web Services Features for the complete list of Web Service features in this release.
jwsc
Ant task almost always creates a Java class-implemented Web Service, packaged in a WAR file. These details, however, are hidden from the programmer.jwsc
Ant task has changed so that it now compiles all Java code into class files and packages everything into a WAR or JAR file and creates an exploded EAR directory structure. In Beta you had to compile and package everything yourself.jwsc
Ant task definition has changed from weblogic.wsee.tools.anttasks.JWSWSEEGenTask
to weblogic.wsee.tools.anttasks.JwscTask
.See jwsc.
wsdl2service
Ant task (task definition weblogic.wsee.tools.anttasks.Wsdl2ServiceAntTask
) no longer exists. Programmers should now use the wsdlc
Ant task (task definition weblogic.wsee.tools.anttasks.WsdlcTask
) which generates a JWS interface and partial implementation which programmers update with their business code.javax.jws.security.SecurityRoles|SecurityIdentity
annotations are in a different package: weblogic.jws.security.SecurityRoles|SecurityIdentity
.
![]() ![]() |
![]() |
![]() |