You are viewing a plain text version of this content. The canonical link for it is here.
Posted to wsif-user@ws.apache.org by Shantanu Sen <ss...@pacbell.net> on 2005/08/18 03:22:46 UTC

format:typeMap generation by the various binding generators

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