Hi!
Does anybody know if there are any (preferable open source) tools available
for dynamically creating a java proxy-object at runtime for accessing a web
service from a wsdl specification.
For example with the webservices-classes included in BEA WebLogic 6.1 you
can access a web service simply by using something like:
WebServiceProxy proxy = (WebServiceProxy)context.lookup(wsdlurl);
SoapMethod method = proxy.getMethod(methodname);
Object result = method.invoke(parameters);
Now I'm looking for something similiar that is able to create a proxy at
runtime and uses Apache SOAP for communication.
Thanks and regards,
Felix Eichhorn