I'm wondering if I'm doing something wrong here.
I have a page with the following:
@NamedUrls({
@NamedUrl(name = "updateContactDetails", url = "/contacts/update/{1}")
})
First, am I doing something wrong here? Have I misunderstood something about how these parts are supposed to work, or would you expect this to work correctly?
If what I've done is correct, then based on stepping through the code, the issue appears to be in PageUrls.updatedFullUrl. It replaces the url authority with the defined base url which of course strps
http://localhost:8080 from the front, but adds
http://localhost:18080/contactmanager to the front.
If this is a bug, let me know, and I'll create a JIRA ticket. Time permitting, I'll even try to correct it.