Thanks for the reply.
My web application is running in one of the webservers. I just create a javaBean and set some values and put it in the request scope. In my
JSP I just get the bean from the request scope and print the value... simple.
For this simple process whether my been need to implement the serializable interface. And what are all the risks involved if I didn't implement the Serializable interface. I heard that we need to implement serializable to avoid accessing/changing the data through the network. Is it true?
Thanks in advance.