You can subscribe to this list here.
2001 |
Jan
|
Feb
|
Mar
(1159) |
Apr
(2137) |
May
(2414) |
Jun
(3068) |
Jul
(2160) |
Aug
(1232) |
Sep
(881) |
Oct
(682) |
Nov
(577) |
Dec
(311) |
---|---|---|---|---|---|---|---|---|---|---|---|---|
2002 |
Jan
(619) |
Feb
(563) |
Mar
(594) |
Apr
(694) |
May
(1004) |
Jun
(2251) |
Jul
(1258) |
Aug
(1309) |
Sep
(1246) |
Oct
(1084) |
Nov
(934) |
Dec
(823) |
2003 |
Jan
(1102) |
Feb
(1115) |
Mar
(1138) |
Apr
(1369) |
May
(1356) |
Jun
(1119) |
Jul
(1074) |
Aug
(1062) |
Sep
(918) |
Oct
(834) |
Nov
(707) |
Dec
(716) |
2004 |
Jan
(571) |
Feb
(2397) |
Mar
(3637) |
Apr
(3718) |
May
(3095) |
Jun
(3054) |
Jul
(2532) |
Aug
(2092) |
Sep
(2217) |
Oct
(2336) |
Nov
(2406) |
Dec
(2315) |
2005 |
Jan
(2624) |
Feb
(2540) |
Mar
(2489) |
Apr
(2549) |
May
(2468) |
Jun
(2531) |
Jul
(2500) |
Aug
(2422) |
Sep
(2124) |
Oct
(2692) |
Nov
(2487) |
Dec
(4165) |
2006 |
Jan
(4721) |
Feb
(5016) |
Mar
(5630) |
Apr
(4747) |
May
(6193) |
Jun
(5074) |
Jul
(1734) |
Aug
(1) |
Sep
|
Oct
|
Nov
|
Dec
|
From: armita <do-...@jb...> - 2006-07-10 14:24:32
|
Trying to deploy the trial blazer I am getting this error message ( AS is jboss-4.0.4.GA) | 18:57:14,594 WARN [ServiceController] Problem starting service jboss.j2ee:service=EJB3,module=beans.jar | java.lang.TypeNotPresentException: Type javax.ejb.EJB not present | at sun.reflect.generics.factory.CoreReflectionFactory.makeNamedType(CoreReflectionFactory.java:98) | at sun.reflect.generics.visitor.Reifier.visitClassTypeSignature(Reifier.java:107) | at sun.reflect.generics.tree.ClassTypeSignature.accept(ClassTypeSignature.java:31) | at sun.reflect.annotation.AnnotationParser.parseSig(AnnotationParser.java:351) | at sun.reflect.annotation.AnnotationParser.parseAnnotation(AnnotationParser.java:175) | at sun.reflect.annotation.AnnotationParser.parseAnnotations2(AnnotationParser.java:69) | at sun.reflect.annotation.AnnotationParser.parseAnnotations(AnnotationParser.java:52) | at java.lang.reflect.Field.declaredAnnotations(Field.java:1002) | at java.lang.reflect.Field.getAnnotation(Field.java:989) | at org.jboss.aop.annotation.AnnotationElement.getVisibleAnnotation(AnnotationElement.java:75) | at org.jboss.aop.Advisor.resolveAnnotation(Advisor.java:388) | View the original post : http://www.jboss.com/index.html?module=bb&op=viewtopic&p=3956598#3956598 Reply to the post : http://www.jboss.com/index.html?module=bb&op=posting&mode=reply&p=3956598 |
From: kbarfield <do-...@jb...> - 2006-07-10 14:18:04
|
"n.belford" wrote : I have now also posted the getting started guide as a PDF. It is down at the bottom of the front page to the JBPM wiki. Thanks! I meant to do that after I finished the guide, but just forgot. Kevin View the original post : http://www.jboss.com/index.html?module=bb&op=viewtopic&p=3956597#3956597 Reply to the post : http://www.jboss.com/index.html?module=bb&op=posting&mode=reply&p=3956597 |
From: Becka <do-...@jb...> - 2006-07-10 14:11:53
|
I think i have successfully created a vhost, but how can i set a deploy directory with a deployment scanner? vhost1.moleman View the original post : http://www.jboss.com/index.html?module=bb&op=viewtopic&p=3956596#3956596 Reply to the post : http://www.jboss.com/index.html?module=bb&op=posting&mode=reply&p=3956596 |
From: blipsman <do-...@jb...> - 2006-07-10 14:11:25
|
jaikiran! Thanks a lot for your prompt help and advice. Worked ! best. View the original post : http://www.jboss.com/index.html?module=bb&op=viewtopic&p=3956595#3956595 Reply to the post : http://www.jboss.com/index.html?module=bb&op=posting&mode=reply&p=3956595 |
From: jnerd <do-...@jb...> - 2006-07-10 14:01:46
|
Hi there, I am having a problem with inheritance, aop and message driven beans (using JBoss 4.0.4 GA with the EJB 3 option enabled). I defined a couple of MDBs which listen to some topics and do nothing than log a little hello in the first instance. So my code looks something like: | @MessageDriven( | description="My Message driven bean to test JMS implementation. It does nothing but loggin the log4j.", | name="LogOneMDB", | activationConfig={ | @ActivationConfigProperty(propertyName = "destinationType", propertyValue = "javax.jms.Topic") | ,@ActivationConfigProperty(propertyName = "destination", propertyValue = "topic/one") | ,@ActivationConfigProperty(propertyName="Durability",propertyValue="Durable")//subscription | ,@ActivationConfigProperty(propertyName="subscriptionName",propertyValue = "LogOneMDB") | ,@ActivationConfigProperty(propertyName="clientID",propertyValue = "LogOneMDB") | } | ) | public class LogOneMDB extends AbstractMDB implements MessageListener{} | | @MessageDriven( | description="My Message driven bean to test JMS implementation. It does nothing but loggin the log4j.", | name="LogTwoMDB", | activationConfig={ | @ActivationConfigProperty(propertyName = "destinationType", propertyValue = "javax.jms.Topic") | ,@ActivationConfigProperty(propertyName = "destination", propertyValue = "topic/two") | ,@ActivationConfigProperty(propertyName="Durability",propertyValue="Durable")//subscription | ,@ActivationConfigProperty(propertyName="subscriptionName",propertyValue = "LogTwoMDB") | ,@ActivationConfigProperty(propertyName="clientID",propertyValue = "LogTwoMDB") | } | ) | public class LogTwoMDB extends AbstractMDB implements MessageListener{} | and a (abstract) super class implementing the listener method: | class AbstractMDB { | public void onMessage(final Message message) { | Logger.getLogger(this.getClass()).debug("Received a message."); | } | } | If you deploy something like this and send a message to the topic(s) you end up with following exception: | 3459235 [ERROR][JMS SessionPool Worker-58][org.jboss.ejb3.mdb.MDB] Exception in JMSCI message listener | java.lang.IllegalAccessException: Class org.jboss.aop.joinpoint.MethodInvocation can not access a member of class com.your.package.AbstractMDB with modifiers "public" | at sun.reflect.Reflection.ensureMemberAccess(Reflection.java:65) | at java.lang.reflect.Method.invoke(Method.java:578) | at org.jboss.aop.joinpoint.MethodInvocation.invokeNext(MethodInvocation.java:112) | at org.jboss.ejb3.interceptor.InvocationContextImpl.proceed(InvocationContextImpl.java:166) | at org.jboss.ejb3.interceptor.EJB3InterceptorsInterceptor.invoke(EJB3InterceptorsInterceptor.java:63) | at org.jboss.aop.joinpoint.MethodInvocation.invokeNext(MethodInvocation.java:101) | at org.jboss.ejb3.entity.TransactionScopedEntityManagerInterceptor.invoke(TransactionScopedEntityManagerInterceptor.java:54) | at org.jboss.aop.joinpoint.MethodInvocation.invokeNext(MethodInvocation.java:101) | at org.jboss.ejb3.AllowedOperationsInterceptor.invoke(AllowedOperationsInterceptor.java:47) | at org.jboss.aop.joinpoint.MethodInvocation.invokeNext(MethodInvocation.java:101) | at org.jboss.aspects.tx.TxPolicy.invokeInCallerTx(TxPolicy.java:126) | at org.jboss.aspects.tx.TxInterceptor$Required.invoke(TxInterceptor.java:201) | at org.jboss.aop.joinpoint.MethodInvocation.invokeNext(MethodInvocation.java:101) | at org.jboss.ejb3.stateless.StatelessInstanceInterceptor.invoke(StatelessInstanceInterceptor.java:62) | at org.jboss.aop.joinpoint.MethodInvocation.invokeNext(MethodInvocation.java:101) | at org.jboss.ejb3.mdb.MDB.localInvoke(MDB.java:865) | at org.jboss.ejb3.mdb.MDB.localInvoke(MDB.java:844) | at org.jboss.ejb3.mdb.MDB$MessageListenerImpl.onMessage(MDB.java:1074) | at org.jboss.jms.asf.StdServerSession.onMessage(StdServerSession.java:266) | at org.jboss.mq.SpyMessageConsumer.sessionConsumerProcessMessage(SpyMessageConsumer.java:902) | at org.jboss.mq.SpyMessageConsumer.addMessage(SpyMessageConsumer.java:170) | at org.jboss.mq.SpySession.run(SpySession.java:323) | at org.jboss.jms.asf.StdServerSession.run(StdServerSession.java:194) | at EDU.oswego.cs.dl.util.concurrent.PooledExecutor$Worker.run(PooledExecutor.java:748) | at java.lang.Thread.run(Thread.java:595) | Am I overseeing something or is this a bug of the EJB3 MDB implementation? Thanks in advance for your help and comments. Cheers, Patrick View the original post : http://www.jboss.com/index.html?module=bb&op=viewtopic&p=3956593#3956593 Reply to the post : http://www.jboss.com/index.html?module=bb&op=posting&mode=reply&p=3956593 |
From: m_ok <do-...@jb...> - 2006-07-10 13:55:45
|
Thanks for replying. I'm not good at gymnastics and juggling either (but it's always good for a laugh ; ). Could you elaborate on your view of what JBPM_LOG is for? I don't see a point in reanalyzing every task of a process every time I want to provide a log to my users. I know I could store that info somewhere but then again isn't that what the JBPM_LOG table is for? >From my perspective, in a system, users do things and that is logged for reference/proof/audit, etc. Another word for this is audit trail. I think of logging (as in the case of JBPM_LOG and not log4j) as a synonym of audit trail and so I thought of logging in jbpm in that sense. Am I wrong in my assumption of what JBPM_LOG is for? (Sorry to the OP for thread-jacking a bit.) View the original post : http://www.jboss.com/index.html?module=bb&op=viewtopic&p=3956592#3956592 Reply to the post : http://www.jboss.com/index.html?module=bb&op=posting&mode=reply&p=3956592 |
From: pegasenz <do-...@jb...> - 2006-07-10 13:55:12
|
I didt it. In the META-INF directory i have the 2 following descriptors : application.xml : <?xml version="1.0" encoding="UTF-8"?> | <application id="Application_ID" version="1.4" xmlns="http://java.sun.com/xml/ns/j2ee" xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance" xsi:schemaLocation="http://java.sun.com/xml/ns/j2ee http://java.sun.com/xml/ns/j2ee/application_1_4.xsd"> | <display-name>JcaLaucher_EAR</display-name> | <module id="ConnectorModule_1152537779516"> | <connector>JcaAdapter.rar</connector> | </module> | <module id="EjbModule_1152537779546"> | <ejb>JcaMDBLauncher.jar</ejb> | </module> | </application> JcaAdapter-ds.xml <!DOCTYPE connection-factories PUBLIC | "-//JBoss//DTD JBOSS JCA Config 1.5//EN" | "http://www.jboss.org/j2ee/dtd/jboss-ds_1_5.dtd"> | <!-- | AdocAdpater JBoss configuration File | --> | <connection-factories> | <no-tx-connection-factory> | <jndi-name>AdocAdapter</jndi-name> | <rar-name>JcaAdapter.rar</rar-name> | <connection-definition> | javax.resource.cci.ConnectionFactory | </connection-definition> | </no-tx-connection-factory> | </connection-factories> Everything works well if deploy outside an ear. Should not be a kind of specific jboss descriptor for an ear file ? View the original post : http://www.jboss.com/index.html?module=bb&op=viewtopic&p=3956591#3956591 Reply to the post : http://www.jboss.com/index.html?module=bb&op=posting&mode=reply&p=3956591 |
From: amit.khosla <do-...@jb...> - 2006-07-10 13:48:57
|
I am working on a project in which i am using AJAX & JSF. I made the application. The application was running smoothly on the TOMCAT. I made some calls using AJAX in some pages. In TOMCAT it was working perfectly. But today i deployed same code to JBOSS. Now I am unable to run it. Whenever I try to do a AJAX call, it dont do it refreshes the page & all the data belonging to JSF distroyed. Although the request has made the change in bean. If i go back, it shows the changes. But i am not getting it on page as it was showing on the TOMCAT. PLZ help Thanx in advance View the original post : http://www.jboss.com/index.html?module=bb&op=viewtopic&p=3956589#3956589 Reply to the post : http://www.jboss.com/index.html?module=bb&op=posting&mode=reply&p=3956589 |
From: kukeltje <do-...@jb...> - 2006-07-10 13:46:04
|
please ask hibernate specific questions in the hibernate forum/mailinglist View the original post : http://www.jboss.com/index.html?module=bb&op=viewtopic&p=3956588#3956588 Reply to the post : http://www.jboss.com/index.html?module=bb&op=posting&mode=reply&p=3956588 |
From: pablojavierpy <do-...@jb...> - 2006-07-10 13:45:40
|
I guess that you are packaging a ".war" inside your EAR. Right? If it is so, try changing the war's context root to anything but "cm". I.E., "cmweb". Repackage your EAR. Redeploy your EAR and you should be able to access the WebService. Let me know if it works. View the original post : http://www.jboss.com/index.html?module=bb&op=viewtopic&p=3956587#3956587 Reply to the post : http://www.jboss.com/index.html?module=bb&op=posting&mode=reply&p=3956587 |
From: amit.khosla <do-...@jb...> - 2006-07-10 13:43:12
|
I am working on a project in which i am using AJAX & JSF. I made the application. The application was running smoothly on the TOMCAT. I made some calls using AJAX in some pages. In TOMCAT it was working perfectly. But today i deployed same code to JBOSS. Now I am unable to run it. Whenever I try to do a AJAX call, it dont do it refreshes the page & all the data belonging to JSF distroyed. Although the request has made the change in bean. If i go back, it shows the changes. But i am not getting it on page as it was showing on the TOMCAT. PLZ help Thanx in advance View the original post : http://www.jboss.com/index.html?module=bb&op=viewtopic&p=3956586#3956586 Reply to the post : http://www.jboss.com/index.html?module=bb&op=posting&mode=reply&p=3956586 |
From: amit.khosla <do-...@jb...> - 2006-07-10 13:42:07
|
I am working on a project in which i am using AJAX & JSF. I made the application. The application was running smoothly on the TOMCAT. I made some calls using AJAX in some pages. In TOMCAT it was working perfectly. But today i deployed same code to JBOSS. Now I am unable to run it. Whenever I try to do a AJAX call, it dont do it refreshes the page & all the data belonging to JSF distroyed. Although the request has made the change in bean. If i go back, it shows the changes. But i am not getting it on page as it was showing on the TOMCAT. PLZ help Thanx in advance View the original post : http://www.jboss.com/index.html?module=bb&op=viewtopic&p=3956585#3956585 Reply to the post : http://www.jboss.com/index.html?module=bb&op=posting&mode=reply&p=3956585 |
From: sebasfiorent <do-...@jb...> - 2006-07-10 13:36:27
|
"gav...@jb..." wrote : For stateful beans they are very different. Gavin, can you explain more precissely which is the difference with stateful beans between @In and @EJB, because I need to choose the correct annotation if they behave different. Regards Sebastian View the original post : http://www.jboss.com/index.html?module=bb&op=viewtopic&p=3956583#3956583 Reply to the post : http://www.jboss.com/index.html?module=bb&op=posting&mode=reply&p=3956583 |
From: kristof_taveirne <do-...@jb...> - 2006-07-10 13:27:37
|
Hi, Can somebody explain me how deployment should be done now with this new version? with Eclipse 3.1.2 I used to have a menuitem when i click on the .ear file: Deploy to ... With the jBoss IDE 2.0.0a I can't find a way to deploy to my server. I see the menu-item "Add/Remove projects" in the Jboss Server View, but then I get a dialog box saying: There are no projects that can be added or removed from the server. Also I noticed that I can drag a .ear file to the serveritem in the Jboss Server View, and then select deploy and verify, but nothing seems to be happening. At least not in the console window. Can somebody explain me what I'm doing wrong? If this stuff is simply not yet working, I will have to go back to eclipse 3.1.2 because I didn't get Jboss IDE 1.6 to work on 3.2 with callisto. Grtz, Kristof. View the original post : http://www.jboss.com/index.html?module=bb&op=viewtopic&p=3956582#3956582 Reply to the post : http://www.jboss.com/index.html?module=bb&op=posting&mode=reply&p=3956582 |
From: phon <do-...@jb...> - 2006-07-10 13:14:38
|
thanks for the reply i found the same solution in the source of the Environment class where it stated that it has this parameter and accept the value "javassist" and "cglib". Couldn't find this in any documentation though.. It solved my problem, so i'm happy :) View the original post : http://www.jboss.com/index.html?module=bb&op=viewtopic&p=3956580#3956580 Reply to the post : http://www.jboss.com/index.html?module=bb&op=posting&mode=reply&p=3956580 |
From: n.belford <do-...@jb...> - 2006-07-10 13:10:33
|
I have now also posted the getting started guide as a PDF. It is down at the bottom of the front page to the JBPM wiki. View the original post : http://www.jboss.com/index.html?module=bb&op=viewtopic&p=3956578#3956578 Reply to the post : http://www.jboss.com/index.html?module=bb&op=posting&mode=reply&p=3956578 |
From: petemuir <do-...@jb...> - 2006-07-10 13:09:26
|
I added a link on the Wiki to the blog entry under a new heading - Components. Would you prefer a copy of the entry? I've also added a JasperReports component that compiles (at the time Seam starts) reports designs defined in components.xml and makes them available for injection. View the original post : http://www.jboss.com/index.html?module=bb&op=viewtopic&p=3956577#3956577 Reply to the post : http://www.jboss.com/index.html?module=bb&op=posting&mode=reply&p=3956577 |
From: infovaibhav <do-...@jb...> - 2006-07-10 13:07:02
|
Hello, I am using postgresql database. I am using ineger array ( int [] ) as a datatype for one column. Here is the schema for table. CREATE TABLE sal_emp ( name text, pay_by_quarter integer[], ); My problem is how we can make use of arrays in Hibernate? How mapping file will look like ? Thanks, Vaibhav... View the original post : http://www.jboss.com/index.html?module=bb&op=viewtopic&p=3956576#3956576 Reply to the post : http://www.jboss.com/index.html?module=bb&op=posting&mode=reply&p=3956576 |
From: edwind <do-...@jb...> - 2006-07-10 12:53:47
|
Hello, Should it be possible to run application build on plain WTP 1.5, so without the installation of JBoss IDE with the JBossAS Adapter ? It tried downloading the Adapter plugin and installing it on plain WTP 1.5. However all seems wel, but I can not add my Enterprise Project with 'add/remove applications' to the JBoss 4.0 AS server. It tells me there are no modules to add. Could it be done? I only need the hot deployment feature to Jboss 4.0 because I am happy with plain WTP 1.5. Edwin View the original post : http://www.jboss.com/index.html?module=bb&op=viewtopic&p=3956575#3956575 Reply to the post : http://www.jboss.com/index.html?module=bb&op=posting&mode=reply&p=3956575 |
From: modjoe23 <do-...@jb...> - 2006-07-10 12:49:16
|
Hi Peter, No that hasn't solved it for me. Please let me know if you find a solution to this problem. Thanks. View the original post : http://www.jboss.com/index.html?module=bb&op=viewtopic&p=3956572#3956572 Reply to the post : http://www.jboss.com/index.html?module=bb&op=posting&mode=reply&p=3956572 |
From: petemuir <do-...@jb...> - 2006-07-10 12:48:32
|
Perhaps you should try the 1.0.1.GA release of Seam? (http://labs.jboss.com/portal/jbossseam/download/index.html). I think no garuntees are made about CVS head being runnable. View the original post : http://www.jboss.com/index.html?module=bb&op=viewtopic&p=3956562#3956562 Reply to the post : http://www.jboss.com/index.html?module=bb&op=posting&mode=reply&p=3956562 |
From: feijtel <do-...@jb...> - 2006-07-10 12:48:28
|
Hi, I'm using JBoss IDE 1.5.1 and JBoss AS 3.2. In the JBoss IDE I have several projects which represent components from a software product I'm writing. All projects together make one big EAR file which is deployed on the JBoss AS. Is it possible to run Packaging for several projects at the same time (one after another I mean)? Now I have to run Packaging for each project individually, and it would be nice if I can run Packaging for all the projects in one action. I haven't found a way to do that within the JBoss IDE. A last resort could be writing a ANT file myself, but I'd prefer not to. Is there anybody who has a solution? Thanks! Leon Feijtel View the original post : http://www.jboss.com/index.html?module=bb&op=viewtopic&p=3956571#3956571 Reply to the post : http://www.jboss.com/index.html?module=bb&op=posting&mode=reply&p=3956571 |
From: TedCat <do-...@jb...> - 2006-07-10 12:48:20
|
Hi, Since we migrated our app from 4..0.3 to 4.0.4 GA, we are facing the follow= ing problem: - some ejb2 sb are created with the right JAAS credentials but while gettin= g the principal, the username is not the right one. It's usualy, anonymous = (or null if module-option name=3D"unauthenticatedIdentity is not set). I am= saying with the right cr=C3=A9dentials since I disabled the JAAS caching t= o be sure and I verified in that the JAAS Login module gets the rights info= . Moreover, these beans have only checked methods that are accessed without= any problem. The principal is got and is not null but username is either a= nonymous or null. Has anybody else faced the same trouble? =20 It worked fine with earlier version, we shifted to 4.0.4 GA for supporting = both ssl &non-ssl in ejb3 through annotations.... thanks, Ted View the original post : http://www.jboss.com/index.html?module=3Dbb&op=3Dv= iewtopic&p=3D3956563#3956563 Reply to the post : http://www.jboss.com/index.html?module=3Dbb&op=3Dpostin= g&mode=3Dreply&p=3D3956563 |
From: grdzeli_kaci <do-...@jb...> - 2006-07-10 12:47:48
|
ok thanks u're rigth .... it works.... but what can i do when i wont work with multiple database ? i think that i need to xml datasourse file (for example : oracle-xa-ds.xml and postgres-ds.xml) both of them configured corectly : oracle ds file : | <datasources> | <xa-datasource> | <jndi-name>XAOracleDS</jndi-name> | <track-connection-by-tx/> | <isSameRM-override-value>false</isSameRM-override-value> <xa-datasource-class>oracle.jdbc.xa.client.OracleXADataSource</xa-datasource-class> | <xa-datasource-property name="URL">jdbc:oracle:thin:@192.9.200.177:1521:devnbtwo</xa-datasource-property> | <xa-datasource-property name="User">paata</xa-datasource-property> | <xa-datasource-property name="Password">1982226</xa-datasource-property> <exception-sorter-class-name>org.jboss.resource.adapter.jdbc.vendor.OracleExceptionSorter</exception-sorter-class-name> | <no-tx-separate-pools/> | <metadata> | <type-mapping>Oracle9i</type-mapping> | </metadata> | </xa-datasource> | <mbean code="org.jboss.resource.adapter.jdbc.vendor.OracleXAExceptionFormatter" | name="jboss.jca:service=OracleXAExceptionFormatter"> | <depends optional-attribute-name="TransactionManagerService">jboss:service=TransactionManager</depends> | </mbean> | </datasources> | and postgres ds file: | <datasources> | <local-tx-datasource> | <jndi-name>PostgresDS</jndi-name> | <connection-url>jdbc:postgresql://localhost:5432/Test</connection-url> | <driver-class>org.postgresql.Driver</driver-class> | <user-name>postgres</user-name> | <password>1982226</password> | <new-connection-sql>select 1</new-connection-sql> | <metadata> | <type-mapping>PostgreSQL 7.2</type-mapping> | </metadata> | </local-tx-datasource> | </datasources> | and i want do operation wich inserts into one db and then into second db in one transaction .... how i can do it ? :( plz F1 :) wes...@jb... told me about JBossJCA but i didn't find any sample about it ... is there any simple example about distributed transactions ... View the original post : http://www.jboss.com/index.html?module=bb&op=viewtopic&p=3956565#3956565 Reply to the post : http://www.jboss.com/index.html?module=bb&op=posting&mode=reply&p=3956565 |
From: kanthkr <do-...@jb...> - 2006-07-10 12:46:32
|
Hello, We are using Jboss 4.0.3 with EJB3.0 setup and the system is running fine. But when we migrated to JBoss 4.0.4, there were problems during compiling, it asked for unit name. We added the unit name and created a new persistence.xml with the details as shown. "@PersistenceContext(unitName="phx4EJB")" But We get the error as shown below. Does anyone have any idea? 17:57:19,453 INFO [JmxKernelAbstraction] installing MBean: jboss.j2ee:jar=Phoen ixServer.jar,name=PhxCommonBean,service=EJB3 with dependencies: 17:57:19,453 INFO [JmxKernelAbstraction] persistence.units:unitName=phx4E JB 17:57:19,468 INFO [JmxKernelAbstraction] installing MBean: jboss.j2ee:jar=Phoen ixServer.jar,name=ComplexityDriverBean,service=EJB3 with dependencies: 17:57:19,468 INFO [JmxKernelAbstraction] persistence.units:unitName=phx4E JB 17:57:19,468 INFO [JmxKernelAbstraction] installing MBean: jboss.j2ee:jar=Phoen ixServer.jar,name=PhxMonitorBean,service=EJB3 with dependencies: 17:57:19,812 INFO [EJBContainer] STARTED EJB: com.bosch.in.phoenix.monitor.PhxM onitorBean ejbName: PhxMonitorBean 17:57:19,921 INFO [JmxKernelAbstraction] installing MBean: jboss.j2ee:jar=Phoen ixServer.jar,name=ProjectBean,service=EJB3 with dependencies: 17:57:19,921 INFO [JmxKernelAbstraction] persistence.units:unitName=phx4E JB 17:57:19,921 INFO [JmxKernelAbstraction] installing MBean: jboss.j2ee:jar=Phoen ixServer.jar,name=TreeObjectBean,service=EJB3 with dependencies: 17:57:20,031 INFO [EJBContainer] STARTED EJB: com.bosch.in.phoenix.projects.Tre eObjectBean ejbName: TreeObjectBean 17:57:20,140 INFO [JmxKernelAbstraction] installing MBean: jboss.j2ee:jar=Phoen ixServer.jar,name=PromicsBean,service=EJB3 with dependencies: 17:57:20,140 INFO [JmxKernelAbstraction] persistence.units:unitName=phx4E JB 17:57:20,140 INFO [JmxKernelAbstraction] installing MBean: jboss.j2ee:jar=Phoen ixServer.jar,name=ResourceBean,service=EJB3 with dependencies: 17:57:20,140 INFO [JmxKernelAbstraction] persistence.units:unitName=phx4E JB 17:57:20,140 INFO [JmxKernelAbstraction] installing MBean: jboss.j2ee:jar=Phoen ixServer.jar,name=SecurityBean,service=EJB3 with dependencies: 17:57:20,156 INFO [JmxKernelAbstraction] persistence.units:unitName=phx4E JB 17:57:20,156 INFO [JmxKernelAbstraction] installing MBean: jboss.j2ee:jar=Phoen ixServer.jar,name=UserBean,service=EJB3 with dependencies: 17:57:20,156 INFO [JmxKernelAbstraction] persistence.units:unitName=phx4E JB 17:57:20,156 INFO [JmxKernelAbstraction] installing MBean: jboss.j2ee:jar=Phoen ixServer.jar,name=UserManagerBean,service=EJB3 with dependencies: 17:57:20,156 INFO [JmxKernelAbstraction] persistence.units:unitName=phx4E JB 17:57:20,171 INFO [JmxKernelAbstraction] installing MBean: jboss.j2ee:jar=Phoen ixServer.jar,name=WPBean,service=EJB3 with dependencies: 17:57:20,171 INFO [JmxKernelAbstraction] persistence.units:unitName=phx4E JB 17:57:20,187 INFO [EJB3Deployer] Deployed: file:/D:/tools/jboss-4.0.4.GA/server /all/deploy/PhoenixServer.jar 17:57:20,234 INFO [TomcatDeployer] deploy, ctxPath=/jmx-console, warUrl=.../dep loy/jmx-console.war/ 17:57:22,421 ERROR [URLDeploymentScanner] Incomplete Deployment listing: --- MBeans waiting for other MBeans --- ObjectName: jboss.j2ee:jar=PhoenixServer.jar,name=PhxCommonBean,service=EJB3 State: NOTYETINSTALLED I Depend On: persistence.units:unitName=phx4EJB ObjectName: jboss.j2ee:jar=PhoenixServer.jar,name=ComplexityDriverBean,service=E JB3 State: NOTYETINSTALLED I Depend On: persistence.units:unitName=phx4EJB ObjectName: jboss.j2ee:jar=PhoenixServer.jar,name=ProjectBean,service=EJB3 State: NOTYETINSTALLED I Depend On: persistence.units:unitName=phx4EJB ObjectName: jboss.j2ee:jar=PhoenixServer.jar,name=PromicsBean,service=EJB3 State: NOTYETINSTALLED I Depend On: persistence.units:unitName=phx4EJB ObjectName: jboss.j2ee:jar=PhoenixServer.jar,name=ResourceBean,service=EJB3 State: NOTYETINSTALLED I Depend On: persistence.units:unitName=phx4EJB ObjectName: jboss.j2ee:jar=PhoenixServer.jar,name=SecurityBean,service=EJB3 State: NOTYETINSTALLED I Depend On: persistence.units:unitName=phx4EJB ObjectName: jboss.j2ee:jar=PhoenixServer.jar,name=UserBean,service=EJB3 State: NOTYETINSTALLED I Depend On: persistence.units:unitName=phx4EJB ObjectName: jboss.j2ee:jar=PhoenixServer.jar,name=UserManagerBean,service=EJB3 State: NOTYETINSTALLED I Depend On: persistence.units:unitName=phx4EJB ObjectName: jboss.j2ee:jar=PhoenixServer.jar,name=WPBean,service=EJB3 State: NOTYETINSTALLED I Depend On: persistence.units:unitName=phx4EJB --- MBEANS THAT ARE THE ROOT CAUSE OF THE PROBLEM --- ObjectName: persistence.units:unitName=phx4EJB State: NOTYETINSTALLED Depends On Me: jboss.j2ee:jar=PhoenixServer.jar,name=PhxCommonBean,service=EJB3 jboss.j2ee:jar=PhoenixServer.jar,name=ComplexityDriverBean,service=EJB3 jboss.j2ee:jar=PhoenixServer.jar,name=ProjectBean,service=EJB3 jboss.j2ee:jar=PhoenixServer.jar,name=PromicsBean,service=EJB3 jboss.j2ee:jar=PhoenixServer.jar,name=ResourceBean,service=EJB3 jboss.j2ee:jar=PhoenixServer.jar,name=SecurityBean,service=EJB3 jboss.j2ee:jar=PhoenixServer.jar,name=UserBean,service=EJB3 jboss.j2ee:jar=PhoenixServer.jar,name=UserManagerBean,service=EJB3 jboss.j2ee:jar=PhoenixServer.jar,name=WPBean,service=EJB3 17:57:22,593 INFO [Http11BaseProtocol] Starting Coyote HTTP/1.1 on http-0.0.0.0 -8080 17:57:22,781 INFO [ChannelSocket] JK: ajp13 listening on /0.0.0.0:8009 17:57:22,859 INFO [JkMain] Jk running ID=0 time=0/109 config=null 17:57:22,875 INFO [Server] JBoss (MX MicroKernel) [4.0.4.GA (build: CVSTag=JBos s_4_0_4_GA date=200605151000)] Started in 34s:719ms Please let me know if anyone knows a solution to this. Regards, SKR View the original post : http://www.jboss.com/index.html?module=bb&op=viewtopic&p=3956570#3956570 Reply to the post : http://www.jboss.com/index.html?module=bb&op=posting&mode=reply&p=3956570 |