Advertisement
Guest User

Untitled

a guest
Jun 22nd, 2017
75
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
Java 0.45 KB | None | 0 0
  1. <%@page import="ubergloss.connectors.*" %>
  2.  
  3. <%
  4. AbstractConnector con = null;
  5.  
  6. try
  7. {
  8.     String username = session.getAttribute("username") != null ? session.getAttribute("username").toString() : "";
  9.     String password = session.getAttribute("password") != null ? session.getAttribute("password").toString() : "";
  10.     con = AbstractConnector.getConnector(username,password);
  11. }
  12. catch (Exception e)
  13. {
  14.     response.sendRedirect("login.jsp");
  15.     return;
  16. }
  17. %>
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement