[JBoss JIRA] (AS7-3039) User Documentation part of description "How to re-configure AS7 for working in IPv6 environment" is missing
by Rajesh Rajasekaran (JIRA)
[ https://issues.jboss.org/browse/AS7-3039?page=com.atlassian.jira.plugin.s... ]
Rajesh Rajasekaran closed AS7-3039.
-----------------------------------
Resolution: Duplicate Issue
Documentation items will be done by the EAP6 docs team which will be tracked by the linked JBPAPP jira. Closing this AS7 jira as duplicate.
> User Documentation part of description "How to re-configure AS7 for working in IPv6 environment" is missing
> -----------------------------------------------------------------------------------------------------------
>
> Key: AS7-3039
> URL: https://issues.jboss.org/browse/AS7-3039
> Project: Application Server 7
> Issue Type: Bug
> Components: Documentation
> Affects Versions: 7.1.0.Beta1
> Reporter: Pavel Janousek
> Assignee: EAP 5 Docs Lead
> Priority: Blocker
>
> Default configuration of AS7 is distributed as force to use IPv4 network stack only (even IPv6 network stack is available on hosting platform). There is several steps and requirements to re-configure AS7 installed instance to allow it utilizing the IPv6 network stack and environment too (or use it exclusively).
> This is very important in pure IPv6 network stack environment, because in a such environment default installation isn't able to start at all.
> The issue is that there isn't +any+ User Guide or other documentation *how* user should re-configure its AS7 instance to work in an IPv6 environment.
--
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-2572) Cannot run JAXR drop tables script on shutdown
by Thomas Diesler (Created) (JIRA)
Cannot run JAXR drop tables script on shutdown
----------------------------------------------
Key: AS7-2572
URL: https://issues.jboss.org/browse/AS7-2572
Project: Application Server 7
Issue Type: Bug
Components: JAXR
Reporter: Thomas Diesler
Assignee: Kurt Stam
Fix For: 7.1.0.CR1
{code}
09:20:34,685 ERROR [org.jboss.as.jaxr.service.JAXRBootstrapService] Cannot start JUDDI service: org.h2.jdbc.JdbcSQLException: Database is already closed (to disable automatic closing at VM shutdown, add ";DB_CLOSE_ON_EXIT=FALSE" to the db URL) [90121-145]
at org.h2.message.DbException.getJdbcSQLException(DbException.java:327)
at org.h2.message.DbException.get(DbException.java:167)
at org.h2.message.DbException.get(DbException.java:144)
at org.h2.message.DbException.get(DbException.java:133)
at org.h2.jdbc.JdbcConnection.checkClosed(JdbcConnection.java:1333)
at org.h2.jdbc.JdbcConnection.checkClosed(JdbcConnection.java:1308)
at org.h2.jdbc.JdbcConnection.createStatement(JdbcConnection.java:164)
at org.jboss.jca.adapters.jdbc.WrappedConnection.createStatement(WrappedConnection.java:301)
at org.jboss.as.jaxr.service.JAXRBootstrapService.runScript(JAXRBootstrapService.java:172) [jboss-as-jaxr-7.1.0.Alpha2-SNAPSHOT.jar:7.1.0.Alpha2-SNAPSHOT]
at org.jboss.as.jaxr.service.JAXRBootstrapService.locateAndRunScript(JAXRBootstrapService.java:156) [jboss-as-jaxr-7.1.0.Alpha2-SNAPSHOT.jar:7.1.0.Alpha2-SNAPSHOT]
at org.jboss.as.jaxr.service.JAXRBootstrapService.runDrop(JAXRBootstrapService.java:138) [jboss-as-jaxr-7.1.0.Alpha2-SNAPSHOT.jar:7.1.0.Alpha2-SNAPSHOT]
at org.jboss.as.jaxr.service.JAXRBootstrapService.stop(JAXRBootstrapService.java:128)
{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-2262) Link to Console missing from Welcome page
by Chuck Mosher (Created) (JIRA)
Link to Console missing from Welcome page
-----------------------------------------
Key: AS7-2262
URL: https://issues.jboss.org/browse/AS7-2262
Project: Application Server 7
Issue Type: Bug
Components: Console
Affects Versions: 7.1.0.Alpha1
Reporter: Chuck Mosher
Assignee: Heiko Braun
If I start up the app server(s) using "bin/domain.sh", I can open up the starting page @ localhost:8080/ but there is no link to open the console; only to examine the documentation. The link to the Console is there when running standalone.sh. See attached screenshots.
Options are: leave the link in there, but when clicked it will result in an error message instructing the user they need to pick which instance they want to examine. Or, point it to localhost:9990/.
--
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-3415) security-constraint/user-data-constraint/transport-guarantee in web.xml file doesn't override setting from servlet @ServletSecurity transportGuarantee parameter
by Peter Skopek (JIRA)
Peter Skopek created AS7-3415:
---------------------------------
Summary: security-constraint/user-data-constraint/transport-guarantee in web.xml file doesn't override setting from servlet @ServletSecurity transportGuarantee parameter
Key: AS7-3415
URL: https://issues.jboss.org/browse/AS7-3415
Project: Application Server 7
Issue Type: Bug
Components: Web
Affects Versions: 7.1.0.CR1b
Reporter: Peter Skopek
Assignee: Remy Maucherat
security-constraint/user-data-constraint/transport-guarantee in web.xml file doesn't override setting from servlet @ServletSecurity transportGuarantee parameter
{noformat}
My settings:
@ServletSecurity(@HttpConstraint(rolesAllowed = { "gooduser" }, transportGuarantee = TransportGuarantee.CONFIDENTIAL) )
web.xml excerpt:
<security-constraint>
<web-resource-collection>
<web-resource-name>sec</web-resource-name>
<url-pattern>/tgmixed/*</url-pattern>
<http-method>GET</http-method>
<http-method>POST</http-method>
</web-resource-collection>
<auth-constraint>
<role-name>gooduser</role-name>
</auth-constraint>
<user-data-constraint>
<transport-guarantee>NONE</transport-guarantee>
</user-data-constraint>
</security-constraint>
{noformat}
--
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