CXF can expose a Map in one of three ways: 1) Using the Aegis databinding, CXF will automatically generate a schema from a Map. Other fully-compliant kits should be able to build clients from the WSDL that results. It won't, however, necessarily translate into a 'Map' on the client side.
2) Using CXF 2.1, still in snapshot only, you can use the complex JAXB mechanisms that allow support for maps. 3) You can roll your own: probably more like an explicit List<Map.Entry<key, value>> On Sun, Mar 9, 2008 at 10:34 AM, Maxim Veksler <[EMAIL PROTECTED]> wrote: > Hi, > > > I would like to get the general idea of what can be done with CXF or with > SOAP in general. > > Can I use this library to expose java.util.Map based interface for Java, > C++, php, python and co. code. > I would like my user to pass me a list of parameters of Map <String, > List<String>>, which would be used as parameters for implementation class. > > > Is this possible with CXF or even with SOAP in general ? > > > Thank you, > Maxim. > > -- > Cheers, > Maxim Veksler > > "Free as in Freedom" - Do u GNU ? >
