servlet--call jsp file
Posted
by megala
on Stack Overflow
See other posts from Stack Overflow
or by megala
Published on 2010-03-13T10:24:55Z
Indexed on
2010/03/13
10:35 UTC
Read the original article
Hit count: 348
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.
© Stack Overflow or respective owner