Revision 2304
Added by Duane Costa about 20 years ago
src/edu/ucsb/nceas/metacat/harvesterClient/HarvesterRegistrationLogin.java | ||
---|---|---|
117 | 117 |
httpSession = req.getSession(true); |
118 | 118 |
httpSession.setAttribute("username", user); |
119 | 119 |
httpSession.setAttribute("password", passwd); |
120 |
res.sendRedirect( |
|
121 |
"edu.ucsb.nceas.metacat.harvesterClient.HarvesterRegistration"); |
|
120 |
res.sendRedirect("HarvesterRegistration"); |
|
122 | 121 |
} |
123 | 122 |
else { |
124 | 123 |
out.println("Invalid login"); |
Also available in: Unified diff
Send redirect to HarvesterRegistration, instead of using the full class name which works on Tomcat-only installations but not with Apache.