Help for Java EE5 enterprise application with JSP,Session Bean,Entityclass

Hi

I am new to JavaEE5 and I am developing an enterprise application in NetBeans and deploying in Sun Application Server. My application requires JSP pages for web presentation and Session Bean for business logic and entity classes to access database.

Can anybody please tell me how do I access Session Bean method inside JSP page and how do I insert,update and select data through entity classes.

Is there any example that has all the three components?

Regards

Snehak

[506 byte] By [snehaka] at [2007-11-27 3:36:33]
# 1
Have a look at the MVC2 design pattern.
enigma_y2k1a at 2007-7-12 8:39:48 > top of Java-index,Enterprise & Remote Computing,Enterprise Technologies...
# 2
You can search my blog for examples: http://prideafrica.blogspot.com/search?q=session+bean. I have quite a few on there dealing with EJBs, session beans, JSP, and NetBeans/SJSAS.
prideafricaa at 2007-7-12 8:39:48 > top of Java-index,Enterprise & Remote Computing,Enterprise Technologies...
# 3
Thanks for the link.It helped a lot for my project.I need help regarding remote access:If I were to access the Enterprise application through URL on another laptop or PC i.e., make the application remote, what changes should be done and
snehaka at 2007-7-12 8:39:48 > top of Java-index,Enterprise & Remote Computing,Enterprise Technologies...
# 4

First, you need to make sure your two computers can see each other on the network. Use ping to determine this.

Second, if you use a URL such as http://localhost:8080/MyApp/ to reach your application locally, you simply need to type http://<machine_name_or_ip_address>:8080/MyApp/ to get to the same application. Replace machine_name_or_ip_address with that remote machine's name or IP address. Try it first on the local machine, then try it on the remote machine.

If you have firewalls and such, matters get complicated a little.

prideafricaa at 2007-7-12 8:39:48 > top of Java-index,Enterprise & Remote Computing,Enterprise Technologies...