Thanks for your reply Rupert.
Good suggestion to check the source code.
Do you have any specific pointers in the source code that suggest a WebUI is not implemented for a REST MockService?
To me it looks like some exceptions should be made for some specific URIs used by the WebUI, for example like this :
(in https://github.com/SmartBear/soapui/blob/next/soapui/src/main/java/com/eviware/soapui/mockaswar/MockAsWarServlet.java )
private MockRunner getMatchedMockRunner(MockRunner[] mockRunners, String pathInfo) {
if (pathInfo != null
&& (pathInfo.startsWith("/master") || pathInfo.startsWith("/detail") || pathInfo.startsWith("/log"))) {
return null;
}
// ...
}
Maybe these URIs could be prefixed (e.g. like "/soapui-master") to avoid potential conflicts with the resources in the REST MockService itself.
Regards,
Jan Vervecken