Hello,
I'm using Jersey Server in the main for it's main purpose, a REST Server.
However, I like to add Rest-function which accumulates the output of
several URL-Paths.
basically I want to join the output
http://server/abc/1 and
http://server/abc/2 by calling
http://server/join/1-2 .
The most obvious way would be, calling both urls - Jersey Server
internally, by avoiding http (and so the Webserver).
Is this possible?
Thanks in advance,
Stefan