Tuesday, December 05, 2006

Servlet and Web Service

When creating a servlet to act as an RPC-router for a web service, you must ensure that it performs all the necessary tasks. These include
  • parsing the SOAP envelope
  • validating the message format and the XML
  • converting any necessary data to Java specific data types
  • extracting all the necessary method call information from the SOAP message and calling the other components for the J2EE system correctly using this information.

No comments: