Niraj Sehgal wrote: > > Can someone please provide me with the sample code. > I wanted to write a standalone java application which has to submit an > xml to a webservice (I think written in .net). >
Pretty simple task. All you have to have is the wsdl definition of the webservice. And then, in the [AXIS2_HOME]/bin/ directory you just have to run the wsdl2java script, passing the -g argument (for more informations about the possible arguments, have a look at the Axis2 documentation). With -g argument a Client stub class will be created. This stub class is the class you have to use in your standalone java application. -- View this message in context: http://www.nabble.com/Webservice-Client-tp19293095p19314892.html Sent from the Axis - User mailing list archive at Nabble.com. --------------------------------------------------------------------- To unsubscribe, e-mail: [EMAIL PROTECTED] For additional commands, e-mail: [EMAIL PROTECTED]
