Rest version of "Soap Headers and Handlers"

69 Views Asked by At

I have a question about Rest web services.

In soap, we can use SOAP handlers to process the request before execution. For example we can parse Soap Headers in Soap Handlers before we are doing the real job.

Is there something like that in Rest services? Rest headers and Rest handlers?

Thanks

1

There are 1 best solutions below

0
theMind On BEST ANSWER

I guess you are working on client side. If you use jersey framework for rest request , you can use filter implementations. Otherwise If you use apache httpclient, you can use handler implementations.

Jersey docs: https://docs.oracle.com/cd/E19182-01/821-0540/6nlj9lcpf/index.html

apache docs:https://hc.apache.org/httpcomponents-client-ga/httpclient/examples/org/apache/http/examples/client/ClientWithResponseHandler.java