Hi,
When you need to use complex objects (bean objects)
is necesarily to declare a <beanMapping ...> in the WSDD ?
I supposed that it was, but I am a little bit
confused by the fact that when I deploy a Service using the next wsdd
:
<deployment xmlns="http://xml.apache.org/axis/wsdd/"
xmlns:java="http://xml.apache.org/axis/wsdd/providers/java"> <service name="HolaMundo" provider="java:RPC"> <parameter name="scope" value="session"/> <parameter name="className" value="servicios.HolaMundoImpl"/> <parameter name="allowedMethods" value="*"/> <namespace>someurl</namespace> </service> </deployment> the wsdl is generates all my complex types without
the necessity of declaring <beanMappings..>. It appears to generate WSDL
schema definitions for all the Bean objects that are in the package
"servicios".
Is necesary to declare the beanMappings anyway
?.
|
- Re: bean question Gustavo De Simone
- Re: bean question Steve Wells