[JBoss-user] Can I store a Local Entity Bean in my HttpSession?

2003-03-15 Thread Russell Black
Can I store a Local Entity Bean in my HttpSession? That is, will it be valid on subsequent requests? Something like this?session.setAttribute("foo", beanLocalHome.findByPrimaryKey(key));Thanks,Russell

Re[2]: [JBoss-user] Error while deployin MBean

2003-03-15 Thread Danilo Luiz Rheinheimer
Hello, The problem is the service.xml file is being deployed before of the .jar file with his classes. A solution can be include a classpath tag on the service file with the jar file it uses : Saturday, March 15, 2003, 10:30:54 AM, you wrote: DJ> On 2003.03.15 03:03 Muraly R

Re: [JBoss-user] snmp crashing jboss and jvm

2003-03-15 Thread Stephen Davidson
Hi Nick. Just a suggestion for a starting point, but maybe turn on debugging in JBoss? Set to maximum. I believe that there is a log4j.xml file kicking around where you can set this. With a little luck, you may get some extra output into the server log before the crash happens, that can at leas

Re: [JBoss-user] Subclassing allowed in CMR?

2003-03-15 Thread Neal Sanche
Thanks for the info, After I posted the message I came up with a very similar idea to yours. The only problem I have with the description you gave is how you're doing the traversal to the 'info' table records from the parent class without having info_fk in the parent class for each info that y

[JBoss-user] 互联网带来的机会

2003-03-15 Thread 12iuha
想让您的网站名扬四海吗? 想让您的产品更多的人知道吗? 想让你的客户找到你吗? 您想搜集到您的潜在客户吗? 您再也不用犯愁了,找到我这些问题迎刃而解! 刀锋电子邮件营销网:http://www.8he8.com/ 联系方式:0533-8652951 13853366319 网络咨询:QQ:66388619 ★ ★ 本站代办网络宣传任务: 广告邮件发送、商务网站登陆信息多站连发。 ★ ★ 本站专业定向搜索――发布各类商业电子邮件。 本站承诺:在同类数量,质量电子邮件地址(1.3亿)本站价格最合理, 若发现信息不实,请提供途径,本站光盘免费赠

Re: [JBoss-user] Error while deployin MBean

2003-03-15 Thread David Jencks
Usually this means that the *-service.xml file is being deployed before the .jar file with the classes it needs. Solutions include: -putting the classes in a .jar in [config]/lib -using a .sar -labeling the packages appropriately and using a deployment scanner that alphabetizes the package depl

[JBoss-user] Re: Re: Hibernate or ejb

2003-03-15 Thread Eric Jain
> Maybe we should consider adding a hibernate > as a supported front end framework (like CMP, AOP and JDO). That would definitely be a great feature! While entity beans may have their benefits, they are certainly not the right tool for every job. Consider the case where you start out with a compl

Re: [JBoss-user] Re: Hibernate or ejb

2003-03-15 Thread kiuma
Schnitzer, Jeff wrote: Sounds like Hibernate needs some integration with J2EE transactions. Yes, and I gather that a component is in the works. But Hibernate works well in an EJB environment anyways. The great advantage over Hibernate over CMP, IMHO, is that the data objects are simple JavaB

Re: [JBoss-user] cmr relationship problem

2003-03-15 Thread kiuma
Brijesh Sood wrote: Hi need help for the ejbrelation work ..i m new kid in this field I have two entity bean User and Role . User and Role having bidirectional one to Many relationship. I m using userID as primary key in User Entity Bean , it is db auto increment field . And rol

[JBoss-user] Error while deployin MBean

2003-03-15 Thread Muraly R
Hi All, I am writing an MBean which extends the ServiceMBeanSupport. This will start the customised services for my application. Instead of using 'sar', I am using '-service.xml' file for deployin the MBean. All the classes related to the MBean and the MBean itself are inside the 'jar' of my a