These are the lines from my wsdd file. I want to allow, SOAP clients to access multiple methods from my webservice. But with this code it throws Exception, "Operation not found with name Queue{0}" .
Can somebody tell me what is wrong with this code. Or how to allow SOAP clients to access more than one methods from my Service Class. I use axis API.
Not even one operation is declared in the file, much less multiple. The <allowMethods> element just specifies which of the declared operations are allowed to be accessed. But you still need to specify which methods there are to begin with using <operation> elements.
Originally posted by Ulf Dittmer: Not even one operation is declared in the file, much less multiple. The <allowMethods> element just specifies which of the declared operations are allowed to be accessed. But you still need to specify which methods there are to begin with using <operation> elements.
Sorry I didn't understand. He has already selected "*".