How to verify at runtime if the client WSDL matches the server WSDL?
I am developing a system where .NET (Compact Framework) clients are communicating via SOAP with a Java (AXIS2) server. A开发者_StackOverflow社区s the interface is continuously evolving, I am looking for a way to check at runtime if the client interface completely matches the current interface version of the server.
What is the easiest way to match the interface signature at both ends, without using handcoded version numbers?
You can validate the expected behavior through automated tests. soapUI can (among other things) be used to generate a test-suite for you.
精彩评论