About 560,000 results
Open links in new tab
  1. c# - Testing a WCF web service? - Stack Overflow

    Mar 1, 2013 · If you want to unit test your WCF service (i.e. write unit tests for service, business, data, etc.), use a popular mocking framework (related SO thread here). To generate a proxy …

  2. What's the best way to test WCF services? - Stack Overflow

    Together with conventional "service unit tests" that call the service interfaces directly, mocking out the domain tier, we also have "service self-host tests" that host the service in the unit test …

  3. c# - Testing a Web Service - Stack Overflow

    Jun 20, 2014 · Then to create a test application, you can create either an ASP.NET website or WinForms/Console application and import a Web Service reference in Visual Studio. That will …

  4. How to test web service using command line curl

    Oct 15, 2012 · Also, I would rather have a command-line tool that I can use to easily write a set of integration tests for this web service and that I can send to consumers of this web service as …

  5. c# - How to debug Web Service? - Stack Overflow

    Dec 21, 2013 · 0 Is the web service running on a remote computer , if so you need to setup remote debug for the web service.

  6. How to call a webservice method for testing, e.g. from a browser

    The Chrome App Postman can send SOAP requests. You just need to provide the Web Service URL, select POST, set the proper content-type header (text/xml, application/soap+xml, etc.), …

  7. c# - Test ASMX webservice - Stack Overflow

    Now I am trying to test the functionality but am having trouble interacting with the webservice via C#. I've searched around tried using HTTPWebrequest (multipart/form-data) that I found in this …

  8. How to mock a web service - Stack Overflow

    Oct 23, 2009 · Here, you have dependency issues, namely you cannot test MyClient.CallService without instantiating and hosting your WebService. Especially disconcerting if you do not own …

  9. Mock Webservice Call out implementation - Stack Overflow

    Jul 9, 2019 · Test.setMock(HttpCalloutMock.class, new YourHttpCalloutMockImpl ()); Make sure you perform this call before you invoke the code that you're intending to test, which makes a …

  10. c# - ASMX Webservice Test tool - Stack Overflow

    Jun 8, 2011 · Is there any simple tool to test ASMX webservices where I can provide the service URL, request XML and get back the result (xml stream in my case)