• Post Reply Bookmark Topic Watch Topic
  • New Topic
programming forums Java Mobile Certification Databases Caching Books Engineering Micro Controllers OS Languages Paradigms IDEs Build Tools Frameworks Application Servers Open Source This Site Careers Other Pie Elite all forums
this forum made possible by our volunteer staff, including ...
Marshals:
  • Campbell Ritchie
  • Tim Cooke
  • paul wheaton
  • Paul Clapham
  • Ron McLeod
Sheriffs:
  • Jeanne Boyarsky
  • Liutauras Vilda
Saloon Keepers:
  • Tim Holloway
  • Carey Brown
  • Roland Mueller
  • Piet Souris
Bartenders:

adding new operation in web service interface

 
Greenhorn
Posts: 14
  • Mark post as helpful
  • send pies
    Number of slices to send:
    Optional 'thank-you' note:
  • Quote
  • Report post to moderator
I use axis2 web service framework and faced a painful issue recently.
This is what i faced,
1) My application invokes a web service method "A"
2) I wanted to define another method named "B" in my web service which performs a different operation altogher. Here is my service definition in wsdl,


Should work right? WRONG!
No exception / error messages. axis without a hiccup invoked method A whenever my application invoked the new method "B".
I had to discover a services.xml where the A operation was defined and then add another operation B and worked like magic.
Why should i define the same operations in two places in the same project?
 
With a little knowledge, a cast iron skillet is non-stick and lasts a lifetime.
reply
    Bookmark Topic Watch Topic
  • New Topic