When I try to instantiate an class inside my JSP page, I Get the following error:
An error occurred at line: 5 in the jsp file: /ProcessSale.jsp
UniversalPlugin cannot be resolved to a type
2: <%@ page import="java.util.*" %>
3: <%@ page import="com.aciworldwide.commerce.gateway.plugins.*, com.sun.org.apache.xalan.internal.xsltc.compiler.Parser" %>
4: <%
5: UniversalPlugin o = new UniversalPlugin();
6: %>
Follow my code:
<%@ page language="java" contentType="text/html; charset=ISO-8859-1" pageEncoding="ISO-8859-1"%>
<%@ page import="java.util.*" %>
<%@ page import="com.aciworldwide.commerce.gateway.plugins.*, com.sun.org.apache.xalan.internal.xsltc.compiler.Parser" %>
<%
UniversalPlugin o = new UniversalPlugin();
%>
How I can to do it inside a JSP page?