I want to Mock HTTP requests, meaning sending real request to real server, but ignore (not wait) and override the response with a dummy response,
JMeter have many tools which are close but not enough,
DummySampler plugin is close but not really sending request,
An old answer direct to Mirror Server which seems irrelevant for specific API requests and responses.
JMeter does not simulate servers.
Having said that, JMeter 2.3 has a built-in mirror server - it accepts any HTTP request and responds with a page containing the request details.
If server B does not care what server C sends back, then you could use this to "mock" server C.
My answer on ignoring HTTP response by adding Runtime controller with 1 second and updating the response data is a problematic workaround but can work.
Is there a better option available in plugins or executing some other tool in parallel?
Is opening an enhancement for JMeter is relevant and if so, should it improve HTTP Request or is it a new sampler as Mock HTTP Request? can Runtime controller support only sending and stop waiting for response (by using 0 seconds for example) ?