format:typeMap generation by the various binding generators
Shantanu Sen <ssen-yBeKhBN/[email protected]>
| Newsgroups | gmane.comp.apache.webservices.wsif.user |
|---|---|
| Message-ID | <[email protected]> |
The EJB and Java Binding generators that are a part of
the wsif.tools package do not have any APIs to add
complex types in the format:typeMap. For example if I
run the generator to generate the AddressBook example
with java binding, I need to get something similar to
the what is shown below:
-----------
<wsdl:binding name="AddressBookPortBindingEjb"
type="impl:IAddressBook">
<ejb:binding/>
....
<format:typeMap formatType="mypackage.Address"
typeName="{http://mypackage}:Address"/>
----------
But the EJBBindingGenerator only adds (it is hardcoded
in the createFormatTypeMapping method) the
java.lang.String as the format:typeMap.
Does this mean that there is no support for this, or
am I missing something?
Thanks,
Shantanu Sen