Jump to content

abhigyan

Members
  • Posts

    13
  • Joined

  • Last visited

Everything posted by abhigyan

  1. the url to acces it --.heliohost.org/servlet/ServletTestPage
  2. i have uploaded a simple demo servlet It is working fine on my local server but not here it is at www.cyberwolves.heliohost.org/servlet/Demo code of it is import javax.servlet.Servlet; import javax.servlet.ServletConfig; import javax.servlet.ServletRequest; import javax.servlet.ServletResponse; import javax.servlet.ServletException; import java.io.PrintWriter; import java.io.IOException; public class Demo implements Servlet { public void init(ServletConfig sc) { System.out.println("init method called"); } public void service(ServletRequest req,ServletResponse res)throws ServletException,IOException { PrintWriter pw=res.getWriter(); pw.println("<body bgcolor=yellow>"); pw.println("<h1> Demo of first servlet program</h1>"); System.out.println("service method called"); } public void destroy() { } public String getServletInfo() { return null; } public ServletConfig getServletConfig() { return null; } }
  3. i have read it we have to install only apache sever and than we can add functionality of php and jsp in it.. i want to use this because my clg is using php and i have developed module in Jsp
  4. I m using windows7 and tomcat 6.0.. i have installed XAMPP for php.. I want to combine them so i can use jsp and php on a single website
  5. i have already java support on my following domain.. HelioHost accocunt name : ratj2ee Heliohost domain name : roadahead.heliohost.org Email-address : abhigyansen@gmail.com My problem is: i have installed apache server on my personal computer to test the php pages before uploading them, Now when i have jsp support on my heliohost domain , I want to setup the JAVA support on my personal apache too, Currently i am using seprate tomcat for it,, Is there any way to run both PHP and JSP from single apache(On my personal computer),, plz refer me any link or guide,, plzzzzzzz help me as you have done before,, thanks
×
×
  • Create New...