Is there any way to programmatically specify the set
of allowed methods to an interface which is going to
be deployed as a service? For example here is a
section of the generated wsdd that I have.
<parameter name="className"
value="com.mycompany.MyServiceSoapBindingSkeleton"/>
<parameter name="wsdlPortType"
value="MyServiceInt"/>
<parameter name="allowedMethods" value="*"/>
....
I want to expose only one method of MyServiceInt as
exportable which will be generated in the WSDL when a
http://someurl/MyService?wsdl is run on the service
after it is started. But I need to do this
programmatically at the time of generating the WSDD
(and not edit the resulting wsdd by hand).
I could not find any API in the wsdltojava Emitter
where I can specify this.
Any ideas?
Thanks,
Shantanu Sen