Originally posted by Vishakha Ahuja:
Hi,
I've installed JRUN on my home PC (Windows 98).
JRun supports EJB. I want to try out EJB examples in JRun.
Can anyone tell me how do I do that ? Has anyone tried it in
JRun with success ?
Originally posted by Vishakha Ahuja:
Hi,
Now, I do understand the difference b/w form's GET and POST methods, but when it comes to servlets, I've seen doPost() just calls the doGet() (the book is Marty Hall's Core Servlets and JSP). If that is the case, why have 2 diff. methods ? I mean shouldn't they have different purposes?
Originally posted by Goldie Hawn:
Hi,
I want to use some of the bean properties I set thru a jsp page in a servlet. Can someone guide how do i do that....
Thanks
Originally posted by kaffo lekan:
Hello Pawar,
i still dont understand the operation, please break down the explanation futher.
Thanks
kaffo
Originally posted by Bala Krishniah:
MyClassObject method()
{
MyClassObject myObject = new MyClassObject();
:
:
return myobject;
}
In my main, can I assign this return type to new object like this...
(1)MyClassObject myOtherObject1 = method();
(2)MyClassObject myOtherObject2 = new MyClassObject();
myOtherObject1 = method();
Which one is correct?