SOAP web service development

Are there any guides / tutorials on how to handle the evolution of a SOAP web service?

I see that modifying existing methods or types probably won't work, but can I just add new methods, complex types, enumeration values ​​without breaking existing clients?

+5
source share
1 answer

Basically, you should not modify an existing WebService, but you can safely extend it:

  • adding new maintenance methods (and any types associated with it),
  • adding new optional elements / attributes to existing messages.

WebService, , , , WebService . 2-3 / WebServices, ( , ).

+4

All Articles