On Jul 16, 7:07 pm, Raul <raahoo
...@gmail.com> wrote:
> Hello All
> I have a question. If I want to develop a ajax based web application,
> is it possible to do it without servlet?
> What exactly I want to do is, I will have jsp pages and these pages
> will have forms and I want to put function of plain java class files
> as action to these forms. the client side JSP pages will interact with
> these java class files which will reside on my server through Ajax
> calls.
What do you actually mean by "client side JSP pages"? JSP pages must
also run on a container. So, essentially your JSP page and the java
classes will run in the same JVM. So, you can use them in any way you
like.
> So my question is, will my plain java classes will do the job done for
> handling all the server side logics?
Well... JSP pages are kind of a servlet actually. But you can say that
you can achieve what you want without writing any "pure" servlets.
Regards.