-
2010-04-06
10/366,246
2003-02-13
US 7,693,955 B2
2010-04-06
-
-
William C Vaughn, Jr. | Kristie D Shingles
2026-02-14
A Web service can be deployed using a backend component such as an Enterprise JavaBean or Java class. The operation of the Web service can be mapped to methods of the backend component. An interceptor can provide access to SOAP contents of a Web service invocation message, passing contents to and from the backend component. The interceptor writes response data received from the backend component to a Web service response message, which can be sent to the client invoking the Web service. A codec, such as a serializer or deserializer, can be used to convert data in the Web service invocation message and invocation response message between XML representations and Java objects for use with the backend component.
Get notified when new applications in this technology area are published.
G06F15/16 IPC
Digital computers in general ; Data processing equipment in general Combinations of two or more digital computers each having at least an arithmetic unit, a program unit and a register, e.g. for a simultaneous processing of several programs
G06F15/177 IPC
Digital computers in general ; Data processing equipment in general; Combinations of two or more digital computers each having at least an arithmetic unit, a program unit and a register, e.g. for a simultaneous processing of several programs Initialisation or configuration control
This application claims priority to U.S. Provisional Patent Application No. 60/359,098, filed Feb. 22, 2002, entitled âWEB SERVICES RUNTIME ARCHITECTURE,â as well as U.S. Provisional Patent Application No. 60/359,231, filed Feb. 22, 2002, entitled âWEB SERVICES PROGRAMMING AND DEPLOYMENT,â each of which is hereby incorporated herein by reference.
A portion of the disclosure of this patent document contains material which is subject to copyright protection. The copyright owner has no objection to the facsimile reproduction by anyone of the patent document of the patent disclosure, as it appears in the Patent and Trademark Office patent file or records, but otherwise reserves all copyright rights whatsoever.
The present invention relates to the implementation of Web services.
Web services are becoming an integral part of many application servers, with an importance that can rival HTTP or RMI stacks. Java standards for Web Services are being developed through the Java Community Process. Presently, there is no complete and easy to use model for developing and deploying Web services. Further, when developing Web services, it is necessary for the developer to fully understand the complicated Web Service Definition Language (WSDL). The need to learn yet another complicated language is undesirable to many developers.
Systems and methods in accordance with one embodiment of the present invention can overcome deficiencies in present approaches to developing and deploying a Web service. A backend component such as an Enterprise JavaBean or Java class is used to implement a Web service. The operation of the Web service is mapped to methods of the backend component.
An interceptor provides access to SOAP contents of a Web service invocation message. The interceptor can read the Web service invocation message and pass the contents of the message to the backend component. The interceptor can receive response data back from the backend component and write SOAP contents to a Web service response message. This response message can be sent to the client invoking the Web service.
A codec, such as a serializer or deserializer, can be used to convert data in the Web service invocation message and invocation response message between XML representations and Java objects for use with the backend component. A JMS connection factory can be utilized for using JMS with the Web service. An autotype method can generate custom codecs for custom data conversion.
Other features, aspects, and objects of the invention can be obtained from a review of the specification, the figures, and the claims.
FIG. 1 is a diagram of a system in accordance with one embodiment of the present invention.
FIG. 2 is flowchart for a method that can be used with the system of FIG. 1.
Systems and methods for deploying a Web service in accordance with one embodiment of the present invention follow an âexport from Javaâ model. Using such a model, a Web service developer can create Java interfaces and components without needing to know the Web Service Definition Language (WSDL). An Web service runtime can be used to generate any WSDL description that might be needed by remote clients in order to access the Web service. This approach can be suitable to developers who may be familiar with Java and J2EE, but do not wish to immerse themselves in the complicated WSDL specification.
An Web service runtime in accordance with one embodiment of the present invention may not support an implementation of Web services that must conform to a fixed WSDL description, although other embodiments may support these implementations. A service developer understand WSDL, but such understanding is not required. Support for an âimport from WSDLâ model can also be supported. Tools, such as may be developed by third parties, can be used to introspect WSDL and generate a template âexport from Javaâ implementation that closely conforms to the input WSDL.
A Web service can be implemented using certain types of components. Some of these components are shown in FIG. 1, a diagram of a Web service container 134 that can be used to implement Web services. The HTTP protocol adapter 102 of the Web container 100 is shown passing message context to, and receiving message context from, a container driver 104. The container driver 104 receives the message context from the protocol adapter 102 and sends the message context to the registered inbound interceptors 106, 108, 110. After extracting the operation parameters and performing any necessary data binding, such as by using a Java Binding codec 126, a SOAP codec 128, an XML codec 130, or a custom codec 132, the container driver 104 submits the operation request to the appropriate invocation handler 112, such as for EJB 114 or JMS 116, or to a customized invocation handler 118. After receiving data back from the invocation handler 112, the container driver 104 can perform any data unbinding using the appropriate codecs 126, 128, 130, 132 and send the response to the outbound interceptors 106, 108, 110. The container driver 104 can then return the response to the protocol adapter 102. The protocol adapter, interceptors, and invocation handler can each have access to an invocation context object 120 The invocation handler 112 can also provide context access to the component 122 to which it delegates, which can be contained in a component container 124. Backend J2EE components such as Enterprise JavaBeans (EJBs) can be used as a component 122 for the invocation handler 112, as well as for interceptor components 106, 108, 110. A specific interceptor that can be used, referred to as a flow handler, can provide access to SOAP messages. The codecs 126, 128, 130, 132, also referred to as serializers or deserializers, can be used to convert data between XML representation and Java objects.
The operations of a Web service can be mapped to methods of these backend J2EE components. A single Web service can be implemented in terms of multiple backend components, with each operation being associated with a particular backend component.
Web service operation invocations can be sent that are encoded in SOAP messages. The parameters can be mapped between Java data types and XML using serializer and deserializer classes, or codecs. An Web service runtime can contain a set of hardwired codecs to support built-in data types in the SOAP specification. If non-built-in data types are needed, the runtime can require that codecs be provided by the application. An application can include tool support for generating codecs by introspecting the data types used in many types of EJBs. Such support can be implemented through an autotype method, and referred to as an Autotyper.
Sometimes an application may need access to the SOAP contents of an invocation message. In this case, a user can write an interceptor referred to as a âflow handlerâ. Registered flow handlers can be called prior to, and immediately after, the invoke of a backend component. A flow handler implementation can receive access to the SOAP request and response, and can read or write accordingly. Multiple flow handlers can be chained together.
The developer of a Web service in accordance with one embodiment of the present invention can perform the following steps to build and deploy a Web service. Command-line tools can be provided. Ant tasks can facilitate the use of these tools. A master service generation task, such as âServiceGenâ, can perform all these steps using one task.
A method that can be used to build and deploy a Web service in accordance with one embodiment of the present invention is shown in FIG. 2. The method includes first developing the backend implementation components 200. EJB components and their dependent classes can be packaged in ejb-jars. If JMS is used, JMS destinations and connection factories can be configured in a configuration file such as config.xml.
Data types can then be implemented, if necessary 202. If data types other than built-in data types are desired, serializers and deserializers can be developed for these custom types. This can be accomplished through an Autotyper Ant task, or can be done manually.
SOAP message processing can also be implemented 204. If an application needs to process information from SOAP headers in a request or response, or in other parts of the SOAP message not encoded into the backend component parameters, a SOAP interceptor called a flow handler can be developed. A Web service deployment descriptor can be edited using the flow handler 206.
A Web service home page can be generated that describes the deployed Web service, provides a link to the WSDL downloadable client, and provides a simple GUI for testing the Web service 208. This can be accomplished using a page generation Ant task.
A Java client jar can be generated to contain a thin Java client 210. The thin Java client can be downloaded by a client and used to invoke a Web Service, such as from a JDK 1.3 Virtual Machine. This can be accomplished using a client generation Ant task. A Web service EAR can be packaged and deployed on the application server 212.
A service generation master task can be used to perform many of these steps using task configuration parameters. This can be useful for simple Web services. More complex Web services may require more specific tasks, or at least manual configuration and packaging.
Backend components that can be used to implement a Web service can include stateless EJBs, JMS message consumers/producers, and Java classes. JMS message consumers and producers may not have methods that can be directly associated with operations. Therefore, an object-like pseudo-interface to JMS destinations can be defined. This interface can include âsendâ and âreceiveâ methods for sending and receiving messages from a Web service to a JMS destination. The payload of these messages can be any data type supported by a Web service runtime. While in principle any JMS message consumer can implement a JMS backend component, a message-driven bean may be preferable for some embodiments.
Certain Java types can be mapped directly to SOAP specified types. The conversion of these Java types can be handled natively by the Web service runtime. These Java types do not require the application to specify an XML representation, nor do they require any serializers or deserializers. These Java types are defined in JAX-RPC:
Applications can use data types other than those that are built-in. To avoid the need for manually defining serializers and XML schemas for every non-built-in type, an Autotyper Ant task can be provided that can generate Java or XML representations, serializer/deserializer classes, and type mappings for most data types used in applications. A command-line version of the Ant task can also be used.
An autotyping task can ensure that for every complex type, the following is available:
| TABLE 1 |
| Autotype task parameters |
| Attribute | Description | Required |
| ejbJar | The ejb-jar file containing the | Yes, unless javaClasses |
| backend EJBs. If ejbJar is | or wsdl is specified | |
| specified, the task runs in Java | ||
| mode. | ||
| javaClass | A comma-separated list of Java | Yes, unless wsdl or |
| Components | class Web service | ejbJar is specified. |
| implementations. If | ||
| javaClassComponents is | ||
| specified, the task runs in Java | ||
| mode. | ||
| wsdl | The file path or URL for a | Yes, unless |
| WSDL file containing schema | javaClassComponents or | |
| definitions of types. If wsdl is | ejbJar is specified. | |
| specified, task runs in WSDL | ||
| mode. | ||
| includeEjbs | A comma-separated list of ejb- | No. May not be specified |
| names for EJBs that should have | unless ejbJar is also | |
| types generated. | specified. | |
| excludeEjbs | A comma separated list of ejb- | No. May not be specified |
| names for EJBs that should not | unless ejbJar is also | |
| have types generated. | specified. | |
| serviceName | The name of the service in the | No. |
| Web service deployment | ||
| descriptor of the service with | ||
| which the types are to be | ||
| associated. Default is a service | ||
| named ânewServiceâ. | ||
| destWar | Output a type information | Yes. |
| suitable for inclusion in a Web | ||
| service deployment WAR. The | ||
| value of destWar should be a | ||
| WAR file or exploded WAR | ||
| directory into which to write the | ||
| deployment descriptor, | ||
| serializers, type descriptions. | ||
| overwrite | Overwrite the contents of the | No. |
| destination WAR, specifically | ||
| the serializer classes and | ||
| deployment descriptor. If not, | ||
| then a merge of deployment | ||
| descriptors and WAR contents | ||
| will be attempted. True or False; | ||
| default is True. | ||
| expand | Whether to explicitly write out | No. |
| Methods | separate operations and | |
| parameters for each method of | ||
| the components, or to use the | ||
| implicit definitions (e.g., | ||
| method=â*â). True or False, | ||
| default is False. | ||
| <autotype ejbJar=âmyejb.jarâ |
| destWar=âmyWebservice.warâ | |
| overwrite=âTrueâ |
| /> | |
| <autotype JavaClassesâtest.MyService,test.MyOtherServiceâ | |
| destWar=âmyWebservice.warâ |
| overwrite=âTrueâ. |
| /> | |
In some cases, the application data types may be too complex for an autotyper to understand. In other situations, the application developer may wish to have control over the parts of a Java class that are serialized, as well as control over how it will be done. Under these circumstances, a developer can choose to implement custom types manually. To do this, the developer can:
An Autotyper can perform these steps automatically. Therefore, another entirely valid approach to developing custom types is to run the Autotyper and then customize the resulting generated schemas and classes.
Under normal circumstances, the implementation of a Web service can consist of the backend components and possibly some custom data types. This model can ensure the separation of the business logic of the application, encapsulated in the backend components and types, from the details of the messaging infrastructure (i.e., SOAP, HTTP). There can be some applications, however, that may need to access to the message level, such as to read or write SOAP headers. To support these applications, a handler can be provided that is a type of interceptor. Handlers can provide complete access to the SOAP and HTTP requests and responses. They can be invoked in the sequence of processing a SOAP message.
A handler can implement a Web service handler interface. The handler can read or write the SOAP request or response. The handler can also access information about the request processing, such as may include error status and MIME headers.
Flow handlers can be registered in the deployment descriptor as part of a flow. The flow can consist of a series of inbound flow handlers, followed by an invoke of a backend component, followed by outbound flow handlers.
An additional capability that can be utilized is the ability to automatically generate a Web service âhome pageâ. This is a Web page that can be deployed along with the Web service, which can allow a browser client to:
A thin client can be provided for accessing a Web service from a Java Virtual Machine, such as a JDK 1.3 virtual machine. A complete thin client for a Web service can consist of two jars: a client runtime jar and a service-specific jar.
A client runtime jar can be independent of any specific Web service. This jar can contain those classes needed to support the client side of a Web service runtime. The contents of this jar can be included in Weblogic.jar, so clients that are server components do not need to include this jar in order to access remote Web services.
A service-specific client jar can be specific to a particular Web service. This jar can be generated by a client generation ant task. This jar can be required for static API access to a remote Web service, regardless of whether the client is a server-side component or in a standalone Java virtual machine. Task parameters for a client generation ant task are shown in Table 2.
| TABLE 2 |
| client generation Ant task parameters |
| Attribute | Description | Required |
| sdl | The file path or URL for a source WSDL | Yes, unless |
| file containing a remote service | ear is | |
| specified | ||
| ear | The source EAR jar file or exploded | Yes, unless |
| directory containing the Web services | wsdl is | |
| from which the client should be generated | specified | |
| warName | The name of the Web service war file in | No. |
| the ear. This option is not allowed unless | ||
| ear is specified. Default is Web- | ||
| service.war. | ||
| serviceName | The name of the service (either from the | No. |
| <Web-service> element in the deployment | ||
| descriptor for an EAR source, or from the | ||
| <service> element in a WSDL source) for | ||
| which a client should be generated. If | ||
| omitted, the client will be generated for | ||
| the first service found in WSDL or the | ||
| EAR deployment descriptor. | ||
| typeMappings | A file of type mappings to use in | No. |
| generating the stubs. If generating a client | ||
| from an ear, this will override the type | ||
| mappings in the Web service deployment | ||
| descriptor inside the Web service war. | ||
| packageName | The Java package into which the client | Yes |
| interfaces, stubs should be placed. | ||
| autotype | Whether to generate Java or XML types | No |
| and serializer/deserializer classes for the | ||
| non-built in data types. True or False; | ||
| default is True. | ||
| clientJar | Pathname of the output client jar (file or | Yes |
| exploded jar directory) into which the | ||
| client interfaces, stubs will be put. | ||
| overwrite | Overwrite any existing clientJar. True or | No |
| False; default is True. | ||
| default | What the default endpoint for the service | No |
| Endpoint | should be if the stub is instantiated with its | |
| default constructor. If ommitted, the | ||
| default endpoint will be | ||
| http:://localhost:7001/<warname>/ws/ | ||
| <serviceURI>. | ||
| <clientgen |
| ear=âsession.earâ | |
| warName=âsession.warâ | |
| packageName=âtestâ | |
| clientJar=âsession-client.jarâ |
| /> | |
| <clientgen |
| wsdl=âhttp://www.xmethods.net/sd/2001/ |
| CATrafficService.wsdlâ |
| packageName=âtest.trafficâ | |
| clientJar=âtraffic.jarâ |
| /> | |
The above example creates a client jar for the services which are described in CATrafficService.wsdl. The client interfaces and stubs are generated in the test.traffic package and put into the jar file traffic.jar.
A deployable Web service can be contained solely in an EAR file with components such as EJB jars containing the EJB implementation of the Web services. Other components can include Web service WAR files containing the Web service configuration, typing resources, and entry point.
A Web service WAR is a Web archive file, which can include a Web service deployment descriptor in Web-INF/Web-services.xml. The WAR can also include serializers and deserializers that support non-built-in data types. The compiled java classes can be written into Web-INF/classes. The WAR can also include a service home page JSP.
Ant tasks can include a built-in EAR task to facilitate building EAR files. Table 3 shows a summary of an EAR file structure.
| TABLE 3 |
| EAR file structure |
| <Webservices.war> | /Web-INF/Web- | Web Service Deployment |
| services.xml | Descriptor | |
| /Web-INF/classes | Serializers, Deserializers, | |
| Flow Handlers for Web | ||
| services and dependent | ||
| classes for these | ||
| /<service_name> | Downloadable Java client | |
| _client.jar | jar (one per service) | |
| <ejb.jar> | EJBs implementing the | |
| Webservice | ||
| where | ||
| <service_name> is the service name as defined in the <Web-service> element of the deployment descriptor. | ||
| <Webservices.war> is the name of the WAR file directory containing the Web services | ||
| <ejb.jar> is the name of the ejb-jar directory containing the backend EJB components |
A Web service WAR does not have to contain a Web.xml deployment descriptor, although it may include one if regular Web-applications are to be configured to go along with the Web service. There can also be multiple Webservice WARs and EJB-JARs in an EAR.
A single master Ant task can be supported to perform the steps needed to develop a Web service in an automated fashion. This task can be useful for Web services which are very run-of-the-mill, with few specific options needing to be set. A service generation Ant task, such as âservicegenâ, can be the master task used to build Web services for deployment. Parameters that can be useful with a service generation Ant task are shown in Table 4.
| TABLE 4 |
| Service generation Ant task |
| Name | Type | Description | Required |
| destEar | Attribute | The EAR file or exploded | Yes |
| directory into which the Web | |||
| service will be written, If the | |||
| file/dir does not exist and the | |||
| name ends in â.earâ, a new | |||
| EAR file will be created; | |||
| otherwise an exploded EAR | |||
| directory will be created. | |||
| overwrite | Attribute | Whether to overwrite | No |
| components of the Web | |||
| service in the destination ear | |||
| (e.g., deployment descriptor). | |||
| âTrueâ or âFalseâ; default is | |||
| âTrueâ. | |||
| warName | Attribute | Name of the Web service | No. |
| war into which the service(s) | |||
| will be written. If the destEar | |||
| is exploded, this will be | |||
| written to an exploded war | |||
| directory in the exploded ear | |||
| (with any .war prefix in the | |||
| name omitted). Default is | |||
| Web-services.war. | |||
| service | Element (1 | Description of Web services | Yes. |
| or more) | to be assembled. | ||
A service element can be used to build a Web service from ejb-jars or java classes. The EJBs or classes can be introspected, deployment descriptors constructed, and automatic typing performed. Optionally, a home page and client can be generated. Parameters that can be useful with a service Ant task are shown in Table 5.
| TABLE 5 |
| Service Ant task |
| Name | Type | Description | Required |
| ejbJar | Attribute | The jar file containing | Yes, unless |
| the backend EJB | javaClass | ||
| component. This is | Components | ||
| either a jar file name, | is specified | ||
| or an exploded jar | |||
| directory. | |||
| javaClass | Attribute | A comma-separated | Yes, unless |
| Components | list of Java class Web | ejbJar is | |
| service | specified. | ||
| implementations. | |||
| includeEJBs | Attribute | A comma-separated | No. May not |
| list of ejb-names for | be specified | ||
| EJBs that should have | unless ejbJar | ||
| types generated. | is also | ||
| specified. | |||
| excludeEJBs | Attribute | A comma-separated | No. May not |
| list of ejb-names for | be specified | ||
| EJBs that should not | unless ejbJar | ||
| have types generated. | is also | ||
| specified. | |||
| serviceName | Attribute | The name of the | Yes. |
| service in the WSDL | |||
| and deployment | |||
| descriptor. | |||
| serviceURI | Attribute | The URI component of | Yes. |
| the URL used by | |||
| clients to access the | |||
| Web service. The Web | |||
| service endpoint will be | |||
| of the form | |||
| <protocol>://<host>:<port>/ | |||
| <destWarName>/ws/ | |||
| <serviceURI>> | |||
| target | Attribute | The target namespace | Yes. |
| Namespace | URI of the service. | ||
| protocol | Attribute | Protocol over which | No. |
| this service is | |||
| deployed. âhttpâ or | |||
| âhttpsâ; âhttpâ is the | |||
| default. | |||
| expand | Attribute | Whether to explicitly | No. |
| Methods | write out separate | ||
| operations and | |||
| parameters for each | |||
| method of the | |||
| components, or to use | |||
| the implicit definitions | |||
| (e.g., method=â*â). | |||
| True or False, default | |||
| is False. | |||
| generateTypes | Attribute | Whether to perform | No. |
| autotyping to generate | |||
| types and serializers | |||
| for Java classes that | |||
| do not map to built-in | |||
| types. True or False; | |||
| default is True. | |||
| client | Element | Specify that a client | No. |
| (0 or 1) | should be generated | ||
| and included in the | |||
| EAR. This is necessary | |||
| if the service home | |||
| page will allow a client | |||
| jar to be downloaded. | |||
A client element can be specified in service. If the client element is specified, a client jar can be generated and put into the EAR. This client jar cn be accessible from the service home page so that it can be downloaded by remote clients. This element can be used to specify parameters for the generation of the client. Table 6 shows possible types for a client element.
| TABLE 6 |
| Client element types |
| Name | Type | Description | Required |
| packageName | Attribute | The Java | No. |
| package into | |||
| which the client | |||
| interfaces, | |||
| stubs should be | |||
| placed. | |||
| clientJar | Attribute | Name of the | Yes. |
| client jar. It will | |||
| be placed into | |||
| the top level | |||
| directory of the | |||
| Web service | |||
| war in the ear. | |||
| defaultEndpoint | Attribute | What the | No. |
| default endpoint | |||
| for the service | |||
| should be if the | |||
| stub is | |||
| instAntiated | |||
| with its default | |||
| constructor. If | |||
| ommitted, the | |||
| default endpoint | |||
| will be | |||
| http:://localhost: | |||
| 7001/<warname | |||
| >/ws/<serviceURI>. | |||
| <servicegen destEar=âc:/myapps/myapp.earâ> | |
| â<service ejbJar=âc:/dev/myaps/myejb.jarâexcludeEJBs= |
| âbadejb, awfulejbâ |
| /> | |
| TABLE 7 |
| Ant tasks |
| Task | Purpose | Input | Output |
| servicegen | Master task to generate a | EJBs | deployable |
| deployable service. Calls | optional: | EAR | |
| Autotyper, HomePageGen, | deployment | ||
| ClientGen tasks. | descriptor | ||
| wsgen | A task to facilitate migrating | EJBs | deployable |
| between versions of Web | EAR | ||
| services | |||
| autotype | Generate default typing for | EJB-JARs or | Deployment |
| complex types in the service | classnames | descriptor | |
| implementation | optional: WAR | serializer | |
| classes | |||
| clientgen | Generate a client jar and | ||
| sample code to invoke a Web | |||
| service | |||
The foregoing description of preferred embodiments of the present invention has been provided for the purposes of illustration and description. It is not intended to be exhaustive or to limit the invention to the precise forms disclosed. Many modifications and variations will be apparent to one of ordinary skill in the art. The embodiments were chosen and described in order to best explain the principles of the invention and its practical application, thereby enabling others skilled in the art to understand the invention for various embodiments and with various modifications that are suited to the particular use contemplated. It is intended that the scope of the invention be defined by the following claims and their equivalence.
1. A system for deploying a web service, comprising:
a backend component for implementing a web service, the operation of the web service being mapped to methods of the backend component;
a registered inbound interceptor adapted to process an inbound message before the backend component and a registered outbound interceptor adapted to process an outbound message after the backend component;
a codec for converting data in the inbound message and the outbound message between Extensible Markup Language (XML) representations and objects for use with said backend component;
an autotyper for generating an additional codec, the additional codec converting additional data types from XML representation to JAVA objects; and
wherein the backend component, the registered inbound and the registered outbound interceptors, the codec and the autotyper are contained within a web service container; and
wherein the system includes at least one processor.
2. A system according to claim 1, further comprising a Java Message Service (JMS) connection factory for using JMS with the web service.
3. A system according to claim 1, wherein said backend component is selected from the group consisting of beans, JMS message consumers, JMS message producers, and classes.
4. A system according to claim 1, further comprising a container driver to interact with the registered interceptors and the backend component.
5. A system according to claim 1, further comprising a web service home page for describing the web service.
6. A system according to claim 1, further comprising a thin client for accessing the web service from a virtual machine.
7. A method for deploying a web service, comprising:
deploying a backend component for implementing the web service;
providing access to SOAP contents of web service messages using a registered inbound interceptor adapted to process an inbound message before the backend component and a registered outbound interceptor adapted to process an outbound message after the backend component;
providing a codec for converting data in the web service invocation message from an XML representation to an object for use with the backend component implementing the web service;
an autotyper for generating an additional codec, the additional codec converting additional data types from XML representation to objects; and
wherein the backend component, the registered inbound and the registered outbound interceptors, the codec and the autotyper are contained within a web service container; and
wherein the generation of the additional codec is done using at least one processor.
8. A method according to claim 7, further comprising:
mapping the operation of the web service mapped to methods of the backend component.
9. A method according to claim 7, further comprising:
reading the web service messages with the interceptor and passing the contents of the message to the backend component.
10. A method according to claim 7, further comprising:
receiving response data from the backend component and writing SOAP contents to a web service response message using the interceptor.
11. A method according to claim 10, further comprising:
providing a codec for converting data in the web service response message from a object to an XML representation.
12. A method according to claim 7, further comprising:
implementing data types for the web service.
13. A method according to claim 7, further comprising:
using a SOAP message processor to process SOAP information not encoded in the backend component.
14. A method according to claim 7, further comprising:
editing a web service deployment descriptor to activate the web service.
15. A method according to claim 7, further comprising:
generating a web service home page to describe the web service.
16. A method according to claim 7, further comprising:
generating a client for accessing the web service from a virtual machine.
17. A method according to claim 16, further comprising:
generating a client jar to contain the client.
18. A method according to claim 7, further comprising:
packaging and deploying a web service archive file.
19. A system for deploying a web service, comprising:
means for deploying a backend component for implementing the web service;
means for providing access to SOAP contents of web service messages using a registered inbound interceptor adapted to process an inbound message before the backend component and a registered outbound interceptor adapted to process an outbound message after the backend component;
means for providing a codec for converting data in the web service messages from an XML representation to an object for use with the backend component implementing the web service;
an autotyper that can generate an additional codec, the additional codec converting additional data types from XML representation to objects; and
wherein the backend component, the registered inbound and the registered outbound interceptors, the codec and the autotyper are contained within a web service container; and
wherein the system includes at least one processor.
20. A computer system comprising: a processor;
object code executed by said processor, said object code configured to:
deploy a backend component for implementing the web service;
provide access to SOAP contents of web service messages using a registered inbound interceptor adapted to process an inbound message before the backend component and a registered outbound interceptor adapted to process an outbound message after the backend component;
provide a codec for converting data in the web service messages from an XML representation to an object for use with the backend component implementing the web service;
an autotyper that can generate an additional codec, the additional codec converting additional data types from XML representation to objects; and
wherein the backend component, the registered inbound and the registered outbound interceptors, the codec and the autotyper are contained within a web service container.
21. A computer readable storage medium containing code comprising:
a code segment including instructions to deploy a backend component for implementing the web service;
a code segment including instructions to provide access to SOAP contents of web service messages using a registered inbound interceptor adapted to process an inbound message before the backend component and a registered outbound interceptor adapted to process an outbound message after the backend component;
a code segment including instructions to provide a codec for converting data in the web service messages from an XML representation to an object for use with the backend component implementing the web service;
an autotyper that can generate an additional codec, the additional codec converting additional data types from XML representation to objects; and
wherein the backend component, the registered inbound and the registered outbound interceptors, the codec and the autotyper are contained within a web service container.