Look back step how you setup GlassFish to be your application server and change it to Tomcat, also make sure that your application produces WAR file that you can then deploy on your remote server
peter_budo
Code tags enforcer
15,787 posts since Dec 2004
Reputation Points: 2,867
Solved Threads: 944
Skill Endorsements: 49
Without actual code it is hard to determine what is wrong but common mistake can be something along this
<jsp:setProperty name="logdetails" property="Username" value="<%=request.getParameter("Username")%>" />
that should be written as
<jsp:setProperty name="logdetails" property="Username" value='<%=request.getParameter("Username")%>' />
peter_budo
Code tags enforcer
15,787 posts since Dec 2004
Reputation Points: 2,867
Solved Threads: 944
Skill Endorsements: 49
Question Answered as of 1 Year Ago by
peter_budo