HOWTO: Creating a Dummy/Mock Webservice (ASMX) from a WSDL File
29 November 2010Sometimes it is helpful to mock a xml webservice for the purpose of testing against it without invoking the actual service. There are several reasons why this can be a good idea, such as when the service is not hosted by you and therefore not under your control or in situations where calls to the service incur some kind of cost.
In my case, I wanted to mock out a service so that the scope of my unit testing was just my integration. I also wanted control over the service response to emulate a range of scenarios.
I would typically have developed a mock implementation using WCF however using an ASMX seemed the simplest method at the time, and I like the (Keep It Simple Stupid) KISS methodology.
So, here are the steps.
Step 1 – Create the ASMX file to host the service
In my case I already have a Test web application from which I host several test service stubs and other things, so it is simple for me to Right Click > New Item > Web Service.
Change the filename to something meaningful, such as <ServiceName>Mock.asmx
Step 2 – Generate a service stub from WSDL
Open a console window, I typically use the console that comes with Visual Studio (Available from start menu) and navigate to the folder containing the ASMX file you generated.
Type the following;
wsdl <URL of WSDL file> /language:CS /server
The URL is the full URL of the service you are wishing to stub out. In particular, I ensure the URL is that of the WSDL file.
/language can be your language of choice, in my case CS for C#.
/server specifies that you are wishing to generate code that would host such a service
A full list of options can by obtained by simply typing wsdl from the command line.
Step 3 – Modify your ASMX to ‘host’ the generated code.
By default the code behind for your ASMX will derive from
System.Web.Services.WebService
You want to change the code behind to derive instead from the code you generated in step 2. To find out which class to derive from, search your generated code for the class decorated with the System.Web.Services.WebServiceAttribute.
Once you have done this, compile your project. If things are as they should be the build should fail because you have not implemented the expected methods of the service.
Implement the services, throwing a
throw new NotImplementedException();
for now if you like – we just want it to compile.
Once you have done this, compile your project and open your ASMX in Internet Explorer (or your browser of choice)
If all is well, you should see a web page, with the name of the service at the top in a blue panel.
Step 4 – Customise your service logic (Optional)
As i mentioned, I wanted to be able to manage the responses I received from my service. This is done by modifying my implementation of the service that I have just created in the previous steps. Simples.