[JBoss-dev] [Deployers on JBoss (Deployers/JBoss)] - Problems on EJB hot redeploy Jboss 3.2.3

2004-11-09 Thread darkman97i
Hello,

I've got a JBoss 3.2.3 and Jbuilder X. 

My problem is that any change on EJB (jar) and the redeployment to aplication 
server is not make since I stop the server and restarted (not in hot). In case 
of war files this problem not occurs ?

Is a problem of Jboss 3.2.3 ? or a need some special parameters on server 
configurations ?

Here is a trace of redeployment, it appears can't delete tmp file ?? is that 
the problem ?

09:26:54,421 INFO  [EjbModule] Stopping 
jboss.j2ee:module=ejbs.jar,service=EjbModule
09:26:54,468 INFO  [StatelessSessionContainer] Stopping 
jboss.j2ee:jndiName=ejb/lob,service=EJB
09:26:54,484 INFO  [StatelessSessionInstancePool] Stopping 
jboss.j2ee:jndiName=ejb/lob,plugin=pool,service=EJB
09:26:54,593 INFO  [EJBModule] destroy(), remove EJB-Module: 
jboss.management.local:J2EEApplication=null,J2EEServer=Local,j2eeType=EJBModule,name=ejbs.jar
09:26:54,609 WARN  [DeploymentInfo] Could not delete 
file:/C:/jboss-3.2.3/server/default/tmp/deploy/tmp34736ejbs.jar restart will 
delete it
09:26:54,625 INFO  [MainDeployer] Starting deployment of package: 
file:/C:/jboss-3.2.3/server/default/deploy/ejbs.jar
09:26:55,609 INFO  [EjbModule] Deploying lob
09:26:56,171 INFO  [StatelessSessionInstancePool] Started 
jboss.j2ee:jndiName=ejb/lob,plugin=pool,service=EJB
09:26:56,187 INFO  [StatelessSessionContainer] Started 
jboss.j2ee:jndiName=ejb/lob,service=EJB
09:26:56,203 INFO  [EjbModule] Started 
jboss.j2ee:module=ejbs.jar,service=EjbModule
09:26:56,203 INFO  [EJBDeployer] Deployed: 
file:/C:/jboss-3.2.3/server/default/deploy/ejbs.jar
09:26:56,281 INFO  [MainDeployer] Deployed package: 
file:/C:/jboss-3.2.3/server/default/deploy/ejbs.jar

Thanks

View the original post : 
http://www.jboss.org/index.html?module=bbop=viewtopicp=3854391#3854391

Reply to the post : 
http://www.jboss.org/index.html?module=bbop=postingmode=replyp=3854391


---
This SF.Net email is sponsored by:
Sybase ASE Linux Express Edition - download now for FREE
LinuxWorld Reader's Choice Award Winner for best database on Linux.
http://ads.osdn.com/?ad_id=5588alloc_id=12065op=click
___
JBoss-Development mailing list
[EMAIL PROTECTED]
https://lists.sourceforge.net/lists/listinfo/jboss-development


[JBoss-dev] [JBossCache] - Infinite loops with TreeCacheAOP

2004-11-09 Thread twundke
Hi all,
I have a bit of a show-stopper of a problem here. Code will follow, but I'll 
explain it quickly first.

I have a ValueObject, which contains an IdObject that is a unique ID. Both 
objects implement toString(), equals() and hashCode(), as any good object 
should. Both objects are also advisable.

I have a HashMap that will contain ValueObjects, keyed by their respective 
IdObject. The HashMap is put into the cache using putObject().

This results in an infinite loop. Very basically, the problem is that IdObject 
is part of the FQN (as it's the key in the HashMap) and IdObject implements 
hashCode() (and toString()), which references an advisable field (id).

I would include a stack trace, but I've totally run out of time. The following 
should all be compilable, so you can see exactly what's happening.

Here's the code.


  | public class IdObject{
  | 
  |   private String id;
  | 
  |   public IdObject()  {
  |   } // IdObject
  | 
  |   public IdObject(String aId)  {
  | id = aId;
  |   } // IdObject
  | 
  |   public String toString()  {
  | return id;
  |   } // toString
  | 
  |   public boolean equals(Object aObject)  {
  | boolean result = false;
  | 
  | if ((aObject != null) 
  |  (aObject.getClass().getName().equals( this.getClass().getName( 
{
  |   if (id.equals(((IdObject)aObject).id)) {
  | result = true;
  |   } // if
  | } // if
  | 
  | return result;
  |   } // equals
  | 
  |   public int hashCode()  {
  | return id.hashCode();
  |   } // hashCode
  | 
  | } // class IdObject
  | 

  | public class ValueObject {
  | 
  |   private IdObject idObj;
  |   private float value;
  | 
  |   public ValueObject() {
  |   } // ValueObject
  | 
  |   public ValueObject(IdObject aIdObj, float aValue) {
  | idObj = aIdObj;
  | value = aValue;
  |   } // ValueObject
  | 
  |   public IdObject getIdObj() {
  | return idObj;
  |   }
  | 
  |   public float getValue() {
  | return value;
  |   }
  | 
  |   public String toString() {
  | return idObj + :  + value;
  |   } // toString
  | 
  |   public boolean equals(Object aObject) {
  | boolean result = false;
  | 
  | if ((aObject != null) 
  |  (aObject.getClass().getName().equals( this.getClass().getName( 
{
  |   result = idObj.equals(((ValueObject)aObject).idObj);
  | } // if
  | 
  | return result;
  |   } // equals
  | 
  |   public int hashCode() {
  | return idObj.hashCode();
  |   } // hashCode
  | 
  | } // class ValueObject
  | 

  | import org.jboss.cache.*;
  | import org.jboss.cache.aop.*;
  | import java.util.*;
  | 
  | public class TestRunner {
  |   private static final String CONFIG_FILENAME = data/cacheConfig.xml;
  |   private TreeCacheAop treeCache;
  | 
  |   private Map cachedMap;
  | 
  |   public TestRunner() {
  | initCache();
  | 
  | IdObject idObj1 = new IdObject(1);
  | ValueObject obj1 = new ValueObject(idObj1, 3343.23f);
  | cachedMap.put(idObj1, obj1); //  Infinite loop here
  |   } // TestRunner
  | 
  |   private void initCache() {
  | try {
  |   treeCache = new TreeCacheAop();
  | 
  |   PropertyConfigurator cacheConfig = new PropertyConfigurator();
  |   cacheConfig.configure(treeCache, CONFIG_FILENAME);
  | 
  |   treeCache.startService();
  | 
  |   treeCache.putObject(test, new HashMap());
  |   cachedMap = (Map)treeCache.getObject(test);
  | } // try
  | catch ( Exception x ) {
  |   x.printStackTrace();
  |   System.exit( 1 );
  | } // catch
  |   } // initCache
  | 
  |   public static void main( String[] aArgs ) {
  | new TestRunner();
  |   } // main
  | 
  | } // class TestRunner
  | 

Cache Config:

  | ?xml version=1.0 encoding=UTF-8?
  | server
  | classpath codebase=C:/Java/jboss-cache/lib 
archives=jboss-cache.jar, jgroups.jar/
  | mbean code=org.jboss.cache.TreeCache
  | name=jboss.cache:service=TreeCache
  | attribute name=CacheModeLOCAL/attribute
  | /mbean
  | /server
  | 

AOP file:

  | ?xml version=1.0 encoding=UTF-8?
  | aop
  |   prepare expr=field(* $instanceof{ValueObject}-*) /
  |   prepare expr=field(* $instanceof{IdObject}-*) /
  | /aop
  | 


View the original post : 
http://www.jboss.org/index.html?module=bbop=viewtopicp=3854395#3854395

Reply to the post : 
http://www.jboss.org/index.html?module=bbop=postingmode=replyp=3854395


---
This SF.Net email is sponsored by:
Sybase ASE Linux Express Edition - download now for FREE
LinuxWorld Reader's Choice Award Winner for best database on Linux.
http://ads.osdn.com/?ad_id=5588alloc_id=12065op=click
___
JBoss-Development mailing list
[EMAIL PROTECTED]
https://lists.sourceforge.net/lists/listinfo/jboss-development


[JBoss-dev] jboss-4.0 build.155 Build Successful

2004-11-09 Thread qa

View results here -> http://cruisecontrol.jboss.com/cc/buildresults/jboss-4.0?log=log20041109033831Lbuild.155
BUILD COMPLETE-build.155Date of build:11/09/2004 03:38:31Time to build:17 minutes 18 secondsLast changed:11/09/2004 03:24:21Last log entry:added = and = for date comparisons for ejbql




   Unit Tests: (0)   Total Errors and Failures: (0)
Modifications since last build:(1)1.7.4.2modifiedloubyanskyserver/src/main/org/jboss/ejb/plugins/cmp/ejbql/EJBQLParser.jjtadded = and = for date comparisons for ejbql



[JBoss-dev] jboss-3.2 build.171 Build Successful

2004-11-09 Thread qa

View results here -> http://cruisecontrol.jboss.com/cc/buildresults/jboss-3.2?log=log20041109040127Lbuild.171
BUILD COMPLETE-build.171Date of build:11/09/2004 04:01:27Time to build:14 minutes 6 secondsLast changed:11/09/2004 03:32:11Last log entry:added = and = for date comparisons for ejbql




   Unit Tests: (0)   Total Errors and Failures: (0)
Modifications since last build:(1)1.2.4.6modifiedloubyanskyserver/src/main/org/jboss/ejb/plugins/cmp/ejbql/EJBQLParser.jjtadded = and = for date comparisons for ejbql



[JBoss-dev] [ jboss-Bugs-1061901 ] jboss-net.war inside jboss-net.sar is not deployed

2004-11-09 Thread SourceForge.net
Bugs item #1061901, was opened at 2004-11-07 13:26
Message generated for change (Comment added) made by tdiesler
You can respond by visiting: 
https://sourceforge.net/tracker/?func=detailatid=376685aid=1061901group_id=22866

Category: None
Group: None
Status: Open
Resolution: Fixed
Priority: 5
Submitted By: Thomas Diesler (tdiesler)
Assigned to: Thomas Diesler (tdiesler)
Summary: jboss-net.war inside jboss-net.sar is not deployed

Initial Comment:
Check validity of that statement
http://www.jboss.org/index.html?
module=bbop=viewtopicp=3853883#3853883

--

Comment By: Thomas Diesler (tdiesler)
Date: 2004-11-09 10:47

Message:
Logged In: YES 
user_id=423364

A sar does not support an expanded war inside the sar.

--

You can respond by visiting: 
https://sourceforge.net/tracker/?func=detailatid=376685aid=1061901group_id=22866


---
This SF.Net email is sponsored by:
Sybase ASE Linux Express Edition - download now for FREE
LinuxWorld Reader's Choice Award Winner for best database on Linux.
http://ads.osdn.com/?ad_id=5588alloc_id=12065op=click
___
JBoss-Development mailing list
[EMAIL PROTECTED]
https://lists.sourceforge.net/lists/listinfo/jboss-development


[JBoss-dev] [ jboss-Bugs-1061901 ] jboss-net.war inside jboss-net.sar is not deployed

2004-11-09 Thread SourceForge.net
Bugs item #1061901, was opened at 2004-11-07 13:26
Message generated for change (Settings changed) made by tdiesler
You can respond by visiting: 
https://sourceforge.net/tracker/?func=detailatid=376685aid=1061901group_id=22866

Category: None
Group: None
Status: Closed
Resolution: Fixed
Priority: 5
Submitted By: Thomas Diesler (tdiesler)
Assigned to: Thomas Diesler (tdiesler)
Summary: jboss-net.war inside jboss-net.sar is not deployed

Initial Comment:
Check validity of that statement
http://www.jboss.org/index.html?
module=bbop=viewtopicp=3853883#3853883

--

Comment By: Thomas Diesler (tdiesler)
Date: 2004-11-09 10:47

Message:
Logged In: YES 
user_id=423364

A sar does not support an expanded war inside the sar.

--

You can respond by visiting: 
https://sourceforge.net/tracker/?func=detailatid=376685aid=1061901group_id=22866


---
This SF.Net email is sponsored by:
Sybase ASE Linux Express Edition - download now for FREE
LinuxWorld Reader's Choice Award Winner for best database on Linux.
http://ads.osdn.com/?ad_id=5588alloc_id=12065op=click
___
JBoss-Development mailing list
[EMAIL PROTECTED]
https://lists.sourceforge.net/lists/listinfo/jboss-development


[JBoss-dev] jboss-4.0 build.156 Build Successful

2004-11-09 Thread qa

View results here -> http://cruisecontrol.jboss.com/cc/buildresults/jboss-4.0?log=log20041109055821Lbuild.156
BUILD COMPLETE-build.156Date of build:11/09/2004 05:58:21Time to build:23 minutes 10 secondsLast changed:11/09/2004 05:48:05Last log entry:Fix: [ 1061901 ] jboss-net.war inside jboss-net.sar is not deployed




   Unit Tests: (0)   Total Errors and Failures: (0)
Modifications since last build:(1)1.355.2.12modifiedtdieslerbuild/build.xmlFix: [ 1061901 ] jboss-net.war inside jboss-net.sar is not deployed



[JBoss-dev] [ jboss-Bugs-1061386 ] JBossWS generated stubs don't allow to set client timeout

2004-11-09 Thread SourceForge.net
Bugs item #1061386, was opened at 2004-11-06 09:51
Message generated for change (Comment added) made by tdiesler
You can respond by visiting: 
https://sourceforge.net/tracker/?func=detailatid=376685aid=1061386group_id=22866

Category: None
Group: None
Status: Closed
Resolution: Fixed
Priority: 5
Submitted By: Thomas Diesler (tdiesler)
Assigned to: Thomas Diesler (tdiesler)
Summary: JBossWS generated stubs don't allow to set client timeout

Initial Comment:
See

http://www.jboss.org/index.html?
module=bbop=viewtopicp=3854087#3854087

--

Comment By: Thomas Diesler (tdiesler)
Date: 2004-11-09 12:37

Message:
Logged In: YES 
user_id=423364

Supported in jboss-4.0.1

  Context iniCtx = getInitialContext();
  Service service = (Service)iniCtx.lookup
(java:comp/env/service/HelloWsService);
  HelloWs port = (HelloWs)service.getPort(HelloWs.class);

  Stub stub = (org.jboss.webservice.client.Stub)port;

  stub.setTimeout(new Integer(100));
  assertEquals(new Integer(100), stub.getTimeout());

  stub._setProperty(Stub.CLIENT_TIMEOUT_PROPERTY, 
new Integer(200));
  assertEquals(new Integer(200), stub._getProperty
(Stub.CLIENT_TIMEOUT_PROPERTY));


--

You can respond by visiting: 
https://sourceforge.net/tracker/?func=detailatid=376685aid=1061386group_id=22866


---
This SF.Net email is sponsored by:
Sybase ASE Linux Express Edition - download now for FREE
LinuxWorld Reader's Choice Award Winner for best database on Linux.
http://ads.osdn.com/?ad_id=5588alloc_id=12065op=click
___
JBoss-Development mailing list
[EMAIL PROTECTED]
https://lists.sourceforge.net/lists/listinfo/jboss-development


[JBoss-dev] [JBossWS] - Re: setting timeouts in clients

2004-11-09 Thread tdiesler
Supported in jboss-4.0.1


  |   Context iniCtx = getInitialContext();
  |   Service service = 
(Service)iniCtx.lookup(java:comp/env/service/HelloWsService);
  |   HelloWs port = (HelloWs)service.getPort(HelloWs.class);
  | 
  |   Stub stub = (org.jboss.webservice.client.Stub)port;
  | 
  |   stub.setTimeout(new Integer(100));
  |   assertEquals(new Integer(100), stub.getTimeout());
  | 
  |   stub._setProperty(Stub.CLIENT_TIMEOUT_PROPERTY, new Integer(200));
  |   assertEquals(new Integer(200), 
stub._getProperty(Stub.CLIENT_TIMEOUT_PROPERTY));
  | 

View the original post : 
http://www.jboss.org/index.html?module=bbop=viewtopicp=3854411#3854411

Reply to the post : 
http://www.jboss.org/index.html?module=bbop=postingmode=replyp=3854411


---
This SF.Net email is sponsored by:
Sybase ASE Linux Express Edition - download now for FREE
LinuxWorld Reader's Choice Award Winner for best database on Linux.
http://ads.osdn.com/?ad_id=5588alloc_id=12065op=click
___
JBoss-Development mailing list
[EMAIL PROTECTED]
https://lists.sourceforge.net/lists/listinfo/jboss-development


[JBoss-dev] jboss-4.0 build.157 Build Successful

2004-11-09 Thread qa

View results here -> http://cruisecontrol.jboss.com/cc/buildresults/jboss-4.0?log=log20041109074329Lbuild.157
BUILD COMPLETE-build.157Date of build:11/09/2004 07:43:29Time to build:21 minutes 15 secondsLast changed:11/09/2004 07:35:54Last log entry:Support client stub extensions




   Unit Tests: (0)   Total Errors and Failures: (0)
Modifications since last build:(6)1.1.2.1modifiedtdieslertestsuite/src/main/org/jboss/test/webservice/ws4eesimple/ClientStubTestCase.javaSupport client stub extensions1.3.4.1deletedtdieslerwebservice/src/main/org/jboss/webservice/server/ServerLoginHandler.javaSupport client stub extensions1.4.2.1modifiedtdieslerwebservice/src/main/org/jboss/webservice/client/PortProxy.javaSupport client stub extensions1.17.4.2modifiedtdieslerwebservice/src/main/org/jboss/webservice/client/ServiceImpl.javaSupport client stub extensions1.1.2.1modifiedtdieslerwebservice/src/main/org/jboss/webservice/client/Stub.javaSupport client stub extensions1.5.4.1deletedtdieslerwebservice/src/main/org/jboss/webservice/client/ClientLoginHandler.javaSupport client stub extensions



[JBoss-dev] [ jboss-Bugs-1063107 ] CheckValidConnectionSQL is not Serializable

2004-11-09 Thread SourceForge.net
Bugs item #1063107, was opened at 2004-11-09 13:53
Message generated for change (Tracker Item Submitted) made by Item Submitter
You can respond by visiting: 
https://sourceforge.net/tracker/?func=detailatid=376685aid=1063107group_id=22866

Category: JBossServer
Group: v3.2
Status: Open
Resolution: None
Priority: 5
Submitted By: Purush Rudrakshala (prudrakshala)
Assigned to: Nobody/Anonymous (nobody)
Summary: CheckValidConnectionSQL is not Serializable

Initial Comment:
WrapperDataSource implements Serializable, but when 
serializing a Data Source with check-valid-connection-
sql element in -ds.xml fails.

2004-11-09 19:01:08,866 INFO  [STDOUT] 
java.io.NotSerializableException: 
org.jboss.resource.adapter.jdbc.CheckValidConnectionSQ
L

2004-11-09 19:01:08,866 INFO  [STDOUT]  at 
java.io.ObjectOutputStream.writeObject0
(ObjectOutputStream.java:1054)

2004-11-09 19:01:08,866 INFO  [STDOUT]  at 
java.io.ObjectOutputStream.defaultWriteFields
(ObjectOutputStream.java:1332)

2004-11-09 19:01:08,866 INFO  [STDOUT]  at 
java.io.ObjectOutputStream.writeSerialData
(ObjectOutputStream.java:1304)

2004-11-09 19:01:08,866 INFO  [STDOUT]  at 
java.io.ObjectOutputStream.writeOrdinaryObject
(ObjectOutputStream.java:1247)

2004-11-09 19:01:08,866 INFO  [STDOUT]  at 
java.io.ObjectOutputStream.writeObject0
(ObjectOutputStream.java:1052)

2004-11-09 19:01:08,866 INFO  [STDOUT]  at 
java.io.ObjectOutputStream.defaultWriteFields
(ObjectOutputStream.java:1332)

2004-11-09 19:01:08,866 INFO  [STDOUT]  at 
java.io.ObjectOutputStream.writeSerialData
(ObjectOutputStream.java:1304)

2004-11-09 19:01:08,866 INFO  [STDOUT]  at 
java.io.ObjectOutputStream.writeOrdinaryObject
(ObjectOutputStream.java:1247)

2004-11-09 19:01:08,866 INFO  [STDOUT]  at 
java.io.ObjectOutputStream.writeObject0
(ObjectOutputStream.java:1052)

2004-11-09 19:01:08,866 INFO  [STDOUT]  at 
java.io.ObjectOutputStream.writeObject
(ObjectOutputStream.java:278)



--

You can respond by visiting: 
https://sourceforge.net/tracker/?func=detailatid=376685aid=1063107group_id=22866


---
This SF.Net email is sponsored by:
Sybase ASE Linux Express Edition - download now for FREE
LinuxWorld Reader's Choice Award Winner for best database on Linux.
http://ads.osdn.com/?ad_id=5588alloc_id=12065op=click
___
JBoss-Development mailing list
[EMAIL PROTECTED]
https://lists.sourceforge.net/lists/listinfo/jboss-development


[JBoss-dev] [AOP on JBoss (Aspects/JBoss)] - Re: JBoss AOP 1.0.0 Final Released

2004-11-09 Thread iasandcb
I tried it with JBoss EJB 3 and found that jboss-service.xml was missing in 
jboss-aop_1.0.0-FINAL\jboss-40-install\jboss-aop-jdk50.deployer\META-INF. I 
figured the problem out by copying the same file from RC2.

Thanks,

Ias

View the original post : 
http://www.jboss.org/index.html?module=bbop=viewtopicp=3854419#3854419

Reply to the post : 
http://www.jboss.org/index.html?module=bbop=postingmode=replyp=3854419


---
This SF.Net email is sponsored by:
Sybase ASE Linux Express Edition - download now for FREE
LinuxWorld Reader's Choice Award Winner for best database on Linux.
http://ads.osdn.com/?ad_id=5588alloc_id=12065op=click
___
JBoss-Development mailing list
[EMAIL PROTECTED]
https://lists.sourceforge.net/lists/listinfo/jboss-development


[JBoss-dev] [AOP on JBoss (Aspects/JBoss)] - Re: JBoss AOP 1.0.0 Final Released

2004-11-09 Thread Bill Burke
This should be fixed in the download...

View the original post : 
http://www.jboss.org/index.html?module=bbop=viewtopicp=3854420#3854420

Reply to the post : 
http://www.jboss.org/index.html?module=bbop=postingmode=replyp=3854420


---
This SF.Net email is sponsored by:
Sybase ASE Linux Express Edition - download now for FREE
LinuxWorld Reader's Choice Award Winner for best database on Linux.
http://ads.osdn.com/?ad_id=5588alloc_id=12065op=click
___
JBoss-Development mailing list
[EMAIL PROTECTED]
https://lists.sourceforge.net/lists/listinfo/jboss-development


[JBoss-dev] [AOP on JBoss (Aspects/JBoss)] - Re: Asynchronous Aspect for Tomcat

2004-11-09 Thread claudehussenet
Running the Asynchronous Aspect or any others aspects outside of JBOSS server 
is quite straitghforward.

They are differents options of deployment based on your requirements (See 
Reference doc Chap 10)

I personally tested two configurations with Tomcat 5.0


JDK 1.4 using the precompiler.
--
Create a war file as follow :
WEB-INF/lib/concurrent.jar
WEB-INF/lib/jboss-aop.jar
WEB-INF/lib/jboss-aspect-library.jar
WEB-INF/lib/jboss-common.jar
WEB-INF/lib/javassist.jar
WEB-INF/lib/trove.jar

WEB-INF/classes/META-INF/jboss-aop.xml
WEB-INF/classes/...

JDK 1.5 (Loadtime)
---
Modify the classpath as follow ( Use the Configure Tomcat dialogbox)
-Djava.system.class.loader=org.jboss.aop.standalone.SystemClassLoader

Create a war file as follow :
WEB-INF/lib/concurrent.jar
WEB-INF/lib/jboss-aop-jdk50.jar
WEB-INF/lib/jboss-aspect-library-jdk50.jar
WEB-INF/lib/jboss-common.jar
WEB-INF/lib/javassist.jar
WEB-INF/lib/trove.jar

WEB-INF/classes/META-INF/jboss-aop.xml
WEB-INF/classes/...


An alternative for both options (JDK 1.4/JDK 1.5) is to install 
the libraries under CATALINA_HOME/common/endorsed and the jboss-aop.xml
under CATALINA_HOME/common/classes so u don't need to package them with the war 
file.


2/The Asynchronous Aspect does catch all exceptions.
So in order to test ,if the asynchronous method raises an exception do the 
following :

For example if the method execute was annotated with the asynchronous 
annotation.
POJO p = new POJO();
long value=p.execute();
AsynchronousFacade facade = (AsynchronousFacade)p;

// Test if the method raised an exception and get the Exception object.
if (p.getResponseCode()==AsynchronousConstants.EXCEPTIONCAUGHT)
{
((Exception)p.getResponseObject()).printStackTrace();
}

The following constants are also available :
 
AsynchronousConstants.OK (Asynchronous method completed succesfully)
AsynchronousConstants.TIMEOUT(Asynchronons method completed but did timeout)
AsynchronousConstants.NOVALUE(Asynchronous method still running)

I hope it helps .

Rgds-Claude

View the original post : 
http://www.jboss.org/index.html?module=bbop=viewtopicp=3854421#3854421

Reply to the post : 
http://www.jboss.org/index.html?module=bbop=postingmode=replyp=3854421


---
This SF.Net email is sponsored by:
Sybase ASE Linux Express Edition - download now for FREE
LinuxWorld Reader's Choice Award Winner for best database on Linux.
http://ads.osdn.com/?ad_id=5588alloc_id=12065op=click
___
JBoss-Development mailing list
[EMAIL PROTECTED]
https://lists.sourceforge.net/lists/listinfo/jboss-development


[JBoss-dev] [ jboss-Bugs-1063025 ] CheckValidConnectionSQL is not Serializable

2004-11-09 Thread SourceForge.net
Bugs item #1063025, was opened at 2004-11-09 03:39
Message generated for change (Settings changed) made by starksm
You can respond by visiting: 
https://sourceforge.net/tracker/?func=detailatid=376685aid=1063025group_id=22866

Category: JBossServer
Group: v3.2
Status: Closed
Resolution: Out of Date
Priority: 5
Submitted By: Purush Rudrakshala (prudrakshala)
Assigned to: Nobody/Anonymous (nobody)
Summary: CheckValidConnectionSQL is not Serializable

Initial Comment:
org.jboss.resource.adapter.jdbc.CheckValidConnectionSQ
L class does not implement Serializable.  If DataSource 
objects with validation SQL are stored in HTTP session, 
the DataSource fails Serliazation with NotSerializable 
exception.


--

Comment By: Purush Rudrakshala (prudrakshala)
Date: 2004-11-09 04:07

Message:
Logged In: YES 
user_id=1150762

Used to fail with 3.2.5, but works with 3.2.6 fine.

--

You can respond by visiting: 
https://sourceforge.net/tracker/?func=detailatid=376685aid=1063025group_id=22866


---
This SF.Net email is sponsored by:
Sybase ASE Linux Express Edition - download now for FREE
LinuxWorld Reader's Choice Award Winner for best database on Linux.
http://ads.osdn.com/?ad_id=5588alloc_id=12065op=click
___
JBoss-Development mailing list
[EMAIL PROTECTED]
https://lists.sourceforge.net/lists/listinfo/jboss-development


[JBoss-dev] [ jboss-Bugs-1061901 ] jboss-net.war inside jboss-net.sar is not deployed

2004-11-09 Thread SourceForge.net
Bugs item #1061901, was opened at 2004-11-07 05:26
Message generated for change (Comment added) made by starksm
You can respond by visiting: 
https://sourceforge.net/tracker/?func=detailatid=376685aid=1061901group_id=22866

Category: None
Group: None
Status: Closed
Resolution: Fixed
Priority: 5
Submitted By: Thomas Diesler (tdiesler)
Assigned to: Thomas Diesler (tdiesler)
Summary: jboss-net.war inside jboss-net.sar is not deployed

Initial Comment:
Check validity of that statement
http://www.jboss.org/index.html?
module=bbop=viewtopicp=3853883#3853883

--

Comment By: Scott M Stark (starksm)
Date: 2004-11-09 06:59

Message:
Logged In: YES 
user_id=175228

That's not correct as there are examples of this like the
http-invoker.sar which contains an expanded invoker.war.
What was the problem you saw?

--

Comment By: Thomas Diesler (tdiesler)
Date: 2004-11-09 02:47

Message:
Logged In: YES 
user_id=423364

A sar does not support an expanded war inside the sar.

--

You can respond by visiting: 
https://sourceforge.net/tracker/?func=detailatid=376685aid=1061901group_id=22866


---
This SF.Net email is sponsored by:
Sybase ASE Linux Express Edition - download now for FREE
LinuxWorld Reader's Choice Award Winner for best database on Linux.
http://ads.osdn.com/?ad_id=5588alloc_id=12065op=click
___
JBoss-Development mailing list
[EMAIL PROTECTED]
https://lists.sourceforge.net/lists/listinfo/jboss-development


[JBoss-dev] [ jboss-Bugs-1061901 ] jboss-net.war inside jboss-net.sar is not deployed

2004-11-09 Thread SourceForge.net
Bugs item #1061901, was opened at 2004-11-07 05:26
Message generated for change (Comment added) made by starksm
You can respond by visiting: 
https://sourceforge.net/tracker/?func=detailatid=376685aid=1061901group_id=22866

Category: None
Group: None
Status: Closed
Resolution: Fixed
Priority: 5
Submitted By: Thomas Diesler (tdiesler)
Assigned to: Thomas Diesler (tdiesler)
Summary: jboss-net.war inside jboss-net.sar is not deployed

Initial Comment:
Check validity of that statement
http://www.jboss.org/index.html?
module=bbop=viewtopicp=3853883#3853883

--

Comment By: Scott M Stark (starksm)
Date: 2004-11-09 07:19

Message:
Logged In: YES 
user_id=175228

Looking at the changes, a zipped up archive does not support
an expanded archive. The http-invoker.sar is an expanded sar
containing an expanded invoker.war

--

Comment By: Scott M Stark (starksm)
Date: 2004-11-09 06:59

Message:
Logged In: YES 
user_id=175228

That's not correct as there are examples of this like the
http-invoker.sar which contains an expanded invoker.war.
What was the problem you saw?

--

Comment By: Thomas Diesler (tdiesler)
Date: 2004-11-09 02:47

Message:
Logged In: YES 
user_id=423364

A sar does not support an expanded war inside the sar.

--

You can respond by visiting: 
https://sourceforge.net/tracker/?func=detailatid=376685aid=1061901group_id=22866


---
This SF.Net email is sponsored by:
Sybase ASE Linux Express Edition - download now for FREE
LinuxWorld Reader's Choice Award Winner for best database on Linux.
http://ads.osdn.com/?ad_id=5588alloc_id=12065op=click
___
JBoss-Development mailing list
[EMAIL PROTECTED]
https://lists.sourceforge.net/lists/listinfo/jboss-development


[JBoss-dev] [JBossCache] - Unexpected Error TreeCache in JMS ??

2004-11-09 Thread javaRipper

Hello,
I'm trying to instantiate TreeCacheMBean inside a MDB.
all works fine but anonymous wrote : SOMETIMES console writes
the following error : (is a configuration problem???).
Put down error an configuration service xml ::

anonymous wrote : error
16:01:22,813 ERROR [CacheLoaderInterceptor] failed committing transaction to 
cache loader
java.io.EOFException
at 
java.io.ObjectInputStream$PeekInputStream.readFully(ObjectInputStream.java:2165)
at 
java.io.ObjectInputStream$BlockDataInputStream.readShort(ObjectInputStream.java:2631)
at 
java.io.ObjectInputStream.readStreamHeader(ObjectInputStream.java:734)
at java.io.ObjectInputStream.(ObjectInputStream.java:253)
at 
org.jboss.cache.loader.FileCacheLoader.loadAttributes(FileCacheLoader.java:340)
at org.jboss.cache.loader.FileCacheLoader.put(FileCacheLoader.java:94)
at org.jboss.cache.loader.FileCacheLoader.put(FileCacheLoader.java:135)
at 
org.jboss.cache.loader.FileCacheLoader.commit(FileCacheLoader.java:194)
at 
org.jboss.cache.interceptors.CacheLoaderInterceptor$SynchronizationHandler.afterCompletion(CacheLoaderInterceptor.java:263)
at 
org.jboss.tm.TransactionImpl.doAfterCompletion(TransactionImpl.java:1418)
at 
org.jboss.tm.TransactionImpl.completeTransaction(TransactionImpl.java:1090)
at org.jboss.tm.TransactionImpl.commit(TransactionImpl.java:349)
at org.jboss.tm.TxManager.commit(TxManager.java:200)
at 
org.jboss.jms.asf.StdServerSession.onMessage(StdServerSession.java:341)
at 
org.jboss.mq.SpyMessageConsumer.sessionConsumerProcessMessage(SpyMessageConsumer.java:871)
at 
org.jboss.mq.SpyMessageConsumer.addMessage(SpyMessageConsumer.java:159)
at org.jboss.mq.SpySession.run(SpySession.java:347)
at org.jboss.jms.asf.StdServerSession.run(StdServerSession.java:180)
at 
EDU.oswego.cs.dl.util.concurrent.PooledExecutor$Worker.run(PooledExecutor.java:748)
at java.lang.Thread.run(Thread.java:534)

anonymous wrote : Configuration mbean service

?xml version=1.0 encoding=UTF-8?

!-- = --
!--   --
!--  Sample TreeCache Service Configuration   --
!--   --
!-- = --






!--  
--
!-- Defines TreeCache configuration  
--
!--  
--



jboss:service=Naming
jboss:service=TransactionManager

!--
Configure the TransactionManager
--
!--org.jboss.cache.JBossTransactionManagerLookup
--

!--
Node locking level : SERIALIZABLE
 REPEATABLE_READ (default)
 READ_COMMITTED
 READ_UNCOMMITTED
 NONE
--
NONE

!--
 Valid modes are LOCAL
 REPL_ASYNC
 REPL_SYNC
--
LOCAL


   !--
   Just used for async repl: use a replication queue
   --
   false

   !--
   Replication interval for replication queue (in ms)
   --
   6

   !--
   Max number of elements which trigger replication
   --
   100


!-- Name of cluster. Needs to be the same for all clusters, in order
 to find each other
--
TreeCache-Cluster

!-- JGroups protocol stack properties. Can also be a URL,
 e.g. file:/home/bela/default.xml
   
--


!-- UDP: if you have a multihomed machine,
set the bind_addr attribute to the appropriate NIC IP address 
--
!-- UDP: On Windows machines, because of the media sense 
feature
 being broken with multicast (even after disabling media sense)
 set the loopback attribute to true --
UDP mcast_addr=230.8.8.8 mcast_port=56677
ip_ttl=32 ip_mcast=true
mcast_send_buf_size=8 mcast_recv_buf_size=15
ucast_send_buf_size=8 ucast_recv_buf_size=15
loopback=false/
PING timeout=2000 num_initial_members=3
up_thread=false down_thread=false/
MERGE2 min_interval=1 max_interval=2/
FD shun=true up_thread=true down_thread=true/
VERIFY_SUSPECT timeout=1500
up_thread=false down_thread=false/
pbcast.NAKACK gc_lag=50 

[JBoss-dev] [JBossCache] - Re: Questions about functionality

2004-11-09 Thread kkalmbach
To get the timeout like I would like, would it be possible in LRUAlgorithm in 
the prune method to factor out the call the region.getIdleTimeout. That is, put 
it in a method called getTimeout passing in the region and the nodeEntry,  the 
default implementation just returns the region.getIdleTimeout, but I could then 
override this new method and look at the nodeEntry to get the specific node's 
timeout.

I can include a diff if this does not make sense.

Thanks again for your help

View the original post : 
http://www.jboss.org/index.html?module=bbop=viewtopicp=3854429#3854429

Reply to the post : 
http://www.jboss.org/index.html?module=bbop=postingmode=replyp=3854429


---
This SF.Net email is sponsored by:
Sybase ASE Linux Express Edition - download now for FREE
LinuxWorld Reader's Choice Award Winner for best database on Linux.
http://ads.osdn.com/?ad_id=5588alloc_id=12065op=click
___
JBoss-Development mailing list
[EMAIL PROTECTED]
https://lists.sourceforge.net/lists/listinfo/jboss-development


[JBoss-dev] [JBossWS] - Re: Problem with Deserialzing Arrays by Axis

2004-11-09 Thread aveitas
We are experiencing the same issue.  Can the JBoss team give a response to this?

View the original post : 
http://www.jboss.org/index.html?module=bbop=viewtopicp=3854436#3854436

Reply to the post : 
http://www.jboss.org/index.html?module=bbop=postingmode=replyp=3854436


---
This SF.Net email is sponsored by:
Sybase ASE Linux Express Edition - download now for FREE
LinuxWorld Reader's Choice Award Winner for best database on Linux.
http://ads.osdn.com/?ad_id=5588alloc_id=12065op=click
___
JBoss-Development mailing list
[EMAIL PROTECTED]
https://lists.sourceforge.net/lists/listinfo/jboss-development


[JBoss-dev] jboss-3.2 build.172 Build Successful

2004-11-09 Thread qa

View results here -> http://cruisecontrol.jboss.com/cc/buildresults/jboss-3.2?log=log20041109102725Lbuild.172
BUILD COMPLETE-build.172Date of build:11/09/2004 10:27:25Time to build:23 minutes 19 secondsLast changed:11/09/2004 10:00:38Last log entry:Onto 3.2.7RC2




   Unit Tests: (0)   Total Errors and Failures: (0)
Modifications since last build:(2)1.1.2.30modifiedstarksmtools/etc/buildmagic/buildmagic.entOnto 3.2.7RC21.1.2.10modifiedstarksmtools/etc/buildmagic/version-info.xmlOnto 3.2.7RC2



[JBoss-dev] [JBossCache] - get* and set* pointcuts vs. set(field) get(field)

2004-11-09 Thread nthx
Hi,

In TreeCacheAop doc you state sth like this: ..Whenever there is state change 
('set*' interceptors)..All 'get*' operations.. 

I wonder if it is a good idea to restrict user of JBossCache to conform to some 
getters-setters standard. Maybe it would be better to intercept field access 
(read or write) using standard JBossAOP: get/set(field expression)?

You know there might be problems with settle(..) method for example, and 
maybe someone (I :) ) doesn't like accessing their private implementation 
through getters and setters..

I _think_ field access joinpoint would solve some problems..

How do you think? Maybe you have that in your plans for 1.2.

And one more thing: are you going to extract jbossCache as a concern, you 
know.. to provide jboss-aop.xml bindings for jbossCache, for users who will 
need some more advanced concern management?

Thanks in advance,
Tomasz Nazar


View the original post : 
http://www.jboss.org/index.html?module=bbop=viewtopicp=3854441#3854441

Reply to the post : 
http://www.jboss.org/index.html?module=bbop=postingmode=replyp=3854441


---
This SF.Net email is sponsored by:
Sybase ASE Linux Express Edition - download now for FREE
LinuxWorld Reader's Choice Award Winner for best database on Linux.
http://ads.osdn.com/?ad_id=5588alloc_id=12065op=click
___
JBoss-Development mailing list
[EMAIL PROTECTED]
https://lists.sourceforge.net/lists/listinfo/jboss-development


[JBoss-dev] [ jboss-Bugs-1061379 ] JBossWS rewrites absolute wsdl imports

2004-11-09 Thread SourceForge.net
Bugs item #1061379, was opened at 2004-11-06 09:31
Message generated for change (Settings changed) made by tdiesler
You can respond by visiting: 
https://sourceforge.net/tracker/?func=detailatid=376685aid=1061379group_id=22866

Category: None
Group: None
Status: Closed
Resolution: Fixed
Priority: 5
Submitted By: Thomas Diesler (tdiesler)
Assigned to: Thomas Diesler (tdiesler)
Summary: JBossWS rewrites absolute wsdl imports

Initial Comment:
See

http://www.jboss.org/index.html?
module=bbop=viewtopicp=3853911#3853911

--

Comment By: Thomas Diesler (tdiesler)
Date: 2004-11-09 16:55

Message:
Logged In: YES 
user_id=423364

Fixed in jboss-4.0.1

--

You can respond by visiting: 
https://sourceforge.net/tracker/?func=detailatid=376685aid=1061379group_id=22866


---
This SF.Net email is sponsored by:
Sybase ASE Linux Express Edition - download now for FREE
LinuxWorld Reader's Choice Award Winner for best database on Linux.
http://ads.osdn.com/?ad_id=5588alloc_id=12065op=click
___
JBoss-Development mailing list
[EMAIL PROTECTED]
https://lists.sourceforge.net/lists/listinfo/jboss-development


[JBoss-dev] [Web Services] - Context Root for EJB Endpoints

2004-11-09 Thread jasong
If  the uri context root element to jboss.xml has not been added due to lack of 
time  resources, I would be willing to work on adding it. Let me know if you 
would like me to submit a patch, and if there is anything I should be aware of.

Thanks,
-Jason

View the original post : 
http://www.jboss.org/index.html?module=bbop=viewtopicp=3854471#3854471

Reply to the post : 
http://www.jboss.org/index.html?module=bbop=postingmode=replyp=3854471


---
This SF.Net email is sponsored by:
Sybase ASE Linux Express Edition - download now for FREE
LinuxWorld Reader's Choice Award Winner for best database on Linux.
http://ads.osdn.com/?ad_id=5588alloc_id=12065op=click
___
JBoss-Development mailing list
[EMAIL PROTECTED]
https://lists.sourceforge.net/lists/listinfo/jboss-development


[JBoss-dev] [Web Services] - Re: Context Root for EJB Endpoints

2004-11-09 Thread [EMAIL PROTECTED]
Yes, a patch would be the best way to get this done sooner rather than latter.
Submit a patch to sourceforge:

http://sourceforge.net/tracker/?group_id=22866atid=376687


View the original post : 
http://www.jboss.org/index.html?module=bbop=viewtopicp=3854476#3854476

Reply to the post : 
http://www.jboss.org/index.html?module=bbop=postingmode=replyp=3854476


---
This SF.Net email is sponsored by:
Sybase ASE Linux Express Edition - download now for FREE
LinuxWorld Reader's Choice Award Winner for best database on Linux.
http://ads.osdn.com/?ad_id=5588alloc_id=12065op=click
___
JBoss-Development mailing list
[EMAIL PROTECTED]
https://lists.sourceforge.net/lists/listinfo/jboss-development


[JBoss-dev] jboss-4.0 build.158 Build Successful

2004-11-09 Thread qa

View results here -> http://cruisecontrol.jboss.com/cc/buildresults/jboss-4.0?log=log20041109120514Lbuild.158
BUILD COMPLETE-build.158Date of build:11/09/2004 12:05:14Time to build:22 minutes 39 secondsLast changed:11/09/2004 11:54:48Last log entry:Fix: [ 1061379 ] JBossWS rewrites absolute wsdl imports




   Unit Tests: (0)   Total Errors and Failures: (0)
Modifications since last build:(8)1.20.2.1modifiedtdieslerwebservice/src/main/org/jboss/webservice/server/InvokerProvider.javaFix: [ 1061379 ] JBossWS rewrites absolute wsdl imports1.1.1.1.4.1modifiedtdieslertestsuite/src/resources/webservice/wsdlimport/simplefile/SimpleFile.wsdlFix: [ 1061379 ] JBossWS rewrites absolute wsdl imports1.1.2.1modifiedtdieslertestsuite/src/main/org/jboss/test/webservice/wsdlimport/AbsoluteImportTestCase.javaFix: [ 1061379 ] JBossWS rewrites absolute wsdl imports1.1.2.1modifiedtdieslertestsuite/src/main/org/jboss/test/webservice/wsdlimport/SimpleFileImportTestCase.javaFix: [ 1061379 ] JBossWS rewrites absolute wsdl imports1.1.1.1.4.1deletedtdieslertestsuite/src/main/org/jboss/test/webservice/wsdlimport/simplefile/ImportSimpleFileTestCase.javaFix: [ 1061379 ] JBossWS rewrites absolute wsdl imports1.3.4.1deletedtdieslertestsuite/src/main/org/jboss/test/webservice/ws4eesimple/HelloWsClientApp.javaFix: [ 1061379 ] JBossWS rewrites absolute wsdl imports1.1.1.1.4.2modifiedtdieslertestsuite/src/main/org/jboss/test/webservice/ws4eesimple/SimpleClientTestCase.javaFix: [ 1061379 ] JBossWS rewrites absolute wsdl imports1.9.2.21modifiedtdieslertestsuite/imports/test-jars.xmlFix: [ 1061379 ] JBossWS rewrites absolute wsdl imports



[JBoss-dev] [JBossWS] - Re: Mapping problems with wscompile generated wsdl+mapping f

2004-11-09 Thread plindsay
There is also the issue that wscompile mapping assumes your using their 
generated seralization classes.
Sigh...Getting automated mapping of WSI 1.0  for open source ejb 2.1 seems 
hopeless at the moment.
-phil


View the original post : 
http://www.jboss.org/index.html?module=bbop=viewtopicp=3854496#3854496

Reply to the post : 
http://www.jboss.org/index.html?module=bbop=postingmode=replyp=3854496


---
This SF.Net email is sponsored by:
Sybase ASE Linux Express Edition - download now for FREE
LinuxWorld Reader's Choice Award Winner for best database on Linux.
http://ads.osdn.com/?ad_id=5588alloc_id=12065op=click
___
JBoss-Development mailing list
[EMAIL PROTECTED]
https://lists.sourceforge.net/lists/listinfo/jboss-development


[JBoss-dev] [AOP on JBoss (Aspects/JBoss)] - AspectWerkz AOP with JBoss: could not load aspect

2004-11-09 Thread michaelf
Please help!
I am trying to use the AspectWerkz AOP with JBoss.
Unfortunately, I have no success.
Please note, that I success to run the example stand alone, but when I am 
trying to do the same thing in JBoss I have the following exception

java.lang.ClassNotFoundException: test.aop.LogAspect

and the following AspectWerkz warning:

loader: [EMAIL PROTECTED]
aspectClassName: test.aop.LogAspect
Warning: could not load aspect test.aop.LogAspect from [EMAIL PROTECTED] to: 
java.lang.ClassNotFoundException: test.aop.LogAspect
java.lang.ClassNotFoundException: test.aop.LogAspect

My steps:
1)  Create aspect 
public class LogAspect 
{

public Object aroundAdvice(JoinPoint joinPoint) throws Throwable {
if (joinPoint == null)
{
return null;
}
MemberSignature signature = (MemberSignature)joinPoint.getSignature();
System.out.println(--:  + joinPoint.getTargetClass().getName() + 
:: + signature.getName());
try {
return joinPoint.proceed();
} finally {
System.out.println(--:  + 
joinPoint.getTargetClass().getName() + :: + signature.getName());
}
}


}

2)  Create aop.xml ( created WITH  and / characters )


  aspectwerkz 
system id=AspectWerkzExample

 package name=test.aop
  
  aspect class=LogAspect
 pointcut name=pc1 expression=execution(* 
est.aop.TestMe.foo*(..))   
advice name=aroundAdvice type=around bind-to=pc1
  aspect
package
system
aspectwerkz

3)  Create application 

public class TestMe1 
{

public void foo() {
System.out.println(foo body);
}
}


4)  Offline weaving of application
5)  Packing the aspect, application and aop.xml in the same EAR file
6)  Deployed EAR
7)  Calling to the foo method

TestMe1 testMe = new TestMe1();
testMe.foo();

Please help!
Best regards,
   Michael


View the original post : 
http://www.jboss.org/index.html?module=bbop=viewtopicp=3854498#3854498

Reply to the post : 
http://www.jboss.org/index.html?module=bbop=postingmode=replyp=3854498


---
This SF.Net email is sponsored by:
Sybase ASE Linux Express Edition - download now for FREE
LinuxWorld Reader's Choice Award Winner for best database on Linux.
http://ads.osdn.com/?ad_id=5588alloc_id=12065op=click
___
JBoss-Development mailing list
[EMAIL PROTECTED]
https://lists.sourceforge.net/lists/listinfo/jboss-development


[JBoss-dev] [AOP on JBoss (Aspects/JBoss)] - Re: AspectWerkz AOP with JBoss: could not load aspect

2004-11-09 Thread [EMAIL PROTECTED]
Use JBossAOP, not AspectWerkz.

View the original post : 
http://www.jboss.org/index.html?module=bbop=viewtopicp=3854502#3854502

Reply to the post : 
http://www.jboss.org/index.html?module=bbop=postingmode=replyp=3854502


---
This SF.Net email is sponsored by:
Sybase ASE Linux Express Edition - download now for FREE
LinuxWorld Reader's Choice Award Winner for best database on Linux.
http://ads.osdn.com/?ad_id=5588alloc_id=12065op=click
___
JBoss-Development mailing list
[EMAIL PROTECTED]
https://lists.sourceforge.net/lists/listinfo/jboss-development


[JBoss-dev] [Nukes Development] - Re: Image galery module dev

2004-11-09 Thread cnovara
I use another way to achieve this.
To serve big amount of downloads (static content), it's better to use Apache 
instead of Tomcat.
This way I manage a complete directory out of Nukes, with classic Apache 
Locations/Directories, that I synchronize with Nukes DB wich contains links 
(this could be automatic).
Anyway, Apache is always in front of Tomcat, because it's more versatile.

See enfanceetcroissance.com

View the original post : 
http://www.jboss.org/index.html?module=bbop=viewtopicp=3854503#3854503

Reply to the post : 
http://www.jboss.org/index.html?module=bbop=postingmode=replyp=3854503


---
This SF.Net email is sponsored by:
Sybase ASE Linux Express Edition - download now for FREE
LinuxWorld Reader's Choice Award Winner for best database on Linux.
http://ads.osdn.com/?ad_id=5588alloc_id=12065op=click
___
JBoss-Development mailing list
[EMAIL PROTECTED]
https://lists.sourceforge.net/lists/listinfo/jboss-development


[JBoss-dev] jboss-3.2 build.173 Build Successful

2004-11-09 Thread qa

View results here -> http://cruisecontrol.jboss.com/cc/buildresults/jboss-3.2?log=log20041109125036Lbuild.173
BUILD COMPLETE-build.173Date of build:11/09/2004 12:50:36Time to build:28 minutes 14 secondsLast changed:11/09/2004 12:30:28Last log entry:added velocity




   Unit Tests: (0)   Total Errors and Failures: (0)
Modifications since last build:(1)1.2.4.1modifiedanddthirdparty/licenses/thirdparty-licenses.xmladded velocity



[JBoss-dev] [JBossWS] - Re: setting timeouts in clients

2004-11-09 Thread tanays
That's great . Thanks.

When is 4.0.1 slated for release?

View the original post : 
http://www.jboss.org/index.html?module=bbop=viewtopicp=3854506#3854506

Reply to the post : 
http://www.jboss.org/index.html?module=bbop=postingmode=replyp=3854506


---
This SF.Net email is sponsored by:
Sybase ASE Linux Express Edition - download now for FREE
LinuxWorld Reader's Choice Award Winner for best database on Linux.
http://ads.osdn.com/?ad_id=5588alloc_id=12065op=click
___
JBoss-Development mailing list
[EMAIL PROTECTED]
https://lists.sourceforge.net/lists/listinfo/jboss-development


[JBoss-dev] [JBossWeb] - Tomcat 5.5 in JBoss

2004-11-09 Thread youngm
Is there any kind of timeline of when we can expect some kind of preliminary 
Tomcat 5.5 support in JBoss?  Assuming integration is planned will we see it in 
3.2.x and 4.x or will it only be available in 4.x?

Thanks,
Mike



View the original post : 
http://www.jboss.org/index.html?module=bbop=viewtopicp=3854512#3854512

Reply to the post : 
http://www.jboss.org/index.html?module=bbop=postingmode=replyp=3854512


---
This SF.Net email is sponsored by:
Sybase ASE Linux Express Edition - download now for FREE
LinuxWorld Reader's Choice Award Winner for best database on Linux.
http://ads.osdn.com/?ad_id=5588alloc_id=12065op=click
___
JBoss-Development mailing list
[EMAIL PROTECTED]
https://lists.sourceforge.net/lists/listinfo/jboss-development


[JBoss-dev] jboss-4.0 build.159 Build Successful

2004-11-09 Thread qa

View results here -> http://cruisecontrol.jboss.com/cc/buildresults/jboss-4.0?log=log20041109132930Lbuild.159
BUILD COMPLETE-build.159Date of build:11/09/2004 13:29:30Time to build:42 minutes 33 secondsLast changed:11/09/2004 12:43:49Last log entry:added velocity




   Unit Tests: (0)   Total Errors and Failures: (0)
Modifications since last build:(3)1.41.2.2modifiedanddtools/etc/buildmagic/libraries.entadded velocity1.4.2.3modifiedanddtools/etc/buildmagic/libraries.xmladded velocity1.2.2.2modifiedanddthirdparty/licenses/thirdparty-licenses.xmladded velocity



[JBoss-dev] [JBossWeb] - Re: Tomcat 5.5 in JBoss

2004-11-09 Thread [EMAIL PROTECTED]
Not until the Jan timeframe in a 4.0.2 release. The plans for integration into 
3.2.x are undefined currently.

View the original post : 
http://www.jboss.org/index.html?module=bbop=viewtopicp=3854515#3854515

Reply to the post : 
http://www.jboss.org/index.html?module=bbop=postingmode=replyp=3854515


---
This SF.Net email is sponsored by:
Sybase ASE Linux Express Edition - download now for FREE
LinuxWorld Reader's Choice Award Winner for best database on Linux.
http://ads.osdn.com/?ad_id=5588alloc_id=12065op=click
___
JBoss-Development mailing list
[EMAIL PROTECTED]
https://lists.sourceforge.net/lists/listinfo/jboss-development


Re: [JBoss-dev] [JBossWeb] - Tomcat 5.5 in JBoss

2004-11-09 Thread Remy Maucherat
On Tue, 9 Nov 2004 14:35:58 -0500 (EST), youngm [EMAIL PROTECTED] wrote:
 Is there any kind of timeline of when we can expect some kind of preliminary 
 Tomcat 5.5 support in JBoss?  Assuming integration is planned will we see it 
 in 3.2.x and 4.x or will it only be available in 4.x?

Tomcat 5.5 replaced 5.0 in JBoss from the HEAD branch, and should also
be integrated in the upcoming JBoss 4.0.2 (4.0.1 will still integrate
Tomcat 5.0).

-- 
x
Rémy Maucherat
Developer  Consultant
JBoss Group (Europe) SàRL
x


---
This SF.Net email is sponsored by:
Sybase ASE Linux Express Edition - download now for FREE
LinuxWorld Reader's Choice Award Winner for best database on Linux.
http://ads.osdn.com/?ad_idU88alloc_id065op=click
___
JBoss-Development mailing list
[EMAIL PROTECTED]
https://lists.sourceforge.net/lists/listinfo/jboss-development


[JBoss-dev] jboss-head build.413 Build Successful

2004-11-09 Thread qa

View results here -> http://cruisecontrol.jboss.com/cc/buildresults/jboss-head?log=log20041109144934Lbuild.413
BUILD COMPLETE-build.413Date of build:11/09/2004 14:49:34Time to build:20 minutes 22 seconds




   Unit Tests: (0)   Total Errors and Failures: (0)
Modifications since last build:(0)



[JBoss-dev] jboss-4.0 build.160 Build Successful

2004-11-09 Thread qa

View results here -> http://cruisecontrol.jboss.com/cc/buildresults/jboss-4.0?log=log20041109151003Lbuild.160
BUILD COMPLETE-build.160Date of build:11/09/2004 15:10:03Time to build:18 minutes 55 secondsLast changed:11/09/2004 13:52:46Last log entry:ported deployment service from 3.2




   Unit Tests: (0)   Total Errors and Failures: (0)
Modifications since last build:(17)1.355.2.13modifiedanddbuild/build.xmlported deployment service from 3.21.1.4.1modifiedanddvaria/src/resources/services/deployment/templates/jms-queue/vm/jms-queue.xml.vmported deployment service from 3.21.1.4.1modifiedanddvaria/src/resources/services/deployment/templates/jms-queue/template-config.xmlported deployment service from 3.21.1.4.1modifiedanddvaria/src/resources/services/deployment/templates/VM_global_library.vmported deployment service from 3.21.1.4.1modifiedanddvaria/src/resources/services/deployment/META-INF/jboss-service.xmlported deployment service from 3.21.1.4.1modifiedanddvaria/src/resources/services/deployment/schema/jboss-template-config.xsdported deployment service from 3.21.1.4.1modifiedanddvaria/src/resources/services/deployment/build.xmlported deployment service from 3.21.1.4.1modifiedanddvaria/src/resources/services/deployment/readme.txtported deployment service from 3.21.1.4.1modifiedanddvaria/src/main/org/jboss/services/deployment/metadata/ConfigInfo.javaported deployment service from 3.21.1.4.1modifiedanddvaria/src/main/org/jboss/services/deployment/metadata/ConfigInfoBinding.javaported deployment service from 3.21.1.4.1modifiedanddvaria/src/main/org/jboss/services/deployment/metadata/PropertyInfo.javaported deployment service from 3.21.1.4.1modifiedanddvaria/src/main/org/jboss/services/deployment/metadata/TemplateInfo.javaported deployment service from 3.21.1.4.1modifiedanddvaria/src/main/org/jboss/services/deployment/DeploymentManager.javaported deployment service from 3.21.1.4.1modifiedanddvaria/src/main/org/jboss/services/deployment/DeploymentService.javaported deployment service from 3.21.17.2.2modifiedanddvaria/.classpathported deployment service from 3.21.90.2.6modifiedanddvaria/build.xmlported deployment service from 3.21.4.6.1modifiedanddsystem/.cvsignorefor some reason "mbean-marker" and "build-marker" remaineven after "build clobber"



[JBoss-dev] [Deployers on JBoss (Deployers/JBoss)] - Re: Experiment DeploymentService in 3.2.7RC1

2004-11-09 Thread [EMAIL PROTECTED]
Ok, I have gone through the example and wiki docs and this looks interesting. 
My immeadiate thought is that we should look at how this can be used as the 
basis for a jboss installation tool which would allow one to take a raw 
templatized jboss installation and browse the available services to select 
which services to install as well as configure those services.

In that regard some features to be addressed given that an initial 
implementation would simply allow selection of services are:

   Categories of services, grouping of services into functional groups for 
easier selection of services. For example, ejb, jms, web, webservices, 
clustering, jndi, jca, etc. Selection of the group should be possible.
   There needs to be a notion of which jars are needed for a service. Instead 
of having to duplicate the jars for each service template, there should be a 
notion of library sets that could be referenced by the template. Jars in a 
library set would go into the server lib directory while jars local to the 
template would go into either the service sar
   There needs to be a notion of functional dependencies such that selecting 
the group of jms services automatically selected, jndi, jca and a datasource if 
the default pm is the jdbc based one, jaas security config, etc.
   A historic problem with the direct use of service jmx names as the mechanism 
for specifying dependencies makes dependency specification too fragile. We need 
a service alias notion that allows one to depend on the 'DefaultDS', 
'WebContainer', without needing to know what the exact object name of the 
service is for example.
   
   One complication that exists today is some service attribute values depend 
on the type of another service. For example, we have services like the jms jdbc 
based pm, and the ejb timer pm, that have attributes for DDL that depend on the 
type of datasource.  This should be addressed by the generic persistence api, 
but the situation can arise for other attributes. For example, the webservice 
layer and http based invokers may depend on the web container virtual host, 
port, and ssl settings. The template macro layer needs integration with 
dependent service attributes via references like ${WebContainer}.port to 
configure such dependency based attributes.




View the original post : 
http://www.jboss.org/index.html?module=bbop=viewtopicp=3854523#3854523

Reply to the post : 
http://www.jboss.org/index.html?module=bbop=postingmode=replyp=3854523


---
This SF.Net email is sponsored by:
Sybase ASE Linux Express Edition - download now for FREE
LinuxWorld Reader's Choice Award Winner for best database on Linux.
http://ads.osdn.com/?ad_id=5588alloc_id=12065op=click
___
JBoss-Development mailing list
[EMAIL PROTECTED]
https://lists.sourceforge.net/lists/listinfo/jboss-development


[JBoss-dev] jboss-head Build Failed

2004-11-09 Thread qa

View results here -> http://cruisecontrol.jboss.com/cc/buildresults/jboss-head?log=log20041109163834
BUILD FAILEDAnt Error Message:/home/cruisecontrol/work/scripts/build-jboss-head.xml:63: The following error occurred while executing this line: /home/cruisecontrol/work/scripts/build-jboss-head.xml:37: Exit code: 1 See compile.log in Build Artifacts for details. JAVA_HOME=/opt/j2sdk1.4.2_05/Date of build:11/09/2004 16:38:34Time to build:45 minutes 7 secondsLast changed:11/09/2004 16:22:52Last log entry:refactoring to replace AspectManager.instance() with a member/local variable Manage r wherever possible




   Unit Tests: (0)   Total Errors and Failures: (0)
Modifications since last build:(40)1.42modifiedpatriot1burkeaop/src/main/org/jboss/aop/Advisor.javarefactoring to replace AspectManager.instance() with a member/local variable Manage r wherever possible1.18modifiedpatriot1burkeaop/src/main/org/jboss/aop/AspectAnnotationLoader.javarefactoring to replace AspectManager.instance() with a member/local variable Manage r wherever possible1.89modifiedpatriot1burkeaop/src/main/org/jboss/aop/AspectManager.javarefactoring to replace AspectManager.instance() with a member/local variable Manage r wherever possible1.60modifiedpatriot1burkeaop/src/main/org/jboss/aop/AspectXmlLoader.javarefactoring to replace AspectManager.instance() with a member/local variable Manage r wherever possible1.99modifiedpatriot1burkeaop/src/main/org/jboss/aop/ClassAdvisor.javarefactoring to replace AspectManager.instance() with a member/local variable Manage r wherever possible1.2modifiedpatriot1burkeaop/src/main/org/jboss/aop/Deployment.javarefactoring to replace AspectManager.instance() with a member/local variable Manage r wherever possible1.4modifiedpatriot1burkeaop/src/main/org/jboss/aop/pointcut/CFlowMatcher.javarefactoring to replace AspectManager.instance() with a member/local variable Manage r wherever possible1.9modifiedpatriot1burkeaop/src/main/org/jboss/aop/pointcut/CallMatcher.javarefactoring to replace AspectManager.instance() with a member/local variable Manage r wherever possible1.9modifiedpatriot1burkeaop/src/main/org/jboss/aop/pointcut/ConstructorCallMatcher.javarefactoring to replace AspectManager.instance() with a member/local variable Manage r wherever possible1.16modifiedpatriot1burkeaop/src/main/org/jboss/aop/pointcut/ConstructorMatcher.javarefactoring to replace AspectManager.instance() with a member/local variable Manage r wherever possible1.17modifiedpatriot1burkeaop/src/main/org/jboss/aop/pointcut/FieldMatcher.javarefactoring to replace AspectManager.instance() with a member/local variable Manage r wherever possible1.9modifiedpatriot1burkeaop/src/main/org/jboss/aop/pointcut/MatcherHelper.javarefactoring to replace AspectManager.instance() with a member/local variable Manage r wherever possible1.8modifiedpatriot1burkeaop/src/main/org/jboss/aop/pointcut/MethodCallMatcher.javarefactoring to replace AspectManager.instance() with a member/local variable Manage r wherever possible1.16modifiedpatriot1burkeaop/src/main/org/jboss/aop/pointcut/MethodMatcher.javarefactoring to replace AspectManager.instance() with a member/local variable Manage r wherever possible1.7modifiedpatriot1burkeaop/src/main/org/jboss/aop/pointcut/NewExprMatcher.javarefactoring to replace AspectManager.instance() with a member/local variable Manage r wherever possible1.13modifiedpatriot1burkeaop/src/main/org/jboss/aop/pointcut/SoftClassMatcher.javarefactoring to replace AspectManager.instance() with a member/local variable Manage r wherever possible1.15modifiedpatriot1burkeaop/src/main/org/jboss/aop/pointcut/Util.javarefactoring to replace AspectManager.instance() with a member/local variable Manage r wherever possible1.6modifiedpatriot1burkeaop/src/main/org/jboss/aop/pointcut/WithinMatcher.javarefactoring to replace AspectManager.instance() with a member/local variable Manage r wherever possible1.13modifiedpatriot1burkeaop/src/main/org/jboss/aop/joinpoint/Invocation.javarefactoring to replace AspectManager.instance() with a member/local variable Manage r wherever possible1.6modifiedpatriot1burkeaop/src/main/org/jboss/aop/metadata/ClassMetaDataLoader.javarefactoring to replace AspectManager.instance() with a member/local variable Manage r wherever possible1.11modifiedpatriot1burkeaop/src/main/org/jboss/aop/metadata/SimpleClassMetaDataLoader.javarefactoring to replace AspectManager.instance() with a member/local variable Manage r wherever possible1.11modifiedpatriot1burkeaop/src/main/org/jboss/aop/instrument/ConstructorExecutionTransformer.javarefactoring to replace AspectManager.instance() with a member/local variable Manage r wherever possible1.8modifiedpatriot1burkeaop/src/main/org/jboss/aop/instrument/FieldAccessTransformer.javarefactoring to replace AspectManager.instance() with a member/local variable Manage r wherever 

[JBoss-dev] [JBossCache] - Re: get* and set* pointcuts vs. set(field) get(field)

2004-11-09 Thread bwang00
Thomaz,

Actually, we are doing field interception already (in jboss-aop.xml all 
prepare declaration are for fields). So I will need to update this part of 
the document (of which I am doing it right now). :-)

Thanks for pointing it out,

-Ben

View the original post : 
http://www.jboss.org/index.html?module=bbop=viewtopicp=3854527#3854527

Reply to the post : 
http://www.jboss.org/index.html?module=bbop=postingmode=replyp=3854527


---
This SF.Net email is sponsored by:
Sybase ASE Linux Express Edition - download now for FREE
LinuxWorld Reader's Choice Award Winner for best database on Linux.
http://ads.osdn.com/?ad_id=5588alloc_id=12065op=click
___
JBoss-Development mailing list
[EMAIL PROTECTED]
https://lists.sourceforge.net/lists/listinfo/jboss-development


[JBoss-dev] [JBossCache] - Re: Questions about functionality

2004-11-09 Thread bwang00
Ok, let me look into it and get back to you later this week.

-Ben

View the original post : 
http://www.jboss.org/index.html?module=bbop=viewtopicp=3854528#3854528

Reply to the post : 
http://www.jboss.org/index.html?module=bbop=postingmode=replyp=3854528


---
This SF.Net email is sponsored by:
Sybase ASE Linux Express Edition - download now for FREE
LinuxWorld Reader's Choice Award Winner for best database on Linux.
http://ads.osdn.com/?ad_id=5588alloc_id=12065op=click
___
JBoss-Development mailing list
[EMAIL PROTECTED]
https://lists.sourceforge.net/lists/listinfo/jboss-development


[JBoss-dev] [JBossCache] - Re: Using TreeCacheAopMBean

2004-11-09 Thread bwang00
There is a unit test case under 
testsuite/src/main/org/jboss/test/cache/test/aop/MBeanUnitTestCase.

Check it out,

-Ben

View the original post : 
http://www.jboss.org/index.html?module=bbop=viewtopicp=3854529#3854529

Reply to the post : 
http://www.jboss.org/index.html?module=bbop=postingmode=replyp=3854529


---
This SF.Net email is sponsored by:
Sybase ASE Linux Express Edition - download now for FREE
LinuxWorld Reader's Choice Award Winner for best database on Linux.
http://ads.osdn.com/?ad_id=5588alloc_id=12065op=click
___
JBoss-Development mailing list
[EMAIL PROTECTED]
https://lists.sourceforge.net/lists/listinfo/jboss-development


[JBoss-dev] [JBoss IDE (dev)] - [report]XDoclet1.2.2 with JBossIDE 1.4.0 works fine

2004-11-09 Thread caigao
hi, all:
now xdoclet 1.2.2 can download.
when i merged the xdoclet 1.2.2 and jbosside 1.4.0 it is works fine.
following changes have been worked:
ejbSpec = 2.1
serverSpec = 2.4
strutsVersion = 1.2

of cause tagLibVersion set to 1.2 and jspVersion 2.0 had worked in jbosside 1.3

Before there have some UNICODE charater in my doclet, i must Run XDoclet twice 
to build the xml files , now i only do this one time!


thanks for the work of jbosside.
i love it.





View the original post : 
http://www.jboss.org/index.html?module=bbop=viewtopicp=3854535#3854535

Reply to the post : 
http://www.jboss.org/index.html?module=bbop=postingmode=replyp=3854535


---
This SF.Net email is sponsored by:
Sybase ASE Linux Express Edition - download now for FREE
LinuxWorld Reader's Choice Award Winner for best database on Linux.
http://ads.osdn.com/?ad_id=5588alloc_id=12065op=click
___
JBoss-Development mailing list
[EMAIL PROTECTED]
https://lists.sourceforge.net/lists/listinfo/jboss-development


[JBoss-dev] jboss-head Build Failed

2004-11-09 Thread qa

View results here -> http://cruisecontrol.jboss.com/cc/buildresults/jboss-head?log=log20041109192432
BUILD FAILEDAnt Error Message:/home/cruisecontrol/work/scripts/build-jboss-head.xml:63: The following error occurred while executing this line: /home/cruisecontrol/work/scripts/build-jboss-head.xml:37: Exit code: 1 See compile.log in Build Artifacts for details. JAVA_HOME=/opt/j2sdk1.4.2_05/Date of build:11/09/2004 19:24:32Time to build:15 minutes 25 secondsLast changed:11/09/2004 17:04:08Last log entry:Restructured tests and their directories.  Also verified that all test cases are working correctly (meaning will indicate failure if failed) and are all currently passing.




   Unit Tests: (0)   Total Errors and Failures: (0)
Modifications since last build:(92)1.2deletedtelrodremoting/src/test/org/jboss/remoting/CallbackClientTest.javaRestructured tests and their directories.  Also verified that all test cases are working correctly (meaning will indicate failure if failed) and are all currently passing.1.6deletedtelrodremoting/src/test/org/jboss/remoting/DistributedTest.javaRestructured tests and their directories.  Also verified that all test cases are working correctly (meaning will indicate failure if failed) and are all currently passing.1.2deletedtelrodremoting/src/test/org/jboss/remoting/DistributedTestCase.javaRestructured tests and their directories.  Also verified that all test cases are working correctly (meaning will indicate failure if failed) and are all currently passing.1.2deletedtelrodremoting/src/test/org/jboss/remoting/InvokerClientTest.javaRestructured tests and their directories.  Also verified that all test cases are working correctly (meaning will indicate failure if failed) and are all currently passing.1.8deletedtelrodremoting/src/test/org/jboss/remoting/InvokerClientUnitTestCase.javaRestructured tests and their directories.  Also verified that all test cases are working correctly (meaning will indicate failure if failed) and are all currently passing.1.2deletedtelrodremoting/src/test/org/jboss/remoting/InvokerServerTest.javaRestructured tests and their directories.  Also verified that all test cases are working correctly (meaning will indicate failure if failed) and are all currently passing.1.3deletedtelrodremoting/src/test/org/jboss/remoting/InvokerServerUnitTestCase.javaRestructured tests and their directories.  Also verified that all test cases are working correctly (meaning will indicate failure if failed) and are all currently passing.1.2deletedtelrodremoting/src/test/org/jboss/remoting/InvokerTestCase.javaRestructured tests and their directories.  Also verified that all test cases are working correctly (meaning will indicate failure if failed) and are all currently passing.1.2deletedtelrodremoting/src/test/org/jboss/remoting/LocalInvokerTest.javaRestructured tests and their directories.  Also verified that all test cases are working correctly (meaning will indicate failure if failed) and are all currently passing.1.5deletedtelrodremoting/src/test/org/jboss/remoting/MockInvokerCallbackHandler.javaRestructured tests and their directories.  Also verified that all test cases are working correctly (meaning will indicate failure if failed) and are all currently passing.1.2deletedtelrodremoting/src/test/org/jboss/remoting/MultipleTestCase.javaRestructured tests and their directories.  Also verified that all test cases are working correctly (meaning will indicate failure if failed) and are all currently passing.1.2deletedtelrodremoting/src/test/org/jboss/remoting/MultipleTestResult.javaRestructured tests and their directories.  Also verified that all test cases are working correctly (meaning will indicate failure if failed) and are all currently passing.1.2deletedtelrodremoting/src/test/org/jboss/remoting/MultipleTestRunner.javaRestructured tests and their directories.  Also verified that all test cases are working correctly (meaning will indicate failure if failed) and are all currently passing.1.2deletedtelrodremoting/src/test/org/jboss/remoting/OnewayInvokerClientTest.javaRestructured tests and their directories.  Also verified that all test cases are working correctly (meaning will indicate failure if failed) and are all currently passing.1.2deletedtelrodremoting/src/test/org/jboss/remoting/OnewayInvokerServerTest.javaRestructured tests and their directories.  Also verified that all test cases are working correctly (meaning will indicate failure if failed) and are all currently passing.1.2deletedtelrodremoting/src/test/org/jboss/remoting/OnewayInvokerTestCase.javaRestructured tests and their directories.  Also verified that all test cases are working correctly (meaning will indicate failure if failed) and are all currently passing.1.3modifiedtelrodremoting/src/test/org/jboss/remoting/AbstractInvokerTest.javaRestructured tests and their directories.  Also verified that 

[JBoss-dev] [JBossCache] - Re: Infinite loops with TreeCacheAOP

2004-11-09 Thread twundke
Some more information. I'm running this test with JBossCache 1.1, but have also 
tried the latest HEAD revision with the same results. Here's a stack trace from 
1.1 that shows the loop.


  | checkCacheConsistency():142, org.jboss.cache.aop.CacheInterceptor
  | invoke():88, org.jboss.cache.aop.CacheInterceptor
  | invokeNext():46, org.jboss.aop.joinpoint.FieldReadInvocation
  | invokeRead():1679, org.jboss.aop.ClassAdvisor
  | hashCode():40, IdObject
  | hash():264, java.util.HashMap
  | get():320, java.util.HashMap
  | getChild():116, org.jboss.cache.Node
  | findNode():3252, org.jboss.cache.TreeCache
  | findNode():3344, org.jboss.cache.TreeCache
  | _get():1571, org.jboss.cache.TreeCache
  | invoke0():-1, sun.reflect.NativeMethodAccessorImpl
  | invoke():39, sun.reflect.NativeMethodAccessorImpl
  | invoke():25, sun.reflect.DelegatingMethodAccessorImpl
  | invoke():585, java.lang.reflect.Method
  | invoke():236, org.jgroups.blocks.MethodCall
  | invoke():14, org.jboss.cache.interceptors.CallInterceptor
  | invokeMethod():3181, org.jboss.cache.TreeCache
  | get():1591, org.jboss.cache.TreeCache
  | peek():1604, org.jboss.cache.TreeCache
  | checkCacheConsistency():142, org.jboss.cache.aop.CacheInterceptor
  | invoke():88, org.jboss.cache.aop.CacheInterceptor
  | invokeNext():46, org.jboss.aop.joinpoint.FieldReadInvocation
  | invokeRead():1679, org.jboss.aop.ClassAdvisor
  | hashCode():40, IdObject
  | hash():264, java.util.HashMap
  | get():320, java.util.HashMap
  | getChild():116, org.jboss.cache.Node
  | findNode():3252, org.jboss.cache.TreeCache
  | findNode():3344, org.jboss.cache.TreeCache
  | _get():1571, org.jboss.cache.TreeCache
  | invoke0():-1, sun.reflect.NativeMethodAccessorImpl
  | invoke():39, sun.reflect.NativeMethodAccessorImpl
  | invoke():25, sun.reflect.DelegatingMethodAccessorImpl
  | invoke():585, java.lang.reflect.Method
  | invoke():236, org.jgroups.blocks.MethodCall
  | invoke():14, org.jboss.cache.interceptors.CallInterceptor
  | invokeMethod():3181, org.jboss.cache.TreeCache
  | get():1591, org.jboss.cache.TreeCache
  | peek():1604, org.jboss.cache.TreeCache
  | checkCacheConsistency():142, org.jboss.cache.aop.CacheInterceptor
  | invoke():88, org.jboss.cache.aop.CacheInterceptor
  | invokeNext():46, org.jboss.aop.joinpoint.FieldReadInvocation
  | invokeRead():1679, org.jboss.aop.ClassAdvisor
  | hashCode():40, IdObject
  | hash():264, java.util.HashMap
  | get():320, java.util.HashMap
  | getChild():116, org.jboss.cache.Node
  | findNode():3252, org.jboss.cache.TreeCache
  | findNode():3344, org.jboss.cache.TreeCache
  | _get():1571, org.jboss.cache.TreeCache
  | invoke0():-1, sun.reflect.NativeMethodAccessorImpl
  | invoke():39, sun.reflect.NativeMethodAccessorImpl
  | invoke():25, sun.reflect.DelegatingMethodAccessorImpl
  | invoke():585, java.lang.reflect.Method
  | invoke():236, org.jgroups.blocks.MethodCall
  | invoke():14, org.jboss.cache.interceptors.CallInterceptor
  | invokeMethod():3181, org.jboss.cache.TreeCache
  | get():1591, org.jboss.cache.TreeCache
  | peek():1604, org.jboss.cache.TreeCache
  | checkCacheConsistency():142, org.jboss.cache.aop.CacheInterceptor
  | invoke():88, org.jboss.cache.aop.CacheInterceptor
  | invokeNext():46, org.jboss.aop.joinpoint.FieldReadInvocation
  | invokeRead():1679, org.jboss.aop.ClassAdvisor
  | hashCode():40, IdObject
  | hash():264, java.util.HashMap
  | get():320, java.util.HashMap
  | getChild():116, org.jboss.cache.Node
  | findNode():3252, org.jboss.cache.TreeCache
  | findNode():3344, org.jboss.cache.TreeCache
  | _get():1571, org.jboss.cache.TreeCache
  | invoke0():-1, sun.reflect.NativeMethodAccessorImpl
  | invoke():39, sun.reflect.NativeMethodAccessorImpl
  | invoke():25, sun.reflect.DelegatingMethodAccessorImpl
  | invoke():585, java.lang.reflect.Method
  | invoke():236, org.jgroups.blocks.MethodCall
  | invoke():14, org.jboss.cache.interceptors.CallInterceptor
  | invokeMethod():3181, org.jboss.cache.TreeCache
  | get():1591, org.jboss.cache.TreeCache
  | peek():1604, org.jboss.cache.TreeCache
  | checkCacheConsistency():142, org.jboss.cache.aop.CacheInterceptor
  | invoke():88, org.jboss.cache.aop.CacheInterceptor
  | invokeNext():46, org.jboss.aop.joinpoint.FieldReadInvocation
  | invokeRead():1679, org.jboss.aop.ClassAdvisor
  | hashCode():40, IdObject
  | hash():264, java.util.HashMap
  | get():320, java.util.HashMap
  | createChild():194, org.jboss.cache.Node
  | findNode():3270, org.jboss.cache.TreeCache
  | _put():2264, org.jboss.cache.TreeCache
  | _put():2232, org.jboss.cache.TreeCache
  | invoke0():-1, sun.reflect.NativeMethodAccessorImpl
  | invoke():39, sun.reflect.NativeMethodAccessorImpl
  | invoke():25, sun.reflect.DelegatingMethodAccessorImpl
  | invoke():585, java.lang.reflect.Method
  | invoke():236, org.jgroups.blocks.MethodCall
  | invoke():14, org.jboss.cache.interceptors.CallInterceptor
  | invokeMethod():3181, org.jboss.cache.TreeCache
  | put():1709, org.jboss.cache.TreeCache
  | 

[JBoss-dev] [ jboss-Patches-1063580 ] Adds support for webservice-context-root in jboss.xml

2004-11-09 Thread SourceForge.net
Patches item #1063580, was opened at 2004-11-09 21:05
Message generated for change (Tracker Item Submitted) made by Item Submitter
You can respond by visiting: 
https://sourceforge.net/tracker/?func=detailatid=376687aid=1063580group_id=22866

Category: JBossWS
Group: v4.0
Status: Open
Resolution: None
Priority: 5
Submitted By: Jason Greene (nihility)
Assigned to: Nobody/Anonymous (nobody)
Summary: Adds support for webservice-context-root in jboss.xml

Initial Comment:
Allows for EJB service endpoints to be published at a
specific web context root by simply adding
webservice-context-root to the jboss.xml file. This
patch adds the parameter to the jboss 4 dtd, adds
support to ApplicationMetadata, and modifies the
JBossWS Service deployer to check the metadata.

This patch was made against the current 4.0 branch. The
current checkout (before this patch is applied),
suffered from three webservice test failures (it looks
like these are related to tomcat deployment changes.) 
Applying the patch does not affect these test results.

Let me know if there is anything you would like me to
change. 

Thanks,
-Jason T. Greene

--

You can respond by visiting: 
https://sourceforge.net/tracker/?func=detailatid=376687aid=1063580group_id=22866


---
This SF.Net email is sponsored by:
Sybase ASE Linux Express Edition - download now for FREE
LinuxWorld Reader's Choice Award Winner for best database on Linux.
http://ads.osdn.com/?ad_id=5588alloc_id=12065op=click
___
JBoss-Development mailing list
[EMAIL PROTECTED]
https://lists.sourceforge.net/lists/listinfo/jboss-development


[JBoss-dev] [Web Services] - Re: Context Root for EJB Endpoints

2004-11-09 Thread jasong
Done! If you would like to take a look it is here

https://sourceforge.net/tracker/index.php?func=detailaid=1063580group_id=22866atid=376687

Let me know if you have any questions/promblems.

-Jason



View the original post : 
http://www.jboss.org/index.html?module=bbop=viewtopicp=3854544#3854544

Reply to the post : 
http://www.jboss.org/index.html?module=bbop=postingmode=replyp=3854544


---
This SF.Net email is sponsored by:
Sybase ASE Linux Express Edition - download now for FREE
LinuxWorld Reader's Choice Award Winner for best database on Linux.
http://ads.osdn.com/?ad_id=5588alloc_id=12065op=click
___
JBoss-Development mailing list
[EMAIL PROTECTED]
https://lists.sourceforge.net/lists/listinfo/jboss-development


[JBoss-dev] jboss-4.0-testsuite build.3 Build Successful

2004-11-09 Thread qa

View results here -> http://cruisecontrol.jboss.com/cc/buildresults/jboss-4.0-testsuite?log=log20041109213435Lbuild.3
BUILD COMPLETE-build.3Date of build:11/09/2004 21:34:35Time to build:78 minutes 29 seconds




   Unit Tests: (2046)   Total Errors and Failures: (29)testServletSessionLoadBalancingorg.jboss.test.cluster.test.WebSessionTestCasetestBasicStatelessSessionorg.jboss.test.cts.test.StatelessSessionStressTestCasetestClientCallbackorg.jboss.test.cts.test.StatelessSessionStressTestCasetestRuntimeErrororg.jboss.test.cts.test.StatelessSessionStressTestCasetestServerFoundorg.jboss.test.cts.test.StatelessSessionStressTestCaseunknownorg.jboss.test.jbossmq.test.LargeMessageUnitTestCaseunknownorg.jboss.test.jbossmq.test.OILConnectionUnitTestCasetestENCPerforg.jboss.test.naming.test.NamingStressTestCasetestSecureEJBViaLoginInitialContextFactoryorg.jboss.test.naming.test.SecurityUnitTestCasetestSecureEJBViaJndiLoginInitialContextFactoryorg.jboss.test.naming.test.SecurityUnitTestCaseunknownorg.jboss.test.security.test.JaasUnitTestCaseunknownorg.jboss.test.securitymgr.test.WebIntegrationUnitTestCaseunknownorg.jboss.test.web.test.WebIntegrationUnitTestCasetestHelloorg.jboss.test.webservice.wsdlimport.AbsoluteImportTestCasetestServerFoundorg.jboss.test.webservice.wsdlimport.AbsoluteImportTestCaseunknownorg.jboss.test.webservice.wsdlimport.AbsoluteImportTestCasetestEvictionorg.jboss.test.cache.test.eviction.ReplicatedLRUPolicyUnitTestCasetestEvictionReplicationorg.jboss.test.cache.test.eviction.ReplicatedLRUPolicyUnitTestCasetestStateTransferorg.jboss.test.cache.test.replicated.AsyncUnitTestCasetestSyncReplorg.jboss.test.cache.test.replicated.AsyncUnitTestCasetestSyncReplorg.jboss.test.cache.test.replicated.SyncTxUnitTestCasetestASyncReplorg.jboss.test.cache.test.replicated.SyncTxUnitTestCasetestPutorg.jboss.test.cache.test.replicated.SyncTxUnitTestCasetestPutTxorg.jboss.test.cache.test.replicated.SyncTxUnitTestCasetestCreateOrganizationorg.jboss.test.jaxr.create.CreateOrganizationTestCasetestJaxrDeleteorg.jboss.test.jaxr.delete.JaxrDeleteTestCasetestJaxrReadorg.jboss.test.jaxr.read.JaxrReadTestCasetestStatefulHandleorg.jboss.test.security.test.EJBSpecUnitTestCasetestWebClientorg.jboss.test.webservice.ws4eesimple.SimpleClientTestCase
Modifications since last build:(0)



[JBoss-dev] jboss-4.0-jdk-matrix build.10 Build Successful

2004-11-09 Thread qa

View results here -> http://cruisecontrol.jboss.com/cc/buildresults/jboss-4.0-jdk-matrix?log=log20041109225313Lbuild.10
BUILD COMPLETE-build.10Date of build:11/09/2004 22:53:13Time to build:29 minutes 0 secondsLast changed:11/09/2004 17:04:08Last log entry:Restructured tests and their directories.  Also verified that all test cases are working correctly (meaning will indicate failure if failed) and are all currently passing.




   Unit Tests: (0)   Total Errors and Failures: (0)
Modifications since last build:(125)1.2deletedtelrodremoting/src/test/org/jboss/remoting/CallbackClientTest.javaRestructured tests and their directories.  Also verified that all test cases are working correctly (meaning will indicate failure if failed) and are all currently passing.1.6deletedtelrodremoting/src/test/org/jboss/remoting/DistributedTest.javaRestructured tests and their directories.  Also verified that all test cases are working correctly (meaning will indicate failure if failed) and are all currently passing.1.2deletedtelrodremoting/src/test/org/jboss/remoting/DistributedTestCase.javaRestructured tests and their directories.  Also verified that all test cases are working correctly (meaning will indicate failure if failed) and are all currently passing.1.2deletedtelrodremoting/src/test/org/jboss/remoting/InvokerClientTest.javaRestructured tests and their directories.  Also verified that all test cases are working correctly (meaning will indicate failure if failed) and are all currently passing.1.8deletedtelrodremoting/src/test/org/jboss/remoting/InvokerClientUnitTestCase.javaRestructured tests and their directories.  Also verified that all test cases are working correctly (meaning will indicate failure if failed) and are all currently passing.1.2deletedtelrodremoting/src/test/org/jboss/remoting/InvokerServerTest.javaRestructured tests and their directories.  Also verified that all test cases are working correctly (meaning will indicate failure if failed) and are all currently passing.1.3deletedtelrodremoting/src/test/org/jboss/remoting/InvokerServerUnitTestCase.javaRestructured tests and their directories.  Also verified that all test cases are working correctly (meaning will indicate failure if failed) and are all currently passing.1.2deletedtelrodremoting/src/test/org/jboss/remoting/InvokerTestCase.javaRestructured tests and their directories.  Also verified that all test cases are working correctly (meaning will indicate failure if failed) and are all currently passing.1.2deletedtelrodremoting/src/test/org/jboss/remoting/LocalInvokerTest.javaRestructured tests and their directories.  Also verified that all test cases are working correctly (meaning will indicate failure if failed) and are all currently passing.1.5deletedtelrodremoting/src/test/org/jboss/remoting/MockInvokerCallbackHandler.javaRestructured tests and their directories.  Also verified that all test cases are working correctly (meaning will indicate failure if failed) and are all currently passing.1.2deletedtelrodremoting/src/test/org/jboss/remoting/MultipleTestCase.javaRestructured tests and their directories.  Also verified that all test cases are working correctly (meaning will indicate failure if failed) and are all currently passing.1.2deletedtelrodremoting/src/test/org/jboss/remoting/MultipleTestResult.javaRestructured tests and their directories.  Also verified that all test cases are working correctly (meaning will indicate failure if failed) and are all currently passing.1.2deletedtelrodremoting/src/test/org/jboss/remoting/MultipleTestRunner.javaRestructured tests and their directories.  Also verified that all test cases are working correctly (meaning will indicate failure if failed) and are all currently passing.1.2deletedtelrodremoting/src/test/org/jboss/remoting/OnewayInvokerClientTest.javaRestructured tests and their directories.  Also verified that all test cases are working correctly (meaning will indicate failure if failed) and are all currently passing.1.2deletedtelrodremoting/src/test/org/jboss/remoting/OnewayInvokerServerTest.javaRestructured tests and their directories.  Also verified that all test cases are working correctly (meaning will indicate failure if failed) and are all currently passing.1.2deletedtelrodremoting/src/test/org/jboss/remoting/OnewayInvokerTestCase.javaRestructured tests and their directories.  Also verified that all test cases are working correctly (meaning will indicate failure if failed) and are all currently passing.1.3modifiedtelrodremoting/src/test/org/jboss/remoting/AbstractInvokerTest.javaRestructured tests and their directories.  Also verified that all test cases are working correctly (meaning will indicate failure if failed) and are all currently passing.1.4modifiedtelrodremoting/src/test/org/jboss/remoting/detection/multicast/MulticastUnitTestCase.javaRestructured tests and 

[JBoss-dev] [ jboss-Bugs-1063606 ] EJB Timer DatabasePersistencePlugin issue

2004-11-09 Thread SourceForge.net
Bugs item #1063606, was opened at 2004-11-10 15:57
Message generated for change (Tracker Item Submitted) made by Item Submitter
You can respond by visiting: 
https://sourceforge.net/tracker/?func=detailatid=376685aid=1063606group_id=22866

Category: JBossServer
Group: v4.0
Status: Open
Resolution: None
Priority: 5
Submitted By: Peter Yuill (pyuill)
Assigned to: Nobody/Anonymous (nobody)
Summary: EJB Timer DatabasePersistencePlugin issue

Initial Comment:
In 4.0.1 RC1 the 
GeneralPurposeDatabasePersistencePlugin was changed 
to use constants from the DatabasePersistencePlugin 
interface for column names of the Timer table instead of 
settable properties. One of the columns (INTERVAL) is a 
reserved word in MySQL 4.1

I can see three possible routes for the GPDPP:
1) Reinstate the column name properties (perhaps 
defaulting to the standard values).
2) Respect the reserved word list in standardjbosscmp-
jdbc.xml (which can be easily expanded for particular a 
DBMS).
3) Change the INTERVAL column name.

Regards,
Peter Yuill

--

You can respond by visiting: 
https://sourceforge.net/tracker/?func=detailatid=376685aid=1063606group_id=22866


---
This SF.Net email is sponsored by:
Sybase ASE Linux Express Edition - download now for FREE
LinuxWorld Reader's Choice Award Winner for best database on Linux.
http://ads.osdn.com/?ad_id=5588alloc_id=12065op=click
___
JBoss-Development mailing list
[EMAIL PROTECTED]
https://lists.sourceforge.net/lists/listinfo/jboss-development


[JBoss-dev] jboss-3.2-testsuite Build Failed

2004-11-09 Thread qa

View results here -> http://cruisecontrol.jboss.com/cc/buildresults/jboss-3.2-testsuite?log=log20041109232908
BUILD FAILEDAnt Error Message:/home/cruisecontrol/work/scripts/build-jboss-head.xml:66: The following error occurred while executing this line: /home/cruisecontrol/work/scripts/build-jboss-head.xml:37: Exit code: 1 See tests.log in Build Artifacts for details. JAVA_HOME=/opt/j2sdk1.4.2_05/Date of build:11/09/2004 23:29:08Time to build:61 minutes 0 seconds




   Unit Tests: (0)   Total Errors and Failures: (0)
Modifications since last build:(0)



[JBoss-dev] RE: jboss-3.2-testsuite Build Failed

2004-11-09 Thread Scott M Stark



The tomcat-sso-cluster test-configs 
jbossweb-tomcat50.sar/META-INF/jboss-service.xml override had been removed which 
cause the configuration startup to fail due to an unsatified dependency on 
jboss.jca:service=CachedConnectionManager. There are too many failures due to 
people not validating checkins currently.


  
  
  From: [EMAIL PROTECTED] [mailto:[EMAIL PROTECTED] 
  Sent: Tuesday, November 09, 2004 9:30 PMTo: 
  [EMAIL PROTECTED]; QASubject: 
  jboss-3.2-testsuite Build FailedImportance: 
  High
  View results here - http://cruisecontrol.jboss.com/cc/buildresults/jboss-3.2-testsuite?log=log20041109232908
  
  


  BUILD FAILED

  Ant Error 
Message:/home/cruisecontrol/work/scripts/build-jboss-head.xml:66: 
The following error occurred while executing this line: 
/home/cruisecontrol/work/scripts/build-jboss-head.xml:37: Exit code: 1 
See tests.log in Build Artifacts for details. 
JAVA_HOME=/opt/j2sdk1.4.2_05/

  Date of 
build:11/09/2004 23:29:08

  Time to 
build:61 minutes 0 seconds
  
  





  


  Unit Tests: (0) 
Total Errors and Failures: (0) 

  

  


  
  
  


  Modifications 
since last build: (0) 
  
  



[JBoss-dev] jboss-3.2 build.174 Build Successful

2004-11-09 Thread qa

View results here -> http://cruisecontrol.jboss.com/cc/buildresults/jboss-3.2?log=log20041110012203Lbuild.174
BUILD COMPLETE-build.174Date of build:11/10/2004 01:22:03Time to build:12 minutes 53 secondsLast changed:11/10/2004 01:16:50Last log entry:Comment out the jboss.jca:service=CachedConnectionManager dependency by default




   Unit Tests: (0)   Total Errors and Failures: (0)
Modifications since last build:(1)1.1.1.1.2.19modifiedstarksmtomcat/src/resources/jboss-service-50.xmlComment out the jboss.jca:service=CachedConnectionManager dependency by default



[JBoss-dev] jboss-head build.414 Build Fixed

2004-11-09 Thread qa

View results here -> http://cruisecontrol.jboss.com/cc/buildresults/jboss-head?log=log20041110014431Lbuild.414
BUILD COMPLETE-build.414Date of build:11/10/2004 01:44:31Time to build:18 minutes 11 secondsLast changed:11/10/2004 01:05:12Last log entry:Get the compile to work by provding a bind(Advisor advisor, ClassMetaDataBinding data, CtMethod[] methods, CtField[] fields, CtConstructor[] constructors) method impl that throws a RuntimeException




   Unit Tests: (0)   Total Errors and Failures: (0)
Modifications since last build:(94)1.4modifiedstarksmaspects/src/main/org/jboss/aspects/security/SecurityClassMetaDataLoader.javaGet the compile to work by provding a bind(Advisor advisor, ClassMetaDataBinding data, CtMethod[] methods, CtField[] fields, CtConstructor[] constructors) method impl that throws a RuntimeException1.15modifiedstarksmaspects/src/main/org/jboss/aop/deployment/AspectDeployer.javaGet the compile to work by passing in AspectManager.instance() to the AspectAnnotationLoader ctor.1.2deletedtelrodremoting/src/test/org/jboss/remoting/CallbackClientTest.javaRestructured tests and their directories.  Also verified that all test cases are working correctly (meaning will indicate failure if failed) and are all currently passing.1.6deletedtelrodremoting/src/test/org/jboss/remoting/DistributedTest.javaRestructured tests and their directories.  Also verified that all test cases are working correctly (meaning will indicate failure if failed) and are all currently passing.1.2deletedtelrodremoting/src/test/org/jboss/remoting/DistributedTestCase.javaRestructured tests and their directories.  Also verified that all test cases are working correctly (meaning will indicate failure if failed) and are all currently passing.1.2deletedtelrodremoting/src/test/org/jboss/remoting/InvokerClientTest.javaRestructured tests and their directories.  Also verified that all test cases are working correctly (meaning will indicate failure if failed) and are all currently passing.1.8deletedtelrodremoting/src/test/org/jboss/remoting/InvokerClientUnitTestCase.javaRestructured tests and their directories.  Also verified that all test cases are working correctly (meaning will indicate failure if failed) and are all currently passing.1.2deletedtelrodremoting/src/test/org/jboss/remoting/InvokerServerTest.javaRestructured tests and their directories.  Also verified that all test cases are working correctly (meaning will indicate failure if failed) and are all currently passing.1.3deletedtelrodremoting/src/test/org/jboss/remoting/InvokerServerUnitTestCase.javaRestructured tests and their directories.  Also verified that all test cases are working correctly (meaning will indicate failure if failed) and are all currently passing.1.2deletedtelrodremoting/src/test/org/jboss/remoting/InvokerTestCase.javaRestructured tests and their directories.  Also verified that all test cases are working correctly (meaning will indicate failure if failed) and are all currently passing.1.2deletedtelrodremoting/src/test/org/jboss/remoting/LocalInvokerTest.javaRestructured tests and their directories.  Also verified that all test cases are working correctly (meaning will indicate failure if failed) and are all currently passing.1.5deletedtelrodremoting/src/test/org/jboss/remoting/MockInvokerCallbackHandler.javaRestructured tests and their directories.  Also verified that all test cases are working correctly (meaning will indicate failure if failed) and are all currently passing.1.2deletedtelrodremoting/src/test/org/jboss/remoting/MultipleTestCase.javaRestructured tests and their directories.  Also verified that all test cases are working correctly (meaning will indicate failure if failed) and are all currently passing.1.2deletedtelrodremoting/src/test/org/jboss/remoting/MultipleTestResult.javaRestructured tests and their directories.  Also verified that all test cases are working correctly (meaning will indicate failure if failed) and are all currently passing.1.2deletedtelrodremoting/src/test/org/jboss/remoting/MultipleTestRunner.javaRestructured tests and their directories.  Also verified that all test cases are working correctly (meaning will indicate failure if failed) and are all currently passing.1.2deletedtelrodremoting/src/test/org/jboss/remoting/OnewayInvokerClientTest.javaRestructured tests and their directories.  Also verified that all test cases are working correctly (meaning will indicate failure if failed) and are all currently passing.1.2deletedtelrodremoting/src/test/org/jboss/remoting/OnewayInvokerServerTest.javaRestructured tests and their directories.  Also verified that all test cases are working correctly (meaning will indicate failure if failed) and are all currently passing.1.2deletedtelrodremoting/src/test/org/jboss/remoting/OnewayInvokerTestCase.javaRestructured tests and their directories.  Also verified