I have a link on create issue screen which hits the servlets which authenicates the user with openid(redirect to identity provider page), after which I want to redirect the user back to create issue page , with details the user filled on that page.
How do I do this. Having a difficult time redirecting to create issue page(or any workflow screen)
Hi,
Try this code
public void doGet(HttpServletRequest request, HttpServletResponse response)throws ServletException, IOException {
String url = request.getContextPath()+"/secure/CreateIssue!default.jspa?pid=projectId&issuetype=issuetypeId";
response.sendRedirect(url);
}
You must be a registered user to add a comment. If you've already registered, sign in. Otherwise, register and sign in.
Try this code
public void doGet(HttpServletRequest request, HttpServletResponse response)throws ServletException, IOException {
String url = request.getContextPath()+"/secure/CreateIssue!default.jspa?pid=projectId&issuetype=issuetypeId"
response.sendRedirect(url);
}
You must be a registered user to add a comment. If you've already registered, sign in. Otherwise, register and sign in.
You must be a registered user to add a comment. If you've already registered, sign in. Otherwise, register and sign in.