hello i have developed a servlet and a ejb,i invoke the ejb from the servlet,the ejb server and the web server is in the different computer,it works well. but i wonder if i can replace the servlet with the jsp? because if i use the servlet,i can compile it in advance within the same machine with the remote interface and the home interface,after that,deploy them to different machine,but if i use jsp,it must be compiled during runtime,at this time,the jsp and ejb are in the different srver,how dos the jsp find the ejb
hanumanth reddy
Ranch Hand
Joined: Jun 12, 2000
Posts: 118
posted
0
place the ejb calling code as jva use bean complie it and call in the jsp it should work
<a href="http://www.jobklub.com" target="_blank" rel="nofollow">http://www.jobklub.com</a><br /> 'Add Job To Life'
Thomas Paul
mister krabs
Ranch Hand
Joined: May 05, 2000
Posts: 13974
posted
0
The JSP has to do a lookup. But why do you want a JSP accessing an EJB? That is not a good design decision.