cheenath.com
- Home
- Search
- About Me
- AJAX Tools
- WLS Tutorial
  - Setup
  - Introduction
  - Contact
  - FAQ
  - Useful Links
- AutoBuild
- SOAP Router


Introduction:

  1. Weblogic webservice container is build on top of webapp container and a web service is deployed as a war file
  2. All classes required by web service should be in the WEB-INF/classes or WEB-INF/lib directory of the webapp
  3. web-service.xml file should be placed in the WEB-INF directory of the webapp. You can use source2wsdd ant task to generate this DD file from a java source file.
  4. If your web service use non build in data types (Java Bean Value types for example), you need to provide the serializer and deserializer for those types. Autotype ant task can generate these for you.
  5. source2wsdd generates web-services.xml DD file based on a pre defined default mapping. If you prefer a different mapping (for example, you want a parameter to be mapped as soap header instead of body), you can edit the DD file. In case you prefer not to edit the generated DD file, you can mark up the java source file with special javadoc tags to modify the DD file.

      

©2006 Manoj Cheenath