I am creating a Datapower MPGW which will send a SOAP/MQ Request. I have created a stub backend which will hold and not return any response in order to try simulate a timeout for testing purposes.
The issue I'm facing is the following, all with the same timestamp eg. 11:14:28
"Issuing a request to URL: dpmq://xxx/?RequestQueue=yyy, with a size of 100 bytes"
"No reply for URL: dpmq://xxx/?RequestQueue=yyy will be processed."
"Received a reply from URL: dpmq://xxx/?RequestQueue=yyy, with a size of 0 bytes"
To my knowledge my stub does not reply (one way i am ensuring this is by keeping the debugger on my IIB Stub holding the process preventing the response)
Perhaps as i am new i am not understanding, but i was expecting my Servers timeout to eventually kick in and my response/error flow to start. However due to this instant 0byte reply, it does not seem to happen.
What could be causing this 0-Byte Response?
How can i stop this from happening?
Thanks