I am trying to mock my ServiceA using Wiremock. But seems like there is some setup missing . I am getting this error :
<html>
<head>
<meta http-equiv="Content-Type" content="text/html;charset=utf-8"/>
<title>Error 404 Not Found</title>
</head>
<body><h2>HTTP ERROR 404</h2>
<p>Problem accessing /__files/serviceA/endpointA Reason:
<pre> Not Found</pre></p><hr><a href="http://eclipse.org/jetty">Powered by Jetty:// 9.4.4.v20170414</a><hr/>
</body>
</html>
404 mean that its not finding the endpoint location.
Are there any step by step tutorial that can explain how to setup the service?
Thanks.
There some different ways:
java -jar wiremock-standalone-2.8.0.jar
(see http://wiremock.org/docs/running-standalone/)create a simple maven project with following dependency:
Then create a main class that runs it:
Use a JUnit-Rule:
You can find all information here: http://wiremock.org/docs/
Please let me know if this is enough information for you.