| Thread | Last Post | Replies |
|
| How to prevent unauthorized opening of web page ? | 31 May 2005 18:40 GMT | 2 |
I am developing a Reservation System in J2EE . Following the MVC Model 2 Architecture. I have 20 JSP pages with me . My starting page is the login page LOGIN.JSP, and then only the user is taken to the Home.JSP (if
|
| JBoss 4.0 sp1 doesn,t create an EJB from another EJB. | 30 May 2005 20:48 GMT | 1 |
I´m using JBoss 4.0sp1 and J2EE 1.4. I have a Servlet who creates a Session Bean ant this SB creates other Entity Bean. The Servlet creates perfectly the Session Bean. But the SB cannot create the Entity Bean because it doesn't find in the context.
|
| How to evaluate the performace of the EJB? | 30 May 2005 20:47 GMT | 1 |
I have wrote EJBs,and deployed it to the weblogic server,how can I know it is better than than implemented with servlets.I really want to know whether EJBs is what I wanted.Thanks.
|
| How make environment variable available to all beans? | 18 May 2005 14:23 GMT | 4 |
How can I make a global/environment variable declared in my descriptor available to all my beans? I know in the web descriptor you can declare variables that are available to all servlets, but I can't find that for ejb's.
|
| XDoclet plug-in for Eclipse? | 14 May 2005 17:45 GMT | 1 |
I'm looking for an open source (i.e. free) XDoclet plugin for eclipse. Googled a few times, but nothing useful turned up yet (quite suprisingly). Any one knows of such a plug-in?. MTIA
|
| EJB design question (delegation to POJO) | 14 May 2005 08:58 GMT | 8 |
In designing a J2EE application, is it possible to let your beans delegate to "conforming" POJOs - (meaning they don't do any file I/O, listening on sockets, spawn threads etc) - the idea is that so that I can have my session beans, servlets (possibly MDBs) and a non J2EE
|
| EJB / CMP: storing large files in DB | 11 May 2005 22:34 GMT | 7 |
Hi I'm working on a ejb application which has a database table to store files as 'bytea' datatype in a postgres database. My first try was to read the files into a byte[] on the client and call the setData(byte[] b) method on the written entity bean. This works great for
|
| EJB design question (object location) | 11 May 2005 22:23 GMT | 3 |
Hi I have an EJB design question. I am developing a J2EE application that receives a continuous stream of data from a simulation. I have a class (not yet converted into a servlet - hence this question) that will provide statistical analysis of the simulated data. The class has ...
|
| How implement RDBMS Domain Tables in EJB? | 10 May 2005 21:49 GMT | 5 |
How would I BEST implement the following in EJB? In RDBMS I might have Customers all with many types of Addresses. That relationship could be modeled by: CustomerTable --> CustomerAddressesLinkTable <--AddressTable
|
| How implement this find method with bean inheritence? | 07 May 2005 22:46 GMT | 3 |
I have a ProductBean which is the super class of BookBean, ClothesBean and I want to create a find method like: [CODE]public ProductRemote findAllInCategory(Integer categoryID) throws FinderException, RemoteException;[/CODE]
|
| Why doesn't this EJB code work? | 06 May 2005 02:38 GMT | 3 |
OK, I have a BookBean that contains a collection of ChapterBeans. Now when you call BookHome.create(...), in ejbPostCreate, it does the following: [code]
|
| what should be the architecture !! | 04 May 2005 04:38 GMT | 24 |
hi.. I am developing a Lab management software. Our lab includes certain resources like Switches and routers . We just want to keep track that who all people have reserverd the resources and
|