Hello,
I have created a plugin which adds a button to the browse project page and I want to pass the url of the browse project page to the servlet when the button is clicked.
I have a js file controlling the servlet, which makes an ajax call to a java file which contains the button functionality.
I am using a HttpServletRequest and I've tried getRequestUrl() and getServletPath() but neither of these are passing the information I want, they pass the address of the servlet instead (a different page). Are there any other methods I can try to get the URL of the page the button is on?
Btw this is for bitbucket server if that makes a difference.
Also my js file uses a targetURL for the address of the servlet, that is why the HttpServletRequest is getting the servlet address. I need this to point there, so i must have to use something other that the request to get the url of the current page.
Thank you