i developing evaluation system. have set dynamic web project in eclipse (with apache tomcat) , have been able access , view project when accessing on local host. however, deployed online (via war) , when access site web pages not render. shown code. set doc type , content type in html comment , meta tag respectively. why happening? site deployed @ (removed) of right now.
firebug great tool check http request/responses. check net tab. here http response headers when access site linked in question:
note content type. it's wrong, should text/html
. if using jsp serve response, had in top of jsp
<%@page contenttype="text/plain" %>
you should remove (it defaults text/html
) or if in vain, replace by
<%@page contenttype="text/html" %>
if still in vain, contact support of hosting.
Comments
Post a Comment