Hi Robert, Thanks for your suggestion.
Url given by you has an example which uses static client stubs but my requirement is to have dynamic client similar to the code i have mentioned below so that i can have one single webservice utility to invoke mulitple webservices by loading the webservice information either from the properties file or from db. Reason for not using ADB framework is i have a requirement where webservices responses are stored in files and i have to convert xml into object & object to xml more than once in the process flow and on each conversion the type attributes of each element gets added redundantly making the generated xml itself invalid. Below is the code generated by the ADB framework which adds all unhandled attributes of the element, but problem is type information of the element is added at the start of the parse() method and if there is already a type information in the element (ex: xml form ) that will also gets added making it duplicate. // now run through all any or extra attributes // which were not reflected until now *for* (*int* i=0; i < reader.getAttributeCount(); i++) { *if* (!handledAttributes.contains(reader.getAttributeLocalName(i))) { // this is an anyAttribute and we create ...... } FYI , i am using getOMElement().toString() to convert object into String and Object.Factory.Parse(null,null) method to convert xml into object. Thanks & Regards, M.Prasad Rao On Sat, Mar 5, 2011 at 9:11 PM, robert lazarski <robertlazar...@gmail.com>wrote: > On Sat, Mar 5, 2011 at 12:30 PM, Prasad Maddela > <prasadrao.madd...@gmail.com> wrote: > > Hi , > > > > Require help to have a dynamic client for webservices developed in > > Axis2-1.5.1 and Xmlbeans as the binding framework. > > > > I suggest using this xmlsbean example in the docs to get you started: > > http://axis.apache.org/axis2/java/core/tools/CodegenToolReference.html > > --------------------------------------------------------------------- > To unsubscribe, e-mail: java-dev-unsubscr...@axis.apache.org > For additional commands, e-mail: java-dev-h...@axis.apache.org > >