Currently I am using Axis for Restfull SOAP calls to Rally’s Web Service, but the application breaks every time there is a change in wsdl. Would switching to CXF fix this issue?
Share
Sign Up to our social questions and Answers Engine to ask questions, answer people’s questions, and connect with other people.
Login to our social questions & Answers Engine to ask questions answer people’s questions & connect with other people.
Lost your password? Please enter your email address. You will receive a link and will create a new password via email.
Please briefly explain why you feel this question should be reported.
Please briefly explain why you feel this answer should be reported.
Please briefly explain why you feel this user should be reported.
No. The point of a WSDL is that it’s a contract. Client applications are meant to break if there’s a change to the schema.
If you want something less tightly coupled, you can disable schema validation (some changes will still break things though) or use something more flexible like JSON.
Oh and there’s no such thing as ‘RESTful SOAP’. REST and SOAP are alternatives.