The Scriptable Data Protocol Filter for the listener step configured to process responses does not log anything.
The logging statements were added to debug why there was no processing of the response.
Two Scriptable Data Protocol Filters were created for the listener step.
One to process requests and one to process responses.
The beanshell code for the request DPH works as expected and creates an entry in the vse.log when running the VS.
The following beanshell code was used to debug:
%beanshell%
_logger.info("listener step, process requests");
Similar beanshell code for the response DPH does not create anything in the vse.log:
%beanshell%
_logger.info("listener step, process responses");
All supported DevTest releases.
The scriptable data protocol filter for responses should be run as part of the 'Virtual HTTPS Responder' step, not the listener step.
Configure the DPH with Filter in: lisa.vse.response
Beanshell code similar to:
%beanshell%
_logger.info("responder step, process responses");
will then show the "responder step, process responses" example message in the vse.log
As the lisa.vse.response is not available in the other steps (like the listener), no messages will be logged in that case.