SOAP Response Schema Validation

前端 未结 1 478
[愿得一人]
[愿得一人] 2020-12-25 15:13

Short version:

I\'m trying to write an XSD that will validate my SOAP service\'s responses. I feel compelled to just import http:// schemas.xmlso

相关标签:
1条回答
  • 2020-12-25 15:57

    You should use a SOAP web service framework to do that. There are many for various programming languages listed on the wikipedia page. You write a WSDL to specify your web service API, and in which you import your XSD to define the payload formats (contract-first approach). Use the wsdl2xxx tool provided by the framework to generate the API stub. You write the API implementation code. The framework will take care of the rest (processing the SOAP messages and binding to your implementation code).

    0 讨论(0)
提交回复
热议问题