I know how to make a simulated mock and all about that.
The problem I have is that I am sending request to a server that returns very large XML responses (more than 2 mb), if I send the request from the web page it takes too long to respond or sometimes it does not return a response. If I send the request from postman it takes less time to respond.
that is why I need to send a (request - post) from the web page to my postman mock server and when it receives the request make another request to the server (2 mb) filter only the data I need and return to the web page a more light response (200 kb)
how can I do this? it's possible?
Thank you!!!