0

Whenever the webservice provider make some changes in the wsdl, everytime the consumer needs to generate the client code again(in case of axis and CXF). Is there any solution available for this?

Sunny Gupta
  • 6,929
  • 15
  • 52
  • 80

2 Answers2

0

If the webservice provider make change within the web methods it's not need to generate new client code. If there are any changes in method's signature or there are new methods that you'll use, then need generate new code from wsdl.

Ventsislav Marinov
  • 594
  • 1
  • 6
  • 14
0

It depends on the changes made to the webservice. If it is one of these the client has to be recoded. If not the old clients should still be working:

  • Removing methods;
  • Changing method signatures;
  • Changing the bindings/behaviour (i.e. to use encryption).

More info:

Adding methods to the webservice: do old clients need to update web references?

Community
  • 1
  • 1
Aleja_Vigo
  • 970
  • 7
  • 12