I am having trouble getting the URLs to work for both my web app and my devmode environment.
In my web app everything runs under /action/curation/. TO make that work I have to exclude this context path
in the DirectRestService extending interface.
Absolute path info does not seem to be honored: e.g.
@Path("/action/curation/experiments")
is not used but preprended with the current context:
/action/curation/action/curation/experiments
That configuration works in my devmode environment where I don't use a context at all.
If I configure the Path to exclude the /action/curation context it's working for the web app but not the devmode
environment.
How can I configure this URL to be absolute?