[JBoss JIRA] (AS7-3494) Missing dependencies log4j module
by Maas van den Berg (JIRA)
Maas van den Berg created AS7-3494:
--------------------------------------
Summary: Missing dependencies log4j module
Key: AS7-3494
URL: https://issues.jboss.org/browse/AS7-3494
Project: Application Server 7
Issue Type: Bug
Components: Logging
Affects Versions: 7.1.0.Final
Reporter: Maas van den Berg
Assignee: James Perkins
Fix For: 7.1.0.Final
Since AS7-1389 deployments fail due to missing dependencies for log4j on *org.dom4j* and *org.w3c.dom.Node*
Modifying the module.xml for org\apache\log4j resolves the issue:
{code}
<module xmlns="urn:jboss:module:1.1" name="org.apache.log4j">
<resources>
<resource-root path="log4j-1.2.16.jar"/>
<!-- Insert resources here -->
</resources>
<dependencies>
<module name="org.dom4j"/>
<module name="javax.api"/>
</dependencies>
</module>
{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
12 years, 9 months
[JBoss JIRA] (AS7-3442) 'jms-destinations' section disappears from config file
by Dmitry Savenko (JIRA)
Dmitry Savenko created AS7-3442:
-----------------------------------
Summary: 'jms-destinations' section disappears from config file
Key: AS7-3442
URL: https://issues.jboss.org/browse/AS7-3442
Project: Application Server 7
Issue Type: Bug
Affects Versions: 7.1.0.CR1b
Environment: Linux 2.6.32-37-generic-pae #81-Ubuntu SMP i686 GNU/Linux
java version "1.6.0_30"
Java(TM) SE Runtime Environment (build 1.6.0_30-b12)
Java HotSpot(TM) Server VM (build 20.5-b03, mixed mode)
Reporter: Dmitry Savenko
Steps to reproduce:
1. Unpack fresh jboss 7.1.0CR1b from here: http://download.jboss.org/jbossas/7.1/jboss-as-7.1.0.CR1b/jboss-as-7.1.0....
2. Open standalone-full.xml config file and remove this:
<jms-topic name="testTopic">
<entry name="topic/test"/>
</jms-topic>
So, jms-destinations section should look like this:
<jms-destinations>
<jms-queue name="testQueue">
<entry name="queue/test"/>
</jms-queue>
</jms-destinations>
3. Start the server: bin/standalone.sh --server-config=standalone-full.xml
4. Deploy 'helloworld' quickstart: mvn clean package jboss-as:deploy
Results:
jms-destinations section (with 'testQueue') completely disappears from the config file.
I did it on JBoss AS 7.0.2 (with standalone-preview.xml, since there is no standalone-full.xml there), and everything works fine, i.e. jms-destinations section is not removed.
--
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
12 years, 9 months
[JBoss JIRA] (AS7-2343) Remove dependency on rhq plugin annotations
by Paul Gier (Created) (JIRA)
Remove dependency on rhq plugin annotations
-------------------------------------------
Key: AS7-2343
URL: https://issues.jboss.org/browse/AS7-2343
Project: Application Server 7
Issue Type: Enhancement
Components: Build System, Clustering
Reporter: Paul Gier
Assignee: Manik Surtani
The AS 7 build currently pulls in a transitive dependency on the artifact org.rhq.helpers:rhq-pluginAnnotations:jar:3.0.1.
This jar is not included in the AS zip, and the dependency should be removed from the build. However, just excluding this dependency causes a compile error in the infinispan module, so some of the source probably needs to be changed.
{quote}
[ERROR] Failed to execute goal org.apache.maven.plugins:maven-compiler-plugin:2.3.1:compile (default-compile) on project jboss-as-clustering-infinispan: Compilation failure
[ERROR] Failure executing javac, but could not parse the error:
[ERROR] org/infinispan/manager/DefaultCacheManager.class(org/infinispan/manager:DefaultCacheManager.class): warning: Cannot find annotation method 'displayName()' in type 'org.rhq.helpers.pluginAnnotations.agent.Metric': class file for org.rhq.helpers.pluginAnnotations.agent.Metric not found
[ERROR] org/infinispan/manager/DefaultCacheManager.class(org/infinispan/manager:DefaultCacheManager.class): warning: Cannot find annotation method 'dataType()' in type 'org.rhq.helpers.pluginAnnotations.agent.Metric'
[ERROR] An exception has occurred in the compiler (1.6.0_20). Please file a bug at the Java Developer Connection (http://java.sun.com/webapps/bugreport) after checking the Bug Parade for duplicates. Include your program and the following diagnostic in your report. Thank you.
[ERROR] com.sun.tools.javac.code.Symbol$CompletionFailure: class file for org.rhq.helpers.pluginAnnotations.agent.DataType not found
{quote}
--
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
12 years, 9 months
[JBoss JIRA] (AS7-2634) SessionBeanComponentDescriptionFactory silently ignores EJBs declared in ejb-jar.xml
by Richard Opalka (Created) (JIRA)
SessionBeanComponentDescriptionFactory silently ignores EJBs declared in ejb-jar.xml
------------------------------------------------------------------------------------
Key: AS7-2634
URL: https://issues.jboss.org/browse/AS7-2634
Project: Application Server 7
Issue Type: Bug
Components: EJB
Reporter: Richard Opalka
Assignee: Carlo de Wolf
Fix For: 7.1.0.CR1
If I'm trying to provide another EJB in ejb-jar.xml that is using different name than
the name derived from its class (I'm trying to provide multiple EJBs based on same class
with different names), my bean is silently ignored by the following piece of code:
{code:title=SessionBeanComponentDescriptionFactory.java|borderStyle=solid}
...
final SessionType sessionType = sessionBean.getSessionType();
if(sessionType == null && sessionBean instanceof GenericBeanMetaData) {
//TODO: this is a hack
return;
}
...
{code}
The code should
* either detect bean type according to its associated class annotation (@Singleton, @Stateless) for EJB3 beans
* or print warning or throw exception that <session-type> must be provided in ejb-jar.xml descriptor for EJB21 endpoints
--
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
12 years, 9 months
[JBoss JIRA] (AS7-669) Missing error message for composite operations
by Brian Stansberry (JIRA)
[ https://issues.jboss.org/browse/AS7-669?page=com.atlassian.jira.plugin.sy... ]
Brian Stansberry reassigned AS7-669:
------------------------------------
Assignee: Tomaz Cerar (was: Brian Stansberry)
Tomaz, reading this it sounds very similar to the other HTTP API issue you have assigned.
> Missing error message for composite operations
> ----------------------------------------------
>
> Key: AS7-669
> URL: https://issues.jboss.org/browse/AS7-669
> Project: Application Server 7
> Issue Type: Bug
> Components: Domain Management
> Affects Versions: 7.0.0.Beta3
> Reporter: Brian Stansberry
> Assignee: Tomaz Cerar
> Labels: eap6-ux
> Fix For: 7.1.0.Final
>
>
> Heiko Braun reports:
> I don't see any error details when composite op's fail.
> Is it just me or a general problem?
> Request
> {
> "operation" => "composite",
> "address" => [],
> "steps" => [
> {
> "operation" => "write-attribute",
> "address" => [
> ("host" => "local"),
> ("server-config" => "server-one")
> ],
> "name" => "socket-binding-group",
> "value" => "standard-sockets"
> },
> {
> "operation" => "write-attribute",
> "address" => [
> ("host" => "local"),
> ("server-config" => "server-one")
> ],
> "name" => "socket-binding-port-offset",
> "value" => 0
> }
> ],
> "child-type" => undefined
> }
>
> Response
>
> Internal Server Error
--
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
12 years, 9 months