[JBoss JIRA] Updated: (JBCACHE-156) Refactor the docs directory
by Manik Surtani (JIRA)
[ http://jira.jboss.com/jira/browse/JBCACHE-156?page=all ]
Manik Surtani updated JBCACHE-156:
----------------------------------
Fix Version/s: 2.0.0.BETA1
Assignee: Manik Surtani (was: Michael Yuan)
> Refactor the docs directory
> ---------------------------
>
> Key: JBCACHE-156
> URL: http://jira.jboss.com/jira/browse/JBCACHE-156
> Project: JBoss Cache
> Issue Type: Task
> Security Level: Public(Everyone can see)
> Reporter: Ben Wang
> Assigned To: Manik Surtani
> Priority: Minor
> Fix For: 2.0.0.BETA1, 2.0.0.GA
>
>
> Currently our docs directory is kind of not very organized. Couple things need to be done:
> 1. We need to package the JBossCache distro with the docbook generated html and possible pdf as well. I have created a separate task for this and will have someone look into it.
> 2. We need to think about whether to divide the documentation into reference, user guide, faq, and tutorial sections, instead of current separation of TreeCache and TreeCacheAop. (Of course, separation is good. But we should be able to integrate it better.)
> 3. Maybe create a misc or release directory to house release Readme.txt and Changelog.txt. And may be more in the future.
--
This message is automatically generated by JIRA.
-
If you think it was sent incorrectly contact one of the administrators: http://jira.jboss.com/jira/secure/Administrators.jspa
-
For more information on JIRA, see: http://www.atlassian.com/software/jira
19 years, 4 months
[JBoss JIRA] Created: (JBCACHE-834) Combine eviction RegionManager with generic RegionManager
by Manik Surtani (JIRA)
Combine eviction RegionManager with generic RegionManager
---------------------------------------------------------
Key: JBCACHE-834
URL: http://jira.jboss.com/jira/browse/JBCACHE-834
Project: JBoss Cache
Issue Type: Feature Request
Security Level: Public (Everyone can see)
Affects Versions: 1.4.0.SP1
Reporter: Manik Surtani
Assigned To: Manik Surtani
Fix For: 2.0.0.GA
This has already been done for the marshalling Regions and RegionManagers - do the same with eviction Regions and RegionManagers.
Also,
Another thing we need is equiv of the
o.j.c.eviction.RegionManager.markNodeCurrentlyInUse()/
unmarkNodeCurrentl yInUse() calls exposed in o.j.c.Region.
They are used by the LRUPolicy (and potentially others that implement
the feature) so the policy will ignore a node the app has marked "in
use".
Illustration of use by EJB3 SFSB:
1) User accesses bean.
2) StatefulTreeCache fetches bean from cache using get(). If no
transactional context at this point, RL from the get is released as soon
as method returns.
3) StatefulTreeCache call markNodeCurrentlyInUse
4) User invokes method on bean that takes a long time.
5) Eviction thread kicks in. Would ordinarily evict the bean since the
get() in #2 happened a while ago. But the node-in-use event tells it
not to.
6) User invocation finishes, bean is released.
7) StatefulTreeCache calls unmarkNodeCurrentlyInUse.
8) Bean can now be evicted on later eviction thread run.
I'd thought the changes were discussing of moving the lock interceptor
up in the order might help, but they don't -- as mentioned in step 2,
the bean can be "in use" long after any lock is held on its cache node.
Semantics we'd need are pretty much what we have now in 1.4 -- when
method is invoked, if the region is configured for eviction, create an
EvictedEventNode object and put it in the event queue. Only difference
is RegionManager doesn't get involved to find the region -- the app
should do that itself via the Cache API.
--
This message is automatically generated by JIRA.
-
If you think it was sent incorrectly contact one of the administrators: http://jira.jboss.com/jira/secure/Administrators.jspa
-
For more information on JIRA, see: http://www.atlassian.com/software/jira
19 years, 4 months
[JBoss JIRA] Updated: (JBCACHE-404) Provide API to allow multiple callers to safely call activateRegion() .
by Brian Stansberry (JIRA)
[ http://jira.jboss.com/jira/browse/JBCACHE-404?page=all ]
Brian Stansberry updated JBCACHE-404:
-------------------------------------
Fix Version/s: (was: 2.0.0.GA)
2.0.0.BETA1
The isActive method is in the new Region interface. Only open question is whether RegionImpl should check it's active status before running the activation code, and ignore the call (log warning?) if already active.
> Provide API to allow multiple callers to safely call activateRegion() .
> -----------------------------------------------------------------------
>
> Key: JBCACHE-404
> URL: http://jira.jboss.com/jira/browse/JBCACHE-404
> Project: JBoss Cache
> Issue Type: Feature Request
> Security Level: Public(Everyone can see)
> Affects Versions: 1.2.4SP1, 1.2.4
> Reporter: Brian Stansberry
> Assigned To: Brian Stansberry
> Priority: Minor
> Fix For: 2.0.0.BETA1
>
>
> If a caller calls activateRegion() and the region is already active, they will get a RegionNotEmptyException. Need to add an API to make it easy for use cases where multiple callers may want to activate the same region.
> Use case for this is ClusteredSSO. Multiple ClusteredSSO valves can be running in the same server; all share the /SSO region. The TreeCache is shared with session replication, so the activateRegion API needs to be used. Currently it catches the RegionNotEmptyException, but I don't like this in the ClusteredSSO code.
> Possibilities:
> 1) Add an isRegionActive() method, callers can check first. But this can lead to race conditions.
> 2) Overload the activateRegion method with a version that won't throw the RegionNotEmptyException.
> Don't want to get rid of the RegionNotEmptyException, as in many uses cases (e.g. session repl) the region should not have data; if it does that's an error condition the application should know about.
--
This message is automatically generated by JIRA.
-
If you think it was sent incorrectly contact one of the administrators: http://jira.jboss.com/jira/secure/Administrators.jspa
-
For more information on JIRA, see: http://www.atlassian.com/software/jira
19 years, 4 months
[JBoss JIRA] Closed: (JBAS-1939) MBean getAttribute() launch NotSerializableException when invoked from a remote client
by Dimitris Andreadis (JIRA)
[ http://jira.jboss.com/jira/browse/JBAS-1939?page=all ]
Dimitris Andreadis closed JBAS-1939.
------------------------------------
Resolution: Won't Fix
Fix Version/s: (was: JBossAS-4.2.1.CR1)
Won't fix, unless you want to create a new policy (JBAS-1955).
> MBean getAttribute() launch NotSerializableException when invoked from a remote client
> --------------------------------------------------------------------------------------
>
> Key: JBAS-1939
> URL: http://jira.jboss.com/jira/browse/JBAS-1939
> Project: JBoss Application Server
> Issue Type: Bug
> Security Level: Public(Everyone can see)
> Components: Management services
> Affects Versions: JBossAS-4.0.2 Final
> Environment: jmx, twiddle
> Reporter: Fabiano C. de Oliveira
> Assigned To: Dimitris Andreadis
> Priority: Minor
>
> when executing twiddle to get attribute from some MBeans a NotSerializableException java.io.NotSerializableException is launched.
> To reproduce this just type:
> D:\jboss-4.0.2\bin>twiddle.bat get "jboss.web:J2EEApplication=none,J2EEServer=none,j2eeType=WebModule,name=//localhost/" logger
> How can this can be fixed ? Ignoring the Non serializable attributes, returning null to Nonserializable attributes, become invisible all non-serializable attribute ?
--
This message is automatically generated by JIRA.
-
If you think it was sent incorrectly contact one of the administrators: http://jira.jboss.com/jira/secure/Administrators.jspa
-
For more information on JIRA, see: http://www.atlassian.com/software/jira
19 years, 4 months
[JBoss JIRA] Assigned: (JBAS-1939) MBean getAttribute() launch NotSerializableException when invoked from a remote client
by Dimitris Andreadis (JIRA)
[ http://jira.jboss.com/jira/browse/JBAS-1939?page=all ]
Dimitris Andreadis reassigned JBAS-1939:
----------------------------------------
Assignee: Dimitris Andreadis (was: Clebert Suconic)
> MBean getAttribute() launch NotSerializableException when invoked from a remote client
> --------------------------------------------------------------------------------------
>
> Key: JBAS-1939
> URL: http://jira.jboss.com/jira/browse/JBAS-1939
> Project: JBoss Application Server
> Issue Type: Bug
> Security Level: Public(Everyone can see)
> Components: Management services
> Affects Versions: JBossAS-4.0.2 Final
> Environment: jmx, twiddle
> Reporter: Fabiano C. de Oliveira
> Assigned To: Dimitris Andreadis
> Priority: Minor
> Fix For: JBossAS-4.2.1.CR1
>
>
> when executing twiddle to get attribute from some MBeans a NotSerializableException java.io.NotSerializableException is launched.
> To reproduce this just type:
> D:\jboss-4.0.2\bin>twiddle.bat get "jboss.web:J2EEApplication=none,J2EEServer=none,j2eeType=WebModule,name=//localhost/" logger
> How can this can be fixed ? Ignoring the Non serializable attributes, returning null to Nonserializable attributes, become invisible all non-serializable attribute ?
--
This message is automatically generated by JIRA.
-
If you think it was sent incorrectly contact one of the administrators: http://jira.jboss.com/jira/secure/Administrators.jspa
-
For more information on JIRA, see: http://www.atlassian.com/software/jira
19 years, 4 months
[JBoss JIRA] Created: (JBAS-3959) Error obtaining some MBeanInfo instances via RMIAdaptor--NotSerializableException: org.jboss.deployment.scanner.DeploymentFilter
by River Zhang (JIRA)
Error obtaining some MBeanInfo instances via RMIAdaptor--NotSerializableException: org.jboss.deployment.scanner.DeploymentFilter
--------------------------------------------------------------------------------------------------------------------------------
Key: JBAS-3959
URL: http://jira.jboss.com/jira/browse/JBAS-3959
Project: JBoss Application Server
Issue Type: Bug
Security Level: Public (Everyone can see)
Components: JMX
Affects Versions: JBossAS-4.0.5.GA
Environment: Java Version 1.5.0_04
Java Vendor BEA Systems, Inc.
Java VM Name BEA JRockit(R)
Java VM Version R26.0.0-188-52875-1.5.0_04-20051110-0916-linux-ia64
Java VM Info
OS Name Linux
OS Version 2.6.9-42.EL
OS Arch ia64
Reporter: River Zhang
Assigned To: Scott M Stark
I meet the below error when runing the jboss testsuite by " ant one-test -Dtest=org.jboss.test.jmx.test.RMIAdaptorUnitTestCase"
==============
05:38:36,570 DEBUG [RMIAdaptorUnitTestCase] JBossTestServices(), className=org.jboss.test.jmx.test.RMIAdaptorUnitTestCase
05:38:36,680 DEBUG [RMIAdaptorUnitTestCase] initialContext.getEnvironment()={jnp.parsedName=, java.naming.factory.initial=org.jnp.interfaces.NamingContextFactory, java.naming.provider.url=localhost:1099, java.naming.factory.url.pkgs=org.jnp.interfaces}
05:38:36,726 DEBUG [RMIAdaptorUnitTestCase] +++ testMBeanInfoMarshalling
05:38:37,722 DEBUG [SecurityAssociation] Using ThreadLocal: false
05:38:38,563 ERROR [RMIAdaptorUnitTestCase] Caught exception getting MBeanInfo for: jboss.deployment:type=DeploymentScanner,flavor=URL
java.io.NotSerializableException: org.jboss.deployment.scanner.DeploymentFilter
at java.io.ObjectOutputStream.writeObject0(Unknown Source)
at java.io.ObjectOutputStream.writeObject(Unknown Source)
at java.util.HashMap.writeObject(Unknown Source)
at java.lang.LangAccessImpl.writeObject(Unknown Source)
at java.io.ObjectStreamClass.invokeWriteObject(Unknown Source)
at java.io.ObjectOutputStream.writeSerialData(Unknown Source)
at java.io.ObjectOutputStream.writeOrdinaryObject(Unknown Source)
at java.io.ObjectOutputStream.writeObject0(Unknown Source)
at java.io.ObjectOutputStream.access$100(Unknown Source)
at java.io.ObjectOutputStream$PutFieldImpl.writeFields(Unknown Source)
at java.io.ObjectOutputStream.writeFields(Unknown Source)
at javax.management.modelmbean.DescriptorSupport.writeObject(DescriptorSupport.java:1398)
at java.lang.LangAccessImpl.writeObject(Unknown Source)
at java.io.ObjectStreamClass.invokeWriteObject(Unknown Source)
at java.io.ObjectOutputStream.writeSerialData(Unknown Source)
at java.io.ObjectOutputStream.writeOrdinaryObject(Unknown Source)
at java.io.ObjectOutputStream.writeObject0(Unknown Source)
at java.io.ObjectOutputStream.defaultWriteFields(Unknown Source)
at java.io.ObjectOutputStream.defaultWriteObject(Unknown Source)
at javax.management.modelmbean.ModelMBeanAttributeInfo.writeObject(ModelMBeanAttributeInfo.java:536)
at java.lang.LangAccessImpl.writeObject(Unknown Source)
at java.io.ObjectStreamClass.invokeWriteObject(Unknown Source)
at java.io.ObjectOutputStream.writeSerialData(Unknown Source)
at java.io.ObjectOutputStream.writeOrdinaryObject(Unknown Source)
at java.io.ObjectOutputStream.writeObject0(Unknown Source)
at java.io.ObjectOutputStream.writeArray(Unknown Source)
at java.io.ObjectOutputStream.writeObject0(Unknown Source)
at java.io.ObjectOutputStream.defaultWriteFields(Unknown Source)
at java.io.ObjectOutputStream.writeSerialData(Unknown Source)
at java.io.ObjectOutputStream.writeOrdinaryObject(Unknown Source)
at java.io.ObjectOutputStream.writeObject0(Unknown Source)
at java.io.ObjectOutputStream.writeObject(Unknown Source)
at sun.rmi.transport.StreamRemoteCall.exceptionReceivedFromServer(StreamRemoteCall.java:247)
at sun.rmi.transport.StreamRemoteCall.executeCall(StreamRemoteCall.java:223)
at sun.rmi.server.UnicastRef.invoke(UnicastRef.java:126)
at org.jboss.invocation.jrmp.server.JRMPInvoker_Stub.invoke(Lorg.jboss.invocation.Invocation;)Ljava.lang.Object;(Unknown Source)
at org.jboss.invocation.jrmp.interfaces.JRMPInvokerProxy.invoke(JRMPInvokerProxy.java:133)
at org.jboss.invocation.InvokerInterceptor.invokeInvoker(InvokerInterceptor.java:365)
at org.jboss.invocation.InvokerInterceptor.invoke(InvokerInterceptor.java:197)
at org.jboss.jmx.connector.invoker.client.InvokerAdaptorClientInterceptor.invoke(InvokerAdaptorClientInterceptor.java:66)
at org.jboss.proxy.SecurityInterceptor.invoke(SecurityInterceptor.java:70)
at org.jboss.proxy.ClientMethodInterceptor.invoke(ClientMethodInterceptor.java:74)
at org.jboss.proxy.ClientContainer.invoke(ClientContainer.java:100)
at $Proxy0.getMBeanInfo(Ljavax.management.ObjectName;)Ljavax.management.MBeanInfo;(Unknown Source)
at org.jboss.test.jmx.test.RMIAdaptorUnitTestCase.testMBeanInfoMarshalling(RMIAdaptorUnitTestCase.java:67)
at jrockit.reflect.VirtualNativeMethodInvoker.invoke(Ljava.lang.Object;[Ljava.lang.Object;)Ljava.lang.Object;(Unknown Source)
at java.lang.reflect.Method.invoke(Ljava.lang.Object;[Ljava.lang.Object;J)Ljava.lang.Object;(Unknown Source)
at junit.framework.TestCase.runTest(TestCase.java:154)
at junit.framework.TestCase.runBare(TestCase.java:127)
at junit.framework.TestResult$1.protect(TestResult.java:106)
at junit.framework.TestResult.runProtected(TestResult.java:124)
at junit.framework.TestResult.run(TestResult.java:109)
at junit.framework.TestCase.run(TestCase.java:118)
at junit.framework.TestSuite.runTest(TestSuite.java:208)
at junit.framework.TestSuite.run(TestSuite.java:203)
at org.apache.tools.ant.taskdefs.optional.junit.JUnitTestRunner.run(JUnitTestRunner.java:297)
at org.apache.tools.ant.taskdefs.optional.junit.JUnitTestRunner.launch(JUnitTestRunner.java:672)
at org.apache.tools.ant.taskdefs.optional.junit.JUnitTestRunner.main(JUnitTestRunner.java:567)
===========================
Properties of org.jboss.test.jmx.test.RMIAdaptorUnitTestCase
Close
Name Value
/ /
ant.file /usr/local/jboss-4.0.5.GA-src/testsuite/build.xml
ant.file.code-generation /usr/local/jboss-4.0.5.GA-src/testsuite/imports/code-generation.xml
ant.file.Common Build Defs /usr/local/jboss-4.0.5.GA-src/tools/etc/buildmagic/version-info.xml
ant.file.common tasks /usr/local/jboss-4.0.5.GA-src/tools/etc/buildmagic/build-common.xml
ant.file.JBoss/Testsuite /usr/local/jboss-4.0.5.GA-src/testsuite/build.xml
ant.file.main.build.integration /usr/local/jboss-4.0.5.GA-src/testsuite/build-integration.xml
ant.file.server-config /usr/local/jboss-4.0.5.GA-src/testsuite/imports/server-config.xml
ant.file.test-ejb-iiop-unmarshal-jar /usr/local/jboss-4.0.5.GA-src/testsuite/imports/sections/marshaliiop.xml
ant.file.test-ejb-unmarshall-jar /usr/local/jboss-4.0.5.GA-src/testsuite/imports/sections/marshal.xml
ant.file.test-jars /usr/local/jboss-4.0.5.GA-src/testsuite/imports/test-jars.xml
ant.file.tests-aop-jars /usr/local/jboss-4.0.5.GA-src/testsuite/imports/sections/aop.xml
ant.file.tests-bank-jars /usr/local/jboss-4.0.5.GA-src/testsuite/imports/sections/bank.xml
ant.file.tests-bench-jars /usr/local/jboss-4.0.5.GA-src/testsuite/imports/sections/bench.xml
ant.file.tests-bmp-jars /usr/local/jboss-4.0.5.GA-src/testsuite/imports/sections/bmp.xml
ant.file.tests-byvalue-jars /usr/local/jboss-4.0.5.GA-src/testsuite/imports/sections/byvalue.xml
ant.file.tests-cache-jars /usr/local/jboss-4.0.5.GA-src/testsuite/imports/sections/cache.xml
ant.file.tests-classloader-jars /usr/local/jboss-4.0.5.GA-src/testsuite/imports/sections/classloader.xml
ant.file.tests-client-jars /usr/local/jboss-4.0.5.GA-src/testsuite/imports/sections/client.xml
ant.file.tests-cluster-jars /usr/local/jboss-4.0.5.GA-src/testsuite/imports/sections/cluster.xml
ant.file.tests-cmp2-jars /usr/local/jboss-4.0.5.GA-src/testsuite/imports/sections/cmp.xml
ant.file.tests-cts-jars /usr/local/jboss-4.0.5.GA-src/testsuite/imports/sections/cts.xml
ant.file.tests-dbtest-jars /usr/local/jboss-4.0.5.GA-src/testsuite/imports/sections/dbtest.xml
ant.file.tests-deadlock-jars /usr/local/jboss-4.0.5.GA-src/testsuite/imports/sections/deadlock.xml
ant.file.tests-deployers-jars /usr/local/jboss-4.0.5.GA-src/testsuite/imports/sections/deployers.xml
ant.file.tests-ejbconf-jars /usr/local/jboss-4.0.5.GA-src/testsuite/imports/sections/ejbconf.xml
ant.file.tests-entity-jars /usr/local/jboss-4.0.5.GA-src/testsuite/imports/sections/entity.xml
ant.file.tests-exception-jars /usr/local/jboss-4.0.5.GA-src/testsuite/imports/sections/exception.xml
ant.file.tests-foedeployer-jars /usr/local/jboss-4.0.5.GA-src/testsuite/imports/sections/foedeployer.xml
ant.file.tests-hello-jars /usr/local/jboss-4.0.5.GA-src/testsuite/imports/sections/hello.xml
ant.file.tests-hibernate-jars /usr/local/jboss-4.0.5.GA-src/testsuite/imports/sections/hibernate.xml
ant.file.tests-httpsessionreplication-jars /usr/local/jboss-4.0.5.GA-src/testsuite/imports/sections/httpsessionreplication.xml
ant.file.tests-idgen-jars /usr/local/jboss-4.0.5.GA-src/testsuite/imports/sections/idgen.xml
ant.file.tests-iiop-jars /usr/local/jboss-4.0.5.GA-src/testsuite/imports/sections/iiop.xml
ant.file.tests-invokers-jars /usr/local/jboss-4.0.5.GA-src/testsuite/imports/sections/invokers.xml
ant.file.tests-isolation-jars /usr/local/jboss-4.0.5.GA-src/testsuite/imports/sections/isolation.xml
ant.file.tests-jbossmq-jars /usr/local/jboss-4.0.5.GA-src/testsuite/imports/sections/jbossmq.xml
ant.file.tests-jbossmx-jars /usr/local/jboss-4.0.5.GA-src/testsuite/imports/sections/jbossmx.xml
ant.file.tests-jca-jars /usr/local/jboss-4.0.5.GA-src/testsuite/imports/sections/jca.xml
ant.file.tests-jms-jars /usr/local/jboss-4.0.5.GA-src/testsuite/imports/sections/jms.xml
ant.file.tests-jmsra-jars /usr/local/jboss-4.0.5.GA-src/testsuite/imports/sections/jmsra.xml
ant.file.tests-jmx-jars /usr/local/jboss-4.0.5.GA-src/testsuite/imports/sections/jmx.xml
ant.file.tests-jrmp-jars /usr/local/jboss-4.0.5.GA-src/testsuite/imports/sections/jrmp.xml
ant.file.tests-jsf-jars /usr/local/jboss-4.0.5.GA-src/testsuite/imports/sections/jsf.xml
ant.file.tests-jsr77-jars /usr/local/jboss-4.0.5.GA-src/testsuite/imports/sections/jsr77.xml
ant.file.tests-kernel-jars /usr/local/jboss-4.0.5.GA-src/testsuite/imports/sections/kernel.xml
ant.file.tests-load-jars /usr/local/jboss-4.0.5.GA-src/testsuite/imports/sections/load.xml
ant.file.tests-lock-jars /usr/local/jboss-4.0.5.GA-src/testsuite/imports/sections/lock.xml
ant.file.tests-marathon-jars /usr/local/jboss-4.0.5.GA-src/testsuite/imports/sections/marathon.xml
ant.file.tests-mdb-jars /usr/local/jboss-4.0.5.GA-src/testsuite/imports/sections/mdb.xml
ant.file.tests-naming-jars /usr/local/jboss-4.0.5.GA-src/testsuite/imports/sections/naming.xml
ant.file.tests-perf-jars /usr/local/jboss-4.0.5.GA-src/testsuite/imports/sections/perf.xml
ant.file.tests-pooled-jars /usr/local/jboss-4.0.5.GA-src/testsuite/imports/sections/pooled.xml
ant.file.tests-proxycompiler-jars /usr/local/jboss-4.0.5.GA-src/testsuite/imports/sections/proxycompiler.xml
ant.file.tests-readahead-jars /usr/local/jboss-4.0.5.GA-src/testsuite/imports/sections/readahead.xml
ant.file.tests-retry-jars /usr/local/jboss-4.0.5.GA-src/testsuite/imports/sections/retry.xml
ant.file.tests-security-jars /usr/local/jboss-4.0.5.GA-src/testsuite/imports/sections/security.xml
ant.file.tests-securitymgr-jars /usr/local/jboss-4.0.5.GA-src/testsuite/imports/sections/securitymgr.xml
ant.file.tests-session-jars /usr/local/jboss-4.0.5.GA-src/testsuite/imports/sections/session.xml
ant.file.tests-testbean-jars /usr/local/jboss-4.0.5.GA-src/testsuite/imports/sections/testbean.xml
ant.file.tests-threading-jars /usr/local/jboss-4.0.5.GA-src/testsuite/imports/sections/threading.xml
ant.file.tests-timer-jars /usr/local/jboss-4.0.5.GA-src/testsuite/imports/sections/timer.xml
ant.file.tests-tm-jars /usr/local/jboss-4.0.5.GA-src/testsuite/imports/sections/tm.xml
ant.file.tests-tx-jars /usr/local/jboss-4.0.5.GA-src/testsuite/imports/sections/tx.xml
ant.file.tests-util-jars /usr/local/jboss-4.0.5.GA-src/testsuite/imports/sections/util.xml
ant.file.tests-web-jars /usr/local/jboss-4.0.5.GA-src/testsuite/imports/sections/web.xml
ant.file.tests-webservice-jars /usr/local/jboss-4.0.5.GA-src/testsuite/imports/sections/webservice.xml
ant.file.tests-wsrp-jars /usr/local/jboss-4.0.5.GA-src/testsuite/imports/sections/wsrp.xml
ant.file.tests-xa-jars /usr/local/jboss-4.0.5.GA-src/testsuite/imports/sections/xa.xml
ant.file.tests-xslt-jars /usr/local/jboss-4.0.5.GA-src/testsuite/imports/sections/xslt.xml
ant.home /usr/local/ant-dist
ant.java.version 1.5
ant.library.dir /usr/local/ant-dist/lib
ant.project.name JBoss/Testsuite
ant.version Apache Ant version 1.6.5 compiled on June 2 2005
antlr.antlr.lib /usr/local/jboss-4.0.5.GA-src/thirdparty/antlr/lib/
antlr.antlr.resources /usr/local/jboss-4.0.5.GA-src/thirdparty/antlr/resources/
antlr.antlr.root /usr/local/jboss-4.0.5.GA-src/thirdparty/antlr
apache.addressing.lib /usr/local/jboss-4.0.5.GA-src/thirdparty/apache-addressing/lib/
apache.addressing.resources /usr/local/jboss-4.0.5.GA-src/thirdparty/apache-addressing/resources/
apache.addressing.root /usr/local/jboss-4.0.5.GA-src/thirdparty/apache-addressing
apache.ant.lib /usr/local/jboss-4.0.5.GA-src/tools/lib
apache.ant.root /usr/local/jboss-4.0.5.GA-src/tools
apache.avalon.lib /usr/local/jboss-4.0.5.GA-src/thirdparty/apache-avalon/lib/
apache.avalon.logkit.lib /usr/local/jboss-4.0.5.GA-src/thirdparty/apache-avalon-logkit/lib/
apache.avalon.logkit.resources /usr/local/jboss-4.0.5.GA-src/thirdparty/apache-avalon-logkit/resources/
apache.avalon.logkit.root /usr/local/jboss-4.0.5.GA-src/thirdparty/apache-avalon-logkit
apache.avalon.resources /usr/local/jboss-4.0.5.GA-src/thirdparty/apache-avalon/resources/
apache.avalon.root /usr/local/jboss-4.0.5.GA-src/thirdparty/apache-avalon
apache.bcel.lib /usr/local/jboss-4.0.5.GA-src/thirdparty/apache-bcel/lib/
apache.bcel.resources /usr/local/jboss-4.0.5.GA-src/thirdparty/apache-bcel/resources/
apache.bcel.root /usr/local/jboss-4.0.5.GA-src/thirdparty/apache-bcel
apache.beanutils.lib /usr/local/jboss-4.0.5.GA-src/thirdparty/apache-beanutils/lib/
apache.beanutils.resources /usr/local/jboss-4.0.5.GA-src/thirdparty/apache-beanutils/resources/
apache.beanutils.root /usr/local/jboss-4.0.5.GA-src/thirdparty/apache-beanutils
apache.bsf.lib /usr/local/jboss-4.0.5.GA-src/thirdparty/apache-bsf/lib/
apache.bsf.resources /usr/local/jboss-4.0.5.GA-src/thirdparty/apache-bsf/resources/
apache.bsf.root /usr/local/jboss-4.0.5.GA-src/thirdparty/apache-bsf
apache.codec.lib /usr/local/jboss-4.0.5.GA-src/thirdparty/apache-codec/lib/
apache.codec.resources /usr/local/jboss-4.0.5.GA-src/thirdparty/apache-codec/resources/
apache.codec.root /usr/local/jboss-4.0.5.GA-src/thirdparty/apache-codec
apache.collections.lib /usr/local/jboss-4.0.5.GA-src/thirdparty/apache-collections/lib/
apache.collections.resources /usr/local/jboss-4.0.5.GA-src/thirdparty/apache-collections/resources/
apache.collections.root /usr/local/jboss-4.0.5.GA-src/thirdparty/apache-collections
apache.digester.lib /usr/local/jboss-4.0.5.GA-src/thirdparty/apache-digester/lib/
apache.digester.resources /usr/local/jboss-4.0.5.GA-src/thirdparty/apache-digester/resources/
apache.digester.root /usr/local/jboss-4.0.5.GA-src/thirdparty/apache-digester
apache.discovery.lib /usr/local/jboss-4.0.5.GA-src/thirdparty/apache-discovery/lib/
apache.discovery.resources /usr/local/jboss-4.0.5.GA-src/thirdparty/apache-discovery/resources/
apache.discovery.root /usr/local/jboss-4.0.5.GA-src/thirdparty/apache-discovery
apache.fileupload.lib /usr/local/jboss-4.0.5.GA-src/thirdparty/apache-fileupload/lib/
apache.fileupload.resources /usr/local/jboss-4.0.5.GA-src/thirdparty/apache-fileupload/resources/
apache.fileupload.root /usr/local/jboss-4.0.5.GA-src/thirdparty/apache-fileupload
apache.httpclient.lib /usr/local/jboss-4.0.5.GA-src/thirdparty/apache-httpclient/lib/
apache.httpclient.resources /usr/local/jboss-4.0.5.GA-src/thirdparty/apache-httpclient/resources/
apache.httpclient.root /usr/local/jboss-4.0.5.GA-src/thirdparty/apache-httpclient
apache.jaxme.lib /usr/local/jboss-4.0.5.GA-src/thirdparty/apache-jaxme/lib/
apache.jaxme.resources /usr/local/jboss-4.0.5.GA-src/thirdparty/apache-jaxme/resources/
apache.jaxme.root /usr/local/jboss-4.0.5.GA-src/thirdparty/apache-jaxme
apache.lang.lib /usr/local/jboss-4.0.5.GA-src/thirdparty/apache-lang/lib/
apache.lang.resources /usr/local/jboss-4.0.5.GA-src/thirdparty/apache-lang/resources/
apache.lang.root /usr/local/jboss-4.0.5.GA-src/thirdparty/apache-lang
apache.log4j.lib /usr/local/jboss-4.0.5.GA-src/thirdparty/apache-log4j/lib/
apache.log4j.resources /usr/local/jboss-4.0.5.GA-src/thirdparty/apache-log4j/resources/
apache.log4j.root /usr/local/jboss-4.0.5.GA-src/thirdparty/apache-log4j
apache.logging.lib /usr/local/jboss-4.0.5.GA-src/thirdparty/apache-logging/lib/
apache.logging.resources /usr/local/jboss-4.0.5.GA-src/thirdparty/apache-logging/resources/
apache.logging.root /usr/local/jboss-4.0.5.GA-src/thirdparty/apache-logging
apache.modeler.lib /usr/local/jboss-4.0.5.GA-src/thirdparty/apache-modeler/lib/
apache.modeler.resources /usr/local/jboss-4.0.5.GA-src/thirdparty/apache-modeler/resources/
apache.modeler.root /usr/local/jboss-4.0.5.GA-src/thirdparty/apache-modeler
apache.myfaces.lib /usr/local/jboss-4.0.5.GA-src/thirdparty/apache-myfaces/lib/
apache.myfaces.resources /usr/local/jboss-4.0.5.GA-src/thirdparty/apache-myfaces/resources/
apache.myfaces.root /usr/local/jboss-4.0.5.GA-src/thirdparty/apache-myfaces
apache.pool.lib /usr/local/jboss-4.0.5.GA-src/thirdparty/apache-pool/lib/
apache.pool.resources /usr/local/jboss-4.0.5.GA-src/thirdparty/apache-pool/resources/
apache.pool.root /usr/local/jboss-4.0.5.GA-src/thirdparty/apache-pool
apache.scout.lib /usr/local/jboss-4.0.5.GA-src/thirdparty/apache-scout/lib/
apache.scout.resources /usr/local/jboss-4.0.5.GA-src/thirdparty/apache-scout/resources/
apache.scout.root /usr/local/jboss-4.0.5.GA-src/thirdparty/apache-scout
apache.slide.lib /usr/local/jboss-4.0.5.GA-src/thirdparty/apache-slide/lib/
apache.slide.resources /usr/local/jboss-4.0.5.GA-src/thirdparty/apache-slide/resources/
apache.slide.root /usr/local/jboss-4.0.5.GA-src/thirdparty/apache-slide
apache.tomcat.lib /usr/local/jboss-4.0.5.GA-src/thirdparty/apache-tomcat/lib/
apache.tomcat.resources /usr/local/jboss-4.0.5.GA-src/thirdparty/apache-tomcat/resources/
apache.tomcat.root /usr/local/jboss-4.0.5.GA-src/thirdparty/apache-tomcat
apache.tomcat55.lib /usr/local/jboss-4.0.5.GA-src/thirdparty/apache-tomcat/lib/
apache.tomcat55.root /usr/local/jboss-4.0.5.GA-src/thirdparty/apache-tomcat
apache.velocity.lib /usr/local/jboss-4.0.5.GA-src/thirdparty/apache-velocity/lib/
apache.velocity.resources /usr/local/jboss-4.0.5.GA-src/thirdparty/apache-velocity/resources/
apache.velocity.root /usr/local/jboss-4.0.5.GA-src/thirdparty/apache-velocity
apache.wss4j.lib /usr/local/jboss-4.0.5.GA-src/thirdparty/apache-wss4j/lib/
apache.wss4j.resources /usr/local/jboss-4.0.5.GA-src/thirdparty/apache-wss4j/resources/
apache.wss4j.root /usr/local/jboss-4.0.5.GA-src/thirdparty/apache-wss4j
apache.xalan.lib /usr/local/jboss-4.0.5.GA-src/thirdparty/apache-xalan/lib/
apache.xalan.resources /usr/local/jboss-4.0.5.GA-src/thirdparty/apache-xalan/resources/
apache.xalan.root /usr/local/jboss-4.0.5.GA-src/thirdparty/apache-xalan
apache.xerces.lib /usr/local/jboss-4.0.5.GA-src/thirdparty/apache-xerces/lib/
apache.xerces.resources /usr/local/jboss-4.0.5.GA-src/thirdparty/apache-xerces/resources/
apache.xerces.root /usr/local/jboss-4.0.5.GA-src/thirdparty/apache-xerces
apache.xmlsec.lib /usr/local/jboss-4.0.5.GA-src/thirdparty/apache-xmlsec/lib/
apache.xmlsec.resources /usr/local/jboss-4.0.5.GA-src/thirdparty/apache-xmlsec/resources/
apache.xmlsec.root /usr/local/jboss-4.0.5.GA-src/thirdparty/apache-xmlsec
basedir /usr/local/jboss-4.0.5.GA-src/testsuite
beanshell.beanshell.lib /usr/local/jboss-4.0.5.GA-src/thirdparty/beanshell/lib/
beanshell.beanshell.resources /usr/local/jboss-4.0.5.GA-src/thirdparty/beanshell/resources/
beanshell.beanshell.root /usr/local/jboss-4.0.5.GA-src/thirdparty/beanshell
bind.address localhost
build.api /usr/local/jboss-4.0.5.GA-src/testsuite/output/api
build.classes /usr/local/jboss-4.0.5.GA-src/testsuite/output/classes
build.docs /usr/local/jboss-4.0.5.GA-src/testsuite/output/docs
build.etc /usr/local/jboss-4.0.5.GA-src/testsuite/output/etc
build.gen-src /usr/local/jboss-4.0.5.GA-src/testsuite/output/gen-src/
build.id 200612190535
build.lib /usr/local/jboss-4.0.5.GA-src/testsuite/output/lib
build.number 200612190535
build.reports /usr/local/jboss-4.0.5.GA-src/testsuite/output/reports
build.resources /usr/local/jboss-4.0.5.GA-src/testsuite/output/resources
build.stylesheets /usr/local/jboss-4.0.5.GA-src/testsuite/output/stylesheets
build.testlog /usr/local/jboss-4.0.5.GA-src/testsuite/output/log
build-bypass.marker /usr/local/jboss-4.0.5.GA-src/testsuite/output/build-marker
buildlog.level info
buildmagic.ant.compatible true
buildmagic.ant16.baseversion 1.6
buildmagic.local.classpath .
buildmagic.propertyfilter.all true
buildmagic.resolveproperties.force false
cglib.cglib.lib /usr/local/jboss-4.0.5.GA-src/thirdparty/cglib/lib/
cglib.cglib.resources /usr/local/jboss-4.0.5.GA-src/thirdparty/cglib/resources/
cglib.cglib.root /usr/local/jboss-4.0.5.GA-src/thirdparty/cglib
cglib.lib /usr/local/jboss-4.0.5.GA-src/thirdparty/cglib/lib/
classpath
classpath.local
classpath.thirdparty
commons.el.lib /usr/local/jboss-4.0.5.GA-src/thirdparty/commons-el/lib/
commons.el.resources /usr/local/jboss-4.0.5.GA-src/thirdparty/commons-el/resources/
commons.el.root /usr/local/jboss-4.0.5.GA-src/thirdparty/commons-el
compatibility.bin org.jboss.compatibility.CompatibilityTool
compatibility.classpath /usr/local/jboss-4.0.5.GA-src/compatibility/output/classes:/usr/local/jboss-4.0.5.GA-src/build/output/jboss-3.2.2RC2/client/jboss-client.jar
compatibility.dir /usr/local/jboss-4.0.5.GA-src/compatibility/serialized
contract.classes org.jboss.ejb.CacheKey,org.jboss.ejb.ListCacheKey,org.jboss.ejb.plugins.lock.ApplicationDeadlockException,org.jboss.invocation.ByValueInvokerInterceptor,org.jboss.invocation.http.interfaces.AnyhostVerifier,org.jboss.invocation.http.interfaces.ClientMethodInterceptor,org.jboss.invocation.http.interfaces.HttpInvokerProxy,org.jboss.invocation.http.interfaces.Util,org.jboss.invocation.Invocation,org.jboss.invocation.InvocationContext,org.jboss.invocation.InvocationException,org.jboss.invocation.InvocationKey,org.jboss.invocation.InvocationType,org.jboss.invocation.Invoker,org.jboss.invocation.InvokerInterceptor,org.jboss.invocation.jrmp.interfaces.JRMPInvokerProxy,org.jboss.invocation.jrmp.server.JRMPInvoker_Stub
dom4j.dom4j.lib /usr/local/jboss-4.0.5.GA-src/thirdparty/dom4j/lib/
dom4j.dom4j.resources /usr/local/jboss-4.0.5.GA-src/thirdparty/dom4j/resources/
dom4j.dom4j.root /usr/local/jboss-4.0.5.GA-src/thirdparty/dom4j
DSTAMP 20061219
env.G_BROKEN_FILENAMES 1
env.HISTSIZE 1000
env.HOME /root
env.HOSTNAME rx2600-2
env.INPUTRC /etc/inputrc
env.JAVA_HOME /usr/local/jrockit-R26.0.0-jdk1.5.0_04
env.JBOSS_HOME /usr/local/jboss
env.KDEDIR /usr
env.LANG en_US.UTF-8
env.LD_LIBRARY_PATH /usr/local/jrockit-R26.0.0-jdk1.5.0_04/jre/lib/ia64/jrockit:/usr/local/jrockit-R26.0.0-jdk1.5.0_04/jre/lib/ia64:/usr/local/jrockit-R26.0.0-jdk1.5.0_04/jre/../lib/ia64
env.LESSOPEN |/usr/bin/lesspipe.sh %s
env.LOGNAME root
env.LS_COLORS no=00:fi=00:di=01;34:ln=01;36:pi=40;33:so=01;35:bd=40;33;01:cd=40;33;01:or=01;05;37;41:mi=01;05;37;41:ex=01;32:*.cmd=01;32:*.exe=01;32:*.com=01;32:*.btm=01;32:*.bat=01;32:*.sh=01;32:*.csh=01;32:*.tar=01;31:*.tgz=01;31:*.arj=01;31:*.taz=01;31:*.lzh=01;31:*.zip=01;31:*.z=01;31:*.Z=01;31:*.gz=01;31:*.bz2=01;31:*.bz=01;31:*.tz=01;31:*.rpm=01;31:*.cpio=01;31:*.jpg=01;35:*.gif=01;35:*.bmp=01;35:*.xbm=01;35:*.xpm=01;35:*.png=01;35:*.tif=01;35:
env.MAIL /var/spool/mail/root
env.NLSPATH /usr/dt/lib/nls/msg/%L/%N.cat
env.PATH /usr/kerberos/sbin:/usr/kerberos/bin:/usr/local/sbin:/usr/local/bin:/sbin:/bin:/usr/sbin:/usr/bin:/usr/X11R6/bin:/usr/local/jrockit-R26.0.0-jdk1.5.0_04/bin:/root/bin:/usr/local/ant-dist/bin
env.PWD /root/ts
env.QTDIR /usr/lib/qt-3.3
env.SHELL /bin/bash
env.SHLVL 2
env.SSH_ASKPASS /usr/libexec/openssh/gnome-ssh-askpass
env.SSH_AUTH_SOCK /tmp/ssh-eFOyo10793/agent.10793
env.SSH_CLIENT ::ffff:10.100.0.25 3485 22
env.SSH_CONNECTION ::ffff:10.100.0.25 3485 ::ffff:10.101.0.138 22
env.SSH_TTY /dev/pts/7
env.TERM vt100
env.USER root
env.XFILESEARCHPATH /usr/dt/app-defaults/%L/Dt
exten sh
false 0
file.encoding UTF-8
file.encoding.pkg sun.io
file.separator /
gjt.jpl.util.lib /usr/local/jboss-4.0.5.GA-src/thirdparty/gjt-jpl-util/lib/
gjt.jpl.util.resources /usr/local/jboss-4.0.5.GA-src/thirdparty/gjt-jpl-util/resources/
gjt.jpl.util.root /usr/local/jboss-4.0.5.GA-src/thirdparty/gjt-jpl-util
gjt.jpl-util.lib /usr/local/jboss-4.0.5.GA-src/thirdparty/gjt-jpl-util/lib/
gnu.getopt.lib /usr/local/jboss-4.0.5.GA-src/thirdparty/gnu-getopt/lib/
gnu.getopt.resources /usr/local/jboss-4.0.5.GA-src/thirdparty/gnu-getopt/resources/
gnu.getopt.root /usr/local/jboss-4.0.5.GA-src/thirdparty/gnu-getopt
HAVE_JDK_1.3 true
HAVE_JDK_1.4 true
HAVE_JDK_1.5 true
hibernate.annotations.lib /usr/local/jboss-4.0.5.GA-src/thirdparty/hibernate-annotations/lib/
hibernate.annotations.resources /usr/local/jboss-4.0.5.GA-src/thirdparty/hibernate-annotations/resources/
hibernate.annotations.root /usr/local/jboss-4.0.5.GA-src/thirdparty/hibernate-annotations
hibernate.entitymanager.lib /usr/local/jboss-4.0.5.GA-src/thirdparty/hibernate-entitymanager/lib/
hibernate.entitymanager.resources /usr/local/jboss-4.0.5.GA-src/thirdparty/hibernate-entitymanager/resources/
hibernate.entitymanager.root /usr/local/jboss-4.0.5.GA-src/thirdparty/hibernate-entitymanager
hibernate.hibernate.lib /usr/local/jboss-4.0.5.GA-src/thirdparty/hibernate/lib/
hibernate.hibernate.resources /usr/local/jboss-4.0.5.GA-src/thirdparty/hibernate/resources/
hibernate.hibernate.root /usr/local/jboss-4.0.5.GA-src/thirdparty/hibernate
hibernate.lib /usr/local/jboss-4.0.5.GA-src/thirdparty/hibernate/lib/
hostname rx2600-2
hsqldb.hsqldb.lib /usr/local/jboss-4.0.5.GA-src/thirdparty/hsqldb/lib/
hsqldb.hsqldb.resources /usr/local/jboss-4.0.5.GA-src/thirdparty/hsqldb/resources/
hsqldb.hsqldb.root /usr/local/jboss-4.0.5.GA-src/thirdparty/hsqldb
ibm.wsdl4j.lib /usr/local/jboss-4.0.5.GA-src/thirdparty/ibm-wsdl4j/lib/
ibm.wsdl4j.resources /usr/local/jboss-4.0.5.GA-src/thirdparty/ibm-wsdl4j/resources/
ibm.wsdl4j.root /usr/local/jboss-4.0.5.GA-src/thirdparty/ibm-wsdl4j
implementation.title JBoss [Zion]
implementation.url http://www.jboss.org/
implementation.vendor JBoss Inc.
implementation.vendor.id http://www.jboss.org/
implementation.version 4.0.5.GA (build: CVSTag=Branch_4_0 date=200612190535)
install.id testsuite-DEV
install.root /usr/local/jboss-4.0.5.GA-src/testsuite/output/testsuite-DEV
jacorb.idl.include /usr/local/jboss-4.0.5.GA-src/thirdparty/jacorb/resources/
jacorb.jacorb.lib /usr/local/jboss-4.0.5.GA-src/thirdparty/jacorb/lib/
jacorb.jacorb.properties /usr/local/jboss-4.0.5.GA-src/thirdparty/jacorb/resources/
jacorb.jacorb.resources /usr/local/jboss-4.0.5.GA-src/thirdparty/jacorb/resources/
jacorb.jacorb.root /usr/local/jboss-4.0.5.GA-src/thirdparty/jacorb
jar.client.includes
jar.server.includes
java.awt.graphicsenv sun.awt.X11GraphicsEnvironment
java.awt.printerjob sun.print.PSPrinterJob
java.class.path /usr/local/jboss-4.0.5.GA-src/testsuite/output/classes:/usr/local/jboss-4.0.5.GA-src/testsuite/output/resources:/usr/local/jboss-4.0.5.GA-src/testsuite/output/resources/security:/usr/local/jboss-4.0.5.GA-src/tools/lib/ant.jar:/usr/local/jboss-4.0.5.GA-src/tools/lib/ant-junit.jar:/usr/local/jboss-4.0.5.GA-src/jmx/output/lib/jboss-jmx.jar:/usr/local/jboss-4.0.5.GA-src/thirdparty/apache-avalon/lib/avalon-framework.jar:/usr/local/jboss-4.0.5.GA-src/thirdparty/apache-bcel/lib/bcel.jar:/usr/local/jboss-4.0.5.GA-src/thirdparty/apache-collections/lib/commons-collections.jar:/usr/local/jboss-4.0.5.GA-src/thirdparty/apache-logging/lib/commons-logging.jar:/usr/local/jboss-4.0.5.GA-src/thirdparty/apache-httpclient/lib/commons-httpclient.jar:/usr/local/jboss-4.0.5.GA-src/thirdparty/apache-pool/lib/commons-pool.jar:/usr/local/jboss-4.0.5.GA-src/thirdparty/apache-discovery/lib/commons-discovery.jar:/usr/local/jboss-4.0.5.GA-src/thirdparty/apache-fileupload/lib/commons-fileupload.jar:/usr/local/jboss-4.0.5.GA-src/thirdparty/apache-jaxme/lib/jaxmexs.jar:/usr/local/jboss-4.0.5.GA-src/thirdparty/apache-log4j/lib/log4j.jar:/usr/local/jboss-4.0.5.GA-src/thirdparty/apache-scout/lib/scout.jar:/usr/local/jboss-4.0.5.GA-src/thirdparty/apache-tomcat/lib/catalina-manager.jar:/usr/local/jboss-4.0.5.GA-src/thirdparty/apache-tomcat/lib/catalina-optional.jar:/usr/local/jboss-4.0.5.GA-src/thirdparty/apache-tomcat/lib/catalina.jar:/usr/local/jboss-4.0.5.GA-src/thirdparty/apache-tomcat/lib/jasper-compiler-jdt.jar:/usr/local/jboss-4.0.5.GA-src/thirdparty/apache-tomcat/lib/jasper-compiler.jar:/usr/local/jboss-4.0.5.GA-src/thirdparty/apache-tomcat/lib/jasper-runtime.jar:/usr/local/jboss-4.0.5.GA-src/thirdparty/apache-tomcat/lib/naming-resources.jar:/usr/local/jboss-4.0.5.GA-src/thirdparty/apache-tomcat/lib/servlets-default.jar:/usr/local/jboss-4.0.5.GA-src/thirdparty/apache-tomcat/lib/servlets-invoker.jar:/usr/local/jboss-4.0.5.GA-src/thirdparty/apache-tomcat/lib/servlets-webdav.jar:/usr/local/jboss-4.0.5.GA-src/thirdparty/apache-tomcat/lib/tomcat-ajp.jar:/usr/local/jboss-4.0.5.GA-src/thirdparty/apache-tomcat/lib/tomcat-apr.jar:/usr/local/jboss-4.0.5.GA-src/thirdparty/apache-tomcat/lib/tomcat-coyote.jar:/usr/local/jboss-4.0.5.GA-src/thirdparty/apache-tomcat/lib/tomcat-http.jar:/usr/local/jboss-4.0.5.GA-src/thirdparty/apache-tomcat/lib/tomcat-util.jar:/usr/local/jboss-4.0.5.GA-src/thirdparty/apache-xerces/lib/xercesImpl.jar:/usr/local/jboss-4.0.5.GA-src/thirdparty/apache-xerces/lib/resolver.jar:/usr/local/jboss-4.0.5.GA-src/thirdparty/apache-xerces/lib/xml-apis.jar:/usr/local/jboss-4.0.5.GA-src/thirdparty/dom4j/lib/dom4j.jar:/usr/local/jboss-4.0.5.GA-src/thirdparty/hibernate/lib/hibernate3.jar:/usr/local/jboss-4.0.5.GA-src/thirdparty/hsqldb/lib/hsqldb.jar:/usr/local/jboss-4.0.5.GA-src/thirdparty/ibm-wsdl4j/lib/wsdl4j.jar:/usr/local/jboss-4.0.5.GA-src/thirdparty/jacorb/lib/jacorb.jar:/usr/local/jboss-4.0.5.GA-src/thirdparty/jacorb/lib/jacorb_g.jar:/usr/local/jboss-4.0.5.GA-src/thirdparty/jacorb/lib/idl.jar:/usr/local/jboss-4.0.5.GA-src/thirdparty/javassist/lib/javassist.jar:/usr/local/jboss-4.0.5.GA-src/thirdparty/jboss/remoting/lib/jboss-remoting.jar:/usr/local/jboss-4.0.5.GA-src/thirdparty/jboss/jbossretro-rt/lib/jbossretro-rt.jar:/usr/local/jboss-4.0.5.GA-src/thirdparty/jboss/backport-concurrent/lib/jboss-backport-concurrent.jar:/usr/local/jboss-4.0.5.GA-src/thirdparty/jgroups/lib/jgroups.jar:/usr/local/jboss-4.0.5.GA-src/thirdparty/joesnmp/lib/joesnmp.jar:/usr/local/jboss-4.0.5.GA-src/thirdparty/junit/lib/junit.jar:/usr/local/jboss-4.0.5.GA-src/thirdparty/junitejb/lib/junitejb.jar:/usr/local/jboss-4.0.5.GA-src/thirdparty/juddi/lib/juddi.jar:/usr/local/jboss-4.0.5.GA-src/thirdparty/objectweb-joramtests/lib/joram-tests.jar:/usr/local/jboss-4.0.5.GA-src/thirdparty/odmg/lib/odmg-3.0.jar:/usr/local/jboss-4.0.5.GA-src/thirdparty/oswego-concurrent/lib/concurrent.jar:/usr/local/jboss-4.0.5.GA-src/thirdparty/sun-jaf/lib/activation.jar:/usr/local/jboss-4.0.5.GA-src/thirdparty/sun-javamail/lib/mail.jar:/usr/local/jboss-4.0.5.GA-src/thirdparty/sun-servlet/lib/servlet-api.jar:/usr/local/jboss-4.0.5.GA-src/thirdparty/sun-servlet/lib/jsp-api.jar:/usr/local/jboss-4.0.5.GA-src/thirdparty/trove/lib/trove.jar:/usr/local/jboss-4.0.5.GA-src/thirdparty/wutka-dtdparser/lib/dtdparser121.jar:/usr/local/jboss-4.0.5.GA-src/thirdparty/jboss/jbossxb/lib/jboss-xml-binding.jar:/usr/local/jboss-4.0.5.GA-src/thirdparty/jboss/microcontainer/lib/jboss-container.jar:/usr/local/jboss-4.0.5.GA-src/thirdparty/jboss/microcontainer/lib/jboss-dependency.jar:/usr/local/jboss-4.0.5.GA-src/thirdparty/jboss/microcontainer/lib/jboss-microcontainer.jar:/usr/local/jboss-4.0.5.GA-src/thirdparty/jboss/aop/lib/jboss-aop.jar:/usr/local/jboss-4.0.5.GA-src/thirdparty/jboss/aop/lib/jboss-aop-jdk50.jar:/usr/local/jboss-4.0.5.GA-src/thirdparty/jboss/aop/lib/pluggable-instrumentor.jar:/usr/local/jboss-4.0.5.GA-src/thirdparty/jboss/aop/lib/jdk14-pluggable-instrumentor.jar:/usr/local/jboss-4.0.5.GA-src/thirdparty/jboss/aop/lib/jboss-aop-jdk50-client.jar:/usr/local/jboss-4.0.5.GA-src/thirdparty/jboss/aop/lib/jrockit-pluggable-instrumentor.jar:/usr/local/jboss-4.0.5.GA-src/thirdparty/jboss/aop/lib/common-softvaluehashmap.jar:/usr/local/jboss-4.0.5.GA-src/thirdparty/jboss/aop/lib/jboss-aspect-jdk50-client.jar:/usr/local/jboss-4.0.5.GA-src/aspects/output/lib/jboss-aspect-library.jar:/usr/local/jboss-4.0.5.GA-src/thirdparty/jboss/cache/lib/jboss-cache.jar:/usr/local/jboss-4.0.5.GA-src/thirdparty/jboss/cache/lib/jboss-cache-jdk50.jar:/usr/local/jboss-4.0.5.GA-src/cluster/output/lib/jbossha.jar:/usr/local/jboss-4.0.5.GA-src/thirdparty/jboss/common/lib/namespace.jar:/usr/local/jboss-4.0.5.GA-src/thirdparty/jboss/common/lib/jboss-common.jar:/usr/local/jboss-4.0.5.GA-src/thirdparty/jboss/common/lib/jboss-common-client.jar:/usr/local/jboss-4.0.5.GA-src/deployment/output/lib/jboss-deployment.jar:/usr/local/jboss-4.0.5.GA-src/hibernate-int/output/lib/jboss-hibernate.jar:/usr/local/jboss-4.0.5.GA-src/iiop/output/lib/jboss-iiop.jar:/usr/local/jboss-4.0.5.GA-src/server/output/lib/jboss.jar:/usr/local/jboss-4.0.5.GA-src/j2ee/output/lib/jboss-j2ee.jar:/usr/local/jboss-4.0.5.GA-src/j2ee/output/lib/jboss-jaxrpc.jar:/usr/local/jboss-4.0.5.GA-src/j2ee/output/lib/jboss-saaj.jar:/usr/local/jboss-4.0.5.GA-src/connector/output/lib/jboss-jca.jar:/usr/local/jboss-4.0.5.GA-src/connector/output/lib/jboss-local-jdbc.jar:/usr/local/jboss-4.0.5.GA-src/connector/output/lib/jboss-ha-local-jdbc.jar:/usr/local/jboss-4.0.5.GA-src/connector/output/lib/jboss-common-jdbc-wrapper.jar:/usr/local/jboss-4.0.5.GA-src/connector/output/lib/mail-ra.jar:/usr/local/jboss-4.0.5.GA-src/management/output/lib/jboss-jsr77-client.jar:/usr/local/jboss-4.0.5.GA-src/management/output/lib/jboss-jsr77.jar:/usr/local/jboss-4.0.5.GA-src/management/output/lib/jboss-management.jar:/usr/local/jboss-4.0.5.GA-src/messaging/output/lib/jbossmq.jar:/usr/local/jboss-4.0.5.GA-src/naming/output/lib/jnpserver.jar:/usr/local/jboss-4.0.5.GA-src/security/output/lib/jbosssx.jar:/usr/local/jboss-4.0.5.GA-src/server/output/lib/jmx-adaptor-plugin.jar:/usr/local/jboss-4.0.5.GA-src/system/output/lib/jboss-system.jar:/usr/local/jboss-4.0.5.GA-src/test/output/lib/jboss-test.jar:/usr/local/jboss-4.0.5.GA-src/transaction/output/lib/jboss-transaction.jar:/usr/local/jboss-4.0.5.GA-src/varia/output/classes:/usr/local/jboss-4.0.5.GA-src/thirdparty/jboss/serialization/lib/jboss-serialization.jar:/usr/local/jboss-4.0.5.GA-src/thirdparty/jboss/jbossws/lib/jbossws-client.jar:/usr/local/jboss-4.0.5.GA-src/thirdparty/jboss/jbossws14/lib/jboss-jaxrpc.jar:/usr/local/jboss-4.0.5.GA-src/thirdparty/jboss/jbossws14/lib/jboss-saaj.jar:/usr/local/ant-dist/lib/junit.jar:/usr/local/ant-dist/lib/ant-launcher.jar:/usr/local/ant-dist/lib/ant.jar:/usr/local/ant-dist/lib/ant-junit.jar
java.class.version 49.0
java.endorsed.dirs /usr/local/jrockit-R26.0.0-jdk1.5.0_04/jre/lib/endorsed
java.ext.dirs /usr/local/jrockit-R26.0.0-jdk1.5.0_04/jre/lib/ext
java.home /usr/local/jrockit-R26.0.0-jdk1.5.0_04/jre
java.io.tmpdir /tmp
java.library.path /usr/local/jrockit-R26.0.0-jdk1.5.0_04/jre/lib/ia64/jrockit:/usr/local/jrockit-R26.0.0-jdk1.5.0_04/jre/lib/ia64:/usr/local/jrockit-R26.0.0-jdk1.5.0_04/jre/../lib/ia64
java.naming.provider.url jnp://localhost:1099
java.runtime.name Java(TM) 2 Runtime Environment, Standard Edition
java.runtime.version 1.5.0_04-b05
java.security.auth.login.config /usr/local/jboss-4.0.5.GA-src/testsuite/output/resources/security/auth.conf
java.security.manager
java.security.policy =/usr/local/jboss-4.0.5.GA-src/testsuite/output/resources/client.policy
java.specification.name Java Platform API Specification
java.specification.vendor Sun Microsystems Inc.
java.specification.version 1.5
java.vendor BEA Systems, Inc.
java.vendor.url http://www.bea.com/
java.vendor.url.bug http://support.bea.com
java.version 1.5.0_04
java.vm.info
java.vm.name BEA JRockit(R)
java.vm.specification.name Java Virtual Machine Specification
java.vm.specification.vendor Sun Microsystems Inc.
java.vm.specification.version 1.0
java.vm.vendor BEA Systems, Inc.
java.vm.vendor.url http://www.bea.com/
java.vm.vendor.url.bug http://support.bea.com
java.vm.version R26.0.0-188-52875-1.5.0_04-20051110-0916-linux-ia64
javac.boot.classpath /usr/local/jrockit-R26.0.0-jdk1.5.0_04/jre/lib/ia64/jrockit/jrockit.jar:/usr/local/jrockit-R26.0.0-jdk1.5.0_04/jre/lib/ia64/jrockit/managementapi.jar:/usr/local/jrockit-R26.0.0-jdk1.5.0_04/jre/lib/managementapi.jar:/usr/local/jrockit-R26.0.0-jdk1.5.0_04/jre/lib/rt.jar:/usr/local/jrockit-R26.0.0-jdk1.5.0_04/jre/lib/i18n.jar:/usr/local/jrockit-R26.0.0-jdk1.5.0_04/jre/lib/sunrsasign.jar:/usr/local/jrockit-R26.0.0-jdk1.5.0_04/jre/lib/jsse.jar:/usr/local/jrockit-R26.0.0-jdk1.5.0_04/jre/lib/jce.jar:/usr/local/jrockit-R26.0.0-jdk1.5.0_04/jre/lib/charsets.jar:/usr/local/jrockit-R26.0.0-jdk1.5.0_04/jre/classes
javac.classpath
javac.debug on
javac.defaultexcludes yes
javac.depend off
javac.deprecation on
javac.excludes
javac.fail.onerror true
javac.include.ant.runtime no
javac.include.java.runtime no
javac.includes **/*.java
javac.jar /usr/local/jrockit-R26.0.0-jdk1.5.0_04/lib/tools.jar
javac.optimize off
javac.source 1.4
javac.target 1.4
javac.verbose off
javadoc.author true
javadoc.classpath
javadoc.doctitle ${module.Name}
javadoc.package false
javadoc.packages org.jboss.*
javadoc.private false
javadoc.protected true
javadoc.public false
javadoc.source.files
javadoc.source.path
javadoc.sourcepath
javadoc.splitindex no
javadoc.use true
javadoc.verbose false
javadoc.version true
javadoc.windowtitle ${module.Name} API
javassist.javassist.lib /usr/local/jboss-4.0.5.GA-src/thirdparty/javassist/lib/
javassist.javassist.resources /usr/local/jboss-4.0.5.GA-src/thirdparty/javassist/resources/
javassist.javassist.root /usr/local/jboss-4.0.5.GA-src/thirdparty/javassist
javassist.lib /usr/local/jboss-4.0.5.GA-src/thirdparty/javassist/lib/
jaxen.jaxen.lib /usr/local/jboss-4.0.5.GA-src/thirdparty/jaxen/lib/
jaxen.jaxen.resources /usr/local/jboss-4.0.5.GA-src/thirdparty/jaxen/resources/
jaxen.jaxen.root /usr/local/jboss-4.0.5.GA-src/thirdparty/jaxen
jboss.aop.lib /usr/local/jboss-4.0.5.GA-src/thirdparty/jboss/aop/lib/
jboss.aop.resources /usr/local/jboss-4.0.5.GA-src/thirdparty/jboss/aop/resources/
jboss.aop.root /usr/local/jboss-4.0.5.GA-src/thirdparty/jboss/aop
jboss.aspects.lib /usr/local/jboss-4.0.5.GA-src/aspects/output/lib
jboss.aspects.root /usr/local/jboss-4.0.5.GA-src/aspects/output
jboss.backport.concurrent.lib /usr/local/jboss-4.0.5.GA-src/thirdparty/jboss/backport-concurrent/lib/
jboss.backport.concurrent.resources /usr/local/jboss-4.0.5.GA-src/thirdparty/jboss/backport-concurrent/resources/
jboss.backport.concurrent.root /usr/local/jboss-4.0.5.GA-src/thirdparty/jboss/backport-concurrent
jboss.cache.lib /usr/local/jboss-4.0.5.GA-src/thirdparty/jboss/cache/lib/
jboss.cache.resources /usr/local/jboss-4.0.5.GA-src/thirdparty/jboss/cache/resources/
jboss.cache.root /usr/local/jboss-4.0.5.GA-src/thirdparty/jboss/cache
jboss.cluster.lib /usr/local/jboss-4.0.5.GA-src/cluster/output/lib
jboss.cluster.root /usr/local/jboss-4.0.5.GA-src/cluster/output
jboss.common.lib /usr/local/jboss-4.0.5.GA-src/thirdparty/jboss/common/lib/
jboss.common.resources /usr/local/jboss-4.0.5.GA-src/thirdparty/jboss/common/resources/
jboss.common.root /usr/local/jboss-4.0.5.GA-src/thirdparty/jboss/common
jboss.compatibility.lib /usr/local/jboss-4.0.5.GA-src/compatibility/output/lib
jboss.compatibility.root /usr/local/jboss-4.0.5.GA-src/compatibility/output
jboss.deployment.lib /usr/local/jboss-4.0.5.GA-src/deployment/output/lib
jboss.deployment.root /usr/local/jboss-4.0.5.GA-src/deployment/output
jboss.dist /usr/local/jboss
jboss.dist.name jboss-4.0.5.GA
jboss.dom4j.jarjar.lib /usr/local/jboss-4.0.5.GA-src/thirdparty/jboss/dom4j-jarjar/lib/
jboss.dom4j.jarjar.resources /usr/local/jboss-4.0.5.GA-src/thirdparty/jboss/dom4j-jarjar/resources/
jboss.dom4j.jarjar.root /usr/local/jboss-4.0.5.GA-src/thirdparty/jboss/dom4j-jarjar
jboss.ejb3.lib /usr/local/jboss-4.0.5.GA-src/ejb3/output/lib
jboss.ejb3.root /usr/local/jboss-4.0.5.GA-src/ejb3/output
jboss.ejb3x.lib /usr/local/jboss-4.0.5.GA-src/ejb3x/output/lib
jboss.ejb3x.root /usr/local/jboss-4.0.5.GA-src/ejb3x/output
jboss.hibernate.lib /usr/local/jboss-4.0.5.GA-src/hibernate-int/output/lib
jboss.hibernate.root /usr/local/jboss-4.0.5.GA-src/hibernate-int/output
jboss.home /usr/local/jboss-4.0.5.GA-src/testsuite/../build/output/jboss-4.0.5.GA
jboss.iiop.lib /usr/local/jboss-4.0.5.GA-src/iiop/output/lib
jboss.iiop.root /usr/local/jboss-4.0.5.GA-src/iiop/output
jboss.internal-server.lib /usr/local/jboss-4.0.5.GA-src/server/output/lib
jboss.internal-server.root /usr/local/jboss-4.0.5.GA-src/server/output
jboss.j2ee.lib /usr/local/jboss-4.0.5.GA-src/j2ee/output/lib
jboss.j2ee.root /usr/local/jboss-4.0.5.GA-src/j2ee/output
jboss.jaxrpc.lib /usr/local/jboss-4.0.5.GA-src/jaxrpc/output/lib
jboss.jaxrpc.root /usr/local/jboss-4.0.5.GA-src/jaxrpc/output
jboss.jboss.ws4ee.lib /usr/local/jboss-4.0.5.GA-src/thirdparty/jboss/jboss-ws4ee/lib/
jboss.jboss.ws4ee.resources /usr/local/jboss-4.0.5.GA-src/thirdparty/jboss/jboss-ws4ee/resources/
jboss.jboss.ws4ee.root /usr/local/jboss-4.0.5.GA-src/thirdparty/jboss/jboss-ws4ee
jboss.jbossnet.etc /usr/local/jboss-4.0.5.GA-src/jboss.net/output/etc
jboss.jbossnet.lib /usr/local/jboss-4.0.5.GA-src/jboss.net/output/lib
jboss.jbossnet.root /usr/local/jboss-4.0.5.GA-src/jboss.net/output
jboss.jbossretro.rt.lib /usr/local/jboss-4.0.5.GA-src/thirdparty/jboss/jbossretro-rt/lib/
jboss.jbossretro.rt.resources /usr/local/jboss-4.0.5.GA-src/thirdparty/jboss/jbossretro-rt/resources/
jboss.jbossretro.rt.root /usr/local/jboss-4.0.5.GA-src/thirdparty/jboss/jbossretro-rt
jboss.jbossws.lib /usr/local/jboss-4.0.5.GA-src/thirdparty/jboss/jbossws/lib/
jboss.jbossws.resources /usr/local/jboss-4.0.5.GA-src/thirdparty/jboss/jbossws/resources/
jboss.jbossws.root /usr/local/jboss-4.0.5.GA-src/thirdparty/jboss/jbossws
jboss.jbossws14.lib /usr/local/jboss-4.0.5.GA-src/thirdparty/jboss/jbossws14/lib/
jboss.jbossws14.resources /usr/local/jboss-4.0.5.GA-src/thirdparty/jboss/jbossws14/resources/
jboss.jbossws14.root /usr/local/jboss-4.0.5.GA-src/thirdparty/jboss/jbossws14
jboss.jbossxb.lib /usr/local/jboss-4.0.5.GA-src/thirdparty/jboss/jbossxb/lib/
jboss.jbossxb.resources /usr/local/jboss-4.0.5.GA-src/thirdparty/jboss/jbossxb/resources/
jboss.jbossxb.root /usr/local/jboss-4.0.5.GA-src/thirdparty/jboss/jbossxb
jboss.jca.lib /usr/local/jboss-4.0.5.GA-src/connector/output/lib
jboss.jca.root /usr/local/jboss-4.0.5.GA-src/connector/output
jboss.jmx.lib /usr/local/jboss-4.0.5.GA-src/jmx/output/lib
jboss.jmx.root /usr/local/jboss-4.0.5.GA-src/jmx/output
jboss.management.lib /usr/local/jboss-4.0.5.GA-src/management/output/lib
jboss.management.root /usr/local/jboss-4.0.5.GA-src/management/output
jboss.messaging.lib /usr/local/jboss-4.0.5.GA-src/messaging/output/lib
jboss.messaging.root /usr/local/jboss-4.0.5.GA-src/messaging/output
jboss.microcontainer.lib /usr/local/jboss-4.0.5.GA-src/thirdparty/jboss/microcontainer/lib/
jboss.microcontainer.resources /usr/local/jboss-4.0.5.GA-src/thirdparty/jboss/microcontainer/resources/
jboss.microcontainer.root /usr/local/jboss-4.0.5.GA-src/thirdparty/jboss/microcontainer
jboss.naming.lib /usr/local/jboss-4.0.5.GA-src/naming/output/lib
jboss.naming.root /usr/local/jboss-4.0.5.GA-src/naming/output
jboss.nukes.lib /usr/local/jboss-4.0.5.GA-src/nukes/output/lib
jboss.nukes.root /usr/local/jboss-4.0.5.GA-src/nukes/output
jboss.nukes-adminmessages.lib /usr/local/jboss-4.0.5.GA-src/adminmessages/output/lib
jboss.nukes-adminmessages.root /usr/local/jboss-4.0.5.GA-src/adminmessages/output
jboss.nukes-faq.lib /usr/local/jboss-4.0.5.GA-src/faq/output/lib
jboss.nukes-faq.root /usr/local/jboss-4.0.5.GA-src/faq/output
jboss.nukes-jmx.lib /usr/local/jboss-4.0.5.GA-src/jmx/output/lib
jboss.nukes-jmx.root /usr/local/jboss-4.0.5.GA-src/jmx/output
jboss.nukes-journal.lib /usr/local/jboss-4.0.5.GA-src/journal/output/lib
jboss.nukes-journal.root /usr/local/jboss-4.0.5.GA-src/journal/output
jboss.nukes-list.lib /usr/local/jboss-4.0.5.GA-src/list/output/lib
jboss.nukes-list.root /usr/local/jboss-4.0.5.GA-src/list/output
jboss.nukes-mp3player.lib /usr/local/jboss-4.0.5.GA-src/mp3player/output/lib
jboss.nukes-mp3player.root /usr/local/jboss-4.0.5.GA-src/mp3player/output
jboss.nukes-news.lib /usr/local/jboss-4.0.5.GA-src/news/output/lib
jboss.nukes-news.root /usr/local/jboss-4.0.5.GA-src/news/output
jboss.nukes-quotes.lib /usr/local/jboss-4.0.5.GA-src/quotes/output/lib
jboss.nukes-quotes.root /usr/local/jboss-4.0.5.GA-src/quotes/output
jboss.nukes-script.lib /usr/local/jboss-4.0.5.GA-src/script/output/lib
jboss.nukes-script.root /usr/local/jboss-4.0.5.GA-src/script/output
jboss.nukes-sections.lib /usr/local/jboss-4.0.5.GA-src/sections/output/lib
jboss.nukes-sections.root /usr/local/jboss-4.0.5.GA-src/sections/output
jboss.remoting.lib /usr/local/jboss-4.0.5.GA-src/thirdparty/jboss/remoting/lib/
jboss.remoting.resources /usr/local/jboss-4.0.5.GA-src/thirdparty/jboss/remoting/resources/
jboss.remoting.root /usr/local/jboss-4.0.5.GA-src/thirdparty/jboss/remoting
jboss.security.lib /usr/local/jboss-4.0.5.GA-src/security/output/lib
jboss.security.root /usr/local/jboss-4.0.5.GA-src/security/output
jboss.serialization.lib /usr/local/jboss-4.0.5.GA-src/thirdparty/jboss/serialization/lib/
jboss.serialization.resources /usr/local/jboss-4.0.5.GA-src/thirdparty/jboss/serialization/resources/
jboss.serialization.root /usr/local/jboss-4.0.5.GA-src/thirdparty/jboss/serialization
jboss.server.lib /usr/local/jboss-4.0.5.GA-src/server/output/lib
jboss.server.root /usr/local/jboss-4.0.5.GA-src/server/output
jboss.system.lib /usr/local/jboss-4.0.5.GA-src/system/output/lib
jboss.system.root /usr/local/jboss-4.0.5.GA-src/system/output
jboss.system.xdocletpath /usr/local/jboss-4.0.5.GA-src/system/src/main
jboss.test.deploy.dir /usr/local/jboss-4.0.5.GA-src/testsuite/output/lib
jboss.test.lib /usr/local/jboss-4.0.5.GA-src/test/output/lib
jboss.test.root /usr/local/jboss-4.0.5.GA-src/test/output
jboss.tomcat.lib /usr/local/jboss-4.0.5.GA-src/tomcat/output/lib
jboss.tomcat.root /usr/local/jboss-4.0.5.GA-src/tomcat/output
jboss.transaction.lib /usr/local/jboss-4.0.5.GA-src/transaction/output/lib
jboss.transaction.root /usr/local/jboss-4.0.5.GA-src/transaction/output
jboss.varia.lib /usr/local/jboss-4.0.5.GA-src/varia/output/lib
jboss.varia.root /usr/local/jboss-4.0.5.GA-src/varia/output
jboss.webservice.lib /usr/local/jboss-4.0.5.GA-src/webservice/output/lib
jboss.webservice.root /usr/local/jboss-4.0.5.GA-src/webservice/output
jbosstest.beancount 5
jbosstest.deploy.dir /usr/local/jboss-4.0.5.GA-src/testsuite/output/lib
jbosstest.dist /usr/local/jboss
jbosstest.iterationcount 10
jbosstest.nodeploy false
jbosstest.server.host localhost
jbosstest.src.etc /usr/local/jboss-4.0.5.GA-src/testsuite/src/etc
jbosstest.threadcount 5
jfreechart.jfreechart.lib /usr/local/jboss-4.0.5.GA-src/thirdparty/jfreechart/lib/
jfreechart.jfreechart.resources /usr/local/jboss-4.0.5.GA-src/thirdparty/jfreechart/resources/
jfreechart.jfreechart.root /usr/local/jboss-4.0.5.GA-src/thirdparty/jfreechart
jgroups.jgroups.lib /usr/local/jboss-4.0.5.GA-src/thirdparty/jgroups/lib/
jgroups.jgroups.resources /usr/local/jboss-4.0.5.GA-src/thirdparty/jgroups/resources/
jgroups.jgroups.root /usr/local/jboss-4.0.5.GA-src/thirdparty/jgroups
joesnmp.joesnmp.lib /usr/local/jboss-4.0.5.GA-src/thirdparty/joesnmp/lib/
joesnmp.joesnmp.resources /usr/local/jboss-4.0.5.GA-src/thirdparty/joesnmp/resources/
joesnmp.joesnmp.root /usr/local/jboss-4.0.5.GA-src/thirdparty/joesnmp
jpda.cmdline
jrockit.launcher.type jrockit.shipment
juddi.juddi.lib /usr/local/jboss-4.0.5.GA-src/thirdparty/juddi/lib/
juddi.juddi.resources /usr/local/jboss-4.0.5.GA-src/thirdparty/juddi/resources/
juddi.juddi.root /usr/local/jboss-4.0.5.GA-src/thirdparty/juddi
junit.batchtest.fork true
junit.batchtest.haltonerror false
junit.batchtest.haltonfailure false
junit.batchtest.todir /usr/local/jboss-4.0.5.GA-src/testsuite/output/reports
junit.classpath /usr/local/jboss-4.0.5.GA-src/thirdparty/junit
junit.fork true
junit.formatter.type xml
junit.formatter.usefile true
junit.haltonerror false
junit.haltonfailure false
junit.junit.lib /usr/local/jboss-4.0.5.GA-src/thirdparty/junit/lib/
junit.junit.resources /usr/local/jboss-4.0.5.GA-src/thirdparty/junit/resources/
junit.junit.root /usr/local/jboss-4.0.5.GA-src/thirdparty/junit
junit.jvm java
junit.jvm.options -Dnone
junit.printsummary true
junit.timeout 300000
junitejb.junitejb.lib /usr/local/jboss-4.0.5.GA-src/thirdparty/junitejb/lib/
junitejb.junitejb.resources /usr/local/jboss-4.0.5.GA-src/thirdparty/junitejb/resources/
junitejb.junitejb.root /usr/local/jboss-4.0.5.GA-src/thirdparty/junitejb
line.separator
local.classpath
log4j.configuration file:/usr/local/jboss-4.0.5.GA-src/testsuite/output/resources/log4j.xml
marathon.duration 3600000
marathon.threadcount 100
marathon.timeout 3900000
mbean.excludes
mbean.includes
mbean-bypass.marker /usr/local/jboss-4.0.5.GA-src/testsuite/output/mbean-marker
module.name testsuite
module.Name JBoss Testsuite
module.output /usr/local/jboss-4.0.5.GA-src/testsuite/output
module.root /usr/local/jboss-4.0.5.GA-src/testsuite
module.source /usr/local/jboss-4.0.5.GA-src/testsuite/src
module.thirdparty /usr/local/jboss-4.0.5.GA-src/testsuite/thirdparty
module.tools /usr/local/jboss-4.0.5.GA-src/testsuite/tools
module.version DEV
node0 localhost
node0.hajndi.url jnp://localhost:1100
node0.http.url http://localhost:8080
node0.jndi.url jnp://localhost:1099
node1 rx2600-2
node1.hajndi.url jnp://rx2600-2:1100
node1.http.url http://rx2600-2:8080
node1.jndi.url jnp://rx2600-2:1099
none
objectweb.joramtests.lib /usr/local/jboss-4.0.5.GA-src/thirdparty/objectweb-joramtests/lib/
objectweb.joramtests.resources /usr/local/jboss-4.0.5.GA-src/thirdparty/objectweb-joramtests/resources/
objectweb.joramtests.root /usr/local/jboss-4.0.5.GA-src/thirdparty/objectweb-joramtests
odmg.lib /usr/local/jboss-4.0.5.GA-src/thirdparty/odmg/lib/
odmg.odmg.lib /usr/local/jboss-4.0.5.GA-src/thirdparty/odmg/lib/
odmg.odmg.resources /usr/local/jboss-4.0.5.GA-src/thirdparty/odmg/resources/
odmg.odmg.root /usr/local/jboss-4.0.5.GA-src/thirdparty/odmg
opennms.joesnmp.lib /usr/local/jboss-4.0.5.GA-src/thirdparty/joesnmp/lib/
os.arch ia64
os.name Linux
os.version 2.6.9-42.EL
oswego.concurrent.lib /usr/local/jboss-4.0.5.GA-src/thirdparty/oswego-concurrent/lib/
oswego.concurrent.resources /usr/local/jboss-4.0.5.GA-src/thirdparty/oswego-concurrent/resources/
oswego.concurrent.root /usr/local/jboss-4.0.5.GA-src/thirdparty/oswego-concurrent
path.separator :
project.build /usr/local/jboss-4.0.5.GA-src/build
project.root /usr/local/jboss-4.0.5.GA-src
project.thirdparty /usr/local/jboss-4.0.5.GA-src/thirdparty
project.tools /usr/local/jboss-4.0.5.GA-src/tools
proxy.host web-proxy.corp.hp.com
proxy.port 8088
qdox.qdox.lib /usr/local/jboss-4.0.5.GA-src/thirdparty/qdox/lib/
qdox.qdox.resources /usr/local/jboss-4.0.5.GA-src/thirdparty/qdox/resources/
qdox.qdox.root /usr/local/jboss-4.0.5.GA-src/thirdparty/qdox
quartz.quartz.lib /usr/local/jboss-4.0.5.GA-src/thirdparty/quartz/lib/
quartz.quartz.resources /usr/local/jboss-4.0.5.GA-src/thirdparty/quartz/resources/
quartz.quartz.root /usr/local/jboss-4.0.5.GA-src/thirdparty/quartz
release.id testsuite-DEV
results_web http://jboss.sourceforge.net/junit-results/32
rmic.base ${build.classes}
rmic.debug false
rmic.excludes
rmic.idl false
rmic.idlopts
rmic.iiop false
rmic.iiopopts
rmic.includes
rmic.sourcebase
rmic.stubVersion 1.4
rmic.verify true
separator :
sleepycat.lib /usr/local/jboss-4.0.5.GA-src/thirdparty/sleepycat/lib/
sleepycat.sleepycat.lib /usr/local/jboss-4.0.5.GA-src/thirdparty/sleepycat/lib/
sleepycat.sleepycat.resources /usr/local/jboss-4.0.5.GA-src/thirdparty/sleepycat/resources/
sleepycat.sleepycat.root /usr/local/jboss-4.0.5.GA-src/thirdparty/sleepycat
source.docs /usr/local/jboss-4.0.5.GA-src/testsuite/src/docs
source.etc /usr/local/jboss-4.0.5.GA-src/testsuite/src/etc
source.java /usr/local/jboss-4.0.5.GA-src/testsuite/src/main
source.java.5 /usr/local/jboss-4.0.5.GA-src/testsuite/src/jdk15
source.resources /usr/local/jboss-4.0.5.GA-src/testsuite/src/resources
source.stylesheets /usr/local/jboss-4.0.5.GA-src/testsuite/src/stylesheets
specification.title JBoss
specification.vendor JBoss (http://www.jboss.org/)
specification.version 4.0.5.GA
sun.arch.data.model 64
sun.boot.class.path /usr/local/jrockit-R26.0.0-jdk1.5.0_04/jre/lib/ia64/jrockit/jrockit.jar:/usr/local/jrockit-R26.0.0-jdk1.5.0_04/jre/lib/ia64/jrockit/managementapi.jar:/usr/local/jrockit-R26.0.0-jdk1.5.0_04/jre/lib/managementapi.jar:/usr/local/jrockit-R26.0.0-jdk1.5.0_04/jre/lib/rt.jar:/usr/local/jrockit-R26.0.0-jdk1.5.0_04/jre/lib/i18n.jar:/usr/local/jrockit-R26.0.0-jdk1.5.0_04/jre/lib/sunrsasign.jar:/usr/local/jrockit-R26.0.0-jdk1.5.0_04/jre/lib/jsse.jar:/usr/local/jrockit-R26.0.0-jdk1.5.0_04/jre/lib/jce.jar:/usr/local/jrockit-R26.0.0-jdk1.5.0_04/jre/lib/charsets.jar:/usr/local/jrockit-R26.0.0-jdk1.5.0_04/jre/classes
sun.boot.classpath /usr/local/jrockit-R26.0.0-jdk1.5.0_04/jre/lib/ia64/jrockit/jrockit.jar:/usr/local/jrockit-R26.0.0-jdk1.5.0_04/jre/lib/ia64/jrockit/managementapi.jar:/usr/local/jrockit-R26.0.0-jdk1.5.0_04/jre/lib/managementapi.jar:/usr/local/jrockit-R26.0.0-jdk1.5.0_04/jre/lib/rt.jar:/usr/local/jrockit-R26.0.0-jdk1.5.0_04/jre/lib/i18n.jar:/usr/local/jrockit-R26.0.0-jdk1.5.0_04/jre/lib/sunrsasign.jar:/usr/local/jrockit-R26.0.0-jdk1.5.0_04/jre/lib/jsse.jar:/usr/local/jrockit-R26.0.0-jdk1.5.0_04/jre/lib/jce.jar:/usr/local/jrockit-R26.0.0-jdk1.5.0_04/jre/lib/charsets.jar:/usr/local/jrockit-R26.0.0-jdk1.5.0_04/jre/classes
sun.boot.library.path /usr/local/jrockit-R26.0.0-jdk1.5.0_04/jre/lib/ia64
sun.cpu.endian little
sun.cpu.isalist
sun.io.unicode.encoding UnicodeLittle
sun.jaf.lib /usr/local/jboss-4.0.5.GA-src/thirdparty/sun-jaf/lib/
sun.jaf.resources /usr/local/jboss-4.0.5.GA-src/thirdparty/sun-jaf/resources/
sun.jaf.root /usr/local/jboss-4.0.5.GA-src/thirdparty/sun-jaf
sun.javacc.lib /usr/local/jboss-4.0.5.GA-src/thirdparty/sun-javacc/lib/
sun.javacc.resources /usr/local/jboss-4.0.5.GA-src/thirdparty/sun-javacc/resources/
sun.javacc.root /usr/local/jboss-4.0.5.GA-src/thirdparty/sun-javacc
sun.javamail.lib /usr/local/jboss-4.0.5.GA-src/thirdparty/sun-javamail/lib/
sun.javamail.resources /usr/local/jboss-4.0.5.GA-src/thirdparty/sun-javamail/resources/
sun.javamail.root /usr/local/jboss-4.0.5.GA-src/thirdparty/sun-javamail
sun.jnu.encoding UTF-8
sun.management.compiler BEA JRockit(R) Optimizing Compiler
sun.os.patch.level unknown
sun.servlet.lib /usr/local/jboss-4.0.5.GA-src/thirdparty/sun-servlet/lib/
sun.servlet.resources /usr/local/jboss-4.0.5.GA-src/thirdparty/sun-servlet/resources/
sun.servlet.root /usr/local/jboss-4.0.5.GA-src/thirdparty/sun-servlet
test jmx
TIMENOW 2006-12-19.10-35
TODAY December 19 2006
trove.lib /usr/local/jboss-4.0.5.GA-src/thirdparty/trove/lib/
trove.trove.lib /usr/local/jboss-4.0.5.GA-src/thirdparty/trove/lib/
trove.trove.resources /usr/local/jboss-4.0.5.GA-src/thirdparty/trove/resources/
trove.trove.root /usr/local/jboss-4.0.5.GA-src/thirdparty/trove
true 1
TSTAMP 0535
udpGroup
user.country US
user.dir /usr/local/jboss-4.0.5.GA-src/testsuite/output
user.home /root
user.language en
user.name root
user.timezone
version 4.0.5.GA
version.cvstag Branch_4_0
version.major 4
version.minor 0
version.name Zion
version.revision 5
version.tag GA
webservice.classpath jbossws.classpath
wutka.dtdparser.lib /usr/local/jboss-4.0.5.GA-src/thirdparty/wutka-dtdparser/lib/
wutka.dtdparser.resources /usr/local/jboss-4.0.5.GA-src/thirdparty/wutka-dtdparser/resources/
wutka.dtdparser.root /usr/local/jboss-4.0.5.GA-src/thirdparty/wutka-dtdparser
xdoclet.xdoclet.lib /usr/local/jboss-4.0.5.GA-src/thirdparty/xdoclet/lib/
xdoclet.xdoclet.resources /usr/local/jboss-4.0.5.GA-src/thirdparty/xdoclet/resources/
xdoclet.xdoclet.root /usr/local/jboss-4.0.5.GA-src/thirdparty/xdoclet
xdoclet-xdoclet.lib /usr/local/jboss-4.0.5.GA-src/thirdparty/xdoclet/lib/
xml.sax.lib /usr/local/jboss-4.0.5.GA-src/thirdparty/xml-sax/lib/
xml.sax.resources /usr/local/jboss-4.0.5.GA-src/thirdparty/xml-sax/resources/
xml.sax.root /usr/local/jboss-4.0.5.GA-src/thirdparty/xml-sax
YEAR 2006
=================
I also find the similar bug : JBAS-1708
, but it occurs on 4.01 or 4.03 not on 4.05, so I feel this is not replicate and file a new one.
--
This message is automatically generated by JIRA.
-
If you think it was sent incorrectly contact one of the administrators: http://jira.jboss.com/jira/secure/Administrators.jspa
-
For more information on JIRA, see: http://www.atlassian.com/software/jira
19 years, 4 months