I have a Java class that I want to
expose it as a Web service.
One of the method of my Java class is defined as
follows:
subscribe(Class eventType, Filter filter, Subcriber
subscriber)
After generating stubs from the WSDL file, I am
getting this:
subscribe(java.lang.Object in0, Filter in1,
Subcriber in2)
Is it possible to define Class type my wsdd
file? I know that There is no public
constructor for the class
java.lang.Class
Thanks in advance.
Regards,
--Bahman |