Advertisement
Guest User

Untitled

a guest
Jul 11th, 2017
64
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 1.01 KB | None | 0 0
  1. org.apache.jasper.JasperException: Unable to compile class for JSP:
  2.  
  3. An error occurred at line: 14 in the jsp file: /login.jsp
  4. MatchMaking cannot be resolved
  5. 11: </head>
  6. 12: <body>
  7. 13: <%
  8. 14: Connection con = MatchMaking.connect();
  9. 15: String name = request.getParameter("vorname");
  10. 16: String pass = request.getParameter("passwort");
  11. 17:
  12.  
  13.  
  14. An error occurred at line: 18 in the jsp file: /login.jsp
  15. XYZ cannot be resolved to a type
  16. 15: String name = request.getParameter("vorname");
  17. 16: String pass = request.getParameter("passwort");
  18. 17:
  19. 18: XYZ user = MatchMaking.login(con, name, pass);
  20. 19: %>
  21. 20:
  22. 21: <%
  23.  
  24.  
  25. An error occurred at line: 18 in the jsp file: /login.jsp
  26. MatchMaking cannot be resolved
  27. 15: String name = request.getParameter("vorname");
  28. 16: String pass = request.getParameter("passwort");
  29. 17:
  30. 18: XYZ user = MatchMaking.login(con, name, pass);
  31. 19: %>
  32. 20:
  33. 21: <%
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement