[JBoss JIRA] (AS7-3199) RESTEasy: Can't deploy WebApp if more than one subclass of javax.ws.rs.Application is present
by Bill Burke (JIRA)
[ https://issues.jboss.org/browse/AS7-3199?page=com.atlassian.jira.plugin.s... ]
Bill Burke commented on AS7-3199:
---------------------------------
What's amazing is that this is marked as a "BLOCKER" where there are a number of bugs fixed and scheduled for 2.3.2 that are vastly more critical than this. Let the project leads and people that actually answer user questions decide whether or not a bug/feature is a "BLOCKER" or not.
> RESTEasy: Can't deploy WebApp if more than one subclass of javax.ws.rs.Application is present
> ---------------------------------------------------------------------------------------------
>
> Key: AS7-3199
> URL: https://issues.jboss.org/browse/AS7-3199
> Project: Application Server 7
> Issue Type: Bug
> Components: REST
> Affects Versions: 7.1.0.CR1b
> Reporter: Pavel Janousek
> Assignee: Stuart Douglas
> Priority: Critical
> Labels: eap6_prd_req
> Fix For: 7.1.1.Final
>
> Attachments: ExampleJAXRS.war
>
>
> If I packed WAR WebApp with more that one subclass of javax.ws.rs.Application, deployment fails with "JBAS011232: Only one JAX-RS Application Class allowed."
> This is not correct because it is against JAX-RS 1.1. specs where invalid situation (in section 2.3.2) is only when "It is a n error for
> more than one application to be deployed +at the same effective servlet mapping+".
> If you have any objections, please compare to reference JEE6 and JAX-RS implementation represented by the GlassFish Prelude 3.1.1 application server with already +fully JEE6 platform support+.
--
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, 4 months
[JBoss JIRA] (AS7-3817) Remove test topics and queues from default configurations
by Shelly McGowan (JIRA)
Shelly McGowan created AS7-3817:
-----------------------------------
Summary: Remove test topics and queues from default configurations
Key: AS7-3817
URL: https://issues.jboss.org/browse/AS7-3817
Project: Application Server 7
Issue Type: Bug
Components: Server, Test Suite
Reporter: Shelly McGowan
Assignee: Jason Greene
Highlighed in JBPAPP-6738, the default configuration files contain JMS destinations that are present only to satisfy tests in the integration test suite.
{code}
<jms-destinations>
<jms-queue name="testQueue">
<entry name="queue/test"/>
<entry name="java:jboss/exported/jms/queue/test"/>
</jms-queue>
<jms-topic name="testTopic">
<entry name="topic/test"/>
<entry name="java:jboss/exported/jms/topic/test"/>
</jms-topic>
</jms-destinations>
{code}
The following tests are dependent on those:
org.jboss.as.test.integration.ee.injection.resource.resourceref.ResourceRefTestCase.org.jboss.as.test.integration.ee.injection.resource.resourceref.ResourceRefTestCase
org.jboss.as.test.integration.ejb.mdb.JMSMessageDrivenBeanTestCase.testSendMessage
org.jboss.as.test.integration.ejb.mdb.timerservice.SimpleTimerMDBTestCase.testAnnotationTimeoutMethod
org.jboss.as.test.integration.ejb.mdb.timerservice.SimpleTimerMDBTestCase.testTimedObjectTimeoutMethod
org.jboss.as.test.integration.ejb.pool.lifecycle.PooledEJBLifecycleTestCase.testMDB
Probably should consider a common target to create these for these and other tests to use.
--
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, 4 months
[JBoss JIRA] (AS7-3882) Configuration for Jacorb does not use jboss.bind.address config property
by Brian Stansberry (JIRA)
[ https://issues.jboss.org/browse/AS7-3882?page=com.atlassian.jira.plugin.s... ]
Brian Stansberry resolved AS7-3882.
-----------------------------------
Fix Version/s: 7.1.1.Final
(was: 7.1.2.Final)
Resolution: Done
> Configuration for Jacorb does not use jboss.bind.address config property
> ------------------------------------------------------------------------
>
> Key: AS7-3882
> URL: https://issues.jboss.org/browse/AS7-3882
> Project: Application Server 7
> Issue Type: Bug
> Components: IIOP
> Affects Versions: 7.1.0.Final
> Reporter: Pavel Slavicek
> Assignee: Brian Stansberry
> Fix For: 7.1.1.Final
>
>
> Configuration for Jacorb in socket-binding-group (standalone-*.xml) does not use jboss.bind.address config property and uses 127.0.0.1.
> We are not able to start two EAPs on one machine with different IPs.
> {code}
> <interfaces>
> <interface name="management">
> <inet-address value="${jboss.bind.address.management:127.0.0.1}"/>
> </interface>
> <interface name="public">
> <inet-address value="${jboss.bind.address:127.0.0.1}"/>
> </interface>
> <interface name="unsecure">
> <!-- Used for IIOP sockets in the standarad configuration.
> To secure JacORB you need to setup SSL -->
> <inet-address value="127.0.0.1"/>
> </interface>
> </interfaces>
> {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, 4 months
[JBoss JIRA] (AS7-3847) Non-standard format of IPv6 address(-es) in LOG files
by Pavel Janousek (JIRA)
[ https://issues.jboss.org/browse/AS7-3847?page=com.atlassian.jira.plugin.s... ]
Pavel Janousek updated AS7-3847:
--------------------------------
Description:
There are several places where some IPv6 address related info is logged. The format of a such info is formally correct, but used format is against [RFC-5952|http://tools.ietf.org/html/rfc5952] - this RFC has status of +Proposed standard+ and I don't know any software product which doesn't follow it (at least by-default).
I think in enterprise product we should not violate this RFC.
I'm mentioning about LOG messages like:
{code}
15:14:15,985 INFO [org.jboss.as.remoting] (MSC service thread 1-2) JBAS017100: Listening on /0:0:0:0:0:0:0:1%1:9999
15:14:15,990 INFO [org.jboss.as.remoting] (MSC service thread 1-2) JBAS017100: Listening on localhost6.localdomain6/0:0:0:0:0:0:0:1%1:4447
{code}
In both lines IPv6 address should be stretched to "::1" string.
The second related issue (JBossWeb part) is tracked as AS7-3851.
was:
There are several places where some IPv6 address related info is logged. The format of a such info is formally correct, but used format is against [RFC-5952|http://tools.ietf.org/html/rfc5952] - this RFC has status of +Proposed standard+ and I don't know any software product which doesn't follow it (at least by-default).
I think in enterprise product we should not violate this RFC.
I'm mentioning about LOG messages like:
{code}
15:14:15,985 INFO [org.jboss.as.remoting] (MSC service thread 1-2) JBAS017100: Listening on /0:0:0:0:0:0:0:1%1:9999
15:14:15,990 INFO [org.jboss.as.remoting] (MSC service thread 1-2) JBAS017100: Listening on localhost6.localdomain6/0:0:0:0:0:0:0:1%1:4447
{code}
In both lines IPv6 address should be stretched to "::1" string.
More "funny" and obfuscated version of the same LOG content is LOG line like this:
{code}
15:14:14,363 INFO [org.apache.coyote.http11.Http11Protocol] (MSC service thread 1-1) Starting Coyote HTTP/1.1 on http--0%3A0%3A0%3A0%3A0%3A0%3A0%3A1%251-8080
{code}
But both version of the issue is almost unreadable by human.
> Non-standard format of IPv6 address(-es) in LOG files
> -----------------------------------------------------
>
> Key: AS7-3847
> URL: https://issues.jboss.org/browse/AS7-3847
> Project: Application Server 7
> Issue Type: Bug
> Affects Versions: 7.1.0.Final
> Reporter: Pavel Janousek
>
> There are several places where some IPv6 address related info is logged. The format of a such info is formally correct, but used format is against [RFC-5952|http://tools.ietf.org/html/rfc5952] - this RFC has status of +Proposed standard+ and I don't know any software product which doesn't follow it (at least by-default).
> I think in enterprise product we should not violate this RFC.
> I'm mentioning about LOG messages like:
> {code}
> 15:14:15,985 INFO [org.jboss.as.remoting] (MSC service thread 1-2) JBAS017100: Listening on /0:0:0:0:0:0:0:1%1:9999
> 15:14:15,990 INFO [org.jboss.as.remoting] (MSC service thread 1-2) JBAS017100: Listening on localhost6.localdomain6/0:0:0:0:0:0:0:1%1:4447
> {code}
> In both lines IPv6 address should be stretched to "::1" string.
> The second related issue (JBossWeb part) is tracked as AS7-3851.
--
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, 4 months