Weblogic webservice container is build on top of webapp
container and a web service is deployed as a war file
All classes required by web service should be in the
WEB-INF/classes or WEB-INF/lib directory of the webapp
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.
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.
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.