[JBoss JIRA] (AS7-4140) Change distributtion of -Dmcast through testsuite
by Richard Achmatowicz (JIRA)
[ https://issues.jboss.org/browse/AS7-4140?page=com.atlassian.jira.plugin.s... ]
Richard Achmatowicz commented on AS7-4140:
------------------------------------------
Ondra, did you forget about this? I still see hardcoded addresses in standalone-ha-full.xml.
> Change distributtion of -Dmcast through testsuite
> -------------------------------------------------
>
> Key: AS7-4140
> URL: https://issues.jboss.org/browse/AS7-4140
> Project: Application Server 7
> Issue Type: Feature Request
> Components: Test Suite
> Affects Versions: 7.1.1.Final
> Reporter: Pavel Janousek
> Assignee: Ondrej Zizka
> Priority: Blocker
> Fix For: 7.1.2.Final
>
>
> Please change present behavior.
> We need to define only one property -Dmcast (for ex., the name doesn't matter now) as command line parameter - this multicast address is needed to be distributed to every subsystem which manages any multicast communication. It is needed to be unique in every subsystem - JGroups, HornetQ etc. because we must avoid to interfere each other => port assignation must be unique for every a such component.
> This change is needed in both - IPV4 and IPv6...
--
This message is automatically generated by JIRA.
If you think it was sent incorrectly, please contact your JIRA administrators: https://issues.jboss.org/secure/ContactAdministrators!default.jspa
For more information on JIRA, see: http://www.atlassian.com/software/jira
14 years, 1 month
[JBoss JIRA] (AS7-4238) Missing module dependency: org.jboss.as.clustering.infinispan should depend on org.hibernate
by Vitaliy Sapounov (JIRA)
Vitaliy Sapounov created AS7-4238:
-------------------------------------
Summary: Missing module dependency: org.jboss.as.clustering.infinispan should depend on org.hibernate
Key: AS7-4238
URL: https://issues.jboss.org/browse/AS7-4238
Project: Application Server 7
Issue Type: Bug
Components: Clustering
Affects Versions: 7.1.1.Final
Environment: Windows 7
Reporter: Vitaliy Sapounov
Assignee: Paul Ferraro
I tried to port our .war application to JBoss 7.1.1 Final and tried to use Infinispan as the Hibernate second-level cache (via hibernate.cfg.xml configuration). Finally, I found it did not work, as the following dependency is missing that I added manually (see >>> below, especially note services="import"):
-------------------------------------------------------------------------------
{noformat}
C:\jboss-as-7.1.1.Final\modules\org\jboss\as\clustering\infinispan\main\module.xml
<dependencies>
<module name="javax.api"/>
<module name="javax.transaction.api"/>
<module name="net.jcip"/>
>>>>>>>>>>>>>>>>>> <module name="org.hibernate" services="import"/>
<module name="org.infinispan"/>
<module name="org.infinispan.cachestore.jdbc"/>
{noformat}
-------------------------------------------------------------------------------
The reason is that org.hibernate module has services (hibernate-infinispan-4.0.1.Final.jar/META-INF/services/org.infinispan.commands.module.ModuleCommandExtensions) to be loaded by Infinispan, thus needs to be loaded BEFORE Infinispan starts.
NOTE: I have not completed our port yet as found other problems after that, but pretty sure this dependency should be inplace.
--
This message is automatically generated by JIRA.
If you think it was sent incorrectly, please contact your JIRA administrators: https://issues.jboss.org/secure/ContactAdministrators!default.jspa
For more information on JIRA, see: http://www.atlassian.com/software/jira
14 years, 1 month
[JBoss JIRA] (AS7-4226) Async servlet operation timeout check should run more frequently
by Martin Kouba (JIRA)
Martin Kouba created AS7-4226:
---------------------------------
Summary: Async servlet operation timeout check should run more frequently
Key: AS7-4226
URL: https://issues.jboss.org/browse/AS7-4226
Project: Application Server 7
Issue Type: Bug
Components: Web
Affects Versions: 7.1.1.Final
Reporter: Martin Kouba
Assignee: Remy Maucherat
Priority: Minor
The async servlet operation timeout check is run approx. every ten seconds. This is not very practical/precise assuming the timeout is specified in milliseconds -> {{javax.servlet.AsyncContext.setTimeout(long)}}.
Not completely sure about the exact time - 10s occures in my simple CDI TCK test). Looking at {{org.apache.tomcat.util.net.JIoEndpoint#Poller.maintain()}} five seconds is hard coded minimum: "Maintain runs at most once every 5s".
I suppose this is intentional and due to performance reasons. If so it should be FAQed or mentioned in docs. Otherwise it should be fixed.
--
This message is automatically generated by JIRA.
If you think it was sent incorrectly, please contact your JIRA administrators: https://issues.jboss.org/secure/ContactAdministrators!default.jspa
For more information on JIRA, see: http://www.atlassian.com/software/jira
14 years, 1 month
[JBoss JIRA] (JBAS-9478) NPE in ClientSessionFactoryImpl constructor
by Bryan Brouckaert (JIRA)
Bryan Brouckaert created JBAS-9478:
--------------------------------------
Summary: NPE in ClientSessionFactoryImpl constructor
Key: JBAS-9478
URL: https://issues.jboss.org/browse/JBAS-9478
Project: Application Server 3 4 5 and 6
Issue Type: Bug
Security Level: Public (Everyone can see)
Components: JMS (HornetQ)
Affects Versions: 6.1.0
Environment: Cluster with one node as live server and the other as backup.
Reporter: Bryan Brouckaert
Assignee: Clebert Suconic
>From time to time the following error occurs:
{code}
javax.jms.JMSException: Failed to create session factory
at org.hornetq.jms.client.HornetQConnectionFactory.createConnectionInternal(HornetQConnectionFactory.java:615) [:6.1.0.Final]
at org.hornetq.jms.client.HornetQConnectionFactory.createConnection(HornetQConnectionFactory.java:121) [:6.1.0.Final]
at org.hornetq.jms.client.HornetQConnectionFactory.createConnection(HornetQConnectionFactory.java:116) [:6.1.0.Final]
at be.cin.nippin.kernel.routing.MessageRouterBean.executeAsync(MessageRouterBean.java:159) [:]
Caused by: java.lang.NullPointerException
at org.hornetq.core.client.impl.ClientSessionFactoryImpl.<init>(ClientSessionFactoryImpl.java:179) [:6.1.0.Final]
at org.hornetq.core.client.impl.ServerLocatorImpl.createSessionFactory(ServerLocatorImpl.java:590) [:6.1.0.Final]
at org.hornetq.jms.client.HornetQConnectionFactory.createConnectionInternal(HornetQConnectionFactory.java:611) [:6.1.0.Final]
... 235 more
{code}
--
This message is automatically generated by JIRA.
If you think it was sent incorrectly, please contact your JIRA administrators: https://issues.jboss.org/secure/ContactAdministrators!default.jspa
For more information on JIRA, see: http://www.atlassian.com/software/jira
14 years, 1 month