Hello, We are publishing a Rest Service in our application. Our intention is to intercept incoming request to our Rest Service. I created a Java Action to add a custom request handler to capture the requests. When I pass “abc/” as path argument and hit the URL www.myapp.com/abc, request handler works as expected. But when I pass the path of endpoint for our Published Rest Service which is “rest/” (fullpath is rest/myendpoint) request handler is not invoked. ( I also tried with path as “myendpoint/” and all other variations ) My question: Is adding requesthandler only for http requests? Is there a way to intercept incoming requests to published Rest Service?
↧