servlet--call jsp file
- by megala
I created servlet program it contained the following coding.
======coding
public class GreetingServiceImpl extends RemoteServiceServlet implements
GreetingService {
public String greetServer(String input) {
Cal c=new Cal();
c.call(input);
return "success";
}
}
=========My constraints is i want to call index.jsp from this servlet how to achieve this.