Tell me more ×
Stack Overflow is a question and answer site for professional and enthusiast programmers. It's 100% free, no registration required.

I am writing a soap client. Although the interface is not very complex, the server side is a three layer architecture, so testing some scenarios (different behavior, handling server errors, etc) becomes difficult. What would you recommend me for testing my client?

What seems to me to be a best solution is a set of very simple servers running on my local machine. Each server would be a unit test with one scenario hardcoded, so that I don't have to care about server logic, database etc. Originally I wanted to use python for this, but as I saw here, there is only one library available.

The question is what language (I suppose I won't need any special features, so if you don't say lisp, I should be OK with anything) and what library would you recommend to me to test the client on linux? The best for me would be to provide a wsdl file I got from the server to some generator, then to write the test code, no need to care about soap itself.

share|improve this question

Know someone who can answer? Share a link to this question via email, Google+, Twitter, or Facebook.

Your Answer

 
discard

By posting your answer, you agree to the privacy policy and terms of service.

Browse other questions tagged or ask your own question.