You're on your way to the next level! Join the Kudos program to earn points and save your progress.
Level 1: Seed
25 / 150 points
Next: Root
1 badge earned
Challenges come and go, but your rewards stay with you. Do more to earn more!
What goes around comes around! Share the love by gifting kudos to your peers.
Keep earning points to reach the top of the leaderboard. It resets every quarter so you always have a chance!
Join now to unlock these features and more
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