• 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
  • Jeanne Boyarsky
  • Ron McLeod
  • Paul Clapham
  • Liutauras Vilda
Sheriffs:
  • paul wheaton
  • Rob Spoor
  • Devaka Cooray
Saloon Keepers:
  • Stephan van Hulst
  • Tim Holloway
  • Carey Brown
  • Frits Walraven
  • Tim Moores
Bartenders:
  • Mikalai Zaikin

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?
 
reply
    Bookmark Topic Watch Topic
  • New Topic