[java ee programming] Deploying the web tier on seperate web server

2011-07-27 Thread Baqar Naqvi
Hi, I have an application design with the following architecture: Presentation Tier - JSF , Backing Beans Business Tier and Integeration tier : Session Bean (EJB 3.0) with JPA Entities Instead of using seperate DTOs to transfer data between the layer I have used the detached JPA Entities

Re: [java ee programming] Constructor

2011-07-27 Thread JiGSAW
Hi rafel, In a class, when you are define the parametrized constructor, you have to explicitly declare the no argument constructor. So pls try with the following code: *public* *class* SecuredPage *extends *WebPage { *public *SecuredPage(PageParameters pageParameters) { ** *super*(

Re: [java ee programming] Deploying the web tier on seperate web server

2011-07-27 Thread bambang passion
yes On Wed, Jul 27, 2011 at 9:19 PM, Baqar Naqvi baqar_gr...@hotmail.comwrote: Hi, I have an application design with the following architecture: Presentation Tier - JSF , Backing Beans Business Tier and Integeration tier : Session Bean (EJB 3.0) with JPA Entities Instead of using