[JBoss Messaging] - Bridge still recieving messages while rollback
by Benjamin Graf
Benjamin Graf [http://community.jboss.org/people/graben] created the discussion
"Bridge still recieving messages while rollback"
To view the discussion, visit: http://community.jboss.org/message/565823#565823
--------------------------------------------------------------
14:37:08,443 TRACE [Bridge] Checker thread has finished
14:37:08,443 TRACE [Bridge] Rolling back remaining tx
14:37:08,443 TRACE [Bridge] org.jboss.jms.server.bridge.Bridge$SourceListener@10e75a9 received message delegator->JBossMessage[21082941462498312]:PERSISTENT, deliveryId=37402
14:37:08,443 TRACE [Bridge] org.jboss.jms.server.bridge.Bridge$SourceListener@10e75a9 rescheduled batchExpiryTime to 1286800629443
14:37:08,443 TRACE [Bridge] org.jboss.jms.server.bridge.Bridge$SourceListener@10e75a9 received message delegator->JBossMessage[21082941462498313]:PERSISTENT, deliveryId=37403
14:37:08,443 TRACE [Bridge] org.jboss.jms.server.bridge.Bridge$SourceListener@10e75a9 rescheduled batchExpiryTime to 1286800629443
14:37:08,443 TRACE [Bridge] Rolled back remaining tx
14:37:08,443 TRACE [Bridge] org.jboss.jms.server.bridge.Bridge$SourceListener@10e75a9 received message delegator->JBossMessage[21082941462498310]:PERSISTENT, deliveryId=37400
14:37:08,443 TRACE [Bridge] org.jboss.jms.server.bridge.Bridge$SourceListener@10e75a9 rescheduled batchExpiryTime to 1286800629443
14:37:08,443 TRACE [Bridge] org.jboss.jms.server.bridge.Bridge$SourceListener@10e75a9 received message delegator->JBossMessage[21082941462498311]:PERSISTENT, deliveryId=37401
14:37:08,443 TRACE [Bridge] org.jboss.jms.server.bridge.Bridge$SourceListener@10e75a9 rescheduled batchExpiryTime to 1286800629443
14:37:08,675 TRACE [Bridge] Stopped org.jboss.jms.server.bridge.Bridge@3fa654
I'm using JBoss Messagin 1.4.2 and recognized following situation which looks a bit odd to me.
14:37:08,443 TRACE [Bridge] Checker thread has finished
14:37:08,443 TRACE [Bridge] Rolling back remaining tx
14:37:08,443 TRACE [Bridge] org.jboss.jms.server.bridge.Bridge$SourceListener@10e75a9 received message delegator->JBossMessage[21082941462498312]:PERSISTENT, deliveryId=37402
14:37:08,443 TRACE [Bridge] org.jboss.jms.server.bridge.Bridge$SourceListener@10e75a9 rescheduled batchExpiryTime to 1286800629443
14:37:08,443 TRACE [Bridge] org.jboss.jms.server.bridge.Bridge$SourceListener@10e75a9 received message delegator->JBossMessage[21082941462498313]:PERSISTENT, deliveryId=37403
14:37:08,443 TRACE [Bridge] org.jboss.jms.server.bridge.Bridge$SourceListener@10e75a9 rescheduled batchExpiryTime to 1286800629443
14:37:08,443 TRACE [Bridge] Rolled back remaining tx
14:37:08,443 TRACE [Bridge] org.jboss.jms.server.bridge.Bridge$SourceListener@10e75a9 received message delegator->JBossMessage[21082941462498310]:PERSISTENT, deliveryId=37400
14:37:08,443 TRACE [Bridge] org.jboss.jms.server.bridge.Bridge$SourceListener@10e75a9 rescheduled batchExpiryTime to 1286800629443
14:37:08,443 TRACE [Bridge] org.jboss.jms.server.bridge.Bridge$SourceListener@10e75a9 received message delegator->JBossMessage[21082941462498311]:PERSISTENT, deliveryId=37401
14:37:08,443 TRACE [Bridge] org.jboss.jms.server.bridge.Bridge$SourceListener@10e75a9 rescheduled batchExpiryTime to 1286800629443
14:37:08,675 TRACE [Bridge] Stopped org.jboss.jms.server.bridge.Bridge@3fa654
Could this follow to lost messages if bridge ist not closed correctly?
Greets Benjamin
--------------------------------------------------------------
Reply to this message by going to Community
[http://community.jboss.org/message/565823#565823]
Start a new discussion in JBoss Messaging at Community
[http://community.jboss.org/choose-container!input.jspa?contentType=1&cont...]
14 years, 3 months
[jBPM] - Problem terminating concurent executions that have active sub-processes [jBPM 4.3/4.4 + Oracle]
by Michal Klimuk
Michal Klimuk [http://community.jboss.org/people/misieq] created the discussion
"Problem terminating concurent executions that have active sub-processes [jBPM 4.3/4.4 + Oracle]"
To view the discussion, visit: http://community.jboss.org/message/562698#562698
--------------------------------------------------------------
I have a process that contains a fork activity with two branches - one containing a sub-process and the other any type of node from which we can terminate the whole process directly. A simplified version for test purposes would be:
<?xml version="1.0" encoding="UTF-8"?>
<process name="p1"
schemaLocation="http://jbpm.org/4.0/jpdl http://docs.jboss.org/jbpm/xsd/jpdl-4.0.xsd"
xmlns="http://jbpm.org/4.0/jpdl">
<start g="143,27,80,40" name="start">
<transition g="-54,-22" name="to fork1" to="fork1" />
</start>
<fork g="143,117,48,48" name="fork1">
<transition g="-38,-22" name="to p2" to="p2" />
<transition g="34,-14" name="to state1" to="state1" />
</fork>
<state g="199,214,108,52" name="state1">
<transition to="join1" />
<transition g="-11,-21" name="end" to="end2" />
</state>
<sub-process g="18,227,92,52" name="p2" sub-process-key="p2">
<transition to="join1" />
</sub-process>
<join g="141,334,48,48" name="join1">
<transition to="end" />
</join>
<end-cancel g="405,217,92,102" name="end2" />
<end g="141,446,80,40" name="end" />
</process>
When I run the process and try to signal node 'state1' to end the whole process I get a constraint violation :
org.hibernate.exception.ConstraintViolationException: could not delete: org.jbpm.pvm.internal.model.ExecutionImpl#10002
at org.hibernate.exception.SQLStateConverter.convert(SQLStateConverter.java:94)
at org.hibernate.exception.JDBCExceptionHelper.convert(JDBCExceptionHelper.java:66)
at org.hibernate.persister.entity.AbstractEntityPersister.delete(AbstractEntityPersister.java:2569)
at org.hibernate.persister.entity.AbstractEntityPersister.delete(AbstractEntityPersister.java:2725)
at org.hibernate.action.EntityDeleteAction.execute(EntityDeleteAction.java:97)
at org.hibernate.engine.ActionQueue.execute(ActionQueue.java:279)
at org.hibernate.engine.ActionQueue.executeActions(ActionQueue.java:263)
at org.hibernate.engine.ActionQueue.executeActions(ActionQueue.java:172)
at org.hibernate.event.def.AbstractFlushingEventListener.performExecutions(AbstractFlushingEventListener.java:321)
at org.hibernate.event.def.DefaultAutoFlushEventListener.onAutoFlush(DefaultAutoFlushEventListener.java:64)
at org.hibernate.impl.SessionImpl.autoFlushIfRequired(SessionImpl.java:996)
at org.hibernate.impl.SessionImpl.list(SessionImpl.java:1141)
at org.hibernate.impl.QueryImpl.list(QueryImpl.java:102)
at org.hibernate.impl.AbstractQueryImpl.uniqueResult(AbstractQueryImpl.java:835)
at org.jbpm.pvm.internal.hibernate.DbSessionImpl.findProcessInstanceByIdIgnoreSuspended(DbSessionImpl.java:211)
at org.jbpm.pvm.internal.hibernate.DbSessionImpl.deleteProcessInstance(DbSessionImpl.java:251)
at org.jbpm.pvm.internal.model.ExecutionImpl.end(ExecutionImpl.java:382)
at org.jbpm.jpdl.internal.activity.EndActivity.execute(EndActivity.java:82)
at org.jbpm.jpdl.internal.activity.EndActivity.execute(EndActivity.java:45)
at org.jbpm.pvm.internal.model.op.ExecuteActivity.perform(ExecuteActivity.java:60)
at org.jbpm.pvm.internal.model.ExecutionImpl.performAtomicOperationSync(ExecutionImpl.java:656)
at org.jbpm.pvm.internal.model.ExecutionImpl.performAtomicOperation(ExecutionImpl.java:616)
at org.jbpm.pvm.internal.model.ExecutionImpl.signal(ExecutionImpl.java:417)
at org.jbpm.pvm.internal.cmd.SignalCmd.execute(SignalCmd.java:61)
at org.jbpm.pvm.internal.cmd.SignalCmd.execute(SignalCmd.java:35)
at org.jbpm.pvm.internal.svc.DefaultCommandService.execute(DefaultCommandService.java:42)
at org.jbpm.pvm.internal.tx.SpringCommandCallback.doInTransaction(SpringCommandCallback.java:45)
at org.springframework.transaction.support.TransactionTemplate.execute(TransactionTemplate.java:128)
at org.jbpm.pvm.internal.tx.SpringTransactionInterceptor.execute(SpringTransactionInterceptor.java:55)
at org.jbpm.pvm.internal.svc.EnvironmentInterceptor.executeInNewEnvironment(EnvironmentInterceptor.java:53)
at org.jbpm.pvm.internal.svc.EnvironmentInterceptor.execute(EnvironmentInterceptor.java:40)
at org.jbpm.pvm.internal.svc.RetryInterceptor.execute(RetryInterceptor.java:55)
at org.jbpm.pvm.internal.svc.ExecutionServiceImpl.signalExecutionById(ExecutionServiceImpl.java:88)
at org.jbpm.test.SubprocessTest.testEndWithActiveSubprocesses(SubprocessTest.java:25)
at sun.reflect.NativeMethodAccessorImpl.invoke0(Native Method)
at sun.reflect.NativeMethodAccessorImpl.invoke(NativeMethodAccessorImpl.java:39)
at sun.reflect.DelegatingMethodAccessorImpl.invoke(DelegatingMethodAccessorImpl.java:25)
at java.lang.reflect.Method.invoke(Method.java:597)
at org.springframework.test.context.junit4.SpringTestMethod.invoke(SpringTestMethod.java:160)
at org.springframework.test.context.junit4.SpringMethodRoadie.runTestMethod(SpringMethodRoadie.java:233)
at org.springframework.test.context.junit4.SpringMethodRoadie$RunBeforesThenTestThenAfters.run(SpringMethodRoadie.java:333)
at org.springframework.test.context.junit4.SpringMethodRoadie.runWithRepetitions(SpringMethodRoadie.java:217)
at org.springframework.test.context.junit4.SpringMethodRoadie.runTest(SpringMethodRoadie.java:197)
at org.springframework.test.context.junit4.SpringMethodRoadie.run(SpringMethodRoadie.java:143)
at org.springframework.test.context.junit4.SpringJUnit4ClassRunner.invokeTestMethod(SpringJUnit4ClassRunner.java:160)
at org.junit.internal.runners.JUnit4ClassRunner.runMethods(JUnit4ClassRunner.java:51)
at org.junit.internal.runners.JUnit4ClassRunner$1.run(JUnit4ClassRunner.java:44)
at org.junit.internal.runners.ClassRoadie.runUnprotected(ClassRoadie.java:27)
at org.junit.internal.runners.ClassRoadie.runProtected(ClassRoadie.java:37)
at org.junit.internal.runners.JUnit4ClassRunner.run(JUnit4ClassRunner.java:42)
at org.springframework.test.context.junit4.SpringJUnit4ClassRunner.run(SpringJUnit4ClassRunner.java:97)
at org.eclipse.jdt.internal.junit4.runner.JUnit4TestReference.run(JUnit4TestReference.java:49)
at org.eclipse.jdt.internal.junit.runner.TestExecution.run(TestExecution.java:38)
at org.eclipse.jdt.internal.junit.runner.RemoteTestRunner.runTests(RemoteTestRunner.java:467)
at org.eclipse.jdt.internal.junit.runner.RemoteTestRunner.runTests(RemoteTestRunner.java:683)
at org.eclipse.jdt.internal.junit.runner.RemoteTestRunner.run(RemoteTestRunner.java:390)
at org.eclipse.jdt.internal.junit.runner.RemoteTestRunner.main(RemoteTestRunner.java:197)
Caused by: java.sql.SQLException: ORA-02292: violation de contrainte (BDOOA.FK_EXEC_SUPEREXEC) d'intégrité - enregistrement fils existant
at oracle.jdbc.driver.DatabaseError.throwSqlException(DatabaseError.java:112)
at oracle.jdbc.driver.T4CTTIoer.processError(T4CTTIoer.java:331)
at oracle.jdbc.driver.T4CTTIoer.processError(T4CTTIoer.java:288)
at oracle.jdbc.driver.T4C8Oall.receive(T4C8Oall.java:745)
at oracle.jdbc.driver.T4CPreparedStatement.doOall8(T4CPreparedStatement.java:216)
at oracle.jdbc.driver.T4CPreparedStatement.executeForRows(T4CPreparedStatement.java:966)
at oracle.jdbc.driver.OracleStatement.doExecuteWithTimeout(OracleStatement.java:1170)
at oracle.jdbc.driver.OraclePreparedStatement.executeInternal(OraclePreparedStatement.java:3339)
at oracle.jdbc.driver.OraclePreparedStatement.executeUpdate(OraclePreparedStatement.java:3423)
at org.hibernate.persister.entity.AbstractEntityPersister.delete(AbstractEntityPersister.java:2551)
... 54 more
I investigated the problem and I found out that it is due to the fact that we never try to terminate an existing sub-process from within the ExecutionImpl.end() method. It causes a delete of the parent execution row although it is still referenced by SUPEREXEC_ column of the sub-process.
I created a patch that works and that consists on adding the following code to ExecutionImpl.end(String state) (my code in the middle paragraph):
// end all child executions
// making a copy of the executions to prevent ConcurrentMoidificationException
List<ExecutionImpl> executionsToEnd = new ArrayList<ExecutionImpl>(executions);
for (ExecutionImpl child: executionsToEnd) {
child.end(state);
}
// terminates the sub-process if it exists
if(subProcessInstance != null) {
// to avoid the return signal (see superProcessExecution.signal() in the end(String state) method)
subProcessInstance.setSuperProcessExecution(null);
subProcessInstance.end(state);
}
setState(state);
I don't know if it is the right approach but it works pretty much fine. Do you think it's the right way to do it?
I created a jira where I join the patch and a test module.
--------------------------------------------------------------
Reply to this message by going to Community
[http://community.jboss.org/message/562698#562698]
Start a new discussion in jBPM at Community
[http://community.jboss.org/choose-container!input.jspa?contentType=1&cont...]
14 years, 3 months
[JBoss Web Services] - JBOSS5+java6+Cannot obtain java type mapping+setProperty must be overridden by all subclasses of SOAPMessage
by Ravi Sawlani
Ravi Sawlani [http://community.jboss.org/people/ravisawlani86] created the discussion
"JBOSS5+java6+Cannot obtain java type mapping+setProperty must be overridden by all subclasses of SOAPMessage"
To view the discussion, visit: http://community.jboss.org/message/565500#565500
--------------------------------------------------------------
Hi
*A Web Service is deployed on jboss-as server of jboss-soa-p.5.0.0 (Server version 5.0.2.GA) running on jdk 1.6.0_30, following is the code and WSDL*
**
*import* javax.jws.WebMethod;
*import* javax.jws.WebService;
@WebService
*public* *class* TestService {
@WebMethod
*public* String sayHello(String name){
String greeting="Welcome......"+name;
*return* greeting;
}
}
**
*WSDL :*
**
<definitions name="TestServiceService" targetNamespace=" http://testpack/ http://testPack/" xmlns=" http://schemas.xmlsoap.org/wsdl/ http://schemas.xmlsoap.org/wsdl/" xmlns:soap=" http://schemas.xmlsoap.org/wsdl/soap/ http://schemas.xmlsoap.org/wsdl/soap/" xmlns:tns=" http://testpack/ http://testPack/" xmlns:xsd=" http://www.w3.org/2001/XMLSchema http://www.w3.org/2001/XMLSchema">
<types>
<xs:schema targetNamespace=" http://testpack/ http://testPack/" version="1.0" xmlns:tns=" http://testpack/ http://testPack/" xmlns:xs=" http://www.w3.org/2001/XMLSchema http://www.w3.org/2001/XMLSchema">
<xs:element name="sayHello" type="tns:sayHello" />
<xs:element name="sayHelloResponse" type="tns:sayHelloResponse" />
<xs:complexType name="sayHello">
<xs:sequence>
<xs:element minOccurs="0" name="arg0" type="xs:string" />
</xs:sequence>
</xs:complexType>
<xs:complexType name="sayHelloResponse">
<xs:sequence>
<xs:element minOccurs="0" name="return" type="xs:string" />
</xs:sequence>
</xs:complexType>
</xs:schema>
</types>
<message name="TestService_sayHelloResponse">
<part element="tns:sayHelloResponse" name="sayHelloResponse" />
</message>
<message name="TestService_sayHello">
<part element="tns:sayHello" name="sayHello" />
</message>
<portType name="TestService">
<operation name="sayHello" parameterOrder="sayHello">
<input message="tns:TestService_sayHello" />
<output message="tns:TestService_sayHelloResponse" />
</operation>
</portType>
<binding name="TestServiceBinding" type="tns:TestService">
<soap:binding style="document" transport=" http://schemas.xmlsoap.org/soap/http http://schemas.xmlsoap.org/soap/http" />
<operation name="sayHello">
<soap:operation soapAction="" />
<input> <soap:body use="literal" /> </input>
<output> <soap:body use="literal" /> </output>
</operation>
</binding>
<service name="TestServiceService">
<port binding="tns:TestServiceBinding" name="TestServicePort">
<soap:address location=" http://ipadd:8080/TestWebService http://ipadd:8080/TestWebService" />
</port>
</service>
</definitions>
*When we call this service through following DII client code :*
URL url = *new* URL("http://ipadd:8080/TestWebService?wsdl");
String ns = "http://testPack/";
QName qname = *new* QName (ns,"TestServiceService");
QName port = *new* QName (ns, "TestServicePort");
QName operation = *new* QName(ns, "sayHello");
ServiceFactory factory = ServiceFactory.+newInstance+();
Service service = factory.createService(url, qname);
Call call = service.createCall(port, operation);
String test1=(String)call.invoke(*new* Object[]{"XYZ"});
System.+out+.println("this is the call" +test1);
**
*It gives the following java mapping error :*
Exception in thread "main"
org.jboss.ws.WSException: Cannot obtain java type mapping for: {http://testPack/}sayHelloat org.jboss.ws.metadata.builder.jaxrpc.JAXRPCMetaDataBuilder.processDocElement(JAXRPCMetaDataBuilder.java:627)at org.jboss.ws.metadata.builder.jaxrpc.JAXRPCMetaDataBuilder.buildParameterMetaDataDoc(JAXRPCMetaDataBuilder.java:886)
at org.jboss.ws.metadata.builder.jaxrpc.JAXRPCMetaDataBuilder.setupOperationsFromWSDL(JAXRPCMetaDataBuilder.java:214)
at org.jboss.ws.metadata.builder.jaxrpc.JAXRPCClientMetaDataBuilder.buildMetaDataInternal(JAXRPCClientMetaDataBuilder.java:217)
at org.jboss.ws.metadata.builder.jaxrpc.JAXRPCClientMetaDataBuilder.buildMetaData(JAXRPCClientMetaDataBuilder.java:134)
at org.jboss.ws.metadata.builder.jaxrpc.JAXRPCClientMetaDataBuilder.buildMetaData(JAXRPCClientMetaDataBuilder.java:86)
at org.jboss.ws.core.jaxrpc.client.ServiceImpl.<init>(ServiceImpl.java:111)
at org.jboss.ws.core.jaxrpc.client.ServiceFactoryImpl.createService(ServiceFactoryImpl.java:157)
at org.jboss.ws.core.jaxrpc.client.ServiceFactoryImpl.createService(ServiceFactoryImpl.java:128)
*Instead if Complex Types are removed from previous WSDL and changed to xs:string as shown:*
**
<types>
<xs:schema targetNamespace=" http://testpack/ http://testPack/" version="1.0" xmlns:tns=" http://testpack/ http://testPack/" xmlns:xs=" http://www.w3.org/2001/XMLSchema http://www.w3.org/2001/XMLSchema">
<xs:element name="sayHello" type=" xs:string " />
<xs:element name="sayHelloResponse" type=" xs:string " />
</xs:schema>
</types>
**
*Now when we run the DII client again, it does not ask for java mapping but gives an error regarding set Property as shown (when client is running on jdk 1.6.0_30):*
**
Exception in thread "main" java.rmi.RemoteException: Call invocation failed; nested exception is:
java.lang.UnsupportedOperationException: setProperty must be overridden by all subclasses of SOAPMessage
at org.jboss.ws.core.jaxrpc.client.CallImpl.invokeInternal(CallImpl.java:535)
at org.jboss.ws.core.jaxrpc.client.CallImpl.invoke(CallImpl.java:275)
*However when this modified wsdl is called using DII client running on jdk 1.5 the web service is invoked without any error*
*but the web method do not receive the parameters being passed to it from the DII client.*
*But when we make stubs using jbossws API and call the web method using stubs, everything works fine irrespective of jdk version.*
**
*Please HELP ME OUT!!!! :(*
--------------------------------------------------------------
Reply to this message by going to Community
[http://community.jboss.org/message/565500#565500]
Start a new discussion in JBoss Web Services at Community
[http://community.jboss.org/choose-container!input.jspa?contentType=1&cont...]
14 years, 3 months
How to enable Digest Authentication in JBoss 5.1.0 GA
by Koichi Yagishita
Dear all,
I would appreciate it if anyone teach me how to enable digest
authentication in JBoss 5.1.0 GA?
Though I tried to execute digest authentication in JBoss 5.1.0 GA
including the following web.xml,
"Bad password for username=yagi" was displayed on a JBoss console
enabling "DEBUG".
Next, after trying to input the username and the hashed password on web browser,
the authentication has passed.
I think basic authentication has operated in this JBoss, not digest
authentication.
web.xml:
<web-app>
<login-config>
<auth-method>DIGEST</auth-method>
<realm-name>SampleRealm</realm-name>
</login-config>
<security-role>
<role-name>AuthorizedUsers</role-name>
</security-role>
<security-constraint>
<web-resource-collection>
<web-resource-name>restricted contents</web-resource-name>
<url-pattern>/HelloServlet/*</url-pattern>
</web-resource-collection>
<auth-constraint>
<role-name>AuthorizedUsers</role-name>
</auth-constraint>
</security-constraint>
</web-app>
Regards,
Yagishita
14 years, 3 months
[Beginner's Corner] - JBoss 4.2.2. GA on Ubuntu Server 10.x cannot start cluster
by Bartłomiej Góra
Bartłomiej Góra [http://community.jboss.org/people/black007] created the discussion
"JBoss 4.2.2. GA on Ubuntu Server 10.x cannot start cluster"
To view the discussion, visit: http://community.jboss.org/message/565669#565669
--------------------------------------------------------------
Hello.
I have big problem with my JBAS 4.2.2 on my Ubuntu linux.
i run my jboss using command:
black007@ubuntu:/opt/jboss/bin$ sudo ./run.sh -b 192.168.0.103 -c all - Djava.rmi.server.hostname=192.168.0.103 -Dremoting.bind_by_host=false
The same parameters (but other IP address) are used on my windows machine.The remoting.bind_by_host and java.rmi.server.hostname are used, beacause my tomcat won't connect without them (on Windows XP using "jnp://192.168.0.101").
Back to Ubuntu i get this:
=========================================================================
JBoss Bootstrap Environment
JBOSS_HOME: /opt/jboss/jboss-4.2.2.GA
JAVA: java
JAVA_OPTS: -Dprogram.name=run.sh -server -Xms128m -Xmx512m -Dsun.rmi.dgc.client.gcInterval=3600000 -Dsun.rmi.dgc.server.gcInterval=3600000 -Djava.net.preferIPv4Stack=true
CLASSPATH: /opt/jboss/jboss-4.2.2.GA/bin/run.jar
=========================================================================
17:23:49,367 INFO [Server] Starting JBoss (MX MicroKernel)...
17:23:49,368 INFO [Server] Release ID: JBoss [Trinity] 4.2.2.GA (build: SVNTag=JBoss_4_2_2_GA date=200710221139)
17:23:49,369 INFO [Server] Home Dir: /opt/jboss/jboss-4.2.2.GA
17:23:49,369 INFO [Server] Home URL: file:/opt/jboss/jboss-4.2.2.GA/
17:23:49,370 INFO [Server] Patch URL: null
17:23:49,370 INFO [Server] Server Name: all
17:23:49,370 INFO [Server] Server Home Dir: /opt/jboss/jboss-4.2.2.GA/server/all
17:23:49,370 INFO [Server] Server Home URL: file:/opt/jboss/jboss-4.2.2.GA/server/all/
17:23:49,371 INFO [Server] Server Log Dir: /opt/jboss/jboss-4.2.2.GA/server/all/log
17:23:49,371 INFO [Server] Server Temp Dir: /opt/jboss/jboss-4.2.2.GA/server/all/tmp
17:23:49,371 INFO [Server] Root Deployment Filename: jboss-service.xml
17:23:50,044 INFO [ServerInfo] Java version: 1.6.0_20,Sun Microsystems Inc.
17:23:50,044 INFO [ServerInfo] Java VM: Java HotSpot(TM) Server VM 16.3-b01,Sun Microsystems Inc.
17:23:50,044 INFO [ServerInfo] OS-System: Linux 2.6.32-25-generic-pae,i386
17:23:50,903 INFO [Server] Core system initialized
17:23:55,800 INFO [WebService] Using RMI server codebase: http://192.168.0.103:8083/
17:23:55,806 INFO [Log4jService$URLWatchTimerTask] Configuring from URL: resource:jboss-log4j.xml
17:23:56,967 INFO [TransactionManagerService] JBossTS Transaction Service (JTA version) - JBoss Inc.
17:23:56,967 INFO [TransactionManagerService] Setting up property manager MBean and JMX layer
17:23:57,398 INFO [TransactionManagerService] Starting recovery manager
17:23:57,687 INFO [TransactionManagerService] Recovery manager started
17:23:57,687 INFO [TransactionManagerService] Binding TransactionManager JNDI Reference
17:24:03,506 INFO [EJB3Deployer] Starting java:comp multiplexer
17:24:05,257 INFO [STDOUT]
-------------------------------------------------------
GMS: address is 192.168.0.103:53300
-------------------------------------------------------
17:24:07,290 INFO [TreeCache] viewAccepted(): [192.168.0.103:53300|0] [192.168.0.103:53300]
17:24:07,336 INFO [TreeCache] TreeCache local address is 192.168.0.103:53300
17:24:07,336 INFO [TreeCache] State could not be retrieved (we are the first member in group)
17:24:07,337 INFO [TreeCache] parseConfig(): PojoCacheConfig is empty
17:24:07,480 INFO [STDOUT] no object for null
17:24:07,483 INFO [STDOUT] no object for null
17:24:07,520 INFO [STDOUT] no object for null
17:24:07,546 INFO [STDOUT] no object for {urn:jboss:bean-deployer}supplyType
17:24:07,565 INFO [STDOUT] no object for {urn:jboss:bean-deployer}dependsType
17:24:11,325 INFO [NativeServerConfig] JBoss Web Services - Native
17:24:11,326 INFO [NativeServerConfig] jbossws-native-2.0.1.SP2 (build=200710210837)
17:24:12,474 INFO [SnmpAgentService] SNMP agent going active
17:24:13,242 INFO [DefaultPartition] Initializing
17:24:13,497 INFO [STDOUT]
-------------------------------------------------------
GMS: address is 192.168.0.103:59486
-------------------------------------------------------
17:24:15,528 INFO [DefaultPartition] Number of cluster members: 1
17:24:15,528 INFO [DefaultPartition] Other members: 0
17:24:15,528 INFO [DefaultPartition] Fetching state (will wait for 30000 milliseconds):
17:24:15,528 INFO [DefaultPartition] State could not be retrieved (we are the first member in group)
17:24:15,574 WARN [ServiceController] Problem starting service jboss:service=HAJNDI
java.rmi.server.ExportException: Port already in use: 1101; nested exception is:
java.net.BindException: Cannot assign requested address
at sun.rmi.transport.tcp.TCPTransport.listen(TCPTransport.java:310)
at sun.rmi.transport.tcp.TCPTransport.exportObject(TCPTransport.java:218)
at sun.rmi.transport.tcp.TCPEndpoint.exportObject(TCPEndpoint.java:393)
at sun.rmi.transport.LiveRef.exportObject(LiveRef.java:129)
at sun.rmi.server.UnicastServerRef.exportObject(UnicastServerRef.java:190)
at java.rmi.server.UnicastRemoteObject.exportObject(UnicastRemoteObject.java:293)
at java.rmi.server.UnicastRemoteObject.exportObject(UnicastRemoteObject.java:256)
at org.jboss.ha.framework.server.HARMIServerImpl.<init>(HARMIServerImpl.java:139)
at org.jboss.ha.jndi.HANamingService.getNamingProxy(HANamingService.java:128)
at org.jboss.ha.jndi.DetachedHANamingService.startService(DetachedHANamingService.java:360)
at org.jboss.system.ServiceMBeanSupport.jbossInternalStart(ServiceMBeanSupport.java:289)
at org.jboss.system.ServiceMBeanSupport.jbossInternalLifecycle(ServiceMBeanSupport.java:245)
at sun.reflect.GeneratedMethodAccessor3.invoke(Unknown Source)
at sun.reflect.DelegatingMethodAccessorImpl.invoke(DelegatingMethodAccessorImpl.java:25)
at java.lang.reflect.Method.invoke(Method.java:597)
at org.jboss.mx.interceptor.ReflectedDispatcher.invoke(ReflectedDispatcher.java:155)
at org.jboss.mx.server.Invocation.dispatch(Invocation.java:94)
at org.jboss.mx.server.Invocation.invoke(Invocation.java:86)
at org.jboss.mx.server.AbstractMBeanInvoker.invoke(AbstractMBeanInvoker.java:264)
at org.jboss.mx.server.MBeanServerImpl.invoke(MBeanServerImpl.java:659)
at org.jboss.system.ServiceController$ServiceProxy.invoke(ServiceController.java:978)
at $Proxy0.start(Unknown Source)
at org.jboss.system.ServiceController.start(ServiceController.java:417)
at org.jboss.system.ServiceController.start(ServiceController.java:435)
at sun.reflect.GeneratedMethodAccessor9.invoke(Unknown Source)
at sun.reflect.DelegatingMethodAccessorImpl.invoke(DelegatingMethodAccessorImpl.java:25)
at java.lang.reflect.Method.invoke(Method.java:597)
at org.jboss.mx.interceptor.ReflectedDispatcher.invoke(ReflectedDispatcher.java:155)
at org.jboss.mx.server.Invocation.dispatch(Invocation.java:94)
at org.jboss.mx.server.Invocation.invoke(Invocation.java:86)
at org.jboss.mx.server.AbstractMBeanInvoker.invoke(AbstractMBeanInvoker.java:264)
at org.jboss.mx.server.MBeanServerImpl.invoke(MBeanServerImpl.java:659)
at org.jboss.mx.util.MBeanProxyExt.invoke(MBeanProxyExt.java:210)
at $Proxy4.start(Unknown Source)
at org.jboss.deployment.SARDeployer.start(SARDeployer.java:302)
at org.jboss.deployment.MainDeployer.start(MainDeployer.java:1025)
at org.jboss.deployment.MainDeployer.deploy(MainDeployer.java:819)
at org.jboss.deployment.MainDeployer.deploy(MainDeployer.java:782)
at sun.reflect.GeneratedMethodAccessor26.invoke(Unknown Source)
at sun.reflect.DelegatingMethodAccessorImpl.invoke(DelegatingMethodAccessorImpl.java:25)
at java.lang.reflect.Method.invoke(Method.java:597)
at org.jboss.mx.interceptor.ReflectedDispatcher.invoke(ReflectedDispatcher.java:155)
at org.jboss.mx.server.Invocation.dispatch(Invocation.java:94)
at org.jboss.mx.interceptor.AbstractInterceptor.invoke(AbstractInterceptor.java:133)
at org.jboss.mx.server.Invocation.invoke(Invocation.java:88)
at org.jboss.mx.interceptor.ModelMBeanOperationInterceptor.invoke(ModelMBeanOperationInterceptor.java:142)
at org.jboss.mx.server.Invocation.invoke(Invocation.java:88)
at org.jboss.mx.server.AbstractMBeanInvoker.invoke(AbstractMBeanInvoker.java:264)
at org.jboss.mx.server.MBeanServerImpl.invoke(MBeanServerImpl.java:659)
at org.jboss.mx.util.MBeanProxyExt.invoke(MBeanProxyExt.java:210)
at $Proxy9.deploy(Unknown Source)
at org.jboss.deployment.scanner.URLDeploymentScanner.deploy(URLDeploymentScanner.java:421)
at org.jboss.deployment.scanner.URLDeploymentScanner.scan(URLDeploymentScanner.java:634)
at org.jboss.deployment.scanner.AbstractDeploymentScanner$ScannerThread.doScan(AbstractDeploymentScanner.java:263)
at org.jboss.deployment.scanner.AbstractDeploymentScanner.startService(AbstractDeploymentScanner.java:336)
at org.jboss.system.ServiceMBeanSupport.jbossInternalStart(ServiceMBeanSupport.java:289)
at org.jboss.system.ServiceMBeanSupport.jbossInternalLifecycle(ServiceMBeanSupport.java:245)
at sun.reflect.GeneratedMethodAccessor3.invoke(Unknown Source)
at sun.reflect.DelegatingMethodAccessorImpl.invoke(DelegatingMethodAccessorImpl.java:25)
at java.lang.reflect.Method.invoke(Method.java:597)
at org.jboss.mx.interceptor.ReflectedDispatcher.invoke(ReflectedDispatcher.java:155)
at org.jboss.mx.server.Invocation.dispatch(Invocation.java:94)
at org.jboss.mx.server.Invocation.invoke(Invocation.java:86)
at org.jboss.mx.server.AbstractMBeanInvoker.invoke(AbstractMBeanInvoker.java:264)
at org.jboss.mx.server.MBeanServerImpl.invoke(MBeanServerImpl.java:659)
at org.jboss.system.ServiceController$ServiceProxy.invoke(ServiceController.java:978)
at $Proxy0.start(Unknown Source)
at org.jboss.system.ServiceController.start(ServiceController.java:417)
at sun.reflect.GeneratedMethodAccessor9.invoke(Unknown Source)
at sun.reflect.DelegatingMethodAccessorImpl.invoke(DelegatingMethodAccessorImpl.java:25)
at java.lang.reflect.Method.invoke(Method.java:597)
at org.jboss.mx.interceptor.ReflectedDispatcher.invoke(ReflectedDispatcher.java:155)
at org.jboss.mx.server.Invocation.dispatch(Invocation.java:94)
at org.jboss.mx.server.Invocation.invoke(Invocation.java:86)
at org.jboss.mx.server.AbstractMBeanInvoker.invoke(AbstractMBeanInvoker.java:264)
at org.jboss.mx.server.MBeanServerImpl.invoke(MBeanServerImpl.java:659)
at org.jboss.mx.util.MBeanProxyExt.invoke(MBeanProxyExt.java:210)
at $Proxy4.start(Unknown Source)
at org.jboss.deployment.SARDeployer.start(SARDeployer.java:302)
at org.jboss.deployment.MainDeployer.start(MainDeployer.java:1025)
at org.jboss.deployment.MainDeployer.deploy(MainDeployer.java:819)
at org.jboss.deployment.MainDeployer.deploy(MainDeployer.java:782)
at org.jboss.deployment.MainDeployer.deploy(MainDeployer.java:766)
at sun.reflect.NativeMethodAccessorImpl.invoke0(Native Method)
at sun.reflect.NativeMethodAccessorImpl.invoke(NativeMethodAccessorImpl.java:39)
at sun.reflect.DelegatingMethodAccessorImpl.invoke(DelegatingMethodAccessorImpl.java:25)
at java.lang.reflect.Method.invoke(Method.java:597)
at org.jboss.mx.interceptor.ReflectedDispatcher.invoke(ReflectedDispatcher.java:155)
at org.jboss.mx.server.Invocation.dispatch(Invocation.java:94)
at org.jboss.mx.interceptor.AbstractInterceptor.invoke(AbstractInterceptor.java:133)
at org.jboss.mx.server.Invocation.invoke(Invocation.java:88)
at org.jboss.mx.interceptor.ModelMBeanOperationInterceptor.invoke(ModelMBeanOperationInterceptor.java:142)
at org.jboss.mx.server.Invocation.invoke(Invocation.java:88)
at org.jboss.mx.server.AbstractMBeanInvoker.invoke(AbstractMBeanInvoker.java:264)
at org.jboss.mx.server.MBeanServerImpl.invoke(MBeanServerImpl.java:659)
at org.jboss.mx.util.MBeanProxyExt.invoke(MBeanProxyExt.java:210)
at $Proxy5.deploy(Unknown Source)
at org.jboss.system.server.ServerImpl.doStart(ServerImpl.java:482)
at org.jboss.system.server.ServerImpl.start(ServerImpl.java:362)
at org.jboss.Main.boot(Main.java:200)
at org.jboss.Main$1.run(Main.java:508)
at java.lang.Thread.run(Thread.java:619)
Caused by: java.net.BindException: Cannot assign requested address
at java.net.PlainSocketImpl.socketBind(Native Method)
at java.net.PlainSocketImpl.bind(PlainSocketImpl.java:365)
at java.net.ServerSocket.bind(ServerSocket.java:319)
at java.net.ServerSocket.<init>(ServerSocket.java:185)
at org.jboss.net.sockets.DefaultSocketFactory.createServerSocket(DefaultSocketFactory.java:120)
at org.jboss.net.sockets.DefaultSocketFactory.createServerSocket(DefaultSocketFactory.java:95)
at sun.rmi.transport.tcp.TCPEndpoint.newServerSocket(TCPEndpoint.java:649)
at sun.rmi.transport.tcp.TCPTransport.listen(TCPTransport.java:299)
... 101 more
17:24:17,354 WARN [TreeCache] Using deprecated config element CacheLoaderFetchPersistentState. This element will be removed in future, please use CacheLoaderConfiguration instead.
17:24:17,355 WARN [TreeCache] Using legacy cache loader config mechanisms.
17:24:17,368 WARN [TreeCache] Using deprecated config element CacheLoaderFetchTransientState. This element will be removed in future, replaced with FetchInMemoryState.
17:24:17,369 WARN [TreeCache] Calls to setFetchStateOnStartup are ignored; configure state transfer using setFetchInMemoryState and any cache loader's FetchPersistentState property
17:24:17,374 WARN [TreeCache] Using deprecated config element CacheLoaderClass. This element will be removed in future, please use CacheLoaderConfiguration instead.
17:24:17,376 WARN [TreeCache] Using deprecated config element CacheLoaderConfig(Properties). This element will be removed in future, please use CacheLoaderConfiguration instead.
17:24:17,382 WARN [TreeCache] Specified CacheLoaderConfig XML block will be ignored, because deprecated setters are used!
17:24:17,383 INFO [TreeCache] No transaction manager lookup class has been defined. Transactions cannot be used
17:24:17,737 INFO [STDOUT]
-------------------------------------------------------
GMS: address is 192.168.0.103:34569
-------------------------------------------------------
17:24:19,758 INFO [TreeCache] viewAccepted(): [192.168.0.103:34569|0] [192.168.0.103:34569]
17:24:19,777 INFO [TreeCache] TreeCache local address is 192.168.0.103:34569
17:24:20,061 INFO [STDOUT]
-------------------------------------------------------
GMS: address is 192.168.0.103:51269
-------------------------------------------------------
17:24:22,102 INFO [TreeCache] viewAccepted(): [192.168.0.103:51269|0] [192.168.0.103:51269]
17:24:22,110 INFO [TreeCache] TreeCache local address is 192.168.0.103:51269
17:24:23,664 INFO [CorbaNamingService] Naming: [IOR:000000000000002B49444C3A6F6D672E6F72672F436F734E616D696E672F4E616D696E67436F6E746578744578743A312E3000000000000200000000000000F8000102000000000E3139322E3136382E302E313033000DC8000000114A426F73732F4E616D696E672F726F6F74000000000000050000000000000008000000004A414300000000010000001C00000000050100010000000105010001000101090000000105010001000000210000007000000000000000010000000000000024000000200000007E00000000000000010000000E3139322E3136382E302E313033000DC900400000000000080606678102010101000000170401000806066781020101010000000764656661756C7400000000000000000000000000000000000000002000000004000000000000001F0000000400000003000000010000002000000000000000020000002000000004000000000000001F0000000400000003]
17:24:23,855 INFO [CorbaTransactionService] TransactionFactory: [IOR:000000000000003049444C3A6F72672F6A626F73732F746D2F69696F702F5472616E73616374696F6E466163746F72794578743A312E30000000000200000000000000F8000102000000000E3139322E3136382E302E313033000DC8000000144A426F73732F5472616E73616374696F6E732F46000000050000000000000008000000004A414300000000010000001C00000000050100010000000105010001000101090000000105010001000000210000007000000000000000010000000000000024000000200000007E00000000000000010000000E3139322E3136382E302E313033000DC900400000000000080606678102010101000000170401000806066781020101010000000764656661756C7400000000000000000000000000000000000000002000000004000000000000001F0000000400000003000000010000002000000000000000020000002000000004000000000000001F0000000400000003]
17:24:24,801 INFO [Embedded] Catalina naming disabled
17:24:25,013 INFO [AprLifecycleListener] The Apache Tomcat Native library which allows optimal performance in production environments was not found on the java.library.path: /usr/lib/jvm/java-6-sun-1.6.0.20/jre/lib/i386/server:/usr/lib/jvm/java-6-sun-1.6.0.20/jre/lib/i386:/usr/lib/jvm/java-6-sun-1.6.0.20/jre/../lib/i386:/usr/java/packages/lib/i386:/lib:/usr/lib
17:24:25,160 INFO [Http11Protocol] Initializing Coyote HTTP/1.1 on http-192.168.0.103-8080
17:24:25,165 INFO [AjpProtocol] Initializing Coyote AJP/1.3 on ajp-192.168.0.103-8009
17:24:25,165 INFO [Catalina] Initialization processed in 364 ms
17:24:25,165 INFO [StandardService] Starting service jboss.web
17:24:25,167 INFO [StandardEngine] Starting Servlet Engine: JBossWeb/2.0.1.GA
17:24:25,329 INFO [Catalina] Server startup in 164 ms
17:24:25,678 INFO [TomcatDeployer] deploy, ctxPath=/, warUrl=.../deploy/jboss-web.deployer/ROOT.war/
17:24:26,966 INFO [TomcatDeployer] deploy, ctxPath=/invoker, warUrl=.../deploy/httpha-invoker.sar/invoker.war/
17:24:27,490 INFO [TomcatDeployer] deploy, ctxPath=/jbossws, warUrl=.../deploy/jbossws.sar/jbossws-context.war/
17:24:27,777 INFO [TomcatDeployer] deploy, ctxPath=/juddi, warUrl=.../deploy/juddi-service.sar/juddi.war/
17:24:28,090 INFO [RegistryServlet] Loading jUDDI configuration.
17:24:28,090 INFO [RegistryServlet] Resources loaded from: /WEB-INF/juddi.properties
17:24:28,091 INFO [RegistryServlet] Initializing jUDDI components.
17:24:28,712 INFO [TomcatDeployer] deploy, ctxPath=/jbossmq-httpil, warUrl=.../deploy-hasingleton/jms/jbossmq-httpil.sar/jbossmq-httpil.war/
17:24:29,149 INFO [TomcatDeployer] deploy, ctxPath=/web-console, warUrl=.../deploy/management/console-mgr.sar/web-console.war/
17:24:30,631 INFO [MailService] Mail Service bound to java:/Mail
17:24:30,809 INFO [RARDeployment] Required license terms exist, view META-INF/ra.xml in .../deploy/jboss-ha-local-jdbc.rar
17:24:30,845 INFO [RARDeployment] Required license terms exist, view META-INF/ra.xml in .../deploy/jboss-ha-xa-jdbc.rar
17:24:30,877 INFO [RARDeployment] Required license terms exist, view META-INF/ra.xml in .../deploy/jboss-local-jdbc.rar
17:24:30,922 INFO [RARDeployment] Required license terms exist, view META-INF/ra.xml in .../deploy/jboss-xa-jdbc.rar
17:24:31,016 INFO [RARDeployment] Required license terms exist, view META-INF/ra.xml in .../deploy/jms/jms-ra.rar
17:24:31,110 INFO [RARDeployment] Required license terms exist, view META-INF/ra.xml in .../deploy/mail-ra.rar
17:24:31,159 INFO [RARDeployment] Required license terms exist, view META-INF/ra.xml in .../deploy/quartz-ra.rar
17:24:31,175 INFO [QuartzResourceAdapter] start quartz!!!
17:24:31,251 INFO [SimpleThreadPool] Job execution threads will use class loader of thread: main
17:24:31,278 INFO [QuartzScheduler] Quartz Scheduler v.1.5.2 created.
17:24:31,286 INFO [RAMJobStore] RAMJobStore initialized.
17:24:31,286 INFO [StdSchedulerFactory] Quartz scheduler 'DefaultQuartzScheduler' initialized from default resource file in Quartz package: 'quartz.properties'
17:24:31,286 INFO [StdSchedulerFactory] Quartz scheduler version: 1.5.2
17:24:31,286 INFO [QuartzScheduler] Scheduler DefaultQuartzScheduler_$_NON_CLUSTERED started.
17:24:32,430 INFO [ConnectionFactoryBindingService] Bound ConnectionManager 'jboss.jca:service=DataSourceBinding,name=DefaultDS' to JNDI name 'java:DefaultDS'
17:24:32,794 INFO [A] Bound to JNDI name: queue/A
17:24:32,796 INFO [B] Bound to JNDI name: queue/B
17:24:32,798 INFO [C] Bound to JNDI name: queue/C
17:24:32,799 INFO [D] Bound to JNDI name: queue/D
17:24:32,801 INFO [ex] Bound to JNDI name: queue/ex
17:24:32,837 INFO [testTopic] Bound to JNDI name: topic/testTopic
17:24:32,839 INFO [securedTopic] Bound to JNDI name: topic/securedTopic
17:24:32,841 INFO [testDurableTopic] Bound to JNDI name: topic/testDurableTopic
17:24:32,844 INFO [testQueue] Bound to JNDI name: queue/testQueue
17:24:32,900 INFO [UILServerILService] JBossMQ UIL service available at : /192.168.0.103:8093
17:24:33,518 INFO [DLQ] Bound to JNDI name: queue/DLQ
17:24:33,678 INFO [ConnectionFactoryBindingService] Bound ConnectionManager 'jboss.jca:service=ConnectionFactoryBinding,name=JmsXA' to JNDI name 'java:JmsXA'
17:24:33,744 INFO [ConnectionFactoryBindingService] Bound ConnectionManager 'jboss.jca:service=DataSourceBinding,name=bms_ds' to JNDI name 'java:bms_ds'
17:24:35,430 INFO [JmxKernelAbstraction] creating wrapper delegate for: org.jboss.ejb3.entity.PersistenceUnitDeployment
17:24:35,450 INFO [JmxKernelAbstraction] installing MBean: persistence.units:jar=ServerApplication.jar,unitName=bms with dependencies:
17:24:35,450 INFO [JmxKernelAbstraction] jboss.jca:name=bms_ds,service=DataSourceBinding
17:24:35,452 INFO [PersistenceUnitDeployment] Starting persistence unit persistence.units:jar=ServerApplication.jar,unitName=bms
17:24:35,604 INFO [Version] Hibernate EntityManager 3.2.1.GA
17:24:35,695 INFO [Version] Hibernate Annotations 3.2.1.GA
17:24:35,736 INFO [Environment] Hibernate 3.2.4.sp1
17:24:35,769 INFO [Environment] hibernate.properties not found
17:24:35,786 INFO [Environment] Bytecode provider name : javassist
17:24:35,800 INFO [Environment] using JDK 1.4 java.sql.Timestamp handling
17:24:36,243 INFO [Ejb3Configuration] found EJB3 Entity bean: pl.bgora.beans.entity.Attachement
17:24:36,249 INFO [Ejb3Configuration] found EJB3 Entity bean: pl.bgora.beans.entity.BMSGroup
17:24:36,251 INFO [Ejb3Configuration] found EJB3 Entity bean: pl.bgora.beans.entity.Building
17:24:36,252 INFO [Ejb3Configuration] found EJB3 Entity bean: pl.bgora.beans.entity.City
17:24:36,269 INFO [Ejb3Configuration] found EJB3 Entity bean: pl.bgora.beans.entity.Document
17:24:36,284 INFO [Ejb3Configuration] found EJB3 Entity bean: pl.bgora.beans.entity.Flat
17:24:36,293 INFO [Ejb3Configuration] found EJB3 Entity bean: pl.bgora.beans.entity.MainProcess
17:24:36,308 INFO [Ejb3Configuration] found EJB3 Entity bean: pl.bgora.beans.entity.Message
17:24:36,313 INFO [Ejb3Configuration] found EJB3 Entity bean: pl.bgora.beans.entity.News
17:24:36,315 INFO [Ejb3Configuration] found EJB3 Entity bean: pl.bgora.beans.entity.Person
17:24:36,330 INFO [Ejb3Configuration] found EJB3 Entity bean: pl.bgora.beans.entity.Pricing
17:24:36,333 INFO [Ejb3Configuration] found EJB3 Entity bean: pl.bgora.beans.entity.ProcessPathElement
17:24:36,343 INFO [Ejb3Configuration] found EJB3 Entity bean: pl.bgora.beans.entity.ProposalData
17:24:36,344 INFO [Ejb3Configuration] found EJB3 Entity bean: pl.bgora.beans.entity.Rent
17:24:36,357 INFO [Ejb3Configuration] found EJB3 Entity bean: pl.bgora.beans.entity.Role
17:24:36,367 INFO [Ejb3Configuration] found EJB3 Entity bean: pl.bgora.beans.entity.User
17:24:36,445 INFO [Ejb3Configuration] found EJB3 Entity bean: pl.bgora.beans.entity.Attachement
17:24:36,446 INFO [Ejb3Configuration] found EJB3 Entity bean: pl.bgora.beans.entity.BMSGroup
17:24:36,448 INFO [Ejb3Configuration] found EJB3 Entity bean: pl.bgora.beans.entity.Building
17:24:36,449 INFO [Ejb3Configuration] found EJB3 Entity bean: pl.bgora.beans.entity.City
17:24:36,452 INFO [Ejb3Configuration] found EJB3 Entity bean: pl.bgora.beans.entity.Document
17:24:36,467 INFO [Ejb3Configuration] found EJB3 Entity bean: pl.bgora.beans.entity.Flat
17:24:36,471 INFO [Ejb3Configuration] found EJB3 Entity bean: pl.bgora.beans.entity.MainProcess
17:24:36,473 INFO [Ejb3Configuration] found EJB3 Entity bean: pl.bgora.beans.entity.Message
17:24:36,482 INFO [Ejb3Configuration] found EJB3 Entity bean: pl.bgora.beans.entity.News
17:24:36,483 INFO [Ejb3Configuration] found EJB3 Entity bean: pl.bgora.beans.entity.Person
17:24:36,491 INFO [Ejb3Configuration] found EJB3 Entity bean: pl.bgora.beans.entity.Pricing
17:24:36,494 INFO [Ejb3Configuration] found EJB3 Entity bean: pl.bgora.beans.entity.ProcessPathElement
17:24:36,496 INFO [Ejb3Configuration] found EJB3 Entity bean: pl.bgora.beans.entity.ProposalData
17:24:36,501 INFO [Ejb3Configuration] found EJB3 Entity bean: pl.bgora.beans.entity.Rent
17:24:36,502 INFO [Ejb3Configuration] found EJB3 Entity bean: pl.bgora.beans.entity.Role
17:24:36,505 INFO [Ejb3Configuration] found EJB3 Entity bean: pl.bgora.beans.entity.User
17:24:36,631 INFO [Configuration] Reading mappings from resource : META-INF/orm.xml
17:24:36,633 INFO [Ejb3Configuration] [PersistenceUnit: bms] no META-INF/orm.xml found
17:24:36,823 INFO [AnnotationBinder] Binding entity from annotated class: pl.bgora.beans.entity.Attachement
17:24:36,946 INFO [EntityBinder] Bind entity pl.bgora.beans.entity.Attachement on table Attachement
17:24:36,958 WARN [AnnotationBinder] Hibernate does not support SequenceGenerator.initialValue()
17:24:37,169 INFO [AnnotationBinder] Binding entity from annotated class: pl.bgora.beans.entity.Building
17:24:37,171 INFO [QueryBinder] Binding Named query: getFilteredBuildings => FROM Building WHERE streetName like :streetName
17:24:37,171 INFO [QueryBinder] Binding Named query: getBuildingCountForFlat => Select Count(b) FROM Building b, Flat f WHERE f = :flat AND f member of b.flats
17:24:37,171 INFO [QueryBinder] Binding Named query: getBuildingForFlat => Select b FROM Building b, Flat f Where f = :flat AND f member of b.flats
17:24:37,172 INFO [EntityBinder] Bind entity pl.bgora.beans.entity.Building on table Building
17:24:37,172 WARN [AnnotationBinder] Hibernate does not support SequenceGenerator.initialValue()
17:24:37,341 INFO [AnnotationBinder] Binding entity from annotated class: pl.bgora.beans.entity.Document
17:24:37,349 INFO [QueryBinder] Binding Named query: getDocuments => FROM Document ORDER BY title
17:24:37,350 INFO [EntityBinder] Bind entity pl.bgora.beans.entity.Document on table Document
17:24:37,350 WARN [AnnotationBinder] Hibernate does not support SequenceGenerator.initialValue()
17:24:37,368 INFO [AnnotationBinder] Binding entity from annotated class: pl.bgora.beans.entity.Flat
17:24:37,368 INFO [QueryBinder] Binding Named query: getFlatsCountForBuilding => SELECT Count(f) From Flat as f, Building AS b WHERE b = :building and f member of b.flats
17:24:37,368 INFO [QueryBinder] Binding Named query: getFlatsForBuilding => SELECT f FROM Flat f, Building b WHERE b = :building and f member of b.flats
17:24:37,368 INFO [QueryBinder] Binding Named query: getFlatForPerson => SELECT f FROM Flat f, Person p WHERE p = :person AND p MEMBER OF f.persons
17:24:37,368 INFO [QueryBinder] Binding Named query: getAllFlatsWithBuilding => FROM Flat f LEFT JOIN FETCH f.building
17:24:37,368 INFO [EntityBinder] Bind entity pl.bgora.beans.entity.Flat on table Flat
17:24:37,368 WARN [AnnotationBinder] Hibernate does not support SequenceGenerator.initialValue()
17:24:37,386 INFO [AnnotationBinder] Binding entity from annotated class: pl.bgora.beans.entity.Message
17:24:37,386 INFO [QueryBinder] Binding Named query: listReceivedMessages => SELECT m FROM Message m LEFT JOIN FETCH m.attachements WHERE m.to = :user ORDER BY m.sendDate DESC
17:24:37,386 INFO [QueryBinder] Binding Named query: listSentMessages => SELECT m FROM Message m LEFT JOIN FETCH m.attachements WHERE m.from = :user ORDER BY m.sendDate DESC
17:24:37,386 INFO [QueryBinder] Binding Named query: getMessageByIDCount => SELECT COUNT (m) FROM Message m WHERE m.messageId = :id
17:24:37,386 INFO [QueryBinder] Binding Named query: getMessageByID => FROM Message m LEFT JOIN FETCH m.attachements where m.messageId = :id
17:24:37,387 INFO [EntityBinder] Bind entity pl.bgora.beans.entity.Message on table Message
17:24:37,387 WARN [AnnotationBinder] Hibernate does not support SequenceGenerator.initialValue()
17:24:37,399 INFO [AnnotationBinder] Binding entity from annotated class: pl.bgora.beans.entity.News
17:24:37,400 INFO [QueryBinder] Binding Named query: getRecentNews => FROM News n LEFT JOIN FETCH n.user ORDER BY n.newsDate DESC
17:24:37,400 INFO [EntityBinder] Bind entity pl.bgora.beans.entity.News on table News
17:24:37,400 WARN [AnnotationBinder] Hibernate does not support SequenceGenerator.initialValue()
17:24:37,407 INFO [AnnotationBinder] Binding entity from annotated class: pl.bgora.beans.entity.Person
17:24:37,407 INFO [QueryBinder] Binding Named query: getPersonsWithFlats => Select p From Person p LEFT JOIN FETCH p.flat WHERE p.name like :name AND p.surname like :surname
17:24:37,407 INFO [QueryBinder] Binding Named query: getPersonByIdCount => Select Count (p) From Person p WHERE p.personId = :id
17:24:37,407 INFO [QueryBinder] Binding Named query: getPersonById => SELECT DISTINCT p FROM Person p LEFT JOIN FETCH p.user LEFT JOIN FETCH p.flat WHERE p.personId = :id
17:24:37,408 INFO [EntityBinder] Bind entity pl.bgora.beans.entity.Person on table Person
17:24:37,412 WARN [AnnotationBinder] Hibernate does not support SequenceGenerator.initialValue()
17:24:37,416 INFO [AnnotationBinder] Binding entity from annotated class: pl.bgora.beans.entity.Pricing
17:24:37,416 INFO [QueryBinder] Binding Named query: getPricingForBuildingCount => SELECT COUNT(p) FROM Pricing p WHERE p.building = :building
17:24:37,416 INFO [QueryBinder] Binding Named query: getPricingForBuilding => SELECT p FROM Pricing p WHERE p.building = :building
17:24:37,416 INFO [EntityBinder] Bind entity pl.bgora.beans.entity.Pricing on table Pricing
17:24:37,417 WARN [AnnotationBinder] Hibernate does not support SequenceGenerator.initialValue()
17:24:37,436 INFO [AnnotationBinder] Binding entity from annotated class: pl.bgora.beans.entity.Rent
17:24:37,436 INFO [EntityBinder] Bind entity pl.bgora.beans.entity.Rent on table Rent
17:24:37,436 WARN [AnnotationBinder] Hibernate does not support SequenceGenerator.initialValue()
17:24:37,446 INFO [AnnotationBinder] Binding entity from annotated class: pl.bgora.beans.entity.Role
17:24:37,446 INFO [QueryBinder] Binding Named query: getAllRolesCount => Select Count(r) From Role r
17:24:37,446 INFO [QueryBinder] Binding Named query: getAllRoles => From Role
17:24:37,446 INFO [QueryBinder] Binding Named query: getRoleByName => From Role WHERE role = :role
17:24:37,446 INFO [EntityBinder] Bind entity pl.bgora.beans.entity.Role on table Role
17:24:37,446 WARN [AnnotationBinder] Hibernate does not support SequenceGenerator.initialValue()
17:24:37,491 INFO [AnnotationBinder] Binding entity from annotated class: pl.bgora.beans.entity.User
17:24:37,491 INFO [QueryBinder] Binding Named query: loginQuery => >From User u LEFT JOIN FETCH u.role WHERE u.login = :login AND u.passwd = :passwd
17:24:37,491 INFO [QueryBinder] Binding Named query: getAdminUserCount => Select Count(u) From User u where login = 'admin'
17:24:37,492 INFO [QueryBinder] Binding Named query: getLoginCount => Select Count(u) From User u Where u.login = :login AND u.passwd = :passwd
17:24:37,492 INFO [QueryBinder] Binding Named query: getUsersWithPersonCountFiltered => SELECT Count (u) FROM User u, Person p WHERE u.login like :login AND p.name like :name AND p.surname like :surname
17:24:37,492 INFO [QueryBinder] Binding Named query: getUsersWithPersonFiltered => Select DISTINCT u From User u, Person p, Role r WHERE u.login like :login AND p.name like :name AND p.surname like :surname
17:24:37,492 INFO [QueryBinder] Binding Named query: getUserForPersonCount => SELECT COUNT (u) FROM User u WHERE u.person = :person
17:24:37,492 INFO [QueryBinder] Binding Named query: getUserForPerson => SELECT u FROM User u WHERE u.person = :person
17:24:37,492 INFO [QueryBinder] Binding Named query: getUserByIdCount => SELECT Count(u) FROM User u WHERE u.userId = :id
17:24:37,492 INFO [QueryBinder] Binding Named query: getUserById => SELECT DISTINCT u FROM User u Left Join Fetch u.groups WHERE u.userId = :id
17:24:37,492 INFO [QueryBinder] Binding Named query: getUserByLoginCount => SELECT Count (u) FROM User u WHERE u.login = :login
17:24:37,492 INFO [QueryBinder] Binding Named query: getUserByLogin => FROM User WHERE login = :login
17:24:37,502 INFO [QueryBinder] Binding named native query: getUsersWithLessJobs => SELECT role_id, user_id, Min(result) as min_jobs FROM (SELECT role_id, user_id, Count(processpathelement.*) as result FROM users left join processpathelement on responsible_user = user_id GROUP BY user_id, role_id)as result_table, role, users_bmsgroups WHERE role_id = roleid AND role_name <> 'CLIENT' AND user_id = groups AND users = :groupID GROUP BY user_id, role_id ORDER BY Min(result)
17:24:37,502 INFO [EntityBinder] Bind entity pl.bgora.beans.entity.User on table Users
17:24:37,502 WARN [AnnotationBinder] Hibernate does not support SequenceGenerator.initialValue()
17:24:37,543 INFO [AnnotationBinder] Binding entity from annotated class: pl.bgora.beans.entity.MainProcess
17:24:37,543 INFO [QueryBinder] Binding Named query: getProcessTemplatesCount => SELECT COUNT (p) FROM MainProcess p WHERE p.actual = FALSE
17:24:37,543 INFO [QueryBinder] Binding Named query: getProcessTemplateByName => SELECT DISTINCT p FROM MainProcess p LEFT JOIN FETCH p.templatePathes WHERE p.actual = FALSE AND p.processName = :procName
17:24:37,543 INFO [QueryBinder] Binding Named query: getProcessTemplates => SELECT p FROM MainProcess p WHERE p.actual = FALSE
17:24:37,543 INFO [QueryBinder] Binding Named query: getProcessesForUser => SELECT DISTINCT mp FROM MainProcess mp, ProposalData data WHERE data.author = :user AND data.actual = TRUE AND data.mainProcess = mp
17:24:37,544 INFO [QueryBinder] Binding Named query: getProcessesForResponsibleUser => SELECT DISTINCT mp FROM MainProcess mp, ProcessPathElement pe WHERE pe.actual = TRUE AND pe.actuallyResponsible = :user AND pe.actualProcess = mp AND pe.processed = FALSE
17:24:37,544 INFO [QueryBinder] Binding Named query: getProcessById => SELECT DISTINCT mp FROM MainProcess mp LEFT JOIN FETCH mp.actualPathes pathes LEFT JOIN FETCH pathes.content WHERE mp.id = :id
17:24:37,544 INFO [EntityBinder] Bind entity pl.bgora.beans.entity.MainProcess on table MainProcess
17:24:37,544 WARN [AnnotationBinder] Hibernate does not support SequenceGenerator.initialValue()
17:24:37,582 INFO [AnnotationBinder] Binding entity from annotated class: pl.bgora.beans.entity.ProcessPathElement
17:24:37,582 INFO [QueryBinder] Binding Named query: getNextStep => SELECT pe.nextStep FROM ProcessPathElement pe, MainProcess mp WHERE mp.processName = :procName AND pe.processTemplate = mp AND pe.orderNumber = :number AND pe.status = :status AND pe.actual = FALSE AND mp.actual = FALSE
17:24:37,582 INFO [QueryBinder] Binding Named query: getRefuseStep => SELECT pe.refuseStep FROM ProcessPathElement pe, MainProcess mp WHERE mp.processName = :procName AND pe.processTemplate = mp AND pe.orderNumber = :number AND pe.status = :status AND pe.actual = FALSE AND mp.actual = FALSE
17:24:37,582 INFO [EntityBinder] Bind entity pl.bgora.beans.entity.ProcessPathElement on table ProcessPathElement
17:24:37,583 WARN [AnnotationBinder] Hibernate does not support SequenceGenerator.initialValue()
17:24:37,607 INFO [AnnotationBinder] Binding entity from annotated class: pl.bgora.beans.entity.ProposalData
17:24:37,607 INFO [QueryBinder] Binding Named query: getContentForProcessTemplate => SELECT c FROM ProposalData c WHERE mainProcess = :proccess
17:24:37,608 INFO [EntityBinder] Bind entity pl.bgora.beans.entity.ProposalData on table ProposalData
17:24:37,608 WARN [AnnotationBinder] Hibernate does not support SequenceGenerator.initialValue()
17:24:37,621 INFO [AnnotationBinder] Binding entity from annotated class: pl.bgora.beans.entity.BMSGroup
17:24:37,621 INFO [QueryBinder] Binding Named query: getGroupCountByName => SELECT COUNT(g) FROM BMSGroup g WHERE g.groupName = :groupName
17:24:37,621 INFO [QueryBinder] Binding Named query: getGroupCount => SELECT COUNT(g) FROM BMSGroup g
17:24:37,621 INFO [QueryBinder] Binding Named query: getGroupByName => FROM BMSGroup g WHERE g.groupName = :groupName
17:24:37,621 INFO [QueryBinder] Binding Named query: getGroups => FROM BMSGroup
17:24:37,627 INFO [EntityBinder] Bind entity pl.bgora.beans.entity.BMSGroup on table BMSGroup
17:24:37,627 WARN [AnnotationBinder] Hibernate does not support SequenceGenerator.initialValue()
17:24:37,632 INFO [AnnotationBinder] Binding entity from annotated class: pl.bgora.beans.entity.City
17:24:37,632 INFO [QueryBinder] Binding Named query: getAllCities => From City
17:24:37,632 INFO [QueryBinder] Binding Named query: getCityByNameCount => Select Count (c) From City c WHERE c.name = :name
17:24:37,632 INFO [QueryBinder] Binding Named query: getCityByName => FROM City Where name = :name
17:24:37,632 INFO [EntityBinder] Bind entity pl.bgora.beans.entity.City on table City
17:24:37,632 WARN [AnnotationBinder] Hibernate does not support SequenceGenerator.initialValue()
17:24:37,760 INFO [CollectionBinder] Mapping collection: pl.bgora.beans.entity.ProposalData.proposalHistory -> ProcessPathElement
17:24:37,766 INFO [CollectionBinder] Mapping collection: pl.bgora.beans.entity.Message.attachements -> Attachement
17:24:37,766 INFO [CollectionBinder] Mapping collection: pl.bgora.beans.entity.Building.flats -> Flat
17:24:37,772 INFO [CollectionBinder] Mapping collection: pl.bgora.beans.entity.Document.attachements -> Attachement
17:24:37,772 INFO [CollectionBinder] Mapping collection: pl.bgora.beans.entity.Flat.persons -> Person
17:24:37,774 INFO [CollectionBinder] Mapping collection: pl.bgora.beans.entity.User.sentMessages -> Message
17:24:37,774 INFO [CollectionBinder] Mapping collection: pl.bgora.beans.entity.User.receivedMessages -> Message
17:24:37,774 INFO [CollectionBinder] Mapping collection: pl.bgora.beans.entity.User.documents -> Document
17:24:37,775 INFO [CollectionBinder] Mapping collection: pl.bgora.beans.entity.User.news -> News
17:24:37,775 INFO [CollectionBinder] Mapping collection: pl.bgora.beans.entity.User.pathes -> ProcessPathElement
17:24:37,775 INFO [CollectionBinder] Mapping collection: pl.bgora.beans.entity.User.proposals -> ProposalData
17:24:37,776 INFO [CollectionBinder] Mapping collection: pl.bgora.beans.entity.MainProcess.templatePathes -> ProcessPathElement
17:24:37,776 INFO [CollectionBinder] Mapping collection: pl.bgora.beans.entity.MainProcess.actualPathes -> ProcessPathElement
17:24:37,777 INFO [CollectionBinder] Mapping collection: pl.bgora.beans.entity.BMSGroup.pathes -> ProcessPathElement
17:24:37,777 INFO [CollectionBinder] Mapping collection: pl.bgora.beans.entity.City.buildings -> Building
17:24:37,778 INFO [ResultsetMappingSecondPass] Binding resultset mapping: getUsersWithLessJobsResult
17:24:38,435 INFO [ConnectionProviderFactory] Initializing connection provider: org.hibernate.ejb.connection.InjectedDataSourceConnectionProvider
17:24:38,444 INFO [InjectedDataSourceConnectionProvider] Using provided datasource
17:24:38,738 INFO [SettingsFactory] RDBMS: PostgreSQL, version: 8.4.5
17:24:38,738 INFO [SettingsFactory] JDBC driver: PostgreSQL Native Driver, version: PostgreSQL 8.3 JDBC3 with SSL (build 603)
17:24:38,810 INFO [Dialect] Using dialect: org.hibernate.dialect.PostgreSQLDialect
17:24:38,838 INFO [TransactionFactoryFactory] Transaction strategy: org.hibernate.ejb.transaction.JoinableCMTTransactionFactory
17:24:38,841 INFO [TransactionManagerLookupFactory] instantiating TransactionManagerLookup: org.hibernate.transaction.JBossTransactionManagerLookup
17:24:38,850 INFO [TransactionManagerLookupFactory] instantiated TransactionManagerLookup
17:24:38,851 INFO [SettingsFactory] Automatic flush during beforeCompletion(): disabled
17:24:38,851 INFO [SettingsFactory] Automatic session close at end of transaction: disabled
17:24:38,851 INFO [SettingsFactory] JDBC batch size: 15
17:24:38,851 INFO [SettingsFactory] JDBC batch updates for versioned data: disabled
17:24:38,852 INFO [SettingsFactory] Scrollable result sets: enabled
17:24:38,852 INFO [SettingsFactory] JDBC3 getGeneratedKeys(): disabled
17:24:38,852 INFO [SettingsFactory] Connection release mode: auto
17:24:38,853 INFO [SettingsFactory] Default batch fetch size: 1
17:24:38,854 INFO [SettingsFactory] Generate SQL with comments: disabled
17:24:38,854 INFO [SettingsFactory] Order SQL updates by primary key: disabled
17:24:38,854 INFO [SettingsFactory] Order SQL inserts for batching: disabled
17:24:38,854 INFO [SettingsFactory] Query translator: org.hibernate.hql.ast.ASTQueryTranslatorFactory
17:24:38,858 INFO [ASTQueryTranslatorFactory] Using ASTQueryTranslatorFactory
17:24:38,858 INFO [SettingsFactory] Query language substitutions: {}
17:24:38,858 INFO [SettingsFactory] JPA-QL strict compliance: enabled
17:24:38,858 INFO [SettingsFactory] Second-level cache: enabled
17:24:38,858 INFO [SettingsFactory] Query cache: disabled
17:24:38,858 INFO [SettingsFactory] Cache provider: org.hibernate.cache.HashtableCacheProvider
17:24:38,860 INFO [SettingsFactory] Optimize cache for minimal puts: disabled
17:24:38,860 INFO [SettingsFactory] Cache region prefix: ServerApplication_jar,bms
17:24:38,860 INFO [SettingsFactory] Structured second-level cache entries: disabled
17:24:38,871 INFO [SettingsFactory] Statistics: disabled
17:24:38,871 INFO [SettingsFactory] Deleted entity synthetic identifier rollback: disabled
17:24:38,873 INFO [SettingsFactory] Default entity-mode: pojo
17:24:38,873 INFO [SettingsFactory] Named query checking : enabled
17:24:38,936 INFO [SessionFactoryImpl] building session factory
17:24:39,655 INFO [SessionFactoryObjectFactory] Factory name: persistence.units:jar=ServerApplication.jar,unitName=bms
17:24:39,657 INFO [NamingHelper] JNDI InitialContext properties:{java.naming.factory.initial=org.jnp.interfaces.NamingContextFactory, java.naming.factory.url.pkgs=org.jboss.naming:org.jnp.interfaces}
17:24:39,667 INFO [SessionFactoryObjectFactory] Bound factory to JNDI name: persistence.units:jar=ServerApplication.jar,unitName=bms
17:24:39,667 WARN [SessionFactoryObjectFactory] InitialContext did not implement EventContext
17:24:39,677 INFO [SchemaUpdate] Running hbm2ddl schema update
17:24:39,677 INFO [SchemaUpdate] fetching database metadata
17:24:39,688 INFO [SchemaUpdate] updating schema
17:24:39,877 INFO [TableMetadata] table found: public.attachement
17:24:39,877 INFO [TableMetadata] columns: [content, atta_id, document_id, message_id, filename, format]
17:24:39,877 INFO [TableMetadata] foreign keys: [fk36f037fe830edbd3, fk36f037fea430f941]
17:24:39,877 INFO [TableMetadata] indexes: [attachement_pkey]
17:24:39,943 INFO [TableMetadata] table found: public.bmsgroup
17:24:39,943 INFO [TableMetadata] columns: [group_id, groupname, displayname]
17:24:39,943 INFO [TableMetadata] foreign keys: []
17:24:39,943 INFO [TableMetadata] indexes: [bmsgroup_pkey]
17:24:40,113 INFO [TableMetadata] table found: public.building
17:24:40,113 INFO [TableMetadata] columns: [city_id, building_id, street_name, street_number]
17:24:40,113 INFO [TableMetadata] foreign keys: [fkae9476d436e91e53]
17:24:40,113 INFO [TableMetadata] indexes: [building_pkey]
17:24:40,174 INFO [TableMetadata] table found: public.city
17:24:40,174 INFO [TableMetadata] columns: [city_id, name]
17:24:40,174 INFO [TableMetadata] foreign keys: []
17:24:40,174 INFO [TableMetadata] indexes: [city_pkey]
17:24:40,277 INFO [TableMetadata] table found: public.document
17:24:40,277 INFO [TableMetadata] columns: [content, title, expire_date, create_date, document_id, user_id, type, version]
17:24:40,277 INFO [TableMetadata] foreign keys: [fk3737353bff5b8253]
17:24:40,277 INFO [TableMetadata] indexes: [document_pkey]
17:24:40,407 INFO [TableMetadata] table found: public.flat
17:24:40,407 INFO [TableMetadata] columns: [maintenant, building_id, flat_number, description, separate_toilet, flat_id, metters, balcony, rooms]
17:24:40,407 INFO [TableMetadata] foreign keys: [fk21739987c0c933, fk217399cc360931]
17:24:40,407 INFO [TableMetadata] indexes: [flat_pkey]
17:24:40,471 INFO [TableMetadata] table found: public.mainprocess
17:24:40,472 INFO [TableMetadata] columns: [placement, processname, process_id, create_date, status, actual, displayname]
17:24:40,472 INFO [TableMetadata] foreign keys: []
17:24:40,472 INFO [TableMetadata] indexes: [mainprocess_pkey]
17:24:40,595 INFO [TableMetadata] table found: public.message
17:24:40,595 INFO [TableMetadata] columns: [to_user_id, content, from_user_id, title, message_id, sent_date]
17:24:40,595 INFO [TableMetadata] foreign keys: [fk9c2397e7f785f6be, fk9c2397e786de8c8f]
17:24:40,595 INFO [TableMetadata] indexes: [message_pkey]
17:24:40,683 INFO [TableMetadata] table found: public.news
17:24:40,684 INFO [TableMetadata] columns: [content, news_id, title, news_date, user_id]
17:24:40,684 INFO [TableMetadata] foreign keys: [fk24fef3ff5b8253]
17:24:40,684 INFO [TableMetadata] indexes: [news_pkey]
17:24:40,775 INFO [TableMetadata] table found: public.person
17:24:40,775 INFO [TableMetadata] columns: [pesel, person_id, name, flat_id, removed, surname]
17:24:40,775 INFO [TableMetadata] foreign keys: [fk8e488775d9adbb93]
17:24:40,775 INFO [TableMetadata] indexes: [person_pkey]
17:24:40,860 INFO [TableMetadata] table found: public.pricing
17:24:40,861 INFO [TableMetadata] columns: [garbage_collection, hot_water_price, building_id, price_per_metter, repair_fund, pricingid, cold_water_price]
17:24:40,861 INFO [TableMetadata] foreign keys: [fk507137a687c0c933]
17:24:40,861 INFO [TableMetadata] indexes: [pricing_pkey]
17:24:41,430 INFO [TableMetadata] table found: public.processpathelement
17:24:41,430 INFO [TableMetadata] columns: [placement, order_number, status, refuse_id, template_id, nextstep, history, display_name, processed, processpathelementname, content_id, create_date, parent_process, actual, user_comment, prevstep, responsible_user, responsible_group, process_path_id]
17:24:41,430 INFO [TableMetadata] foreign keys: [fk17628948f11ea6dd, fk176289486314dbb8, fk17628948f12c8e20, fk1762894850500560, fk1762894884558fb7, fk17628948325a09c9, fk17628948adee3d6, fk17628948738115c6, fk17628948806e5707]
17:24:41,430 INFO [TableMetadata] indexes: [processpathelement_pkey]
17:24:41,583 INFO [TableMetadata] table found: public.proposaldata
17:24:41,583 INFO [TableMetadata] columns: [content, author, display_name, create_date, status, main_process, actual, prosposal_data_id, proposaldataname]
17:24:41,583 INFO [TableMetadata] foreign keys: [fkf8cb59dcb44db5cf, fkf8cb59dc9a930dc6]
17:24:41,583 INFO [TableMetadata] indexes: [proposaldata_pkey]
17:24:41,674 INFO [TableMetadata] table found: public.rent
17:24:41,674 INFO [TableMetadata] columns: [garbage_collection, hot_water_price, price_per_metter, flat_id, repair_fund, pricingid, cold_water_price]
17:24:41,674 INFO [TableMetadata] foreign keys: [fk26cf59d9adbb93]
17:24:41,674 INFO [TableMetadata] indexes: [rent_pkey]
17:24:41,735 INFO [TableMetadata] table found: public.role
17:24:41,735 INFO [TableMetadata] columns: [roleid, role_name]
17:24:41,735 INFO [TableMetadata] foreign keys: []
17:24:41,735 INFO [TableMetadata] indexes: [role_pkey]
17:24:41,859 INFO [TableMetadata] table found: public.users
17:24:41,859 INFO [TableMetadata] columns: [passwd, role_id, person_id, email, status, login, user_id]
17:24:41,859 INFO [TableMetadata] foreign keys: [fk4e39de85a30be73, fk4e39de8abdfa3d3]
17:24:41,859 INFO [TableMetadata] indexes: [users_login_key, users_pkey]
17:24:41,954 INFO [TableMetadata] table found: public.users_bmsgroups
17:24:41,954 INFO [TableMetadata] columns: [users, groups]
17:24:41,954 INFO [TableMetadata] foreign keys: [fkf70afe5775893d8, fkf70afe5be5e6e18]
17:24:41,954 INFO [TableMetadata] indexes: []
17:24:41,955 INFO [SchemaUpdate] schema update complete
17:24:41,957 INFO [NamingHelper] JNDI InitialContext properties:{java.naming.factory.initial=org.jnp.interfaces.NamingContextFactory, java.naming.factory.url.pkgs=org.jboss.naming:org.jnp.interfaces}
17:24:43,660 INFO [JmxKernelAbstraction] creating wrapper delegate for: org.jboss.ejb3.stateless.StatelessContainer
17:24:43,666 INFO [JmxKernelAbstraction] installing MBean: jboss.j2ee:jar=ServerApplication.jar,name=AttachementBean,service=EJB3 with dependencies:
17:24:43,666 INFO [JmxKernelAbstraction] persistence.units:jar=ServerApplication.jar,unitName=bms
17:24:43,987 INFO [EJBContainer] STARTED EJB: pl.bgora.beans.session.AttachementBean ejbName: AttachementBean
17:24:44,687 INFO [JmxKernelAbstraction] creating wrapper delegate for: org.jboss.ejb3.stateless.StatelessContainer
17:24:44,687 INFO [JmxKernelAbstraction] installing MBean: jboss.j2ee:jar=ServerApplication.jar,name=BuildingBean,service=EJB3 with dependencies:
17:24:44,687 INFO [JmxKernelAbstraction] persistence.units:jar=ServerApplication.jar,unitName=bms
17:24:44,744 INFO [EJBContainer] STARTED EJB: pl.bgora.beans.session.BuildingBean ejbName: BuildingBean
17:24:44,800 INFO [JmxKernelAbstraction] creating wrapper delegate for: org.jboss.ejb3.stateful.StatefulContainer
17:24:44,808 INFO [JmxKernelAbstraction] installing MBean: jboss.j2ee:jar=ServerApplication.jar,name=BuildingEditorBean,service=EJB3 with dependencies:
17:24:44,808 INFO [JmxKernelAbstraction] persistence.units:jar=ServerApplication.jar,unitName=bms
17:24:44,938 INFO [EJBContainer] STARTED EJB: pl.bgora.beans.session.BuildingEditorBean ejbName: BuildingEditorBean
17:24:45,187 INFO [JmxKernelAbstraction] creating wrapper delegate for: org.jboss.ejb3.stateless.StatelessContainer
17:24:45,187 INFO [JmxKernelAbstraction] installing MBean: jboss.j2ee:jar=ServerApplication.jar,name=CityBean,service=EJB3 with dependencies:
17:24:45,187 INFO [JmxKernelAbstraction] persistence.units:jar=ServerApplication.jar,unitName=bms
17:24:45,221 INFO [EJBContainer] STARTED EJB: pl.bgora.beans.session.CityBean ejbName: CityBean
17:24:45,281 INFO [JmxKernelAbstraction] creating wrapper delegate for: org.jboss.ejb3.stateless.StatelessContainer
17:24:45,293 INFO [JmxKernelAbstraction] installing MBean: jboss.j2ee:jar=ServerApplication.jar,name=DocumentBean,service=EJB3 with dependencies:
17:24:45,293 INFO [JmxKernelAbstraction] persistence.units:jar=ServerApplication.jar,unitName=bms
17:24:45,328 INFO [EJBContainer] STARTED EJB: pl.bgora.beans.session.DocumentBean ejbName: DocumentBean
17:24:45,399 INFO [JmxKernelAbstraction] creating wrapper delegate for: org.jboss.ejb3.stateless.StatelessContainer
17:24:45,399 INFO [JmxKernelAbstraction] installing MBean: jboss.j2ee:jar=ServerApplication.jar,name=FlatBean,service=EJB3 with dependencies:
17:24:45,399 INFO [JmxKernelAbstraction] persistence.units:jar=ServerApplication.jar,unitName=bms
17:24:45,455 INFO [EJBContainer] STARTED EJB: pl.bgora.beans.session.FlatBean ejbName: FlatBean
17:24:45,515 INFO [JmxKernelAbstraction] creating wrapper delegate for: org.jboss.ejb3.stateless.StatelessContainer
17:24:45,515 INFO [JmxKernelAbstraction] installing MBean: jboss.j2ee:jar=ServerApplication.jar,name=GroupBean,service=EJB3 with dependencies:
17:24:45,515 INFO [JmxKernelAbstraction] persistence.units:jar=ServerApplication.jar,unitName=bms
17:24:45,601 INFO [EJBContainer] STARTED EJB: pl.bgora.beans.session.GroupBean ejbName: GroupBean
17:24:45,701 INFO [JmxKernelAbstraction] creating wrapper delegate for: org.jboss.ejb3.stateless.StatelessContainer
17:24:45,701 INFO [JmxKernelAbstraction] installing MBean: jboss.j2ee:jar=ServerApplication.jar,name=MessageBean,service=EJB3 with dependencies:
17:24:45,701 INFO [JmxKernelAbstraction] persistence.units:jar=ServerApplication.jar,unitName=bms
17:24:45,755 INFO [EJBContainer] STARTED EJB: pl.bgora.beans.session.MessageBean ejbName: MessageBean
17:24:45,794 INFO [JmxKernelAbstraction] creating wrapper delegate for: org.jboss.ejb3.stateless.StatelessContainer
17:24:45,794 INFO [JmxKernelAbstraction] installing MBean: jboss.j2ee:jar=ServerApplication.jar,name=NewsBean,service=EJB3 with dependencies:
17:24:45,794 INFO [JmxKernelAbstraction] persistence.units:jar=ServerApplication.jar,unitName=bms
17:24:45,825 INFO [EJBContainer] STARTED EJB: pl.bgora.beans.session.NewsBean ejbName: NewsBean
17:24:45,866 INFO [JmxKernelAbstraction] creating wrapper delegate for: org.jboss.ejb3.stateless.StatelessContainer
17:24:45,866 INFO [JmxKernelAbstraction] installing MBean: jboss.j2ee:jar=ServerApplication.jar,name=PersonBean,service=EJB3 with dependencies:
17:24:45,867 INFO [JmxKernelAbstraction] persistence.units:jar=ServerApplication.jar,unitName=bms
17:24:45,900 INFO [EJBContainer] STARTED EJB: pl.bgora.beans.session.PersonBean ejbName: PersonBean
17:24:45,940 INFO [JmxKernelAbstraction] creating wrapper delegate for: org.jboss.ejb3.stateful.StatefulContainer
17:24:45,940 INFO [JmxKernelAbstraction] installing MBean: jboss.j2ee:jar=ServerApplication.jar,name=PersonEditorBean,service=EJB3 with dependencies:
17:24:45,940 INFO [JmxKernelAbstraction] persistence.units:jar=ServerApplication.jar,unitName=bms
17:24:45,987 INFO [EJBContainer] STARTED EJB: pl.bgora.beans.session.PersonEditorBean ejbName: PersonEditorBean
17:24:46,021 INFO [JmxKernelAbstraction] creating wrapper delegate for: org.jboss.ejb3.stateless.StatelessContainer
17:24:46,021 INFO [JmxKernelAbstraction] installing MBean: jboss.j2ee:jar=ServerApplication.jar,name=PricingBean,service=EJB3 with dependencies:
17:24:46,021 INFO [JmxKernelAbstraction] persistence.units:jar=ServerApplication.jar,unitName=bms
17:24:46,046 INFO [EJBContainer] STARTED EJB: pl.bgora.beans.session.PricingBean ejbName: PricingBean
17:24:46,069 INFO [JmxKernelAbstraction] creating wrapper delegate for: org.jboss.ejb3.stateful.StatefulContainer
17:24:46,069 INFO [JmxKernelAbstraction] installing MBean: jboss.j2ee:jar=ServerApplication.jar,name=ProccessCreatorBean,service=EJB3 with dependencies:
17:24:46,069 INFO [JmxKernelAbstraction] persistence.units:jar=ServerApplication.jar,unitName=bms
17:24:46,084 INFO [EJBContainer] STARTED EJB: pl.bgora.beans.session.ProccessCreatorBean ejbName: ProccessCreatorBean
17:24:46,166 INFO [JmxKernelAbstraction] creating wrapper delegate for: org.jboss.ejb3.stateless.StatelessContainer
17:24:46,167 INFO [JmxKernelAbstraction] installing MBean: jboss.j2ee:jar=ServerApplication.jar,name=ProcessBean,service=EJB3 with dependencies:
17:24:46,167 INFO [JmxKernelAbstraction] persistence.units:jar=ServerApplication.jar,unitName=bms
17:24:46,202 INFO [EJBContainer] STARTED EJB: pl.bgora.beans.session.ProcessBean ejbName: ProcessBean
17:24:46,228 INFO [JmxKernelAbstraction] creating wrapper delegate for: org.jboss.ejb3.stateless.StatelessContainer
17:24:46,228 INFO [JmxKernelAbstraction] installing MBean: jboss.j2ee:jar=ServerApplication.jar,name=ProcessPathElementBean,service=EJB3 with dependencies:
17:24:46,228 INFO [JmxKernelAbstraction] persistence.units:jar=ServerApplication.jar,unitName=bms
17:24:46,258 INFO [EJBContainer] STARTED EJB: pl.bgora.beans.session.ProcessPathElementBean ejbName: ProcessPathElementBean
17:24:46,290 INFO [JmxKernelAbstraction] creating wrapper delegate for: org.jboss.ejb3.stateless.StatelessContainer
17:24:46,290 INFO [JmxKernelAbstraction] installing MBean: jboss.j2ee:jar=ServerApplication.jar,name=ProposalDataBean,service=EJB3 with dependencies:
17:24:46,290 INFO [JmxKernelAbstraction] persistence.units:jar=ServerApplication.jar,unitName=bms
17:24:46,325 INFO [EJBContainer] STARTED EJB: pl.bgora.beans.session.ProposalDataBean ejbName: ProposalDataBean
17:24:46,369 INFO [JmxKernelAbstraction] creating wrapper delegate for: org.jboss.ejb3.stateless.StatelessContainer
17:24:46,369 INFO [JmxKernelAbstraction] installing MBean: jboss.j2ee:jar=ServerApplication.jar,name=RentBean,service=EJB3 with dependencies:
17:24:46,369 INFO [JmxKernelAbstraction] persistence.units:jar=ServerApplication.jar,unitName=bms
17:24:46,403 INFO [EJBContainer] STARTED EJB: pl.bgora.beans.session.RentBean ejbName: RentBean
17:24:46,466 INFO [JmxKernelAbstraction] creating wrapper delegate for: org.jboss.ejb3.stateless.StatelessContainer
17:24:46,466 INFO [JmxKernelAbstraction] installing MBean: jboss.j2ee:jar=ServerApplication.jar,name=RoleBean,service=EJB3 with dependencies:
17:24:46,466 INFO [JmxKernelAbstraction] persistence.units:jar=ServerApplication.jar,unitName=bms
17:24:46,524 INFO [EJBContainer] STARTED EJB: pl.bgora.beans.session.RoleBean ejbName: RoleBean
17:24:46,659 INFO [JmxKernelAbstraction] creating wrapper delegate for: org.jboss.ejb3.stateless.StatelessContainer
17:24:46,659 INFO [JmxKernelAbstraction] installing MBean: jboss.j2ee:jar=ServerApplication.jar,name=UserBean,service=EJB3 with dependencies:
17:24:46,659 INFO [JmxKernelAbstraction] persistence.units:jar=ServerApplication.jar,unitName=bms
17:24:46,724 INFO [EJBContainer] STARTED EJB: pl.bgora.beans.session.UserBean ejbName: UserBean
17:24:46,785 INFO [JmxKernelAbstraction] creating wrapper delegate for: org.jboss.ejb3.stateful.StatefulContainer
17:24:46,786 INFO [JmxKernelAbstraction] installing MBean: jboss.j2ee:jar=ServerApplication.jar,name=UserEditorBean,service=EJB3 with dependencies:
17:24:46,786 INFO [JmxKernelAbstraction] persistence.units:jar=ServerApplication.jar,unitName=bms
17:24:46,841 INFO [EJBContainer] STARTED EJB: pl.bgora.beans.session.UserEditorBean ejbName: UserEditorBean
17:24:46,889 INFO [EJB3Deployer] Deployed: file:/opt/jboss/jboss-4.2.2.GA/server/all/deploy/ServerApplication.jar
17:24:46,943 INFO [TomcatDeployer] deploy, ctxPath=/jmx-console, warUrl=.../deploy/jmx-console.war/
17:24:47,467 ERROR [URLDeploymentScanner] Incomplete Deployment listing:
--- MBeans waiting for other MBeans ---
ObjectName: jboss:service=HAJNDI
State: FAILED
Reason: java.rmi.server.ExportException: Port already in use: 1101; nested exception is:
java.net.BindException: Cannot assign requested address
I Depend On:
jboss:service=DefaultPartition
jboss.system:service=ThreadPool
--- MBEANS THAT ARE THE ROOT CAUSE OF THE PROBLEM ---
ObjectName: jboss:service=HAJNDI
State: FAILED
Reason: java.rmi.server.ExportException: Port already in use: 1101; nested exception is:
java.net.BindException: Cannot assign requested address
I Depend On:
jboss:service=DefaultPartition
jboss.system:service=ThreadPool
17:24:47,725 INFO [Http11Protocol] Starting Coyote HTTP/1.1 on http-192.168.0.103-8080
17:24:47,809 INFO [AjpProtocol] Starting Coyote AJP/1.3 on ajp-192.168.0.103-8009
17:24:47,867 INFO [Server] JBoss (MX MicroKernel) [4.2.2.GA (build: SVNTag=JBoss_4_2_2_GA date=200710221139)] Started in 58s:494ms
Plese help me I have no idea, what to do with this.... :(
--------------------------------------------------------------
Reply to this message by going to Community
[http://community.jboss.org/message/565669#565669]
Start a new discussion in Beginner's Corner at Community
[http://community.jboss.org/choose-container!input.jspa?contentType=1&cont...]
14 years, 3 months
[EJB 3.0] - Why a simple @Stateless depends on EJBTimerService?
by Ondrej Zizka
Ondrej Zizka [http://community.jboss.org/people/ozizka%40redhat.com] created the discussion
"Why a simple @Stateless depends on EJBTimerService?"
To view the discussion, visit: http://community.jboss.org/message/565617#565617
--------------------------------------------------------------
Hi,
please why this
import javax.annotation.Resource;
import javax.ejb.Stateless;
import javax.ejb.LocalBean;
@Stateless
@LocalBean
public class MySessionBean {
private int injectedValue = 0;
@Resource
public void setInjectedValue(int injectedValue) {
this.injectedValue = injectedValue;
}
}
depends on the +EJBTimerService+?
18:07:06,918 WARN [ResourceHandler] Not injecting injectedValue, no matching enc injector env/org.jboss.qa.simpleejb31.MySessionBean/injectedValue found
18:07:06,923 INFO [JBossASKernel] Created KernelDeployment for: SimpleEJB-31.jar
18:07:06,925 INFO [JBossASKernel] installing bean: jboss.j2ee:jar=SimpleEJB-31.jar,name=MySessionBean,service=EJB3
18:07:06,925 INFO [JBossASKernel] with dependencies:
18:07:06,925 INFO [JBossASKernel] and demands:
18:07:06,925 INFO [JBossASKernel] jboss.ejb:service=EJBTimerService
18:07:06,925 INFO [JBossASKernel] and supplies:
18:07:06,925 INFO [JBossASKernel] jndi:MySessionBean/remote
18:07:06,925 INFO [JBossASKernel] Added bean(jboss.j2ee:jar=SimpleEJB-31.jar,name=MySessionBean,service=EJB3) to KernelDeployment of: SimpleEJB-31.jar
AS 6 M2. Might be in older too, haven't tried.
Thanks, Ondra
--------------------------------------------------------------
Reply to this message by going to Community
[http://community.jboss.org/message/565617#565617]
Start a new discussion in EJB 3.0 at Community
[http://community.jboss.org/choose-container!input.jspa?contentType=1&cont...]
14 years, 3 months