[JBoss JIRA] Created: (JBAS-8787) Native libraries not found when using IBM JDK
by Mike Millson (JIRA)
Native libraries not found when using IBM JDK
---------------------------------------------
Key: JBAS-8787
URL: https://issues.jboss.org/browse/JBAS-8787
Project: JBoss Application Server
Issue Type: Bug
Security Level: Public (Everyone can see)
Components: Web (Tomcat) service
Affects Versions: 6.0.0.Final
Reporter: Mike Millson
Assignee: Remy Maucherat
The native components are not found on x86_64 using the IBM JDK because the startup script is looking in "lib" instead of "lib64".
You get this error:
2011-01-04 16:39:37,205 INFO [org.apache.catalina.core.AprLifecycleListener] (main) The Apache Tomcat Native library which allows optimal performance in production environments was not found on the java.library.path: /home/mmillson/jboss/eap-5.1.0/jboss-as/native/lib
run.sh and run.bat set the native directory based on whether the reported version includes the string "64-bit":
IS_64_BIT_JVM=`"$JAVA" $JAVA_OPTS -version 2>&1 | $GREP -i 64-bit`
if [ "x$IS_64_BIT_JVM" != "x" ]; then
JBOSS_NATIVE_DIR="$JBOSS_NATIVE_DIR/lib64"
else
JBOSS_NATIVE_DIR="$JBOSS_NATIVE_DIR/lib"
fi
But with the IBM JDK "java -version" does not report that string:
Java(TM) SE Runtime Environment (build pxa6460sr8fp1-20100624_01(SR8 FP1))
IBM J9 VM (build 2.4, JRE 1.6.0 IBM J9 2.4 Linux amd64-64 jvmxa6460sr8ifx-20100609_59383 (JIT enabled, AOT enabled)
J9VM - 20100609_059383
JIT - r9_20100401_15339ifx2
GC - 20100308_AA)
JCL - 20100624_01
--
This message is automatically generated by JIRA.
-
For more information on JIRA, see: http://www.atlassian.com/software/jira
13 years, 2 months
[JBoss JIRA] Created: (JBAS-9421) Unable to manually create JMS queues in the Admin Console.
by Jarod Rose (JIRA)
Unable to manually create JMS queues in the Admin Console.
----------------------------------------------------------
Key: JBAS-9421
URL: https://issues.jboss.org/browse/JBAS-9421
Project: Legacy JBoss Application Server 6
Issue Type: Bug
Security Level: Public (Everyone can see)
Components: JMS (HornetQ), Web Console
Affects Versions: 6.1.0
Environment: Windows XP SP 3
Reporter: Jarod Rose
Assignee: Clebert Suconic
When attempting to create a queue via the JMS Manager in the Admin Console of JBoss 6.1.0-SNAPSHOT (Revision 111808) an error occurs and the queue is not created.
Steps to reproduce:
1) Start creating a JMS queue off of the default template.
2) Fill in the minimum values to create a queue (Name and JNDI Name) In my case it was TestQueue and queue/TestQueue
3) Click Save
At the Top of the page this error appears...
Failed to add Resource (see app server log for additional details): Failed to invoke method 'createQueue' on component 'JMSQueueManageMO' with parameters [SimpleMetaType:java.lang.String:TestQueue, SimpleMetaType:java.lang.String:queue/TestQueue, SimpleMetaType:java.lang.String:null, SimpleMetaType:java.lang.String:null, SimpleMetaType:int:-1, SimpleMetaType:int:10485760, SimpleMetaType:int:10, SimpleMetaType:long:0, SimpleMetaType:boolean:false, SimpleMetaType:long:-1, SimpleMetaType:boolean:false, SimpleMetaType:java.lang.String:PAGE, SimpleMetaType:java.lang.String:, SimpleMetaType:java.lang.String:].
And this stack trace appears in the server.log...
2011-07-21 09:38:55,270 INFO [org.rhq.core.pc.inventory.RuntimeDiscoveryExecutor] (InventoryManager.discovery-1) Running runtime discovery scan rooted at [platform]
2011-07-21 09:38:55,489 INFO [org.rhq.core.pc.inventory.RuntimeDiscoveryExecutor] (InventoryManager.discovery-1) Scanned [0] servers and found [0] total descendant Resources.
2011-07-21 09:40:03,179 INFO [org.rhq.core.pc.inventory.CreateResourceRunner] (ResourceFactory.executor-1) Creating resource through report: CreateResourceReport: ResourceType=[ResourceType[id=0, category=Service, name=JMS Queue, plugin=HornetQ]], ResourceKey=[null]
2011-07-21 09:40:03,179 ERROR [STDERR] (ResourceContainer.invoker.nonDaemon-2) java.lang.reflect.UndeclaredThrowableException: Failed to invoke method 'createQueue' on component 'JMSQueueManageMO' with parameters [SimpleMetaType:java.lang.String:TestQueue, SimpleMetaType:java.lang.String:queue/TestQueue, SimpleMetaType:java.lang.String:null, SimpleMetaType:java.lang.String:null, SimpleMetaType:int:-1, SimpleMetaType:int:10485760, SimpleMetaType:int:10, SimpleMetaType:long:0, SimpleMetaType:boolean:false, SimpleMetaType:long:-1, SimpleMetaType:boolean:false, SimpleMetaType:java.lang.String:PAGE, SimpleMetaType:java.lang.String:, SimpleMetaType:java.lang.String:].
2011-07-21 09:40:03,179 ERROR [STDERR] (ResourceContainer.invoker.nonDaemon-2) at org.jboss.profileservice.plugins.management.util.AbstractManagedComponentRuntimeDispatcher.invoke(AbstractManagedComponentRuntimeDispatcher.java:148)
2011-07-21 09:40:03,179 ERROR [STDERR] (ResourceContainer.invoker.nonDaemon-2) at org.jboss.profileservice.management.DelegatingComponentDispatcherImpl.invoke(DelegatingComponentDispatcherImpl.java:93)
2011-07-21 09:40:03,179 ERROR [STDERR] (ResourceContainer.invoker.nonDaemon-2) at sun.reflect.GeneratedMethodAccessor446.invoke(Unknown Source)
2011-07-21 09:40:03,179 ERROR [STDERR] (ResourceContainer.invoker.nonDaemon-2) at sun.reflect.DelegatingMethodAccessorImpl.invoke(DelegatingMethodAccessorImpl.java:25)
2011-07-21 09:40:03,179 ERROR [STDERR] (ResourceContainer.invoker.nonDaemon-2) at java.lang.reflect.Method.invoke(Method.java:597)
2011-07-21 09:40:03,179 ERROR [STDERR] (ResourceContainer.invoker.nonDaemon-2) at org.jboss.aop.Dispatcher.invoke(Dispatcher.java:121)
2011-07-21 09:40:03,179 ERROR [STDERR] (ResourceContainer.invoker.nonDaemon-2) at org.jboss.aspects.remoting.AOPRemotingInvocationHandler.invoke(AOPRemotingInvocationHandler.java:82)
2011-07-21 09:40:03,179 ERROR [STDERR] (ResourceContainer.invoker.nonDaemon-2) at org.jboss.profileservice.remoting.ProfileServiceInvocationHandler.invoke(ProfileServiceInvocationHandler.java:99)
2011-07-21 09:40:03,179 ERROR [STDERR] (ResourceContainer.invoker.nonDaemon-2) at org.jboss.remoting.ServerInvoker.invoke(ServerInvoker.java:967)
2011-07-21 09:40:03,179 ERROR [STDERR] (ResourceContainer.invoker.nonDaemon-2) at org.jboss.remoting.transport.local.LocalClientInvoker.invoke(LocalClientInvoker.java:106)
2011-07-21 09:40:03,179 ERROR [STDERR] (ResourceContainer.invoker.nonDaemon-2) at org.jboss.remoting.Client.invoke(Client.java:2070)
2011-07-21 09:40:03,179 ERROR [STDERR] (ResourceContainer.invoker.nonDaemon-2) at org.jboss.remoting.Client.invoke(Client.java:879)
2011-07-21 09:40:03,179 ERROR [STDERR] (ResourceContainer.invoker.nonDaemon-2) at org.jboss.aspects.remoting.InvokeRemoteInterceptor.invoke(InvokeRemoteInterceptor.java:60)
2011-07-21 09:40:03,179 ERROR [STDERR] (ResourceContainer.invoker.nonDaemon-2) at org.jboss.aop.joinpoint.MethodInvocation.invokeNext(MethodInvocation.java:102)
2011-07-21 09:40:03,179 ERROR [STDERR] (ResourceContainer.invoker.nonDaemon-2) at org.jboss.aspects.remoting.MergeMetaDataInterceptor.invoke(MergeMetaDataInterceptor.java:74)
2011-07-21 09:40:03,179 ERROR [STDERR] (ResourceContainer.invoker.nonDaemon-2) at org.jboss.aop.joinpoint.MethodInvocation.invokeNext(MethodInvocation.java:102)
2011-07-21 09:40:03,179 ERROR [STDERR] (ResourceContainer.invoker.nonDaemon-2) at org.jboss.aspects.security.SecurityClientInterceptor.invoke(SecurityClientInterceptor.java:65)
2011-07-21 09:40:03,179 ERROR [STDERR] (ResourceContainer.invoker.nonDaemon-2) at org.jboss.aop.joinpoint.MethodInvocation.invokeNext(MethodInvocation.java:102)
2011-07-21 09:40:03,179 ERROR [STDERR] (ResourceContainer.invoker.nonDaemon-2) at org.jboss.aop.generatedproxies.AOPProxy$0.invoke(AOPProxy$0.java)
2011-07-21 09:40:03,179 ERROR [STDERR] (ResourceContainer.invoker.nonDaemon-2) at org.jboss.profileservice.management.client.ManagedOperationDelegate.invoke(ManagedOperationDelegate.java:63)
2011-07-21 09:40:03,179 ERROR [STDERR] (ResourceContainer.invoker.nonDaemon-2) at org.jboss.as.integration.hornetq.jopr.JMSManagerComponent.createQueue(JMSManagerComponent.java:267)
2011-07-21 09:40:03,179 ERROR [STDERR] (ResourceContainer.invoker.nonDaemon-2) at org.jboss.as.integration.hornetq.jopr.JMSManagerComponent.createResource(JMSManagerComponent.java:149)
2011-07-21 09:40:03,179 ERROR [STDERR] (ResourceContainer.invoker.nonDaemon-2) at sun.reflect.NativeMethodAccessorImpl.invoke0(Native Method)
2011-07-21 09:40:03,179 ERROR [STDERR] (ResourceContainer.invoker.nonDaemon-2) at sun.reflect.NativeMethodAccessorImpl.invoke(NativeMethodAccessorImpl.java:39)
2011-07-21 09:40:03,179 ERROR [STDERR] (ResourceContainer.invoker.nonDaemon-2) at sun.reflect.DelegatingMethodAccessorImpl.invoke(DelegatingMethodAccessorImpl.java:25)
2011-07-21 09:40:03,179 ERROR [STDERR] (ResourceContainer.invoker.nonDaemon-2) at java.lang.reflect.Method.invoke(Method.java:597)
2011-07-21 09:40:03,179 ERROR [STDERR] (ResourceContainer.invoker.nonDaemon-2) at org.rhq.core.pc.inventory.ResourceContainer$ComponentInvocationThread.call(ResourceContainer.java:525)
2011-07-21 09:40:03,179 ERROR [STDERR] (ResourceContainer.invoker.nonDaemon-2) at java.util.concurrent.FutureTask$Sync.innerRun(FutureTask.java:303)
2011-07-21 09:40:03,179 ERROR [STDERR] (ResourceContainer.invoker.nonDaemon-2) at java.util.concurrent.FutureTask.run(FutureTask.java:138)
2011-07-21 09:40:03,179 ERROR [STDERR] (ResourceContainer.invoker.nonDaemon-2) at java.util.concurrent.ThreadPoolExecutor$Worker.runTask(ThreadPoolExecutor.java:886)
2011-07-21 09:40:03,179 ERROR [STDERR] (ResourceContainer.invoker.nonDaemon-2) at java.util.concurrent.ThreadPoolExecutor$Worker.run(ThreadPoolExecutor.java:908)
2011-07-21 09:40:03,179 ERROR [STDERR] (ResourceContainer.invoker.nonDaemon-2) at java.lang.Thread.run(Thread.java:619)
2011-07-21 09:40:03,179 ERROR [STDERR] (ResourceContainer.invoker.nonDaemon-2) Caused by: org.jboss.joinpoint.spi.JoinpointException: Method not found createQueue[java.lang.String, java.lang.String, java.lang.String, java.lang.String, long, int, int, int, long, boolean, long, boolean, java.lang.String, java.lang.String] for class org.jboss.as.integration.hornetq.management.jms.QueueManageMO
2011-07-21 09:40:03,179 ERROR [STDERR] (ResourceContainer.invoker.nonDaemon-2) at org.jboss.joinpoint.plugins.Config.findMethodInfo(Config.java:400)
2011-07-21 09:40:03,179 ERROR [STDERR] (ResourceContainer.invoker.nonDaemon-2) at org.jboss.joinpoint.plugins.Config.findMethodInfo(Config.java:366)
2011-07-21 09:40:03,179 ERROR [STDERR] (ResourceContainer.invoker.nonDaemon-2) at org.jboss.joinpoint.plugins.Config.findMethodInfo(Config.java:335)
2011-07-21 09:40:03,179 ERROR [STDERR] (ResourceContainer.invoker.nonDaemon-2) at org.jboss.joinpoint.plugins.Config.getMethodJoinpoint(Config.java:223)
2011-07-21 09:40:03,179 ERROR [STDERR] (ResourceContainer.invoker.nonDaemon-2) at org.jboss.beans.info.plugins.AbstractBeanInfo.invoke(AbstractBeanInfo.java:299)
2011-07-21 09:40:03,179 ERROR [STDERR] (ResourceContainer.invoker.nonDaemon-2) at org.jboss.kernel.plugins.dependency.AbstractKernelControllerContext.invoke(AbstractKernelControllerContext.java:305)
2011-07-21 09:40:03,179 ERROR [STDERR] (ResourceContainer.invoker.nonDaemon-2) at org.jboss.kernel.plugins.registry.basic.LifecycleAwareKernelBus$1.dispatch(LifecycleAwareKernelBus.java:61)
2011-07-21 09:40:03,179 ERROR [STDERR] (ResourceContainer.invoker.nonDaemon-2) at org.jboss.kernel.plugins.registry.basic.LifecycleAwareKernelBus$1.dispatch(LifecycleAwareKernelBus.java:58)
2011-07-21 09:40:03,179 ERROR [STDERR] (ResourceContainer.invoker.nonDaemon-2) at org.jboss.kernel.plugins.registry.basic.BasicKernelBus.execute(BasicKernelBus.java:71)
2011-07-21 09:40:03,179 ERROR [STDERR] (ResourceContainer.invoker.nonDaemon-2) at org.jboss.kernel.plugins.registry.basic.LifecycleAwareKernelBus.invoke(LifecycleAwareKernelBus.java:57)
2011-07-21 09:40:03,179 ERROR [STDERR] (ResourceContainer.invoker.nonDaemon-2) at org.jboss.profileservice.management.KernelBusRuntimeComponentDispatcher.invoke(KernelBusRuntimeComponentDispatcher.java:85)
2011-07-21 09:40:03,194 ERROR [STDERR] (ResourceContainer.invoker.nonDaemon-2) at org.jboss.profileservice.plugins.management.util.AbstractManagedComponentRuntimeDispatcher.invoke(AbstractManagedComponentRuntimeDispatcher.java:135)
2011-07-21 09:40:03,194 ERROR [STDERR] (ResourceContainer.invoker.nonDaemon-2) at org.jboss.profileservice.management.DelegatingComponentDispatcherImpl.invoke(DelegatingComponentDispatcherImpl.java:93)
2011-07-21 09:40:03,194 ERROR [STDERR] (ResourceContainer.invoker.nonDaemon-2) at sun.reflect.GeneratedMethodAccessor446.invoke(Unknown Source)
2011-07-21 09:40:03,194 ERROR [STDERR] (ResourceContainer.invoker.nonDaemon-2) at sun.reflect.DelegatingMethodAccessorImpl.invoke(DelegatingMethodAccessorImpl.java:25)
2011-07-21 09:40:03,194 ERROR [STDERR] (ResourceContainer.invoker.nonDaemon-2) at java.lang.reflect.Method.invoke(Method.java:597)
2011-07-21 09:40:03,194 ERROR [STDERR] (ResourceContainer.invoker.nonDaemon-2) at org.jboss.aop.Dispatcher.invoke(Dispatcher.java:121)
2011-07-21 09:40:03,194 ERROR [STDERR] (ResourceContainer.invoker.nonDaemon-2) at org.jboss.aspects.remoting.AOPRemotingInvocationHandler.invoke(AOPRemotingInvocationHandler.java:82)
2011-07-21 09:40:03,194 ERROR [STDERR] (ResourceContainer.invoker.nonDaemon-2) at org.jboss.profileservice.remoting.ProfileServiceInvocationHandler.invoke(ProfileServiceInvocationHandler.java:99)
2011-07-21 09:40:03,194 ERROR [STDERR] (ResourceContainer.invoker.nonDaemon-2) at org.jboss.remoting.ServerInvoker.invoke(ServerInvoker.java:967)
2011-07-21 09:40:03,194 ERROR [STDERR] (ResourceContainer.invoker.nonDaemon-2) at org.jboss.remoting.transport.local.LocalClientInvoker.invoke(LocalClientInvoker.java:106)
2011-07-21 09:40:03,194 ERROR [STDERR] (ResourceContainer.invoker.nonDaemon-2) at org.jboss.remoting.Client.invoke(Client.java:2070)
2011-07-21 09:40:03,194 ERROR [STDERR] (ResourceContainer.invoker.nonDaemon-2) at org.jboss.remoting.Client.invoke(Client.java:879)
2011-07-21 09:40:03,194 ERROR [STDERR] (ResourceContainer.invoker.nonDaemon-2) at org.jboss.aspects.remoting.InvokeRemoteInterceptor.invoke(InvokeRemoteInterceptor.java:60)
2011-07-21 09:40:03,194 ERROR [STDERR] (ResourceContainer.invoker.nonDaemon-2) at org.jboss.aop.joinpoint.MethodInvocation.invokeNext(MethodInvocation.java:102)
2011-07-21 09:40:03,194 ERROR [STDERR] (ResourceContainer.invoker.nonDaemon-2) at org.jboss.aspects.remoting.MergeMetaDataInterceptor.invoke(MergeMetaDataInterceptor.java:74)
2011-07-21 09:40:03,194 ERROR [STDERR] (ResourceContainer.invoker.nonDaemon-2) at org.jboss.aop.joinpoint.MethodInvocation.invokeNext(MethodInvocation.java:102)
2011-07-21 09:40:03,194 ERROR [STDERR] (ResourceContainer.invoker.nonDaemon-2) at org.jboss.aspects.security.SecurityClientInterceptor.invoke(SecurityClientInterceptor.java:65)
2011-07-21 09:40:03,194 ERROR [STDERR] (ResourceContainer.invoker.nonDaemon-2) at org.jboss.aop.joinpoint.MethodInvocation.invokeNext(MethodInvocation.java:102)
2011-07-21 09:40:03,194 ERROR [STDERR] (ResourceContainer.invoker.nonDaemon-2) at org.jboss.aop.generatedproxies.AOPProxy$0.invoke(AOPProxy$0.java)
2011-07-21 09:40:03,194 ERROR [STDERR] (ResourceContainer.invoker.nonDaemon-2) at org.jboss.profileservice.management.client.ManagedOperationDelegate.invoke(ManagedOperationDelegate.java:63)
2011-07-21 09:40:03,194 ERROR [STDERR] (ResourceContainer.invoker.nonDaemon-2) at org.jboss.as.integration.hornetq.jopr.JMSManagerComponent.createQueue(JMSManagerComponent.java:267)
2011-07-21 09:40:03,194 ERROR [STDERR] (ResourceContainer.invoker.nonDaemon-2) at org.jboss.as.integration.hornetq.jopr.JMSManagerComponent.createResource(JMSManagerComponent.java:149)
2011-07-21 09:40:03,194 ERROR [STDERR] (ResourceContainer.invoker.nonDaemon-2) at sun.reflect.NativeMethodAccessorImpl.invoke0(Native Method)
2011-07-21 09:40:03,194 ERROR [STDERR] (ResourceContainer.invoker.nonDaemon-2) at sun.reflect.NativeMethodAccessorImpl.invoke(NativeMethodAccessorImpl.java:39)
2011-07-21 09:40:03,194 ERROR [STDERR] (ResourceContainer.invoker.nonDaemon-2) at sun.reflect.DelegatingMethodAccessorImpl.invoke(DelegatingMethodAccessorImpl.java:25)
2011-07-21 09:40:03,194 ERROR [STDERR] (ResourceContainer.invoker.nonDaemon-2) at java.lang.reflect.Method.invoke(Method.java:597)
2011-07-21 09:40:03,194 ERROR [STDERR] (ResourceContainer.invoker.nonDaemon-2) at org.rhq.core.pc.inventory.ResourceContainer$ComponentInvocationThread.call(ResourceContainer.java:525)
2011-07-21 09:40:03,194 ERROR [STDERR] (ResourceContainer.invoker.nonDaemon-2) at java.util.concurrent.FutureTask$Sync.innerRun(FutureTask.java:303)
2011-07-21 09:40:03,194 ERROR [STDERR] (ResourceContainer.invoker.nonDaemon-2) at java.util.concurrent.FutureTask.run(FutureTask.java:138)
2011-07-21 09:40:03,194 ERROR [STDERR] (ResourceContainer.invoker.nonDaemon-2) at java.util.concurrent.ThreadPoolExecutor$Worker.runTask(ThreadPoolExecutor.java:886)
2011-07-21 09:40:03,194 ERROR [STDERR] (ResourceContainer.invoker.nonDaemon-2) at java.util.concurrent.ThreadPoolExecutor$Worker.run(ThreadPoolExecutor.java:908)
2011-07-21 09:40:03,194 ERROR [STDERR] (ResourceContainer.invoker.nonDaemon-2) at java.lang.Thread.run(Thread.java:619)
2011-07-21 09:40:03,194 ERROR [STDERR] (ResourceContainer.invoker.nonDaemon-2) at org.jboss.aspects.remoting.InvokeRemoteInterceptor.invoke(InvokeRemoteInterceptor.java:72)
2011-07-21 09:40:03,194 ERROR [STDERR] (ResourceContainer.invoker.nonDaemon-2) ... 19 more
2011-07-21 09:40:03,194 INFO [org.rhq.core.pc.inventory.CreateResourceRunner] (ResourceFactory.executor-1) Sending create response to server: CreateResourceResponse[RequestId=1, Status=Failure]
--
This message is automatically generated by JIRA.
For more information on JIRA, see: http://www.atlassian.com/software/jira
13 years, 2 months
[JBoss JIRA] Created: (AS7-754) Rename php licence files to html
by Radoslav Husar (JIRA)
Rename php licence files to html
--------------------------------
Key: AS7-754
URL: https://issues.jboss.org/browse/AS7-754
Project: Application Server 7
Issue Type: Enhancement
Components: Build System
Affects Versions: 7.0.0.Beta3
Reporter: Radoslav Husar
Assignee: Jason Greene
Priority: Trivial
These 3 should be renamed to to .html.
{code}
[rhusar@rhusar licenses]$ ll *.php
-rw-r--r-- 1 rhusar jbossaci 33728 Apr 19 23:59 GNU Lesser General Public License 2.1 - lgpl-2.1.php
-rw-r--r-- 1 rhusar jbossaci 20417 Apr 19 23:58 MIT License - mit-license.php
-rw-r--r-- 1 rhusar jbossaci 14340 Apr 19 23:59 The BSD License - bsd-license.php
{code}
--
This message is automatically generated by JIRA.
For more information on JIRA, see: http://www.atlassian.com/software/jira
13 years, 2 months
[JBoss JIRA] Created: (JBAS-8423) Ensure that connectors that handle end user request start late in the server start process
by Brian Stansberry (JIRA)
Ensure that connectors that handle end user request start late in the server start process
------------------------------------------------------------------------------------------
Key: JBAS-8423
URL: https://jira.jboss.org/browse/JBAS-8423
Project: JBoss Application Server
Issue Type: Task
Security Level: Public (Everyone can see)
Reporter: Brian Stansberry
Assignee: Emanuel Muckenhuber
Fix For: 7.0.0.M1
Ensure all connectors that handle user requests have appropriate behavior with respect to not starting until the overall server start is in a state where the connector can handle the expected requests.
Part of this is understanding how the clients work; i.e. for some connectors clients may never send a request that the server can't correctly handle. For others, e.g. web connectors fronted by mod_jk or most hardware load balancers, once the connector is started, it may start receiving requests for apps that are not deployed.
This is somewhat related to graceful shutdown, where the connector should stop handling requests at the appropriate point in a shutdown process.
--
This message is automatically generated by JIRA.
-
If you think it was sent incorrectly contact one of the administrators: https://jira.jboss.org/secure/Administrators.jspa
-
For more information on JIRA, see: http://www.atlassian.com/software/jira
13 years, 2 months
[JBoss JIRA] Created: (JBAS-8208) Expressing configuration property metadata in domain schema
by Brian Stansberry (JIRA)
Expressing configuration property metadata in domain schema
-----------------------------------------------------------
Key: JBAS-8208
URL: https://jira.jboss.org/browse/JBAS-8208
Project: JBoss Application Server
Issue Type: Sub-task
Security Level: Public (Everyone can see)
Components: Domain Management
Reporter: Brian Stansberry
Assignee: Emanuel Muckenhuber
Fix For: 7.0.0.M1
Clients of the domain management API are going to need to see metadata about the various items they are configuring. Besides simple type stuff, information on things like whether changes require restart, etc, need to be available.
This task is to determine where this information comes from and how it can be made available to the layer that provides it to the client.
--
This message is automatically generated by JIRA.
-
If you think it was sent incorrectly contact one of the administrators: https://jira.jboss.org/secure/Administrators.jspa
-
For more information on JIRA, see: http://www.atlassian.com/software/jira
13 years, 2 months
[JBoss JIRA] Created: (AS7-1307) Server does not start unless CONSOLE handler is specified in logging.properties.
by Hanai Shisei (JIRA)
Server does not start unless CONSOLE handler is specified in logging.properties.
--------------------------------------------------------------------------------
Key: AS7-1307
URL: https://issues.jboss.org/browse/AS7-1307
Project: Application Server 7
Issue Type: Bug
Components: Logging
Affects Versions: 7.0.0.Final
Environment: Ubuntu 10.04 AMD64
java version "1.6.0_20"
Java(TM) SE Runtime Environment (build 1.6.0_20-b02)
Java HotSpot(TM) 64-Bit Server VM (build 16.3-b01, mixed mode)
Reporter: Hanai Shisei
Assignee: David Lloyd
If I change the logging configuration (standalone/configuration/logging.properties) as the following to prevent console logging:
#logger.handlers=FILE,CONSOLE
logger.handlers=FILE
Server does not start. The log file (standalone/log/boot.log) seems broken and sometimes OutOfMemoryError is recorded:
10:42:26,615 INFO [stdout] ]): java.lang.OutOfMemoryError: Java heap space
10:42:26,615 INFO [stdout] at java.util.Arrays.copyOf(Arrays.java:2882) [:1.6.0_20]
10:42:26,615 INFO [stdout] at java.lang.AbstractStringBuilder.expandCapacity(AbstractStringBuilder.java:100) [:1.6.0_20]
10:42:26,615 INFO [stdout] at java.lang.StringBuilder.append(StringBuilder.java:130) [:1.6.0_20]
10:42:26,615 INFO [stdout] at java.lang.StringBuilder.append(StringBuilder.java:171) [:1.6.0_20]
10:42:26,615 INFO [stdout] at org.jboss.logmanager.formatters.Formatters$JustifyingFormatStep.render(Formatters.java:157) [jboss-logmanager-1.2.0.GA.jar:1.2.0.GA]
10:42:26,615 INFO [stdout] at org.jboss.logmanager.formatters.MultistepFormatter.format(MultistepFormatter.java:86) [jboss-logmanager-1.2.0.GA.jar:1.2.0.GA]
10:42:26,616 INFO [stdout] at org.jboss.logmanager.ExtFormatter.format(ExtFormatter.java:35) [jboss-logmanager-1.2.0.GA.jar:1.2.0.GA]
10:42:26,616 INFO [stdout] at org.jboss.logmanager.handlers.WriterHandler.doPublish(WriterHandler.java:49) [jboss-logmanager-1.2.0.GA.jar:1.2.0.GA]
10:42:26,616 INFO [stdout] at org.jboss.logmanager.ExtHandler.publish(ExtHandler.java:64) [jboss-logmanager-1.2.0.GA.jar:1.2.0.GA]
10:42:26,616 INFO [stdout] at org.jboss.logmanager.LoggerNode.publish(LoggerNode.java:283) [jboss-logmanager-1.2.0.GA.jar:1.2.0.GA]
10:42:26,616 INFO [stdout] at org.jboss.logmanager.LoggerNode.publish(LoggerNode.java:291) [jboss-logmanager-1.2.0.GA.jar:1.2.0.GA]
10:42:26,616 INFO [stdout] at org.jboss.logmanager.Logger.logRaw(Logger.java:649) [jboss-logmanager-1.2.0.GA.jar:1.2.0.GA]
10:42:26,616 INFO [stdout] at org.jboss.logmanager.Logger.log(Logger.java:434) [jboss-logmanager-1.2.0.GA.jar:1.2.0.GA]
10:42:26,616 INFO [stdout] at org.jboss.stdio.AbstractLoggingWriter.write(AbstractLoggingWriter.java:71)
10:42:26,616 INFO [stdout] at org.jboss.stdio.WriterOutputStream.finish(WriterOutputStream.java:137)
10:42:26,616 INFO [stdout] at org.jboss.stdio.WriterOutputStream.write(WriterOutputStream.java:106)
10:42:26,616 INFO [stdout] at java.io.PrintStream.write(PrintStream.java:430) [:1.6.0_20]
10:42:26,616 INFO [stdout] at org.jboss.stdio.StdioContext$DelegatingPrintStream.write(StdioContext.java:225)
10:42:26,616 INFO [stdout] at org.jboss.logmanager.handlers.UncloseableOutputStream.write(UncloseableOutputStream.java:47) [jboss-logmanager-1.2.0.GA.jar:1.2.0.GA]
10:42:26,616 INFO [stdout] at sun.nio.cs.StreamEncoder.writeBytes(StreamEncoder.java:202) [:1.6.0_20]
10:42:26,616 INFO [stdout] at sun.nio.cs.StreamEncoder.implWrite(StreamEncoder.java:263) [:1.6.0_20]
10:42:26,616 INFO [stdout] at sun.nio.cs.StreamEncoder.write(StreamEncoder.java:106) [:1.6.0_20]
10:42:26,616 INFO [stdout] at sun.nio.cs.StreamEncoder.write(StreamEncoder.java:116) [:1.6.0_20]
10:42:26,616 INFO [stdout] at java.io.OutputStreamWriter.write(OutputStreamWriter.java:203) [:1.6.0_20]
10:42:26,616 INFO [stdout] at java.io.Writer.write(Writer.java:140) [:1.6.0_20]
10:42:26,616 INFO [stdout] at org.jboss.logmanager.handlers.WriterHandler.doPublish(WriterHandler.java:68) [jboss-logmanager-1.2.0.GA.jar:1.2.0.GA]
10:42:26,616 INFO [stdout] at org.jboss.logmanager.ExtHandler.publish(ExtHandler.java:64) [jboss-logmanager-1.2.0.GA.jar:1.2.0.GA]
10:42:26,616 INFO [stdout] at org.jboss.logmanager.LoggerNode.publish(LoggerNode.java:283) [jboss-logmanager-1.2.0.GA.jar:1.2.0.GA]
10:42:26,616 INFO [stdout] at org.jboss.logmanager.LoggerNode.publish(LoggerNode.java:291) [jboss-logmanager-1.2.0.GA.jar:1.2.0.GA]
10:42:26,616 INFO [stdout] at org.jboss.logmanager.Logger.logRaw(Logger.java:649) [jboss-logmanager-1.2.0.GA.jar:1.2.0.GA]
10:42:26,616 INFO [stdout] at org.jboss.logmanager.Logger.log(Logger.java:434) [jboss-logmanager-1.2.0.GA.jar:1.2.0.GA]
10:42:26,616 INFO [stdout] at org.jboss.stdio.AbstractLoggingWriter.write(AbstractLoggingWriter.java:71)
--
This message is automatically generated by JIRA.
For more information on JIRA, see: http://www.atlassian.com/software/jira
13 years, 2 months
[JBoss JIRA] Created: (AS7-1302) Present a version of JAXP to use as an endorsed library
by David Lloyd (JIRA)
Present a version of JAXP to use as an endorsed library
-------------------------------------------------------
Key: AS7-1302
URL: https://issues.jboss.org/browse/AS7-1302
Project: Application Server 7
Issue Type: Task
Components: XML Frameworks
Reporter: David Lloyd
Assignee: Jason Greene
Fix For: 7.1.0.Alpha1
With JBoss Modules 1.1, the "jaxpmodule" facility has been eliminated. Instead we will take a simpler approach: simply endorse a JAXP API family of our own.
The following tasks are required:
# Provide a full JAXP implementation which covers all JAXP APIs
# Add a method or methods to these APIs which either:
#* allow the default provider for each API to be specified
#* allow a selector object for each API to be specified, which returns the appropriate implementation on request
# Modify AS startup to include these JARs in the endorsed path
# Modify the AS JAXP API modules to filter through to the system class path instead of packaging the JARs as modules
# Remove said packaging from build.xml
# Remove the AS JAXP implementation modules from build.xml and the build module repository
--
This message is automatically generated by JIRA.
For more information on JIRA, see: http://www.atlassian.com/software/jira
13 years, 2 months