|
----- Original Message -----
Sent: Wednesday, February 13, 2002 11:32 AM
Subject: Re: Re: EJB to Servlets
Hi
wen
this solution is used when servlet calls ejb(this
is cool and well known stuff) , in our requirement we have to push the data
to servlet , then how should we do this .............any idea.
-Suhel
----- Original Message -----
Sent: Wednesday, February 13, 2002 11:12
AM
Subject: Re: Re: EJB to Servlets
Say SO is a serialized object, RI is the
remote interface of an SLSB.
Then the definition for RI looks like the
following:
RI {
SO getSO( ); // a business
method for Servlet
}
The code in Servlet looks like the
following:
SO so = RI.getSO( );
Cheers,
Wenhui
----- Original Message -----
Sent: Wednesday, February 13, 2002 2:36
PM
Subject: Re: Re: EJB to Servlets
Hi
Wen
can just send me some code bytes which shows
sending serialized object from SLSB , and again retrieving at servlet side ,
if you dont mind to do so .
-Suhel
----- Original Message -----
Sent: Wednesday, February 13, 2002
10:43 AM
Subject: Re: EJB to Servlets
Hi Suhel,
For my previous project, I used a
serialized object to encapsulate the data I wanted to feed servlet from
SLSB, it worked well.
Cheers,
Wenhui
----- Original Message -----
Sent: Wednesday, February 13, 2002
2:11 PM
Subject: Re: EJB to Servlets
hey
I want to post some form data form my
Session Beans to Servelt, in either way i can say i want sent send
standard http request to servelts which contains huge amount of form
data, hope this will give you overall picture of problem.
-Suhel
----- Original Message -----
Sent: Wednesday, February 13,
2002 10:35 AM
Subject: Re: EJB to
Servlets
What type of you want to
post?
----- Original Message -----
Sent: Wednesday, February 13,
2002 10:25 AM
Subject: EJB to Servlets
Hi
Guys
i have some requirement in which i have
to post data from Session Beans to Servlets, can any one suggest me
some good examples to do the same, in optimized
way.
-Suhel
|