EJB over HTTP: Intercepting requests and responses

202 views Asked by At

WildFly supports remote EJB calls via HTTP. Is it possible to intercept these requests and responses in order to manipulate them? Say I want to add a session ID / conversation ID to each/most request on the client side and read them on the server side to manually active @SessionScoped and @ConversationScoped on during EJB calls. Is that possible? For example, I would guess that there a particular Servlet on the server side which handles these calls and for which I could configure a filter.

0

There are 0 answers