[JBoss-dev] [JBossCache] - Re: Transactions/Locking Across VMs Issues

2004-11-15 Thread bela
JBoss itself (the appserver) uses random sleeps and retries (up to 5 times). 
Unless you have distributed deadlock detection, this is the only way to recover 
from deadlocks.
How to avoid this ? Work on separate data sets in different nodes, e.g. node1 
works on data 1-10, node2 on 11-20, node 3 on 21-30 etc. Sometimes this is easy 
to implement, e.g. in HTTP session replication you can enable session 
stickiness.

Bela

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

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


---
This SF.Net email is sponsored by: InterSystems CACHE
FREE OODBMS DOWNLOAD - A multidimensional database that combines
robust object and relational technologies, making it a perfect match
for Java, C++,COM, XML, ODBC and JDBC. www.intersystems.com/match8
___
JBoss-Development mailing list
[EMAIL PROTECTED]
https://lists.sourceforge.net/lists/listinfo/jboss-development


[JBoss-dev] [JBossCache] - Re: lock.TimeoutException crash the replicate-sync cluster

2004-11-15 Thread bela
what do you mean by crash ? Termination of the VM ? B/c what you describe is a 
regular scenario, in which the first box waits until it (a) gets a response 
from the second box or (b) the second box is suspected.

Bela

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

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


---
This SF.Net email is sponsored by: InterSystems CACHE
FREE OODBMS DOWNLOAD - A multidimensional database that combines
robust object and relational technologies, making it a perfect match
for Java, C++,COM, XML, ODBC and JDBC. www.intersystems.com/match8
___
JBoss-Development mailing list
[EMAIL PROTECTED]
https://lists.sourceforge.net/lists/listinfo/jboss-development


[JBoss-dev] [JBoss IDE (dev)] - Re: JBossIDE Collaboration Conference Call Notes 11/12/04

2004-11-15 Thread maxhibernateorg
marshall wrote : max wrote : 
  |   | I was using the automated builder stuff which is in eclipse.
  |   | Just added a builder on my project and told which ant file and target 
to run when certain resources are changed (like all files in model/src).
  |   | 
  |   | Can it be more integrated than that ? 
  |   | 
  | There is an actual API that you can implement for builders. I'm guessing 
what you were using was an already defined Ant builder API? Not sure. At any 
rate, check out the AOP extension to see an example of the Builder API in 
action (AopProjectBuilder)
  | 
  | 

Yes - it is the default ant builder they have (actually quite nice to automatic 
generate stuff which eclipse does not know how to when something has changed). 

Can we get more integrated than that ? We would probably do the same thing as 
their ant builder api would be doing.

marshall wrote : 
  | max wrote : 
  |   | oh - and e.g. the hbm.xml editor...should that depend on our xml editor 
or the editor in webtools ?
  |   | 
  | Let's depend on ours for the time being. Webtools is pretty monolithic, and 
I don't want to complicate our build process any more than we have to right now 
;).

sissy! ;)

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

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


---
This SF.Net email is sponsored by: InterSystems CACHE
FREE OODBMS DOWNLOAD - A multidimensional database that combines
robust object and relational technologies, making it a perfect match
for Java, C++,COM, XML, ODBC and JDBC. www.intersystems.com/match8
___
JBoss-Development mailing list
[EMAIL PROTECTED]
https://lists.sourceforge.net/lists/listinfo/jboss-development


[JBoss-dev] [JBossCache] - Re: lock.TimeoutException crash the replicate-sync cluster

2004-11-15 Thread norbert
The Exception you get ist expected behavior of synchronous replication.

With synchronous replication the caller will be notified of all 
communication-errors that occour during replication. This is intendet 
behaviour, your calling thread is notified so it can apply arbitrary actions.

TimeOutExceptions occour as long the sending member assumes the receiving 
member is still alive so it still sends messages to the receiving member. In 
case the receiving member does not respond within a given timeout, the 
communication-stack (JGroups) assumes the receiving member may still be alive, 
but unresponsive (this state is called 'suspected'). Since in this situation 
JGroups cannot garantee messages will reach all members in the group, it 
notifies the caller by throwing TimeOutException. (see the attribute 
'suspected=true' in the Exceptions message-string). If the 'suspected' member 
does not respond within another timeout-period, JGroups will decide it has died 
and remove it from the group. From this point in time it will no longer try to 
send messages to this host and no more TimeOutExceptions will occour.

If you don't want your calling thread to be notified of such 
replication-errors, use asynchronous replication instead.


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

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


---
This SF.Net email is sponsored by: InterSystems CACHE
FREE OODBMS DOWNLOAD - A multidimensional database that combines
robust object and relational technologies, making it a perfect match
for Java, C++,COM, XML, ODBC and JDBC. www.intersystems.com/match8
___
JBoss-Development mailing list
[EMAIL PROTECTED]
https://lists.sourceforge.net/lists/listinfo/jboss-development


[JBoss-dev] [JBossCache] - TreeCacheAOP, inheritance, replication and getObject

2004-11-15 Thread paulvallender
Hi,

I am fairly new to TreeCache.  I think it is a great piece of work, but I have 
come across a few teething problems.  One of my problems is that members from a 
base class are not replicated to a second cache, or, more correctly, they are 
replicated, but 'getObject' does not seem to think so.

For example, if you run the aopWithTxInherit.bsh from the tutorial, then 
execute joe.setYear(2000); to ensure a Student member is set.

Open a second session (connecting to the first cache).  Executing a 
tree.printDetails(); shows correct information.  However if you execute 
tree.getObject(/aop/joe); the fields from the Person class are null, but 
fields from the Student class are OK.

I have had a look through the forums and the docs, but can't find any reference 
to this issue (sorry if I have missed it).  Is it an issue with what I am doing?

Thanks,

Paul.

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

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


---
This SF.Net email is sponsored by: InterSystems CACHE
FREE OODBMS DOWNLOAD - A multidimensional database that combines
robust object and relational technologies, making it a perfect match
for Java, C++,COM, XML, ODBC and JDBC. www.intersystems.com/match8
___
JBoss-Development mailing list
[EMAIL PROTECTED]
https://lists.sourceforge.net/lists/listinfo/jboss-development


[JBoss-dev] [AOP on JBoss (Aspects/JBoss)] - Re: how to change the arguments of a method by AOP?

2004-11-15 Thread kabkhan
Specify the jboss.aop.optimized system property and set it to false, i.e:

  |  aopc compilerclasspathref=classpath classpathref=classpath 
verbose=true
  | sysproperty key=jboss.aop.optimized value=true/
  | 
  |  classpath path=./bin/
  |  src path=./bin/
  |  aoppath path=jboss-aop.xml/
  |   /aopc
  | 



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

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


---
This SF.Net email is sponsored by: InterSystems CACHE
FREE OODBMS DOWNLOAD - A multidimensional database that combines
robust object and relational technologies, making it a perfect match
for Java, C++,COM, XML, ODBC and JDBC. www.intersystems.com/match8
___
JBoss-Development mailing list
[EMAIL PROTECTED]
https://lists.sourceforge.net/lists/listinfo/jboss-development


[JBoss-dev] [JBossCache] - Re: TreeCacheAop and default constructors

2004-11-15 Thread paulvallender
Hi,

anonymous wrote : TreeCacheAop does not require a POJO to have a default 
constructor. 
I am sure this is true, However, I am also having problems with Class 
instantiation exceptions.  The problem only occurs when a second cache attempts 
a getObject for an object created in the first cache.

If the class has no contructors then everything is fine.  If the class has one 
or more constructors (but no default), then the class loader creates an 
instantiation exception.  If a default constructor is added, then everthing 
works.

anonymous wrote : therefore no need for Serializable either
In the situation where one cache is running and objects are added.  A second 
cache starts and the initial state is transferred to the second cache.  If the 
objects are not Serializable then a class not serialized exception occurs (at 
least for me it does).  It seems that serialization is required to tranfer the 
initial state.  Is this true or is it something that I am doing wrong (I have 
had a look through the doc, sorry if I have missed this).

Many thanks.

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

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


---
This SF.Net email is sponsored by: InterSystems CACHE
FREE OODBMS DOWNLOAD - A multidimensional database that combines
robust object and relational technologies, making it a perfect match
for Java, C++,COM, XML, ODBC and JDBC. www.intersystems.com/match8
___
JBoss-Development mailing list
[EMAIL PROTECTED]
https://lists.sourceforge.net/lists/listinfo/jboss-development


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

2004-11-15 Thread qa

View results here -> http://cruisecontrol.jboss.com/cc/buildresults/jboss-head?log=log20041115035615Lbuild.439
BUILD COMPLETE-build.439Date of build:11/15/2004 03:56:15Time to build:24 minutes 36 secondsLast changed:11/15/2004 03:49:54Last log entry:no message




   Unit Tests: (0)   Total Errors and Failures: (0)
Modifications since last build:(2)1.35modifiedbelabancache/docs/design/todo.txtno message1.3deletedbelabancache/docs/design/JdbcCacheLoader.txtadded



[JBoss-dev] [AOP on JBoss (Aspects/JBoss)] - JBoss AOP libraries on www.ibiblio.com/maven/Jboss ?

2004-11-15 Thread ochorchoj
I thing it's a good idea to have AOP libraries published on 
http://www.ibiblio.org/maven. 

best regards, 



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

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


---
This SF.Net email is sponsored by: InterSystems CACHE
FREE OODBMS DOWNLOAD - A multidimensional database that combines
robust object and relational technologies, making it a perfect match
for Java, C++,COM, XML, ODBC and JDBC. www.intersystems.com/match8
___
JBoss-Development mailing list
[EMAIL PROTECTED]
https://lists.sourceforge.net/lists/listinfo/jboss-development


[JBoss-dev] [JBossCache] - Re: TreeCacheAop and default constructors

2004-11-15 Thread bela
paulvallender wrote : Hi,
  | 
  | anonymous wrote : therefore no need for Serializable either
  | In the situation where one cache is running and objects are added.  A 
second cache starts and the initial state is transferred to the second cache.  
If the objects are not Serializable then a class not serialized exception 
occurs (at least for me it does).  It seems that serialization is required to 
tranfer the initial state.  Is this true or is it something that I am doing 
wrong (I have had a look through the doc, sorry if I have missed this).
  | 
  | Many thanks.

No, Serializable is *not* required, but you need to declare all your POJO 
objects. Because we map POJOs down to their primitive types (boolean, int, 
String etc), and add those to the (superclass) TreeCache, we will by definition 
only transfer serializable types on state transfer.
If you don't declare your POJOs in jboss-aop.xml, then we fall back to 
Serializable/Externalizable, and if a non-declared POJO doesn't implement any 
of those 2 interfaces, serialization throws an exception.
State transfer is implemented in TreeCache, not TreeCacheAop.

Bela

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

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


---
This SF.Net email is sponsored by: InterSystems CACHE
FREE OODBMS DOWNLOAD - A multidimensional database that combines
robust object and relational technologies, making it a perfect match
for Java, C++,COM, XML, ODBC and JDBC. www.intersystems.com/match8
___
JBoss-Development mailing list
[EMAIL PROTECTED]
https://lists.sourceforge.net/lists/listinfo/jboss-development


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

2004-11-15 Thread qa

View results here -> http://cruisecontrol.jboss.com/cc/buildresults/jboss-head?log=log20041115052935Lbuild.440
BUILD COMPLETE-build.440Date of build:11/15/2004 05:29:35Time to build:15 minutes 33 secondsLast changed:11/15/2004 05:04:22Last log entry:updated javadoc




   Unit Tests: (0)   Total Errors and Failures: (0)
Modifications since last build:(1)1.8modifiedbelabancache/src/main/org/jboss/cache/lock/LockMap.javaupdated javadoc



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

2004-11-15 Thread sidhartha
Hi Al,
We are using the Axis classes that are bundled within JBossWS.

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

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


---
This SF.Net email is sponsored by: InterSystems CACHE
FREE OODBMS DOWNLOAD - A multidimensional database that combines
robust object and relational technologies, making it a perfect match
for Java, C++,COM, XML, ODBC and JDBC. www.intersystems.com/match8
___
JBoss-Development mailing list
[EMAIL PROTECTED]
https://lists.sourceforge.net/lists/listinfo/jboss-development


[JBoss-dev] [JBossCache] - Re: Problems with using TreeCacheAop for the first time

2004-11-15 Thread nthx

Hi!

Thanks for tip about transient log. That was the problem in JbossCache 1.1

I won't check CVS version for now. I'll wait till 2.0. And btw, when will it 
be? ~end of november?

Rgrds, Tomasz

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

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


---
This SF.Net email is sponsored by: InterSystems CACHE
FREE OODBMS DOWNLOAD - A multidimensional database that combines
robust object and relational technologies, making it a perfect match
for Java, C++,COM, XML, ODBC and JDBC. www.intersystems.com/match8
___
JBoss-Development mailing list
[EMAIL PROTECTED]
https://lists.sourceforge.net/lists/listinfo/jboss-development


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

2004-11-15 Thread qa

View results here -> http://cruisecontrol.jboss.com/cc/buildresults/jboss-4.0?log=log20041115055512Lbuild.185
BUILD COMPLETE-build.185Date of build:11/15/2004 05:55:12Time to build:23 minutes 48 secondsLast changed:11/15/2004 05:26:41Last log entry:Fix: duplicate definition of JPDA settings




   Unit Tests: (0)   Total Errors and Failures: (0)
Modifications since last build:(2)1.19.4.1modifiedtdieslersystem/src/bin/run.shFix: duplicate definition of JPDA settings1.6.4.2modifiedtdieslersystem/src/bin/run.confFix: duplicate definition of JPDA settings



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

2004-11-15 Thread qa

View results here -> http://cruisecontrol.jboss.com/cc/buildresults/jboss-head?log=log20041115071338Lbuild.441
BUILD COMPLETE-build.441Date of build:11/15/2004 07:13:38Time to build:17 minutes 13 secondsLast changed:11/15/2004 06:59:10Last log entry:lock acquisition now return true when lock was freshly acquired, and false when lock was already held




   Unit Tests: (0)   Total Errors and Failures: (0)
Modifications since last build:(4)1.52modifiedbelabancache/src/main/org/jboss/cache/Node.javalock acquisition now return true when lock was freshly acquired, and false when lock was already held1.16modifiedbelabancache/src/main/org/jboss/cache/TransactionEntry.javapp1.9modifiedbelabancache/src/main/org/jboss/cache/lock/LockMap.javadouble-check for presence before adding reader1.19modifiedbelabancache/src/main/org/jboss/cache/lock/IdentityLock.javaacquire{Read,Write}Lock() now return boolean: true if lock was not yet held, false if lock was already held



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

2004-11-15 Thread qa

View results here -> http://cruisecontrol.jboss.com/cc/buildresults/jboss-4.0?log=log20041115074707Lbuild.186
BUILD COMPLETE-build.186Date of build:11/15/2004 07:47:07Time to build:23 minutes 15 secondsLast changed:11/15/2004 07:35:28Last log entry:Fix memory leak in MetaDataRegistry




   Unit Tests: (0)   Total Errors and Failures: (0)
Modifications since last build:(16)1.13.4.3modifiedtdieslerwebservice/src/resources/META-INF/jboss-service.xmlFix memory leak in MetaDataRegistry1.35.4.8modifiedtdieslerwebservice/src/main/org/jboss/webservice/AxisService.javaFix memory leak in MetaDataRegistry1.5.4.5modifiedtdieslerwebservice/src/main/org/jboss/webservice/PortComponentInfo.javaFix memory leak in MetaDataRegistry1.20.2.3modifiedtdieslerwebservice/src/main/org/jboss/webservice/server/InvokerProvider.javaFix memory leak in MetaDataRegistry1.4.2.1modifiedtdieslerwebservice/src/main/org/jboss/webservice/server/JBossRPCInvocation.javaFix memory leak in MetaDataRegistry1.10.2.3modifiedtdieslerwebservice/src/main/org/jboss/webservice/metadata/PortComponentMetaData.javaFix memory leak in MetaDataRegistry1.1.4.1modifiedtdieslerwebservice/src/main/org/jboss/webservice/encoding/ser/MetaDataBeanDeserializer.javaFix memory leak in MetaDataRegistry1.1.4.1modifiedtdieslerwebservice/src/main/org/jboss/webservice/encoding/ser/MetaDataBeanDeserializerFactory.javaFix memory leak in MetaDataRegistry1.1.4.1modifiedtdieslerwebservice/src/main/org/jboss/webservice/encoding/ser/MetaDataBeanSerializer.javaFix memory leak in MetaDataRegistry1.2.4.1modifiedtdieslerwebservice/src/main/org/jboss/webservice/encoding/ser/MetaDataBeanSerializerFactory.javaFix memory leak in MetaDataRegistry1.6.2.3modifiedtdieslerwebservice/src/main/org/jboss/webservice/encoding/ser/MetaDataTypeDesc.javaFix memory leak in MetaDataRegistry1.2.4.2modifiedtdieslerwebservice/src/main/org/jboss/webservice/deployment/MetaDataRegistry.javaFix memory leak in MetaDataRegistry1.40.2.5modifiedtdieslerwebservice/src/main/org/jboss/webservice/deployment/ServiceDescription.javaFix memory leak in MetaDataRegistry1.8.2.6modifiedtdieslerwebservice/src/main/org/jboss/webservice/deployment/TypeMappingDescription.javaFix memory leak in MetaDataRegistry1.22.2.4modifiedtdieslerwebservice/src/main/org/jboss/webservice/deployment/WSDDGenerator.javaFix memory leak in MetaDataRegistry1.17.4.3modifiedtdieslerwebservice/src/main/org/jboss/webservice/client/ServiceImpl.javaFix memory leak in MetaDataRegistry



[JBoss-dev] [AOP on JBoss (Aspects/JBoss)] - Re: PER_INSTANCE Aspect and serialization

2004-11-15 Thread kabkhan
I will let Bill comment as to whether or not this is a design feature.

Could you use a mixin class for Externaliable and do the serialization there? 

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

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


---
This SF.Net email is sponsored by: InterSystems CACHE
FREE OODBMS DOWNLOAD - A multidimensional database that combines
robust object and relational technologies, making it a perfect match
for Java, C++,COM, XML, ODBC and JDBC. www.intersystems.com/match8
___
JBoss-Development mailing list
[EMAIL PROTECTED]
https://lists.sourceforge.net/lists/listinfo/jboss-development


[JBoss-dev] [JBossWS] - Admin GUI for JBossWS now Available!!

2004-11-15 Thread mbarton
WSABI for JBossWS provides a Java-based web application that manages Web 
services deployed via JBossWS. Built on top of Jakarta
Struts framework, WSABI offers an intuitive user interface that vastly
simplifies the management of complex JBossWS deployments.

The user interface is divided into five sections:

Handlers - Manage the named handlers
Transports - Manage transports
Globals - Manage global configuration elements
Services - Manage Web service deployments
Configuration - Manage WSABI for JBossWS configuration

The current implementation is an early alpha version that is at best
incomplete.  We invite you to help us shape the subsequent releases and
functionality of the product.

Test drive WSABI at http://demo.wsabi.org
Download the source at http://sourceforge.net/projects/wsabi4axis

Best regards,

Mike Barton


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

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


---
This SF.Net email is sponsored by: InterSystems CACHE
FREE OODBMS DOWNLOAD - A multidimensional database that combines
robust object and relational technologies, making it a perfect match
for Java, C++,COM, XML, ODBC and JDBC. www.intersystems.com/match8
___
JBoss-Development mailing list
[EMAIL PROTECTED]
https://lists.sourceforge.net/lists/listinfo/jboss-development


[JBoss-dev] [JBossCache] - Does node triggers coordinator methods?

2004-11-15 Thread nthx
Hi!

I wonder whether when asking node (invoking 'getChildren()') for some objects, 
the method is realy executed on coordinator? I suppose it doesn't :(

So what I try to achieve is to use my own persistence aspects - not CacheLoader.

The scenario is: execute 'getChildren' on slave - this triggers 'getChildren' 
on coordinator - this triggers my lazy loading aspect - returns some results 
on coordinator - cache itself transfers data to slave nodes..

Is this scenario possible with JBossCache?

Thanks in advance, Tomasz Nazar



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

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


---
This SF.Net email is sponsored by: InterSystems CACHE
FREE OODBMS DOWNLOAD - A multidimensional database that combines
robust object and relational technologies, making it a perfect match
for Java, C++,COM, XML, ODBC and JDBC. www.intersystems.com/match8
___
JBoss-Development mailing list
[EMAIL PROTECTED]
https://lists.sourceforge.net/lists/listinfo/jboss-development


[JBoss-dev] [ jboss-Feature Requests-1066679 ] CTRL-ALT-Fx keys used to changed ttys in Linux

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

Category: JBoss-IDE
Group: v4.0
Status: Open
Resolution: None
Priority: 5
Submitted By: Bruno Grieder (bgrieder)
Assigned to: Nobody/Anonymous (nobody)
Summary: CTRL-ALT-Fx keys used to changed ttys in Linux

Initial Comment:
Hi,

The shortcuts for
-Run xDoclet (Ctrl-Alt-F6)
-Run Packaging (Ctrl-Alt-F7)
-Redeploy (Ctrl-Alt-F8)

are very handy and we would actually wish there would
be a shortcut to perform at once these 3 operations in
that order (subject to sucessfull completion of the
previous one).

Unfortunately, these key combinations are used in Linux
to Change ttys.

Could we have a different mapping or - probably better
- the possibility to change the key mappings.

Thanks

Bruno

--

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


---
This SF.Net email is sponsored by: InterSystems CACHE
FREE OODBMS DOWNLOAD - A multidimensional database that combines
robust object and relational technologies, making it a perfect match
for Java, C++,COM, XML, ODBC and JDBC. www.intersystems.com/match8
___
JBoss-Development mailing list
[EMAIL PROTECTED]
https://lists.sourceforge.net/lists/listinfo/jboss-development


[JBoss-dev] [Web Services] - Admin GUI now available for JBossWS!!!

2004-11-15 Thread mbarton
WSABI for JBossWS provides a Java-based web application that manages Web 
services deployed via JBossWS. Built on top of Jakarta
Struts framework, WSABI offers an intuitive user interface that vastly
simplifies the management of complex JBossWS deployments.

The user interface is divided into five sections:

Handlers - Manage the named handlers
Transports - Manage transports
Globals - Manage global configuration elements
Services - Manage Web service deployments
Configuration - Manage WSABI for JBossWS configuration

The current implementation is an early alpha version that is at best
incomplete.  We invite you to help us shape the subsequent releases and
functionality of the product.

Test drive WSABI at http://demo.wsabi.org
Download the source at http://sourceforge.net/projects/wsabi4axis

Best regards,

Mike Barton


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

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


---
This SF.Net email is sponsored by: InterSystems CACHE
FREE OODBMS DOWNLOAD - A multidimensional database that combines
robust object and relational technologies, making it a perfect match
for Java, C++,COM, XML, ODBC and JDBC. www.intersystems.com/match8
___
JBoss-Development mailing list
[EMAIL PROTECTED]
https://lists.sourceforge.net/lists/listinfo/jboss-development


[JBoss-dev] [JBossCache] - Re: lock.TimeoutException crash the replicate-sync cluster

2004-11-15 Thread tinachen
Thanks bela and norbert:
  The problem in my code solved by catching the Exception then re-do the 
operation after another timeout-period to make sure the refreshment done in the 
remaining instances in the cluster.
   Thanks again.

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

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


---
This SF.Net email is sponsored by: InterSystems CACHE
FREE OODBMS DOWNLOAD - A multidimensional database that combines
robust object and relational technologies, making it a perfect match
for Java, C++,COM, XML, ODBC and JDBC. www.intersystems.com/match8
___
JBoss-Development mailing list
[EMAIL PROTECTED]
https://lists.sourceforge.net/lists/listinfo/jboss-development


[JBoss-dev] [JBossCache] - Re: Does node triggers coordinator methods?

2004-11-15 Thread bela
I don't understand the question.

If you want to write your own persistence layer for JBossCache, then I suggest 
to take a look at the new JBossCache 1.2 (due mid December) release, which 
includes some more aspects (a.k.a. Interceptors).
You could write one which intercepts all methods with modifications and 
persists them to DB.

Bela

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

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


---
This SF.Net email is sponsored by: InterSystems CACHE
FREE OODBMS DOWNLOAD - A multidimensional database that combines
robust object and relational technologies, making it a perfect match
for Java, C++,COM, XML, ODBC and JDBC. www.intersystems.com/match8
___
JBoss-Development mailing list
[EMAIL PROTECTED]
https://lists.sourceforge.net/lists/listinfo/jboss-development


[JBoss-dev] [JBossWS] - Re: Admin GUI for JBossWS now Available!!

2004-11-15 Thread tdiesler
Hi Mike,

from what I read at http://demo.wsabi.org WSABI has little to do with J2EE 
compatible web services provided by JBossWS. You seem to target the Axis 
project instead.

Good luck with your effort

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

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


---
This SF.Net email is sponsored by: InterSystems CACHE
FREE OODBMS DOWNLOAD - A multidimensional database that combines
robust object and relational technologies, making it a perfect match
for Java, C++,COM, XML, ODBC and JDBC. www.intersystems.com/match8
___
JBoss-Development mailing list
[EMAIL PROTECTED]
https://lists.sourceforge.net/lists/listinfo/jboss-development


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

2004-11-15 Thread qa

View results here -> http://cruisecontrol.jboss.com/cc/buildresults/jboss-head?log=log20041115085628Lbuild.442
BUILD COMPLETE-build.442Date of build:11/15/2004 08:56:28Time to build:26 minutes 36 secondsLast changed:11/15/2004 08:41:28Last log entry:Added annotation types for EJB3 callbacks




   Unit Tests: (0)   Total Errors and Failures: (0)
Modifications since last build:(12)1.1addedkabkhanejb3x/src/main/javax/ejb/PostActivate.javaAdded annotation types for EJB3 callbacks1.1addedkabkhanejb3x/src/main/javax/ejb/PostConstruct.javaAdded annotation types for EJB3 callbacks1.1addedkabkhanejb3x/src/main/javax/ejb/PostCreate.javaAdded annotation types for EJB3 callbacks1.1addedkabkhanejb3x/src/main/javax/ejb/PostLoad.javaAdded annotation types for EJB3 callbacks1.1addedkabkhanejb3x/src/main/javax/ejb/PostRemove.javaAdded annotation types for EJB3 callbacks1.1addedkabkhanejb3x/src/main/javax/ejb/PostUpdate.javaAdded annotation types for EJB3 callbacks1.1addedkabkhanejb3x/src/main/javax/ejb/PreCreate.javaAdded annotation types for EJB3 callbacks1.1addedkabkhanejb3x/src/main/javax/ejb/PreDestroy.javaAdded annotation types for EJB3 callbacks1.1addedkabkhanejb3x/src/main/javax/ejb/PrePassivate.javaAdded annotation types for EJB3 callbacks1.1addedkabkhanejb3x/src/main/javax/ejb/PreRemove.javaAdded annotation types for EJB3 callbacks1.1addedkabkhanejb3x/src/main/javax/ejb/PreUpdate.javaAdded annotation types for EJB3 callbacks1.1addedkabkhanejb3x/src/main/javax/ejb/CallbackListener.javaAdded annotation types for EJB3 callbacks



[JBoss-dev] [Nukes Development] - Nukes 2.0 urls

2004-11-15 Thread chamcha
Hi developers,
I have to implement a module for creation of user's personal web sites. The 
user's web site must be mapped on a url like this: 

www.mydomain.com/[username]

For example, the personal web site of the user 'mike' will be: 
www.mydomain.com/mike

Obviously, this may rise some conflict problem with the webapp urls, however in 
nukes 1.0 this is not a great problem (I think, am I wrong?), since modules 
urls are always of the type:

index.html?module=... 
or
/modules/...

My question is: will this  approach (www.mydomain.com/[username]) lead to 
conflict problems in nukes 2.0 ?

Thanks in advance,
Marco

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

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


---
This SF.Net email is sponsored by: InterSystems CACHE
FREE OODBMS DOWNLOAD - A multidimensional database that combines
robust object and relational technologies, making it a perfect match
for Java, C++,COM, XML, ODBC and JDBC. www.intersystems.com/match8
___
JBoss-Development mailing list
[EMAIL PROTECTED]
https://lists.sourceforge.net/lists/listinfo/jboss-development


[JBoss-dev] [AOP on JBoss (Aspects/JBoss)] - Re: PER_INSTANCE Aspect and serialization

2004-11-15 Thread Bill Burke
We'll have to add this as a configuration option.

Mixins have the ability to be serialized, but the aspects are not.

The reason for this is that you may be serializing the class across the network 
to a node that does not have an aspectized class or does not have the exact or 
different aspects deployed.

Bill

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

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


---
This SF.Net email is sponsored by: InterSystems CACHE
FREE OODBMS DOWNLOAD - A multidimensional database that combines
robust object and relational technologies, making it a perfect match
for Java, C++,COM, XML, ODBC and JDBC. www.intersystems.com/match8
___
JBoss-Development mailing list
[EMAIL PROTECTED]
https://lists.sourceforge.net/lists/listinfo/jboss-development


[JBoss-dev] [JBossCache] - Re: Does node triggers coordinator methods?

2004-11-15 Thread nthx
Yes, I want to write my own persistence layer, but let's say I want to do it 
with 1.1, because that's last stable version.


Maybe I'll repeat problem in other words:

1) I want to cache Root object which may have some children: accessed through 
'getChildren()' method.

2) I want to combine caching with lazy retrieving those data from database 
using already written persistence aspect

3) I want only coordinator node to persist (retrieve, store) data.

4) I do not want to load whole data from database as the application starts, 
but want to use lazy loading.

Problems occurs when application has started - no data loaded - and the first 
node accessing data ('Root.getChildren()')  is slave node. That's not the node 
with persistence aspect applied. This node sees 0 data, because it wasn't 
loaded by coordinator.

In other case, when the coordinator node access data first, it is loaded into 
cache and distributed also to slave nodes. After that, slave nodes see data.

There would be no problem at all, if execution of 'Root.getChildren()' would 
also trigger execution of the same method on coordinator. But this is as I 
think impossible. Looking for some way of workaround for it..

Or more in generall: how to let the coordinator know that slave wants to 
retrieve some data from underlying database, not from cache itself?


Hope it is enough.. hope for some tip 

Tomasz

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

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


---
This SF.Net email is sponsored by: InterSystems CACHE
FREE OODBMS DOWNLOAD - A multidimensional database that combines
robust object and relational technologies, making it a perfect match
for Java, C++,COM, XML, ODBC and JDBC. www.intersystems.com/match8
___
JBoss-Development mailing list
[EMAIL PROTECTED]
https://lists.sourceforge.net/lists/listinfo/jboss-development


[JBoss-dev] [Nukes Development] - Re: Nukes 2.0 urls

2004-11-15 Thread cooper
in nukes-2.0 you can implement you own style of URL if you want.

I already have done something like /blah where blah is the portal name (usefull 
when you have multiple portal per portal object container)

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

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


---
This SF.Net email is sponsored by: InterSystems CACHE
FREE OODBMS DOWNLOAD - A multidimensional database that combines
robust object and relational technologies, making it a perfect match
for Java, C++,COM, XML, ODBC and JDBC. www.intersystems.com/match8
___
JBoss-Development mailing list
[EMAIL PROTECTED]
https://lists.sourceforge.net/lists/listinfo/jboss-development


[JBoss-dev] [IIOP on JBoss] - java.lang.ClassCastException while using RMI-IIOP in test cl

2004-11-15 Thread joeri klekamp
G'day,

I'm trying to run a EJB test client via RMI-IIOP, i followed the instructions 
found on this site to override the standard invoker in the Jboss.xml file of 
the session bean I want to approach.

The lookup of the home reference is fine, e.g.
Object o = ctx.lookup(ejb/EmployeeManagerSession);

but when I try to 'narrow '
the object to the home interface I get a ClassCastException.

EmployeeManagerSessionHome intf = (EmployeeManagerSessionHome) 
PortableRemoteObject.narrow( o, EmployeeManagerSessionHome.class);


I looked a bit further and noticed that the 
  result = Utility.loadStub(narrowObj,narrowTo); function is returning 'null', 
apparently there is no stub available for my home interface. I was under the 
impresion that the server is taking care of the stub generation at deploytime, 
do I have to configure something on the server first to enable this?

I aslo ran the iiop-test from the 'testsuite', they are working fine. i tried 
to figure out what is being done differently here (comparing classpath, 
propertie files etc. ), but since this test configuration is quite complex I 
didnt manage yet, does anybody have a clue what  I am missing?

Btw, I get the foolwing excpetion each time I run my test client

java.lang.ClassCastException
at 
com.sun.corba.se.internal.javax.rmi.PortableRemoteObject.narrow(PortableRemoteObject.java:293)
at javax.rmi.PortableRemoteObject.narrow(PortableRemoteObject.java:134)
at 
nl.technolution.tpts.testapp.TestEmployeeManager.getHome(TestEmployeeManager.java:82)
at 
nl.technolution.tpts.testapp.TestEmployeeManager.setUp(TestEmployeeManager.java:92)
at junit.framework.TestCase.runBare(TestCase.java:125)
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.eclipse.jdt.internal.junit.runner.RemoteTestRunner.runTests(RemoteTestRunner.java:421)
at 
org.eclipse.jdt.internal.junit.runner.RemoteTestRunner.run(RemoteTestRunner.java:305)
at 
org.eclipse.jdt.internal.junit.runner.RemoteTestRunner.main(RemoteTestRunner.java:186)

thx in advance, Joeri Klekamp


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

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


---
This SF.Net email is sponsored by: InterSystems CACHE
FREE OODBMS DOWNLOAD - A multidimensional database that combines
robust object and relational technologies, making it a perfect match
for Java, C++,COM, XML, ODBC and JDBC. www.intersystems.com/match8
___
JBoss-Development mailing list
[EMAIL PROTECTED]
https://lists.sourceforge.net/lists/listinfo/jboss-development


[JBoss-dev] [JBossCache] - Re: TreeCacheAop and default constructors

2004-11-15 Thread paulvallender
Bela,

Thanks for the quick reply.  I thought I had declared all POJOs in that test, 
but it seems this wasn't the case (I can't reproduce the Serialisation error 
today).

Thanks,

Paul.

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

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


---
This SF.Net email is sponsored by: InterSystems CACHE
FREE OODBMS DOWNLOAD - A multidimensional database that combines
robust object and relational technologies, making it a perfect match
for Java, C++,COM, XML, ODBC and JDBC. www.intersystems.com/match8
___
JBoss-Development mailing list
[EMAIL PROTECTED]
https://lists.sourceforge.net/lists/listinfo/jboss-development


[JBoss-dev] [JBossCache] - Re: Does node triggers coordinator methods?

2004-11-15 Thread bela
I 'd write a CacheLoader. There is already an implementation of 
coordinator-only CacheLoader, SharedStoreCacheLoader (in 
org.jboss.cache.loader). Check it out,l maybe you could start of with this one, 
and make modifications

Bela

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

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


---
This SF.Net email is sponsored by: InterSystems CACHE
FREE OODBMS DOWNLOAD - A multidimensional database that combines
robust object and relational technologies, making it a perfect match
for Java, C++,COM, XML, ODBC and JDBC. www.intersystems.com/match8
___
JBoss-Development mailing list
[EMAIL PROTECTED]
https://lists.sourceforge.net/lists/listinfo/jboss-development


[JBoss-dev] [JBossWS] - Re: Admin GUI for JBossWS now Available!!

2004-11-15 Thread mbarton
Hi Thomas,

You bring up a very good point.  Yes, the project as it stands today targets 
Axis, but it was very easy to integrate JBossWS into the GUI (AxisServer is an 
MBean).  

We do plan on supporting J2EE compatible web services and realize that the 
dependency of Axis within JBossWS will be going away.  To help us down this 
path, is there any documentation for the roadmap of next generation JBossWS.  
Is there code available in a public cvs?

If there you have any specific requirements you would like to see, please add 
them into the SF project at:

http://sourceforge.net/projects/wsabi4axis/

Mike

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

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


---
This SF.Net email is sponsored by: InterSystems CACHE
FREE OODBMS DOWNLOAD - A multidimensional database that combines
robust object and relational technologies, making it a perfect match
for Java, C++,COM, XML, ODBC and JDBC. www.intersystems.com/match8
___
JBoss-Development mailing list
[EMAIL PROTECTED]
https://lists.sourceforge.net/lists/listinfo/jboss-development


[JBoss-dev] [Persistence development forum] - cmp2x jdbc2 container evolution

2004-11-15 Thread jdefelice
is there a timeline for implementing support for an optimistic timestamp 
strategy (for the jdbc2 pm)?

if not... i was thinking about taking a stab at it...  are there any *special* 
issues that i should be aware of before attempting to tackle something like 
this?

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

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


---
This SF.Net email is sponsored by: InterSystems CACHE
FREE OODBMS DOWNLOAD - A multidimensional database that combines
robust object and relational technologies, making it a perfect match
for Java, C++,COM, XML, ODBC and JDBC. www.intersystems.com/match8
___
JBoss-Development mailing list
[EMAIL PROTECTED]
https://lists.sourceforge.net/lists/listinfo/jboss-development


[JBoss-dev] [JBossWS] - Re: Admin GUI for JBossWS now Available!!

2004-11-15 Thread tdiesler
The code for the next generation JBossWS is in 
jboss-head/webservice/src/main/org/jboss/ws

There is a public JIRA project that should more or less show the current status 
and TODOs 

   http://tck1.jboss.com/jira/secure/BrowseProject.jspa?id=10050

and there are a few roadmap docs in jboss-head/webservice/docs

Soon there will be a JBossWS project home page. 

Cheers

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

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


---
This SF.Net email is sponsored by: InterSystems CACHE
FREE OODBMS DOWNLOAD - A multidimensional database that combines
robust object and relational technologies, making it a perfect match
for Java, C++,COM, XML, ODBC and JDBC. www.intersystems.com/match8
___
JBoss-Development mailing list
[EMAIL PROTECTED]
https://lists.sourceforge.net/lists/listinfo/jboss-development


[JBoss-dev] [JBossWS] - WebService porting JBoss 3.2 to 4.0

2004-11-15 Thread emcgreal
I want to port my current webservices running on 3.2 (Jboss.Net) to 4.0 so I 
followed the Duke's Bank tutorial on how to deploy on 4.0
Basically I have a stateless session bean and I want to expose it as a 
Webservice - the bean is called Bookit
Here's what I did
1. added service-endpointcom.imilia.interfaces.Bookit/service-endpoint to 
the session descriptor in ejb-jar.xml 
2. created a wsdl file from the interface (using JAVA2WSDL) and added it to the 
ear file in the WEB-INF/wsdl directory
3. created a webserices.xml file with descriptor
 webservice-description

webservice-description-nameBookitService/webservice-description-name
wsdl-fileWEB-INF/wsdl/Bookit.wsdl/wsdl-file

jaxrpc-mapping-fileWEB-INF/jaxrpc-mapping.xml/jaxrpc-mapping-file
port-component
port-component-nameBookit/port-component-name
wsdl-portBookit/wsdl-port

service-endpoint-interfacecom.imilia.bookit.interfaces.Bookit/service-endpoint-interface
service-impl-bean
ejb-linkBookit/ejb-link
/service-impl-bean
/port-component
 /webservice-description

When I deploy the ear file I get the following exceptions (Stack trace removed)

7:38:27,724 INFO  [EjbModule] Deploying Bookit
17:38:27,824 ERROR [StatelessSessionContainer] Initialization failed 
jboss.j2ee:jndiName=ejb/Bookit,service=EJB
java.lang.NoSuchMethodException: Not found in bean class: public abstract void 
javax.ejb.EJBObject.remove() throws 
java.rmi.RemoteException,javax.ejb.RemoveException

further down the cause stack I see
17:38:29,397 ERROR [ServiceDeployer] Cannot startup webservice for: Bookit.war
org.jboss.deployment.DeploymentException: Cannot find servlet-link in 
port-component: Bookit

I've tried all sorts of combinations on getting this to work - I don't have a 
seperate interface as the end point as I assume one can just expose a 
sessionless bean.
Any help would be great!

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

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


---
This SF.Net email is sponsored by: InterSystems CACHE
FREE OODBMS DOWNLOAD - A multidimensional database that combines
robust object and relational technologies, making it a perfect match
for Java, C++,COM, XML, ODBC and JDBC. www.intersystems.com/match8
___
JBoss-Development mailing list
[EMAIL PROTECTED]
https://lists.sourceforge.net/lists/listinfo/jboss-development


[JBoss-dev] [JBossCache] - Newbie: Eviction Policy question

2004-11-15 Thread thebadpete
Hi there,

I have a question about eviction policies. Am I right in assuming that if I do 
not put the EvictionPolicyClass in the configuration XML file, that means that 
the cache configured will not try to remove any cached objects by itself unless 
explicitly removed by the remove() method? 

Thanks,
 Pete

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

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


---
This SF.Net email is sponsored by: InterSystems CACHE
FREE OODBMS DOWNLOAD - A multidimensional database that combines
robust object and relational technologies, making it a perfect match
for Java, C++,COM, XML, ODBC and JDBC. www.intersystems.com/match8
___
JBoss-Development mailing list
[EMAIL PROTECTED]
https://lists.sourceforge.net/lists/listinfo/jboss-development


[JBoss-dev] [JBossWS] - Re: WebService porting JBoss 3.2 to 4.0

2004-11-15 Thread tdiesler
The service endpoint interface (SEI) is NOT the SLSB's remote interface. The 
SEI needs to extend Remote and all methods must throw RemoteException.

Why Bootkit.war? An EJB endpoint is deployed as jar.

Have a look at http://www.jboss.org/wiki/Wiki.jsp?page=WSServerEJB

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

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


---
This SF.Net email is sponsored by: InterSystems CACHE
FREE OODBMS DOWNLOAD - A multidimensional database that combines
robust object and relational technologies, making it a perfect match
for Java, C++,COM, XML, ODBC and JDBC. www.intersystems.com/match8
___
JBoss-Development mailing list
[EMAIL PROTECTED]
https://lists.sourceforge.net/lists/listinfo/jboss-development


[JBoss-dev] [JBossWS] - Re: Admin GUI for JBossWS now Available!!

2004-11-15 Thread Sacha Labourey
Hello Mike,

Why don't you contribute that to JBoss CVS, put it as part of the default 
distrib, etc.? We have started working on a management console and I am sure 
your tool would fit into it.

cheers,


sacha

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

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


---
This SF.Net email is sponsored by: InterSystems CACHE
FREE OODBMS DOWNLOAD - A multidimensional database that combines
robust object and relational technologies, making it a perfect match
for Java, C++,COM, XML, ODBC and JDBC. www.intersystems.com/match8
___
JBoss-Development mailing list
[EMAIL PROTECTED]
https://lists.sourceforge.net/lists/listinfo/jboss-development


[JBoss-dev] [JBossWS] - Where is the Wiki sectionMapping custom exceptions?

2004-11-15 Thread cglommen
Mapping custom exceptions is listed in the Wiki, but is not hyperlinked. Does 
JBoss not support custom exceptions? Where can I find guidance as to utilizing 
application thrown faults?

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

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


---
This SF.Net email is sponsored by: InterSystems CACHE
FREE OODBMS DOWNLOAD - A multidimensional database that combines
robust object and relational technologies, making it a perfect match
for Java, C++,COM, XML, ODBC and JDBC. www.intersystems.com/match8
___
JBoss-Development mailing list
[EMAIL PROTECTED]
https://lists.sourceforge.net/lists/listinfo/jboss-development


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

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

Category: JBossServer
Group: v3.2
Status: Closed
Resolution: Duplicate
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)



--

Comment By: Purush Rudrakshala (prudrakshala)
Date: 2004-11-15 18:35

Message:
Logged In: YES 
user_id=1150762

Yes. It is a duplicate of 1063025 which was deleted by 
mistake by me. The problem still exists in 3.2.6

--

Comment By: Scott M Stark (starksm)
Date: 2004-11-10 18:39

Message:
Logged In: YES 
user_id=175228

Duplicate of the out of date 1063025?

--

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


---
This SF.Net email is sponsored by: InterSystems CACHE
FREE OODBMS DOWNLOAD - A multidimensional database that combines
robust object and relational technologies, making it a perfect match
for Java, C++,COM, XML, ODBC and JDBC. www.intersystems.com/match8
___
JBoss-Development mailing list
[EMAIL PROTECTED]
https://lists.sourceforge.net/lists/listinfo/jboss-development


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

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

Category: JBossServer
Group: v3.2
Status: Open
Resolution: Duplicate
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)



--

Comment By: Purush Rudrakshala (prudrakshala)
Date: 2004-11-15 18:35

Message:
Logged In: YES 
user_id=1150762

Yes. It is a duplicate of 1063025 which was deleted by 
mistake by me. The problem still exists in 3.2.6

--

Comment By: Scott M Stark (starksm)
Date: 2004-11-10 18:39

Message:
Logged In: YES 
user_id=175228

Duplicate of the out of date 1063025?

--

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


---
This SF.Net email is sponsored by: InterSystems CACHE
FREE OODBMS DOWNLOAD - A multidimensional database that combines
robust object and relational technologies, making it a perfect match
for Java, C++,COM, XML, ODBC and JDBC. www.intersystems.com/match8
___
JBoss-Development mailing list
[EMAIL PROTECTED]
https://lists.sourceforge.net/lists/listinfo/jboss-development


[JBoss-dev] [JBossWS] - Re: WebService porting JBoss 3.2 to 4.0

2004-11-15 Thread emcgreal
Thanks - I somehow put the webservies.xml file etc in the war archive WEB-INF - 
instead of with the EJB - now I can depoy and call the webservices using 
SOAPScope but
I'm missing serializers for Beans I'm using in the webservices.  In JBoss.Net I 
had to register custom serializers in webservices.xml e.g.

I need to do something similar in jaxrpc-mapping.xml I presume?

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

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


---
This SF.Net email is sponsored by: InterSystems CACHE
FREE OODBMS DOWNLOAD - A multidimensional database that combines
robust object and relational technologies, making it a perfect match
for Java, C++,COM, XML, ODBC and JDBC. www.intersystems.com/match8
___
JBoss-Development mailing list
[EMAIL PROTECTED]
https://lists.sourceforge.net/lists/listinfo/jboss-development


[JBoss-dev] [JBossWS] - Re: WebService porting JBoss 3.2 to 4.0

2004-11-15 Thread emcgreal
sorry fogot to paste the example mapping



How do u map user-defined types in ws4ee? 


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

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


---
This SF.Net email is sponsored by: InterSystems CACHE
FREE OODBMS DOWNLOAD - A multidimensional database that combines
robust object and relational technologies, making it a perfect match
for Java, C++,COM, XML, ODBC and JDBC. www.intersystems.com/match8
___
JBoss-Development mailing list
[EMAIL PROTECTED]
https://lists.sourceforge.net/lists/listinfo/jboss-development


[JBoss-dev] [JBossWS] - Re: Admin GUI for JBossWS now Available!!

2004-11-15 Thread aveitas
Hi Sacha,

Once we understand the direction of JBossWS, then we will be in a much better 
position to discuss contributing our code to JBoss.

Is the code for the management console you mentioned available somewhere?  If 
so, can you point me to it?

Thanks,
  Mike

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

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


---
This SF.Net email is sponsored by: InterSystems CACHE
FREE OODBMS DOWNLOAD - A multidimensional database that combines
robust object and relational technologies, making it a perfect match
for Java, C++,COM, XML, ODBC and JDBC. www.intersystems.com/match8
___
JBoss-Development mailing list
[EMAIL PROTECTED]
https://lists.sourceforge.net/lists/listinfo/jboss-development


[JBoss-dev] [JBossWS] - Re: WebService porting JBoss 3.2 to 4.0

2004-11-15 Thread emcgreal
woops - seems to be a problem when I paste into the instant reply window - 
really! - the pasted text never makes it in so I guess Ill just have try again 
and type it in 



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

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


---
This SF.Net email is sponsored by: InterSystems CACHE
FREE OODBMS DOWNLOAD - A multidimensional database that combines
robust object and relational technologies, making it a perfect match
for Java, C++,COM, XML, ODBC and JDBC. www.intersystems.com/match8
___
JBoss-Development mailing list
[EMAIL PROTECTED]
https://lists.sourceforge.net/lists/listinfo/jboss-development


[JBoss-dev] [ jboss-Bugs-1066859 ] Fail to obtain type-mapping metadata

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

Category: JBossCMP
Group: v4.0
Status: Open
Resolution: None
Priority: 5
Submitted By: Jasmine (kongdy)
Assigned to: Nobody/Anonymous (nobody)
Summary: Fail to obtain type-mapping metadata

Initial Comment:
I got a fail to obtain type-mapping metadata error 
when deploying CMP.  I am using JBoss 4.0.0./Java 1.4.  
I am using mySQL database.  

My mysqldb-ds.xml in my deploy directiory looks like:

datasources
   local-tx-datasource
  jndi-nameDefaultDS/jndi-name
  connection-
urljdbc:mysql://localhost:3306/test/connection-url
  driver-classcom.mysql.jdbc.Driver/driver-class
  user-nameroot/user-name
  password/password
   /local-tx-datasource
/datasources


I have the datasource in standardjbosscmp-jdbc.xml to 
have the value java:/DefaultDS.  The datasource and 
type-mapping in standardjaws.xml have the 
values java:/DefaultDS and mySQL, respectively.


I also have the datasource and type-mapping in my own 
jbosscmp-jdbc.xml in META-INF to have the 
values DefaultDS and mySQL.

Do you know why is it complaining 
jboss.jdbc:datasource=DefaultDS, service=metadata is 
not registered?

Thanks
 


--

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


---
This SF.Net email is sponsored by: InterSystems CACHE
FREE OODBMS DOWNLOAD - A multidimensional database that combines
robust object and relational technologies, making it a perfect match
for Java, C++,COM, XML, ODBC and JDBC. www.intersystems.com/match8
___
JBoss-Development mailing list
[EMAIL PROTECTED]
https://lists.sourceforge.net/lists/listinfo/jboss-development


[JBoss-dev] [JBossWS] - Re: WebService porting JBoss 3.2 to 4.0

2004-11-15 Thread emcgreal

beanMapping qname=bookit:Request 
languageSpecificType=java:com.imilia.bookit.utils.Request

ah the parser thinks its XML! sorry for the number of replies

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

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


---
This SF.Net email is sponsored by: InterSystems CACHE
FREE OODBMS DOWNLOAD - A multidimensional database that combines
robust object and relational technologies, making it a perfect match
for Java, C++,COM, XML, ODBC and JDBC. www.intersystems.com/match8
___
JBoss-Development mailing list
[EMAIL PROTECTED]
https://lists.sourceforge.net/lists/listinfo/jboss-development


[JBoss-dev] [JBossCache] - Re: Newbie: Eviction Policy question

2004-11-15 Thread bela
that's correct

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

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


---
This SF.Net email is sponsored by: InterSystems CACHE
FREE OODBMS DOWNLOAD - A multidimensional database that combines
robust object and relational technologies, making it a perfect match
for Java, C++,COM, XML, ODBC and JDBC. www.intersystems.com/match8
___
JBoss-Development mailing list
[EMAIL PROTECTED]
https://lists.sourceforge.net/lists/listinfo/jboss-development


[JBoss-dev] [JBossWS] - Re: Admin GUI for JBossWS now Available!!

2004-11-15 Thread [EMAIL PROTECTED]
It's the ./console module, if you check-out any of the 3.2.x or 4.0.x or HEAD 
versions.


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

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


---
This SF.Net email is sponsored by: InterSystems CACHE
FREE OODBMS DOWNLOAD - A multidimensional database that combines
robust object and relational technologies, making it a perfect match
for Java, C++,COM, XML, ODBC and JDBC. www.intersystems.com/match8
___
JBoss-Development mailing list
[EMAIL PROTECTED]
https://lists.sourceforge.net/lists/listinfo/jboss-development


[JBoss-dev] [ jboss-Bugs-1066880 ] Fail to obtain type-mapping metadata

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

Category: JBossCMP
Group: v4.0
Status: Open
Resolution: None
Priority: 5
Submitted By: Jasmine (kongdy)
Assigned to: Nobody/Anonymous (nobody)
Summary: Fail to obtain type-mapping metadata

Initial Comment:
I got a fail to obtain type-mapping metadata error 
when deploying CMP.  I am using JBoss 4.0.0./Java 1.4.  
I am using mySQL database.  

My mysqldb-ds.xml in my deploy directiory looks like:

datasources
   local-tx-datasource
  jndi-nameDefaultDS/jndi-name
  connection-
urljdbc:mysql://localhost:3306/test/connection-url
  driver-classcom.mysql.jdbc.Driver/driver-class
  user-nameroot/user-name
  password/password
   /local-tx-datasource
/datasources


I have the datasource in standardjbosscmp-jdbc.xml to 
have the value java:/DefaultDS.  The datasource and 
type-mapping in standardjaws.xml have the 
values java:/DefaultDS and mySQL, respectively.


I also have the datasource and type-mapping in my own 
jbosscmp-jdbc.xml in META-INF to have the 
values DefaultDS and mySQL.

Do you know why is it complaining 
jboss.jdbc:datasource=DefaultDS, service=metadata is 
not registered?

Thanks
 


--

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


---
This SF.Net email is sponsored by: InterSystems CACHE
FREE OODBMS DOWNLOAD - A multidimensional database that combines
robust object and relational technologies, making it a perfect match
for Java, C++,COM, XML, ODBC and JDBC. www.intersystems.com/match8
___
JBoss-Development mailing list
[EMAIL PROTECTED]
https://lists.sourceforge.net/lists/listinfo/jboss-development


[JBoss-dev] [ jboss-Patches-1066895 ] Fix ServiceEndpointServlet generated urls

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

Category: JBossWS
Group: v4.0
Status: Open
Resolution: None
Priority: 5
Submitted By: Jason Greene (nihility)
Assigned to: Nobody/Anonymous (nobody)
Summary: Fix ServiceEndpointServlet generated urls

Initial Comment:
After the refactor that changed the web service name
conventions to be a unique id consisting of the
deployment and port name, the generated wsdl links on
the ServiceEndpointServlet were no longer valid. This
was the result of two problems. One, that AxisServlet
strips all slashes, and two, '#' needs to be properly
encoded.

This patch fixes these issues. Made against 4.0 branch

Thanks,
-Jason T. Greene

--

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


---
This SF.Net email is sponsored by: InterSystems CACHE
FREE OODBMS DOWNLOAD - A multidimensional database that combines
robust object and relational technologies, making it a perfect match
for Java, C++,COM, XML, ODBC and JDBC. www.intersystems.com/match8
___
JBoss-Development mailing list
[EMAIL PROTECTED]
https://lists.sourceforge.net/lists/listinfo/jboss-development


[JBoss-dev] [AOP on JBoss (Aspects/JBoss)] - Re: PER_INSTANCE Aspect and serialization

2004-11-15 Thread neil_g_avery
Thanks for the quick responses guys. I guess that might be the reason, and it 
makes the sense but as a fundamental java concept it might also make the case 
for it. 

I mean conceptually speaking this raises the question of what is an object? The 
more functionality you push to the aspects the more the functionality is 
dispersed - much akin to lateral inheritance semantics. Ill have a lookin into 
mixing functionality and see what I can make of it.

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

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


---
This SF.Net email is sponsored by: InterSystems CACHE
FREE OODBMS DOWNLOAD - A multidimensional database that combines
robust object and relational technologies, making it a perfect match
for Java, C++,COM, XML, ODBC and JDBC. www.intersystems.com/match8
___
JBoss-Development mailing list
[EMAIL PROTECTED]
https://lists.sourceforge.net/lists/listinfo/jboss-development


[JBoss-dev] [ jboss-Bugs-1066937 ] NullPointerException at commit

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

Category: JBossTX
Group: v4.0
Status: Open
Resolution: None
Priority: 5
Submitted By: Heikki Linnakangas (hlinnaka)
Assigned to: Nobody/Anonymous (nobody)
Summary: NullPointerException at commit

Initial Comment:
JBoss 4.0.0 seems to be a bit confused on the order it
calls start/end on resource managers.

I'm getting a JBossRollbackException: Unable to
commit when I try to do a two-phase commit. According
to the log, the root cause seems to be a
NullPointerException at 
org.jboss.resource.adapter.jdbc.xa.XAManagedConnection.end(XAManagedC
onnection.java:151)

At commit, the transaction manager seems call:

1. end(xid, TMSUSPEND)
2. end(xid, 0)
3. commit..

But the code at XAManagedConnection doesn't properly
handle the case when end is called when it's not
associated with any Xid.

I had a quick look at the source code, and I think the
attached patch fixes the problem. I haven't tried it
though.


--

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


---
This SF.Net email is sponsored by: InterSystems CACHE
FREE OODBMS DOWNLOAD - A multidimensional database that combines
robust object and relational technologies, making it a perfect match
for Java, C++,COM, XML, ODBC and JDBC. www.intersystems.com/match8
___
JBoss-Development mailing list
[EMAIL PROTECTED]
https://lists.sourceforge.net/lists/listinfo/jboss-development


[JBoss-dev] [ jboss-Bugs-1066937 ] NullPointerException at commit

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

Category: JBossTX
Group: v4.0
Status: Open
Resolution: None
Priority: 5
Submitted By: Heikki Linnakangas (hlinnaka)
Assigned to: Nobody/Anonymous (nobody)
Summary: NullPointerException at commit

Initial Comment:
JBoss 4.0.0 seems to be a bit confused on the order it
calls start/end on resource managers.

I'm getting a JBossRollbackException: Unable to
commit when I try to do a two-phase commit. According
to the log, the root cause seems to be a
NullPointerException at 
org.jboss.resource.adapter.jdbc.xa.XAManagedConnection.end(XAManagedC
onnection.java:151)

At commit, the transaction manager seems call:

1. end(xid, TMSUSPEND)
2. end(xid, 0)
3. commit..

But the code at XAManagedConnection doesn't properly
handle the case when end is called when it's not
associated with any Xid.

I had a quick look at the source code, and I think the
attached patch fixes the problem. I haven't tried it
though.


--

Comment By: Heikki Linnakangas (hlinnaka)
Date: 2004-11-15 23:38

Message:
Logged In: YES 
user_id=135544

Just tested this on 3.2.6. Works fine there, so this is a
regression on 4.0.0.


--

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


---
This SF.Net email is sponsored by: InterSystems CACHE
FREE OODBMS DOWNLOAD - A multidimensional database that combines
robust object and relational technologies, making it a perfect match
for Java, C++,COM, XML, ODBC and JDBC. www.intersystems.com/match8
___
JBoss-Development mailing list
[EMAIL PROTECTED]
https://lists.sourceforge.net/lists/listinfo/jboss-development


[JBoss-dev] [JBossWS] - Re: WebService porting JBoss 3.2 to 4.0

2004-11-15 Thread jasong
Most of the time, the types will map automatically.  If something does go wrong 
you may have to make a ws4ee-deployment.xml to better control the type mapping. 
For more info see the wiki  topic WSTypeMapping.

-Jason

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

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


---
This SF.Net email is sponsored by: InterSystems CACHE
FREE OODBMS DOWNLOAD - A multidimensional database that combines
robust object and relational technologies, making it a perfect match
for Java, C++,COM, XML, ODBC and JDBC. www.intersystems.com/match8
___
JBoss-Development mailing list
[EMAIL PROTECTED]
https://lists.sourceforge.net/lists/listinfo/jboss-development


[JBoss-dev] [ jboss-Bugs-1066186 ] MySqlDS not bound

2004-11-15 Thread SourceForge.net
Bugs item #1066186, was opened at 2004-11-14 17:56
Message generated for change (Comment added) made by kimerinn
You can respond by visiting: 
https://sourceforge.net/tracker/?func=detailatid=376685aid=1066186group_id=22866

Category: JBossCMP
Group: v3.2
Status: Open
Resolution: None
Priority: 5
Submitted By: Maxim (kimerinn)
Assigned to: Alexey Loubyansky (loubyansky)
Summary: MySqlDS not bound

Initial Comment:
An exception occured when I trying to use JBoss 3.2.6
with MySQL. On JBoss 3.2.5 this works.

Here is configuration:
SuSE linux 9.1 (kernel 2.6.4-52)
JRE 1.4.1, Sun Microsystems
MySQL 4.0.18-Max
MySQL JDBC driver 3.0.8

Stack trace:

15:55:11,713 ERROR [STDERR]
javax.naming.NameNotFoundException: MySqlDS not bound
15:55:11,716 ERROR [STDERR] at
org.jnp.server.NamingServer.getBinding(NamingServer.java:490)
15:55:11,716 ERROR [STDERR] at
org.jnp.server.NamingServer.getBinding(NamingServer.java:498)
15:55:11,717 ERROR [STDERR] at
org.jnp.server.NamingServer.getObject(NamingServer.java:504)
15:55:11,717 ERROR [STDERR] at
org.jnp.server.NamingServer.lookup(NamingServer.java:277)
15:55:11,717 ERROR [STDERR] at
org.jnp.interfaces.NamingContext.lookup(NamingContext.java:530)
15:55:11,718 ERROR [STDERR] at
org.jnp.interfaces.NamingContext.lookup(NamingContext.java:509)
15:55:11,718 ERROR [STDERR] at
javax.naming.InitialContext.lookup(InitialContext.java:347)
15:55:11,718 ERROR [STDERR] at
ru.narod.kimerinn.galaxy.earth.core.ServerInit.perform(ServerInit.java:52)
15:55:11,719 ERROR [STDERR] at
org.jboss.varia.scheduler.Scheduler$Listener.handleNotification(Scheduler.java:1222)
15:55:11,719 ERROR [STDERR] at
sun.reflect.GeneratedMethodAccessor5.invoke(Unknown Source)
15:55:11,719 ERROR [STDERR] at
sun.reflect.DelegatingMethodAccessorImpl.invoke(DelegatingMethodAccessorImpl.java:25)
15:55:11,720 ERROR [STDERR] at
java.lang.reflect.Method.invoke(Method.java:324)
15:55:11,720 ERROR [STDERR] at
org.jboss.mx.notification.NotificationListenerProxy.invoke(NotificationListenerProxy.java:138)
15:55:11,720 ERROR [STDERR] at
$Proxy9.handleNotification(Unknown Source)
15:55:11,721 ERROR [STDERR] at
javax.management.NotificationBroadcasterSupport.handleNotification(NotificationBroadcasterSupport.java:104)
15:55:11,721 ERROR [STDERR] at
javax.management.NotificationBroadcasterSupport.sendNotification(NotificationBroadcasterSupport.java:87)
15:55:11,721 ERROR [STDERR] at
javax.management.timer.Timer.sendNotifications(Timer.java:442)
15:55:11,722 ERROR [STDERR] at
javax.management.timer.Timer.access$000(Timer.java:31)
15:55:11,722 ERROR [STDERR] at
javax.management.timer.Timer$RegisteredNotification.doRun(Timer.java:613)
15:55:11,723 ERROR [STDERR] at
org.jboss.mx.util.SchedulableRunnable.run(SchedulableRunnable.java:164)
15:55:11,723 ERROR [STDERR] at
org.jboss.mx.util.ThreadPool$Worker.run(ThreadPool.java:240)


--

Comment By: Maxim (kimerinn)
Date: 2004-11-15 23:54

Message:
Logged In: YES 
user_id=500469

I have explored this problem and here is new info.
In fact, cmp-engine is not a source of troubles. Troubles
are in deployment order - it is changed from JBoss 3.2.5 to
3.2.6.
For unknown reason class
org.jboss.deployment.DeploymentSorter now deploys file
mysql-ds.xml after file scheduler-service.xml. In
scheduler-service.xml here is invocation of MySqlDs
datasource, and now this invocation happened before
datasource is deployed.
Anyway, server log is attached.


--

Comment By: Alexey Loubyansky (loubyansky)
Date: 2004-11-14 18:30

Message:
Logged In: YES 
user_id=543482

Have you tried user forums first?
Show your -ds.xml file and log for deploying MySql datasource.

--

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


---
This SF.Net email is sponsored by: InterSystems CACHE
FREE OODBMS DOWNLOAD - A multidimensional database that combines
robust object and relational technologies, making it a perfect match
for Java, C++,COM, XML, ODBC and JDBC. www.intersystems.com/match8
___
JBoss-Development mailing list
[EMAIL PROTECTED]
https://lists.sourceforge.net/lists/listinfo/jboss-development


[JBoss-dev] [JBossWS] - Re: Where is the Wiki section

2004-11-15 Thread jasong
Custom exception support have been fixed in 4.0.1 (soon to be released).  
Custom exceptions are used in the same way that custom beans are used. The only 
difference is that a constructor is searched for (instead of an accessor 
method) since java does not expose acesss to the exception message. All you 
have to do is create a custom exception, and make sure that you have a 
constructor for all values in your exception, as well as get methods.

An important thing to note is that wscompile is not very good about generating 
the correct order of the arguments. Which means that your constructor may be 
called with the arguments in the wrong order. If this occurs you will need to 
refer to a 
href=http://www.jboss.org/wiki/Wiki.jsp?page=WSTypeMappingWSTypeMapping  in 
the wiki to create a ws4ee-deployment.xml file which controls the order. 

From my observations, it appears that wscompile generates its wsdl in 
subclass-superclass, type, name order. 

-Jason

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

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


---
This SF.Net email is sponsored by: InterSystems CACHE
FREE OODBMS DOWNLOAD - A multidimensional database that combines
robust object and relational technologies, making it a perfect match
for Java, C++,COM, XML, ODBC and JDBC. www.intersystems.com/match8
___
JBoss-Development mailing list
[EMAIL PROTECTED]
https://lists.sourceforge.net/lists/listinfo/jboss-development


[JBoss-dev] [JBossWS] - EJB endpoint authentication and authorization REVISITED

2004-11-15 Thread cglommen
I have read the Wiki (http://www.jboss.org/wiki/Wiki.jsp?page=WSSecureEndpoint) 
on securing a service endpoint, and I am quite disturbed. Does this mean only 
JBoss clients can access secured web services session beans? 

I really would like to know how to achieve a secure webservice session bean 
using basic HTTP authentication over ssl. Any ideas how to achieve this using 
JBoss?

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

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


---
This SF.Net email is sponsored by: InterSystems CACHE
FREE OODBMS DOWNLOAD - A multidimensional database that combines
robust object and relational technologies, making it a perfect match
for Java, C++,COM, XML, ODBC and JDBC. www.intersystems.com/match8
___
JBoss-Development mailing list
[EMAIL PROTECTED]
https://lists.sourceforge.net/lists/listinfo/jboss-development


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

2004-11-15 Thread qa

View results here -> http://cruisecontrol.jboss.com/cc/buildresults/jboss-head?log=log20041115160002Lbuild.443
BUILD COMPLETE-build.443Date of build:11/15/2004 16:00:02Time to build:22 minutes 38 secondsLast changed:11/15/2004 14:51:09Last log entry:Reformatted code and added to build for distro and examples.




   Unit Tests: (0)   Total Errors and Failures: (0)
Modifications since last build:(45)1.25modifiedtelrodremoting/build.xmlReformatted code and added to build for distro and examples.1.2modifiedtelrodremoting/tests/src/org/jboss/samples/simple/SimpleClient.javaReformatted code and added to build for distro and examples.1.2modifiedtelrodremoting/tests/src/org/jboss/samples/simple/SimpleServer.javaReformatted code and added to build for distro and examples.1.2modifiedtelrodremoting/tests/src/org/jboss/samples/detection/SimpleDetectorClient.javaReformatted code and added to build for distro and examples.1.2modifiedtelrodremoting/tests/src/org/jboss/samples/detection/SimpleDetectorServer.javaReformatted code and added to build for distro and examples.1.2modifiedtelrodremoting/tests/src/org/jboss/samples/callback/CallbackClient.javaReformatted code and added to build for distro and examples.1.2modifiedtelrodremoting/tests/src/org/jboss/samples/callback/CallbackServer.javaReformatted code and added to build for distro and examples.1.2modifiedtelrodremoting/tests/src/org/jboss/remoting/AbstractInvokerTest.javaReformatted code and added to build for distro and examples.1.2modifiedtelrodremoting/tests/src/org/jboss/remoting/ComplexReturn.javaReformatted code and added to build for distro and examples.1.2modifiedtelrodremoting/tests/src/org/jboss/remoting/transport/socket/InvokerClientTest.javaReformatted code and added to build for distro and examples.1.2modifiedtelrodremoting/tests/src/org/jboss/remoting/transport/socket/InvokerServerTest.javaReformatted code and added to build for distro and examples.1.2modifiedtelrodremoting/tests/src/org/jboss/remoting/transport/socket/InvokerTestCase.javaReformatted code and added to build for distro and examples.1.2modifiedtelrodremoting/tests/src/org/jboss/remoting/transport/rmi/RMIInvokerClientTest.javaReformatted code and added to build for distro and examples.1.2modifiedtelrodremoting/tests/src/org/jboss/remoting/transport/rmi/RMIInvokerServerTest.javaReformatted code and added to build for distro and examples.1.2modifiedtelrodremoting/tests/src/org/jboss/remoting/transport/rmi/RMIInvokerTestCase.javaReformatted code and added to build for distro and examples.1.2modifiedtelrodremoting/tests/src/org/jboss/remoting/transport/mock/MockInvokerCallbackHandler.javaReformatted code and added to build for distro and examples.1.2modifiedtelrodremoting/tests/src/org/jboss/remoting/transport/mock/MockServerInvocationHandler.javaReformatted code and added to build for distro and examples.1.2modifiedtelrodremoting/tests/src/org/jboss/remoting/transport/local/LocalInvocationTestCase.javaReformatted code and added to build for distro and examples.1.2modifiedtelrodremoting/tests/src/org/jboss/remoting/transport/local/LocalInvokerTestCase.javaReformatted code and added to build for distro and examples.1.2modifiedtelrodremoting/tests/src/org/jboss/remoting/transport/http/HTTPInvokerClientTestCase.javaReformatted code and added to build for distro and examples.1.2modifiedtelrodremoting/tests/src/org/jboss/remoting/performance/ClientOnewayInvocationTest.javaReformatted code and added to build for distro and examples.1.2modifiedtelrodremoting/tests/src/org/jboss/remoting/performance/OnewayTest.javaReformatted code and added to build for distro and examples.1.2modifiedtelrodremoting/tests/src/org/jboss/remoting/performance/ServerOnewayInvocationTest.javaReformatted code and added to build for distro and examples.1.2modifiedtelrodremoting/tests/src/org/jboss/remoting/performance/TestServerInvocationHandler.javaReformatted code and added to build for distro and examples.1.2modifiedtelrodremoting/tests/src/org/jboss/remoting/marshall/serializable/SerializableMarshallingTestCase.javaReformatted code and added to build for distro and examples.1.2modifiedtelrodremoting/tests/src/org/jboss/remoting/oneway/OnewayInvokerClientTest.javaReformatted code and added to build for distro and examples.1.2modifiedtelrodremoting/tests/src/org/jboss/remoting/oneway/OnewayInvokerServerTest.javaReformatted code and added to build for distro and examples.1.2modifiedtelrodremoting/tests/src/org/jboss/remoting/oneway/OnewayInvokerTestCase.javaReformatted code and added to build for distro and examples.1.2modifiedtelrodremoting/tests/src/org/jboss/remoting/interceptor/ClientInterceptorTest.javaReformatted code and added to build for distro and examples.1.2modifiedtelrodremoting/tests/src/org/jboss/remoting/interceptor/InterceptorTestCase.javaReformatted code and added to build for 

[JBoss-dev] [ jboss-Bugs-1066186 ] MySqlDS not bound

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

Category: JBossCMP
Group: v3.2
Status: Open
Resolution: None
Priority: 5
Submitted By: Maxim (kimerinn)
Assigned to: Thomas Diesler (tdiesler)
Summary: MySqlDS not bound

Initial Comment:
An exception occured when I trying to use JBoss 3.2.6
with MySQL. On JBoss 3.2.5 this works.

Here is configuration:
SuSE linux 9.1 (kernel 2.6.4-52)
JRE 1.4.1, Sun Microsystems
MySQL 4.0.18-Max
MySQL JDBC driver 3.0.8

Stack trace:

15:55:11,713 ERROR [STDERR]
javax.naming.NameNotFoundException: MySqlDS not bound
15:55:11,716 ERROR [STDERR] at
org.jnp.server.NamingServer.getBinding(NamingServer.java:490)
15:55:11,716 ERROR [STDERR] at
org.jnp.server.NamingServer.getBinding(NamingServer.java:498)
15:55:11,717 ERROR [STDERR] at
org.jnp.server.NamingServer.getObject(NamingServer.java:504)
15:55:11,717 ERROR [STDERR] at
org.jnp.server.NamingServer.lookup(NamingServer.java:277)
15:55:11,717 ERROR [STDERR] at
org.jnp.interfaces.NamingContext.lookup(NamingContext.java:530)
15:55:11,718 ERROR [STDERR] at
org.jnp.interfaces.NamingContext.lookup(NamingContext.java:509)
15:55:11,718 ERROR [STDERR] at
javax.naming.InitialContext.lookup(InitialContext.java:347)
15:55:11,718 ERROR [STDERR] at
ru.narod.kimerinn.galaxy.earth.core.ServerInit.perform(ServerInit.java:52)
15:55:11,719 ERROR [STDERR] at
org.jboss.varia.scheduler.Scheduler$Listener.handleNotification(Scheduler.java:1222)
15:55:11,719 ERROR [STDERR] at
sun.reflect.GeneratedMethodAccessor5.invoke(Unknown Source)
15:55:11,719 ERROR [STDERR] at
sun.reflect.DelegatingMethodAccessorImpl.invoke(DelegatingMethodAccessorImpl.java:25)
15:55:11,720 ERROR [STDERR] at
java.lang.reflect.Method.invoke(Method.java:324)
15:55:11,720 ERROR [STDERR] at
org.jboss.mx.notification.NotificationListenerProxy.invoke(NotificationListenerProxy.java:138)
15:55:11,720 ERROR [STDERR] at
$Proxy9.handleNotification(Unknown Source)
15:55:11,721 ERROR [STDERR] at
javax.management.NotificationBroadcasterSupport.handleNotification(NotificationBroadcasterSupport.java:104)
15:55:11,721 ERROR [STDERR] at
javax.management.NotificationBroadcasterSupport.sendNotification(NotificationBroadcasterSupport.java:87)
15:55:11,721 ERROR [STDERR] at
javax.management.timer.Timer.sendNotifications(Timer.java:442)
15:55:11,722 ERROR [STDERR] at
javax.management.timer.Timer.access$000(Timer.java:31)
15:55:11,722 ERROR [STDERR] at
javax.management.timer.Timer$RegisteredNotification.doRun(Timer.java:613)
15:55:11,723 ERROR [STDERR] at
org.jboss.mx.util.SchedulableRunnable.run(SchedulableRunnable.java:164)
15:55:11,723 ERROR [STDERR] at
org.jboss.mx.util.ThreadPool$Worker.run(ThreadPool.java:240)


--

Comment By: Maxim (kimerinn)
Date: 2004-11-15 21:54

Message:
Logged In: YES 
user_id=500469

I have explored this problem and here is new info.
In fact, cmp-engine is not a source of troubles. Troubles
are in deployment order - it is changed from JBoss 3.2.5 to
3.2.6.
For unknown reason class
org.jboss.deployment.DeploymentSorter now deploys file
mysql-ds.xml after file scheduler-service.xml. In
scheduler-service.xml here is invocation of MySqlDs
datasource, and now this invocation happened before
datasource is deployed.
Anyway, server log is attached.


--

Comment By: Alexey Loubyansky (loubyansky)
Date: 2004-11-14 16:30

Message:
Logged In: YES 
user_id=543482

Have you tried user forums first?
Show your -ds.xml file and log for deploying MySql datasource.

--

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


---
This SF.Net email is sponsored by: InterSystems CACHE
FREE OODBMS DOWNLOAD - A multidimensional database that combines
robust object and relational technologies, making it a perfect match
for Java, C++,COM, XML, ODBC and JDBC. www.intersystems.com/match8
___
JBoss-Development mailing list
[EMAIL PROTECTED]
https://lists.sourceforge.net/lists/listinfo/jboss-development


[JBoss-dev] [ jboss-Bugs-1066186 ] MySqlDS not bound

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

Category: JBossCMP
Group: v3.2
Status: Open
Resolution: None
Priority: 5
Submitted By: Maxim (kimerinn)
Assigned to: Alexey Loubyansky (loubyansky)
Summary: MySqlDS not bound

Initial Comment:
An exception occured when I trying to use JBoss 3.2.6
with MySQL. On JBoss 3.2.5 this works.

Here is configuration:
SuSE linux 9.1 (kernel 2.6.4-52)
JRE 1.4.1, Sun Microsystems
MySQL 4.0.18-Max
MySQL JDBC driver 3.0.8

Stack trace:

15:55:11,713 ERROR [STDERR]
javax.naming.NameNotFoundException: MySqlDS not bound
15:55:11,716 ERROR [STDERR] at
org.jnp.server.NamingServer.getBinding(NamingServer.java:490)
15:55:11,716 ERROR [STDERR] at
org.jnp.server.NamingServer.getBinding(NamingServer.java:498)
15:55:11,717 ERROR [STDERR] at
org.jnp.server.NamingServer.getObject(NamingServer.java:504)
15:55:11,717 ERROR [STDERR] at
org.jnp.server.NamingServer.lookup(NamingServer.java:277)
15:55:11,717 ERROR [STDERR] at
org.jnp.interfaces.NamingContext.lookup(NamingContext.java:530)
15:55:11,718 ERROR [STDERR] at
org.jnp.interfaces.NamingContext.lookup(NamingContext.java:509)
15:55:11,718 ERROR [STDERR] at
javax.naming.InitialContext.lookup(InitialContext.java:347)
15:55:11,718 ERROR [STDERR] at
ru.narod.kimerinn.galaxy.earth.core.ServerInit.perform(ServerInit.java:52)
15:55:11,719 ERROR [STDERR] at
org.jboss.varia.scheduler.Scheduler$Listener.handleNotification(Scheduler.java:1222)
15:55:11,719 ERROR [STDERR] at
sun.reflect.GeneratedMethodAccessor5.invoke(Unknown Source)
15:55:11,719 ERROR [STDERR] at
sun.reflect.DelegatingMethodAccessorImpl.invoke(DelegatingMethodAccessorImpl.java:25)
15:55:11,720 ERROR [STDERR] at
java.lang.reflect.Method.invoke(Method.java:324)
15:55:11,720 ERROR [STDERR] at
org.jboss.mx.notification.NotificationListenerProxy.invoke(NotificationListenerProxy.java:138)
15:55:11,720 ERROR [STDERR] at
$Proxy9.handleNotification(Unknown Source)
15:55:11,721 ERROR [STDERR] at
javax.management.NotificationBroadcasterSupport.handleNotification(NotificationBroadcasterSupport.java:104)
15:55:11,721 ERROR [STDERR] at
javax.management.NotificationBroadcasterSupport.sendNotification(NotificationBroadcasterSupport.java:87)
15:55:11,721 ERROR [STDERR] at
javax.management.timer.Timer.sendNotifications(Timer.java:442)
15:55:11,722 ERROR [STDERR] at
javax.management.timer.Timer.access$000(Timer.java:31)
15:55:11,722 ERROR [STDERR] at
javax.management.timer.Timer$RegisteredNotification.doRun(Timer.java:613)
15:55:11,723 ERROR [STDERR] at
org.jboss.mx.util.SchedulableRunnable.run(SchedulableRunnable.java:164)
15:55:11,723 ERROR [STDERR] at
org.jboss.mx.util.ThreadPool$Worker.run(ThreadPool.java:240)


--

Comment By: Maxim (kimerinn)
Date: 2004-11-15 21:54

Message:
Logged In: YES 
user_id=500469

I have explored this problem and here is new info.
In fact, cmp-engine is not a source of troubles. Troubles
are in deployment order - it is changed from JBoss 3.2.5 to
3.2.6.
For unknown reason class
org.jboss.deployment.DeploymentSorter now deploys file
mysql-ds.xml after file scheduler-service.xml. In
scheduler-service.xml here is invocation of MySqlDs
datasource, and now this invocation happened before
datasource is deployed.
Anyway, server log is attached.


--

Comment By: Alexey Loubyansky (loubyansky)
Date: 2004-11-14 16:30

Message:
Logged In: YES 
user_id=543482

Have you tried user forums first?
Show your -ds.xml file and log for deploying MySql datasource.

--

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


---
This SF.Net email is sponsored by: InterSystems CACHE
FREE OODBMS DOWNLOAD - A multidimensional database that combines
robust object and relational technologies, making it a perfect match
for Java, C++,COM, XML, ODBC and JDBC. www.intersystems.com/match8
___
JBoss-Development mailing list
[EMAIL PROTECTED]
https://lists.sourceforge.net/lists/listinfo/jboss-development


[JBoss-dev] [JBossWS] - Re: EJB endpoint authentication and authorization REVISITED

2004-11-15 Thread jasong
To enable basic auth you just add auth-method to your jboss.xml file. To 
require ssl you set transport-guarantee to CONFIDENTIAL. Take a look at the 
jboss 4 dtd for more info. 

For example: 


  | port-component
  |  port-component-nameMySecureEJBServiceEndpoint/port-component-name
  |  port-uri/MySecureEJBServiceEnpoint/port-uri
  |  auth-methodBASIC/auth-method
  |  transport-guaranteeCONFIDENTIAL/transport-guarantee
  | /port-component
  | 

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

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


---
This SF.Net email is sponsored by: InterSystems CACHE
FREE OODBMS DOWNLOAD - A multidimensional database that combines
robust object and relational technologies, making it a perfect match
for Java, C++,COM, XML, ODBC and JDBC. www.intersystems.com/match8
___
JBoss-Development mailing list
[EMAIL PROTECTED]
https://lists.sourceforge.net/lists/listinfo/jboss-development


[JBoss-dev] [JBossWS] - Re: EJB endpoint authentication and authorization REVISITED

2004-11-15 Thread cglommen
Thanks for the quick reply. I do have another question. How do I take into 
account parameter based security?

Consider the following hypothetical scenerio

I have a service that provides a access to a set of bools, a library service if 
you will. Anyone can gain access to the webservice, but only authors can modify 
books, but only their books. I understand how to prevent/allow access to the 
write-functions. But, how do I handle the webservice security for the which 
books actually are accessible to the author? The call to Book[] 
getAllBooksForEdit() would need to hook into the security module and make 
this business-specific access call. 

How is this best achieved?

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

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


---
This SF.Net email is sponsored by: InterSystems CACHE
FREE OODBMS DOWNLOAD - A multidimensional database that combines
robust object and relational technologies, making it a perfect match
for Java, C++,COM, XML, ODBC and JDBC. www.intersystems.com/match8
___
JBoss-Development mailing list
[EMAIL PROTECTED]
https://lists.sourceforge.net/lists/listinfo/jboss-development


[JBoss-dev] [JBossWS] - Re: EJB endpoint authentication and authorization REVISITED

2004-11-15 Thread jasong
I added this information to the wiki. Thanks for noticing.



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

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


---
This SF.Net email is sponsored by: InterSystems CACHE
FREE OODBMS DOWNLOAD - A multidimensional database that combines
robust object and relational technologies, making it a perfect match
for Java, C++,COM, XML, ODBC and JDBC. www.intersystems.com/match8
___
JBoss-Development mailing list
[EMAIL PROTECTED]
https://lists.sourceforge.net/lists/listinfo/jboss-development


[JBoss-dev] [JBossWS] - Re: EJB endpoint authentication and authorization REVISITED

2004-11-15 Thread jasong
When you are using EJB endpoints the authentication is just being passed to the 
standard J2EE principal/role based security system.  So if you wanted to 
programatically make decessions the J2EE role/princiapal system exposes two 
methods, both on the EJBContext object: isCallerInRole(), and getPrincipal(). 
isCallerInRole() requires special security-role-ref tags to be made for every 
role you wish to test. getPrincipal() will return the username that was passed 
in the HTTP basic authentication.

-Jason

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

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


---
This SF.Net email is sponsored by: InterSystems CACHE
FREE OODBMS DOWNLOAD - A multidimensional database that combines
robust object and relational technologies, making it a perfect match
for Java, C++,COM, XML, ODBC and JDBC. www.intersystems.com/match8
___
JBoss-Development mailing list
[EMAIL PROTECTED]
https://lists.sourceforge.net/lists/listinfo/jboss-development


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

2004-11-15 Thread qa

View results here -> http://cruisecontrol.jboss.com/cc/buildresults/jboss-head?log=log20041115173914Lbuild.444
BUILD COMPLETE-build.444Date of build:11/15/2004 17:39:14Time to build:15 minutes 37 secondsLast changed:11/15/2004 16:21:36Last log entry:Added remoting 1.0.1 alpha release pdf.




   Unit Tests: (0)   Total Errors and Failures: (0)
Modifications since last build:(2)1.1addedtelrodremoting/docs/jboss_remoting.pdfAdded remoting 1.0.1 alpha release pdf.1.3modifiedtelrodremoting/tests/src/org/jboss/remoting/detection/jndi/JNDIDetectorTest2.javaMake inner class public.



[JBoss-dev] [JBossWS] - Re: Where is the Wiki section

2004-11-15 Thread cglommen
Thanks for the reply. Could you be more specific on how I create/utilize custom 
faults? Or where to find such information?

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

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


---
This SF.Net email is sponsored by: InterSystems CACHE
FREE OODBMS DOWNLOAD - A multidimensional database that combines
robust object and relational technologies, making it a perfect match
for Java, C++,COM, XML, ODBC and JDBC. www.intersystems.com/match8
___
JBoss-Development mailing list
[EMAIL PROTECTED]
https://lists.sourceforge.net/lists/listinfo/jboss-development


[JBoss-dev] [ jboss-Bugs-1041495 ] bad path to included xsd gets built in WSDLFilePublisher

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

Category: JBossWeb
Group: v4.0
Status: Open
Resolution: None
Priority: 5
Submitted By: John Mazz (mazzgolf)
Assigned to: Anil Saldhana (osdchicago)
Summary: bad path to included xsd gets built in WSDLFilePublisher

Initial Comment:
Problem when deploying a web service whose WSDL 
imports/includes other WSDL/schemas.

See attached for a simple hello.war that illustrates this 
problem. To replicate, simply place the war file in the 
JBoss deploy directory and start.

I don't think this has anything to do with platforms, but 
just in case - this is on JBoss 4.0, JDK 1.4.2, Windows 
XP SP1.

Description:

My web service WSDL imports another WSDL which in 
turn includes a schema (these are WSRF specification 
files).

It looks like WSDLFilePublisher is not building the path 
correctly to that included schema. It's missing a / in 
one spot and has a double slash // in another spot. 

While debugging in WSDLFilePublisher, line 206 results in 
this as value for resourcePath: 

WEB-INF/wsdl//services/../spec/wsrfWS-
ResourceProperties-1_1.xsd 

Note that there is a / missing between the last 
directory wsrf and the schema filename WS-
ResourceProperties-1_1.xsd. There is also a double 
slash // in there as well.  The double-slash is probably 
OK and most file systems will parse it fine, however, 
obviously the missing slash is going to cause problems 
(which it does on my box).

The value of this.expLocation was WEB-INF/wsdl/ and 
the value of schemaLocation was WS-
ResourceProperties-1_1.xsd. baseURI had a value 
of file:/C:/mazz/jboss/jboss-
4.0.0/server/default/data/wsdl/jboss-
wsdm.war/services/../spec/wsrf/WS-ResourceProperties-
1_1.wsdl. this.di.shortName is jboss-wsdm.war. index 
is 57. All of those values are correct.

The WSDL includes the .xsd like this: 

wsd:typesxsd:schema 
xsd:include schemaLocation=WS-ResourceProperties-
1_1.xsd/ 
... 

The resulting exception is (which is actually thrown in 
line 210): 

16:13:24,774 ERROR [ServiceDeployer] Cannot startup 
webservice for: jboss-wsdm.war 
org.jboss.deployment.DeploymentException: Cannot 
publish wsdl to: C:\mazz\jboss\jboss-4.0.0
\server\default\data\wsdl\jboss-
wsdm.war\services\sensor.wsdl; - nested throwable: 
(java.lang.IllegalArgumentException: Cannot find schema 
import in 
deployment: WEB-INF/wsdl//services/../spec/wsrfWS-
ResourceProperties-1_1.xsd) 
at 
org.jboss.webservice.WSDLFilePublisher.publishWsdlFile
(WSDLFilePublisher.java:106)

If, in my debugger, I fix the resourcePath evaluated on 
line 205 such that the path has the proper slashes, my 
web service deploys fine.

In this example, its as if I made this fix on line 205 of 
WSDLFilePublisher.java

from:

   resourcePath = resourcePath.substring(0, 
resourcePath.lastIndexOf(/));

to:

   resourcePath = resourcePath.substring(1, 
resourcePath.lastIndexOf(/) + 1);

Obviously, it would be best if no assumptions were made 
about the location of / (that is to say, don't assume 
resourcePath has a leading / - I do above and hence 
the 1 in the first argument to substring).  Probably 
would be better if we do something like this for the first 
parameter to that substring:

resourcePath.charAt(0) == / ? 1 : 0

Same holds true with that second argument.  We should 
not do the +1 if we know the schemaLocation is an 
absolute path.  Otherwise, we'd introduce another 
double slash.  So, perhaps, line 205 should be the 
following:

   resourcePath = resourcePath.substring
(resourcePath.chatAt(0) == / ? 1 : 0, 
resourcePath.lastIndexOf(/) + (schemaLocation.charAt
(0) == / ? 0 : 1));

I'll leave it up to the commiter to decide the best course 
of action.

John Mazz

--

Comment By: Thomas Diesler (tdiesler)
Date: 2004-11-14 13:22

Message:
Logged In: YES 
user_id=423364

Anil, when you look at this please make sure you run the 
webservices/wsdlImport CTS tests. They already contain 120 
tests that deal with imports and includes in various 
combinations. Currently they all pass.

--

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


---
This SF.Net email is sponsored by: InterSystems CACHE
FREE OODBMS DOWNLOAD - A multidimensional database that combines
robust object and relational technologies, making it a perfect match
for Java, C++,COM, XML, ODBC and JDBC. www.intersystems.com/match8
___
JBoss-Development mailing list
[EMAIL PROTECTED]
https://lists.sourceforge.net/lists/listinfo/jboss-development


[JBoss-dev] [ jboss-Bugs-1041622 ] invalid schemaLocation generated for imported schema

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

Category: None
Group: None
Status: Open
Resolution: None
Priority: 5
Submitted By: John Mazz (mazzgolf)
Assigned to: Anil Saldhana (osdchicago)
Summary: invalid schemaLocation generated for imported schema

Initial Comment:
Somewhat related to 1041495 - see that issue for the 
hello.war attachment - the same war used to replicate 
the problem in that issue is the same war that can be 
used to replicate the problem for this issue.  Same 
platforms as well were used to replicate.

JBoss performs the cool feature of auto-modifying a web 
service's WSDLs (including its imported/included WSDLs 
and schemas).

However, in one instance that modification produces a 
URL that does not point to the resource - I get a HTTP 
500 instead.

Deploy the hello.war (rather than duplicate 
attachments, see issue 1041495 for the attachment 
there).  This assumes issue 1041495 has been corrected 
or worked around (I worked around it by fixing issue 
1041495 inside a JPDA session and continuing).

Once the web service is deployed, look at the hello 
service's WSDL.  You will see an import of another WSDL 
(this is correct):

wsdl:import location=/hello/hello/?
wsdlresource=../spec/wsrf/WS-ResourceProperties-
1_1.wsdl ...

If you point your browser to that location, you can see 
that WS-ResourceProperties-1_1.wsdl file.  Looking at 
that WSDL, you will notice that it, itself, imports 
another file - this time a .xsd schema inside its 
wsdl:types/wsd:schema element:

wsdl:import namespace=... 
schemaLocation=/hello/hello?
wsdlresource=../../wsa/WS-Addressing-2003_03.xsd

That schemaLocation is incorrect - if you point your 
browser to that URL, you will get a HTTP 500 and the 
JBoss logs tells me cannot obtain wsdl resource from: 
WEB-INF/wsdl/wsa/WS-Addressing-2003_03.xsd.

Notice the .. appears twice - I _think_ that is 
incorrect.  I think it only needs to go up to the 
immediate parent directory only - it should not have 
gone up twice to its grandparent directory.  This wsa 
directory is located as a peer directory to wsmf (under 
the spec parent - just like the WS-ResouceProperties-
1_1.wsdl is under wsrf which is under spec).

I think it should be:

schemaLocation=/hello/hello?wsdlresource=../wsa/WS-
Addressing-2003_03.xsd

However, when I put that URL in my browser, I still did 
not get the .xsd served up - I again got a 500.  Funny 
thing is that the JBoss error log says it was still looking 
for WEB-INF/wsdl/wsa/WS-Addressing-2003_03.xsd - 
the same relative path it told me when I used the ../.. 
form.  Using just ../ to go up one level instead of two 
didn't change the relative path JBoss was looking for.

I did not have a chance to debug this to find out how to 
fix this - I just noticed that I was unable to get to 
that .xsd file from my browser (so, therefore, I assume 
any client of this web service will not be able to 
successfully parse its WSDL due to the inability to have 
the server serve up this schema).



--

Comment By: John Mazz (mazzgolf)
Date: 2004-10-06 17:42

Message:
Logged In: YES 
user_id=1134120

This URL is one that JBoss likes - if I use this URL in my 
browser, I get that addressing schema .xsd file served up 
successfully to the browser:

/hello/hello?wsdlresource=../spec/wsa/WS-Addressing-
2003_03.xsd

That's a URL that could have been generated in the imported 
WS-ResourceProperties-1_1.wsdl as mentioned in my first 
post.  I don't know what ../.. is relative to so I don't know 
where JBoss went wrong in building that schemaLocation 
attribute.  Hopefully, the info I have provided is enough info 
to fix this.

--

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


---
This SF.Net email is sponsored by: InterSystems CACHE
FREE OODBMS DOWNLOAD - A multidimensional database that combines
robust object and relational technologies, making it a perfect match
for Java, C++,COM, XML, ODBC and JDBC. www.intersystems.com/match8
___
JBoss-Development mailing list
[EMAIL PROTECTED]
https://lists.sourceforge.net/lists/listinfo/jboss-development


[JBoss-dev] [ jboss-Bugs-1041622 ] invalid schemaLocation generated for imported schema

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

Category: None
Group: None
Status: Open
Resolution: None
Priority: 5
Submitted By: John Mazz (mazzgolf)
Assigned to: Anil Saldhana (osdchicago)
Summary: invalid schemaLocation generated for imported schema

Initial Comment:
Somewhat related to 1041495 - see that issue for the 
hello.war attachment - the same war used to replicate 
the problem in that issue is the same war that can be 
used to replicate the problem for this issue.  Same 
platforms as well were used to replicate.

JBoss performs the cool feature of auto-modifying a web 
service's WSDLs (including its imported/included WSDLs 
and schemas).

However, in one instance that modification produces a 
URL that does not point to the resource - I get a HTTP 
500 instead.

Deploy the hello.war (rather than duplicate 
attachments, see issue 1041495 for the attachment 
there).  This assumes issue 1041495 has been corrected 
or worked around (I worked around it by fixing issue 
1041495 inside a JPDA session and continuing).

Once the web service is deployed, look at the hello 
service's WSDL.  You will see an import of another WSDL 
(this is correct):

wsdl:import location=/hello/hello/?
wsdlresource=../spec/wsrf/WS-ResourceProperties-
1_1.wsdl ...

If you point your browser to that location, you can see 
that WS-ResourceProperties-1_1.wsdl file.  Looking at 
that WSDL, you will notice that it, itself, imports 
another file - this time a .xsd schema inside its 
wsdl:types/wsd:schema element:

wsdl:import namespace=... 
schemaLocation=/hello/hello?
wsdlresource=../../wsa/WS-Addressing-2003_03.xsd

That schemaLocation is incorrect - if you point your 
browser to that URL, you will get a HTTP 500 and the 
JBoss logs tells me cannot obtain wsdl resource from: 
WEB-INF/wsdl/wsa/WS-Addressing-2003_03.xsd.

Notice the .. appears twice - I _think_ that is 
incorrect.  I think it only needs to go up to the 
immediate parent directory only - it should not have 
gone up twice to its grandparent directory.  This wsa 
directory is located as a peer directory to wsmf (under 
the spec parent - just like the WS-ResouceProperties-
1_1.wsdl is under wsrf which is under spec).

I think it should be:

schemaLocation=/hello/hello?wsdlresource=../wsa/WS-
Addressing-2003_03.xsd

However, when I put that URL in my browser, I still did 
not get the .xsd served up - I again got a 500.  Funny 
thing is that the JBoss error log says it was still looking 
for WEB-INF/wsdl/wsa/WS-Addressing-2003_03.xsd - 
the same relative path it told me when I used the ../.. 
form.  Using just ../ to go up one level instead of two 
didn't change the relative path JBoss was looking for.

I did not have a chance to debug this to find out how to 
fix this - I just noticed that I was unable to get to 
that .xsd file from my browser (so, therefore, I assume 
any client of this web service will not be able to 
successfully parse its WSDL due to the inability to have 
the server serve up this schema).



--

Comment By: Anil Saldhana (osdchicago)
Date: 2004-11-15 18:34

Message:
Logged In: YES 
user_id=768753

I made a small fix for  1041495.   That problem goes away. 
 For this case, I cannot recreate whatever John is mentioning.

I placed the hello.war in  default./deploy  directory.  The
webservice gets deployed in http://localhost:8080/hello/hello

Now how do I check  the wsdl that John is talking about.

Can you give me the exact url from where to start in the
browser?

--

Comment By: John Mazz (mazzgolf)
Date: 2004-10-06 12:42

Message:
Logged In: YES 
user_id=1134120

This URL is one that JBoss likes - if I use this URL in my 
browser, I get that addressing schema .xsd file served up 
successfully to the browser:

/hello/hello?wsdlresource=../spec/wsa/WS-Addressing-
2003_03.xsd

That's a URL that could have been generated in the imported 
WS-ResourceProperties-1_1.wsdl as mentioned in my first 
post.  I don't know what ../.. is relative to so I don't know 
where JBoss went wrong in building that schemaLocation 
attribute.  Hopefully, the info I have provided is enough info 
to fix this.

--

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


---
This SF.Net email is sponsored by: InterSystems CACHE
FREE OODBMS DOWNLOAD - A multidimensional database that combines
robust object and relational technologies, making it a perfect match
for Java, C++,COM, XML, ODBC and JDBC. www.intersystems.com/match8
___
JBoss-Development 

[JBoss-dev] [ jboss-Bugs-1041622 ] invalid schemaLocation generated for imported schema

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

Category: None
Group: v4.0
Status: Open
Resolution: None
Priority: 5
Submitted By: John Mazz (mazzgolf)
Assigned to: Anil Saldhana (osdchicago)
Summary: invalid schemaLocation generated for imported schema

Initial Comment:
Somewhat related to 1041495 - see that issue for the 
hello.war attachment - the same war used to replicate 
the problem in that issue is the same war that can be 
used to replicate the problem for this issue.  Same 
platforms as well were used to replicate.

JBoss performs the cool feature of auto-modifying a web 
service's WSDLs (including its imported/included WSDLs 
and schemas).

However, in one instance that modification produces a 
URL that does not point to the resource - I get a HTTP 
500 instead.

Deploy the hello.war (rather than duplicate 
attachments, see issue 1041495 for the attachment 
there).  This assumes issue 1041495 has been corrected 
or worked around (I worked around it by fixing issue 
1041495 inside a JPDA session and continuing).

Once the web service is deployed, look at the hello 
service's WSDL.  You will see an import of another WSDL 
(this is correct):

wsdl:import location=/hello/hello/?
wsdlresource=../spec/wsrf/WS-ResourceProperties-
1_1.wsdl ...

If you point your browser to that location, you can see 
that WS-ResourceProperties-1_1.wsdl file.  Looking at 
that WSDL, you will notice that it, itself, imports 
another file - this time a .xsd schema inside its 
wsdl:types/wsd:schema element:

wsdl:import namespace=... 
schemaLocation=/hello/hello?
wsdlresource=../../wsa/WS-Addressing-2003_03.xsd

That schemaLocation is incorrect - if you point your 
browser to that URL, you will get a HTTP 500 and the 
JBoss logs tells me cannot obtain wsdl resource from: 
WEB-INF/wsdl/wsa/WS-Addressing-2003_03.xsd.

Notice the .. appears twice - I _think_ that is 
incorrect.  I think it only needs to go up to the 
immediate parent directory only - it should not have 
gone up twice to its grandparent directory.  This wsa 
directory is located as a peer directory to wsmf (under 
the spec parent - just like the WS-ResouceProperties-
1_1.wsdl is under wsrf which is under spec).

I think it should be:

schemaLocation=/hello/hello?wsdlresource=../wsa/WS-
Addressing-2003_03.xsd

However, when I put that URL in my browser, I still did 
not get the .xsd served up - I again got a 500.  Funny 
thing is that the JBoss error log says it was still looking 
for WEB-INF/wsdl/wsa/WS-Addressing-2003_03.xsd - 
the same relative path it told me when I used the ../.. 
form.  Using just ../ to go up one level instead of two 
didn't change the relative path JBoss was looking for.

I did not have a chance to debug this to find out how to 
fix this - I just noticed that I was unable to get to 
that .xsd file from my browser (so, therefore, I assume 
any client of this web service will not be able to 
successfully parse its WSDL due to the inability to have 
the server serve up this schema).



--

Comment By: Anil Saldhana (osdchicago)
Date: 2004-11-15 18:34

Message:
Logged In: YES 
user_id=768753

I made a small fix for  1041495.   That problem goes away. 
 For this case, I cannot recreate whatever John is mentioning.

I placed the hello.war in  default./deploy  directory.  The
webservice gets deployed in http://localhost:8080/hello/hello

Now how do I check  the wsdl that John is talking about.

Can you give me the exact url from where to start in the
browser?

--

Comment By: John Mazz (mazzgolf)
Date: 2004-10-06 12:42

Message:
Logged In: YES 
user_id=1134120

This URL is one that JBoss likes - if I use this URL in my 
browser, I get that addressing schema .xsd file served up 
successfully to the browser:

/hello/hello?wsdlresource=../spec/wsa/WS-Addressing-
2003_03.xsd

That's a URL that could have been generated in the imported 
WS-ResourceProperties-1_1.wsdl as mentioned in my first 
post.  I don't know what ../.. is relative to so I don't know 
where JBoss went wrong in building that schemaLocation 
attribute.  Hopefully, the info I have provided is enough info 
to fix this.

--

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


---
This SF.Net email is sponsored by: InterSystems CACHE
FREE OODBMS DOWNLOAD - A multidimensional database that combines
robust object and relational technologies, making it a perfect match
for Java, C++,COM, XML, ODBC and JDBC. www.intersystems.com/match8
___
JBoss-Development 

[JBoss-dev] [JBossWS] - Re: EJB endpoint authentication and authorization REVISITED

2004-11-15 Thread cglommen
So can I use BASIC authentication with a custom security interceptor? If so, 
how is  this done? 

And finally, where do I find documentation on SecurityProxy?

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

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


---
This SF.Net email is sponsored by: InterSystems CACHE
FREE OODBMS DOWNLOAD - A multidimensional database that combines
robust object and relational technologies, making it a perfect match
for Java, C++,COM, XML, ODBC and JDBC. www.intersystems.com/match8
___
JBoss-Development mailing list
[EMAIL PROTECTED]
https://lists.sourceforge.net/lists/listinfo/jboss-development


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

2004-11-15 Thread qa

View results here -> http://cruisecontrol.jboss.com/cc/buildresults/jboss-4.0?log=log20041115190024Lbuild.187
BUILD COMPLETE-build.187Date of build:11/15/2004 19:00:24Time to build:28 minutes 53 secondsLast changed:11/15/2004 18:51:01Last log entry:Bug Fix:[ 1041495 ] bad path to included xsd gets built in WSDLFilePublisher




   Unit Tests: (0)   Total Errors and Failures: (0)
Modifications since last build:(1)1.6.2.3modifiedosdchicagowebservice/src/main/org/jboss/webservice/WSDLFilePublisher.javaBug Fix:[ 1041495 ] bad path to included xsd gets built in WSDLFilePublisher



[JBoss-dev] [JBossWS] - Re: Where is the Wiki section

2004-11-15 Thread tdiesler
If you are familiar with CVS, check out jboss-4.0 Branch_4_0. 

cd testsuite
ant
ant tests-webservice

You will see a test case for custom exceptions.

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

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


---
This SF.Net email is sponsored by: InterSystems CACHE
FREE OODBMS DOWNLOAD - A multidimensional database that combines
robust object and relational technologies, making it a perfect match
for Java, C++,COM, XML, ODBC and JDBC. www.intersystems.com/match8
___
JBoss-Development mailing list
[EMAIL PROTECTED]
https://lists.sourceforge.net/lists/listinfo/jboss-development


[JBoss-dev] [AOP on JBoss (Aspects/JBoss)] - Re: how to change the arguments of a method by AOP?

2004-11-15 Thread huqiao
the following error message occure:

[aopc] BUILD FAILED: 
The  task doesn't support the nested sysproperty element.

[EMAIL PROTECTED]

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

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


---
This SF.Net email is sponsored by: InterSystems CACHE
FREE OODBMS DOWNLOAD - A multidimensional database that combines
robust object and relational technologies, making it a perfect match
for Java, C++,COM, XML, ODBC and JDBC. www.intersystems.com/match8
___
JBoss-Development mailing list
[EMAIL PROTECTED]
https://lists.sourceforge.net/lists/listinfo/jboss-development


[JBoss-dev] JBoss hanging problem...

2004-11-15 Thread Michael Burbidge
When I startup JBoss 3.2.6 at some point I start getting the following 
messages:

17:34:17,563 WARN  [ClientGmsImpl] handleJoin(dhcp222-69:49239) failed, 
retrying

Over and over. It appears to be hung. If I try to shut it down it does 
a certain amount of shutdown and then hangs printing out the same 
message. I've tried completely reinstalling from the zip file and still 
get the message. It was working fine for me until I switch from 
ethernet to wireless without shutting down jboss. It printed out a lots 
of errors, which I unfortunately don't have anymore. Ever since then I 
cannot get it running again.

Is there some lock files, caches or something outside the root jboss 
folder that I can delete to get jboss working again?


---
This SF.Net email is sponsored by: InterSystems CACHE
FREE OODBMS DOWNLOAD - A multidimensional database that combines
robust object and relational technologies, making it a perfect match
for Java, C++,COM, XML, ODBC and JDBC. www.intersystems.com/match8
___
JBoss-Development mailing list
[EMAIL PROTECTED]
https://lists.sourceforge.net/lists/listinfo/jboss-development


[JBoss-dev] jboss-head-jdk-matrix build.11 Build Successful

2004-11-15 Thread qa

View results here -> http://cruisecontrol.jboss.com/cc/buildresults/jboss-head-jdk-matrix?log=log20041115211908Lbuild.11
BUILD COMPLETE-build.11Date of build:11/15/2004 21:19:08Time to build:22 minutes 54 secondsLast changed:11/15/2004 16:21:36Last log entry:Added remoting 1.0.1 alpha release pdf.




   Unit Tests: (0)   Total Errors and Failures: (0)
Modifications since last build:(67)1.1addedtelrodremoting/docs/jboss_remoting.pdfAdded remoting 1.0.1 alpha release pdf.1.3modifiedtelrodremoting/tests/src/org/jboss/remoting/detection/jndi/JNDIDetectorTest2.javaMake inner class public.1.25modifiedtelrodremoting/build.xmlReformatted code and added to build for distro and examples.1.2modifiedtelrodremoting/tests/src/org/jboss/samples/simple/SimpleClient.javaReformatted code and added to build for distro and examples.1.2modifiedtelrodremoting/tests/src/org/jboss/samples/simple/SimpleServer.javaReformatted code and added to build for distro and examples.1.2modifiedtelrodremoting/tests/src/org/jboss/samples/detection/SimpleDetectorClient.javaReformatted code and added to build for distro and examples.1.2modifiedtelrodremoting/tests/src/org/jboss/samples/detection/SimpleDetectorServer.javaReformatted code and added to build for distro and examples.1.2modifiedtelrodremoting/tests/src/org/jboss/samples/callback/CallbackClient.javaReformatted code and added to build for distro and examples.1.2modifiedtelrodremoting/tests/src/org/jboss/samples/callback/CallbackServer.javaReformatted code and added to build for distro and examples.1.2modifiedtelrodremoting/tests/src/org/jboss/remoting/AbstractInvokerTest.javaReformatted code and added to build for distro and examples.1.2modifiedtelrodremoting/tests/src/org/jboss/remoting/ComplexReturn.javaReformatted code and added to build for distro and examples.1.2modifiedtelrodremoting/tests/src/org/jboss/remoting/transport/socket/InvokerClientTest.javaReformatted code and added to build for distro and examples.1.2modifiedtelrodremoting/tests/src/org/jboss/remoting/transport/socket/InvokerServerTest.javaReformatted code and added to build for distro and examples.1.2modifiedtelrodremoting/tests/src/org/jboss/remoting/transport/socket/InvokerTestCase.javaReformatted code and added to build for distro and examples.1.2modifiedtelrodremoting/tests/src/org/jboss/remoting/transport/rmi/RMIInvokerClientTest.javaReformatted code and added to build for distro and examples.1.2modifiedtelrodremoting/tests/src/org/jboss/remoting/transport/rmi/RMIInvokerServerTest.javaReformatted code and added to build for distro and examples.1.2modifiedtelrodremoting/tests/src/org/jboss/remoting/transport/rmi/RMIInvokerTestCase.javaReformatted code and added to build for distro and examples.1.2modifiedtelrodremoting/tests/src/org/jboss/remoting/transport/mock/MockInvokerCallbackHandler.javaReformatted code and added to build for distro and examples.1.2modifiedtelrodremoting/tests/src/org/jboss/remoting/transport/mock/MockServerInvocationHandler.javaReformatted code and added to build for distro and examples.1.2modifiedtelrodremoting/tests/src/org/jboss/remoting/transport/local/LocalInvocationTestCase.javaReformatted code and added to build for distro and examples.1.2modifiedtelrodremoting/tests/src/org/jboss/remoting/transport/local/LocalInvokerTestCase.javaReformatted code and added to build for distro and examples.1.2modifiedtelrodremoting/tests/src/org/jboss/remoting/transport/http/HTTPInvokerClientTestCase.javaReformatted code and added to build for distro and examples.1.2modifiedtelrodremoting/tests/src/org/jboss/remoting/performance/ClientOnewayInvocationTest.javaReformatted code and added to build for distro and examples.1.2modifiedtelrodremoting/tests/src/org/jboss/remoting/performance/OnewayTest.javaReformatted code and added to build for distro and examples.1.2modifiedtelrodremoting/tests/src/org/jboss/remoting/performance/ServerOnewayInvocationTest.javaReformatted code and added to build for distro and examples.1.2modifiedtelrodremoting/tests/src/org/jboss/remoting/performance/TestServerInvocationHandler.javaReformatted code and added to build for distro and examples.1.2modifiedtelrodremoting/tests/src/org/jboss/remoting/marshall/serializable/SerializableMarshallingTestCase.javaReformatted code and added to build for distro and examples.1.2modifiedtelrodremoting/tests/src/org/jboss/remoting/oneway/OnewayInvokerClientTest.javaReformatted code and added to build for distro and examples.1.2modifiedtelrodremoting/tests/src/org/jboss/remoting/oneway/OnewayInvokerServerTest.javaReformatted code and added to build for distro and examples.1.2modifiedtelrodremoting/tests/src/org/jboss/remoting/oneway/OnewayInvokerTestCase.javaReformatted code and added to build for distro and 

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

2004-11-15 Thread qa

View results here -> http://cruisecontrol.jboss.com/cc/buildresults/jboss-3.2?log=log20041115220934Lbuild.181
BUILD COMPLETE-build.181Date of build:11/15/2004 22:09:34Time to build:16 minutes 2 secondsLast changed:11/15/2004 21:58:27Last log entry:Eclipse build fixes (again).Thomas, don't copy the .classpath from jboss-head into jboss-3.2 it hasa different thirdparty structure.




   Unit Tests: (0)   Total Errors and Failures: (0)
Modifications since last build:(15)1.7.2.6modifiedejortconsole/.classpathEclipse build fixes (again).Thomas, don't copy the .classpath from jboss-head into jboss-3.2 it hasa different thirdparty structure.1.6.2.7modifiedejorttestsuite/.classpathEclipse build fixes (again).Thomas, don't copy the .classpath from jboss-head into jboss-3.2 it hasa different thirdparty structure.1.4.2.10modifiedejortjboss.net/.classpathEclipse build fixes (again).Thomas, don't copy the .classpath from jboss-head into jboss-3.2 it hasa different thirdparty structure.1.1.1.1.2.3modifiedejortjaxrpc/.classpathEclipse build fixes (again).Thomas, don't copy the .classpath from jboss-head into jboss-3.2 it hasa different thirdparty structure.1.8.2.9modifiedejortvaria/.classpathEclipse build fixes (again).Thomas, don't copy the .classpath from jboss-head into jboss-3.2 it hasa different thirdparty structure.1.1.2.1modifiedejortmessaging/src/main/org/jboss/mq/MessageStatistics.javaMake the message history parameter work during the configuration phase.Add a MessageStatistics object that is serializable, i.e. useable outside the JBoss JVM.1.2.2.7modifiedejortmessaging/src/main/org/jboss/mq/server/jmx/DestinationMBean.javaMake the message history parameter work during the configuration phase.Add a MessageStatistics object that is serializable, i.e. useable outside the JBoss JVM.1.3.2.10modifiedejortmessaging/src/main/org/jboss/mq/server/jmx/DestinationMBeanSupport.javaMake the message history parameter work during the configuration phase.Add a MessageStatistics object that is serializable, i.e. useable outside the JBoss JVM.1.3.2.7modifiedejortmessaging/src/main/org/jboss/mq/server/jmx/Queue.javaMake the message history parameter work during the configuration phase.Add a MessageStatistics object that is serializable, i.e. useable outside the JBoss JVM.1.4.2.13modifiedejortmessaging/src/main/org/jboss/mq/server/jmx/DestinationManager.javaMake the message history parameter work during the configuration phase.Add a MessageStatistics object that is serializable, i.e. useable outside the JBoss JVM.1.3.2.7modifiedejortmessaging/src/main/org/jboss/mq/server/jmx/Topic.javaMake the message history parameter work during the configuration phase.Add a MessageStatistics object that is serializable, i.e. useable outside the JBoss JVM.1.1.2.6modifiedejortmessaging/src/main/org/jboss/mq/server/BasicQueueParameters.javaMake the message history parameter work during the configuration phase.Add a MessageStatistics object that is serializable, i.e. useable outside the JBoss JVM.1.12.2.13modifiedejortmessaging/src/main/org/jboss/mq/server/JMSQueue.javaMake the message history parameter work during the configuration phase.Add a MessageStatistics object that is serializable, i.e. useable outside the JBoss JVM.1.17.2.21modifiedejortmessaging/src/main/org/jboss/mq/server/JMSTopic.javaMake the message history parameter work during the configuration phase.Add a MessageStatistics object that is serializable, i.e. useable outside the JBoss JVM.1.1.2.7modifiedejortmessaging/src/main/org/jboss/mq/server/MessageCounter.javaMake the message history parameter work during the configuration phase.Add a MessageStatistics object that is serializable, i.e. useable outside the JBoss JVM.



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

2004-11-15 Thread qa

View results here -> http://cruisecontrol.jboss.com/cc/buildresults/jboss-4.0-jdk-matrix?log=log20041115235310Lbuild.15
BUILD COMPLETE-build.15Date of build:11/15/2004 23:53:10Time to build:27 minutes 32 secondsLast changed:11/15/2004 23:44:01Last log entry:Eclipse build fix




   Unit Tests: (0)   Total Errors and Failures: (0)
Modifications since last build:(37)1.15.6.1modifiedejortconsole/.classpathEclipse build fix1.24.2.2modifiedejorttestsuite/.classpathEclipse build fix1.15.4.1modifiedejortserver/.classpathEclipse build fix1.3.2.1modifiedejorthibernate/.classpathEclipse build fix1.6.2.2modifiedejortbuild/eclipse.psfEclipse build fix1.17.2.3modifiedejortvaria/.classpathEclipse build fix1.4.6.1modifiedejortmessaging/src/etc/server/default/deploy/jbossmq-destinations-service.xmlPort jms stats improvements from 3.21.1.4.1modifiedejortmessaging/src/main/org/jboss/mq/MessageStatistics.javaPort jms stats improvements from 3.21.7.4.1modifiedejortmessaging/src/main/org/jboss/mq/server/jmx/DestinationMBean.javaPort jms stats improvements from 3.21.10.4.1modifiedejortmessaging/src/main/org/jboss/mq/server/jmx/DestinationMBeanSupport.javaPort jms stats improvements from 3.21.13.4.1modifiedejortmessaging/src/main/org/jboss/mq/server/jmx/DestinationManager.javaPort jms stats improvements from 3.21.10.4.1modifiedejortmessaging/src/main/org/jboss/mq/server/jmx/Queue.javaPort jms stats improvements from 3.21.11.4.1modifiedejortmessaging/src/main/org/jboss/mq/server/jmx/Topic.javaPort jms stats improvements from 3.21.4.4.1modifiedejortmessaging/src/main/org/jboss/mq/server/BasicQueueParameters.javaPort jms stats improvements from 3.21.21.6.1modifiedejortmessaging/src/main/org/jboss/mq/server/JMSQueue.javaPort jms stats improvements from 3.21.30.4.2modifiedejortmessaging/src/main/org/jboss/mq/server/JMSTopic.javaPort jms stats improvements from 3.21.4.6.2modifiedejortmessaging/src/main/org/jboss/mq/server/MessageCounter.javaPort jms stats improvements from 3.21.6.2.3modifiedosdchicagowebservice/src/main/org/jboss/webservice/WSDLFilePublisher.javaBug Fix:[ 1041495 ] bad path to included xsd gets built in WSDLFilePublisher1.13.4.3modifiedtdieslerwebservice/src/resources/META-INF/jboss-service.xmlFix memory leak in MetaDataRegistry1.35.4.8modifiedtdieslerwebservice/src/main/org/jboss/webservice/AxisService.javaFix memory leak in MetaDataRegistry1.5.4.5modifiedtdieslerwebservice/src/main/org/jboss/webservice/PortComponentInfo.javaFix memory leak in MetaDataRegistry1.20.2.3modifiedtdieslerwebservice/src/main/org/jboss/webservice/server/InvokerProvider.javaFix memory leak in MetaDataRegistry1.4.2.1modifiedtdieslerwebservice/src/main/org/jboss/webservice/server/JBossRPCInvocation.javaFix memory leak in MetaDataRegistry1.10.2.3modifiedtdieslerwebservice/src/main/org/jboss/webservice/metadata/PortComponentMetaData.javaFix memory leak in MetaDataRegistry1.1.4.1modifiedtdieslerwebservice/src/main/org/jboss/webservice/encoding/ser/MetaDataBeanDeserializer.javaFix memory leak in MetaDataRegistry1.1.4.1modifiedtdieslerwebservice/src/main/org/jboss/webservice/encoding/ser/MetaDataBeanDeserializerFactory.javaFix memory leak in MetaDataRegistry1.1.4.1modifiedtdieslerwebservice/src/main/org/jboss/webservice/encoding/ser/MetaDataBeanSerializer.javaFix memory leak in MetaDataRegistry1.2.4.1modifiedtdieslerwebservice/src/main/org/jboss/webservice/encoding/ser/MetaDataBeanSerializerFactory.javaFix memory leak in MetaDataRegistry1.6.2.3modifiedtdieslerwebservice/src/main/org/jboss/webservice/encoding/ser/MetaDataTypeDesc.javaFix memory leak in MetaDataRegistry1.2.4.2modifiedtdieslerwebservice/src/main/org/jboss/webservice/deployment/MetaDataRegistry.javaFix memory leak in MetaDataRegistry1.40.2.5modifiedtdieslerwebservice/src/main/org/jboss/webservice/deployment/ServiceDescription.javaFix memory leak in MetaDataRegistry1.8.2.6modifiedtdieslerwebservice/src/main/org/jboss/webservice/deployment/TypeMappingDescription.javaFix memory leak in MetaDataRegistry1.22.2.4modifiedtdieslerwebservice/src/main/org/jboss/webservice/deployment/WSDDGenerator.javaFix memory leak in MetaDataRegistry1.17.4.3modifiedtdieslerwebservice/src/main/org/jboss/webservice/client/ServiceImpl.javaFix memory leak in MetaDataRegistry1.19.4.1modifiedtdieslersystem/src/bin/run.shFix: duplicate definition of JPDA settings1.6.4.2modifiedtdieslersystem/src/bin/run.confFix: duplicate definition of JPDA settings1.35.4.7modifiedtdieslerwebservice/src/main/org/jboss/webservice/AxisService.javaFix service name in undeploy script



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

2004-11-15 Thread qa

View results here -> http://cruisecontrol.jboss.com/cc/buildresults/jboss-head?log=log20041116002452Lbuild.445
BUILD COMPLETE-build.445Date of build:11/16/2004 00:24:52Time to build:15 minutes 33 secondsLast changed:11/16/2004 00:10:44Last log entry:Port jms stat improvements from 3.2




   Unit Tests: (0)   Total Errors and Failures: (0)
Modifications since last build:(11)1.5modifiedejortmessaging/src/etc/server/default/deploy/jbossmq-destinations-service.xmlPort jms stat improvements from 3.21.2modifiedejortmessaging/src/main/org/jboss/mq/MessageStatistics.javaPort jms stat improvements from 3.21.8modifiedejortmessaging/src/main/org/jboss/mq/server/jmx/DestinationMBean.javaPort jms stat improvements from 3.21.11modifiedejortmessaging/src/main/org/jboss/mq/server/jmx/DestinationMBeanSupport.javaPort jms stat improvements from 3.21.14modifiedejortmessaging/src/main/org/jboss/mq/server/jmx/DestinationManager.javaPort jms stat improvements from 3.21.11modifiedejortmessaging/src/main/org/jboss/mq/server/jmx/Queue.javaPort jms stat improvements from 3.21.12modifiedejortmessaging/src/main/org/jboss/mq/server/jmx/Topic.javaPort jms stat improvements from 3.21.5modifiedejortmessaging/src/main/org/jboss/mq/server/BasicQueueParameters.javaPort jms stat improvements from 3.21.22modifiedejortmessaging/src/main/org/jboss/mq/server/JMSQueue.javaPort jms stat improvements from 3.21.32modifiedejortmessaging/src/main/org/jboss/mq/server/JMSTopic.javaPort jms stat improvements from 3.21.6modifiedejortmessaging/src/main/org/jboss/mq/server/MessageCounter.javaPort jms stat improvements from 3.2



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

2004-11-15 Thread qa

View results here -> http://cruisecontrol.jboss.com/cc/buildresults/jboss-4.0?log=log20041116005207Lbuild.188
BUILD COMPLETE-build.188Date of build:11/16/2004 00:52:07Time to build:18 minutes 40 secondsLast changed:11/15/2004 23:44:01Last log entry:Eclipse build fix




   Unit Tests: (0)   Total Errors and Failures: (0)
Modifications since last build:(17)1.15.6.1modifiedejortconsole/.classpathEclipse build fix1.24.2.2modifiedejorttestsuite/.classpathEclipse build fix1.15.4.1modifiedejortserver/.classpathEclipse build fix1.3.2.1modifiedejorthibernate/.classpathEclipse build fix1.6.2.2modifiedejortbuild/eclipse.psfEclipse build fix1.17.2.3modifiedejortvaria/.classpathEclipse build fix1.4.6.1modifiedejortmessaging/src/etc/server/default/deploy/jbossmq-destinations-service.xmlPort jms stats improvements from 3.21.1.4.1modifiedejortmessaging/src/main/org/jboss/mq/MessageStatistics.javaPort jms stats improvements from 3.21.7.4.1modifiedejortmessaging/src/main/org/jboss/mq/server/jmx/DestinationMBean.javaPort jms stats improvements from 3.21.10.4.1modifiedejortmessaging/src/main/org/jboss/mq/server/jmx/DestinationMBeanSupport.javaPort jms stats improvements from 3.21.13.4.1modifiedejortmessaging/src/main/org/jboss/mq/server/jmx/DestinationManager.javaPort jms stats improvements from 3.21.10.4.1modifiedejortmessaging/src/main/org/jboss/mq/server/jmx/Queue.javaPort jms stats improvements from 3.21.11.4.1modifiedejortmessaging/src/main/org/jboss/mq/server/jmx/Topic.javaPort jms stats improvements from 3.21.4.4.1modifiedejortmessaging/src/main/org/jboss/mq/server/BasicQueueParameters.javaPort jms stats improvements from 3.21.21.6.1modifiedejortmessaging/src/main/org/jboss/mq/server/JMSQueue.javaPort jms stats improvements from 3.21.30.4.2modifiedejortmessaging/src/main/org/jboss/mq/server/JMSTopic.javaPort jms stats improvements from 3.21.4.6.2modifiedejortmessaging/src/main/org/jboss/mq/server/MessageCounter.javaPort jms stats improvements from 3.2



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

2004-11-15 Thread qa

View results here -> http://cruisecontrol.jboss.com/cc/buildresults/jboss-3.2-testsuite?log=log20041116011606
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/16/2004 01:16:06Time to build:15 minutes 36 secondsLast changed:11/15/2004 21:58:27Last log entry:Eclipse build fixes (again).Thomas, don't copy the .classpath from jboss-head into jboss-3.2 it hasa different thirdparty structure.




   Unit Tests: (0)   Total Errors and Failures: (0)
Modifications since last build:(20)1.7.2.6modifiedejortconsole/.classpathEclipse build fixes (again).Thomas, don't copy the .classpath from jboss-head into jboss-3.2 it hasa different thirdparty structure.1.6.2.7modifiedejorttestsuite/.classpathEclipse build fixes (again).Thomas, don't copy the .classpath from jboss-head into jboss-3.2 it hasa different thirdparty structure.1.4.2.10modifiedejortjboss.net/.classpathEclipse build fixes (again).Thomas, don't copy the .classpath from jboss-head into jboss-3.2 it hasa different thirdparty structure.1.1.1.1.2.3modifiedejortjaxrpc/.classpathEclipse build fixes (again).Thomas, don't copy the .classpath from jboss-head into jboss-3.2 it hasa different thirdparty structure.1.8.2.9modifiedejortvaria/.classpathEclipse build fixes (again).Thomas, don't copy the .classpath from jboss-head into jboss-3.2 it hasa different thirdparty structure.1.1.2.1modifiedejortmessaging/src/main/org/jboss/mq/MessageStatistics.javaMake the message history parameter work during the configuration phase.Add a MessageStatistics object that is serializable, i.e. useable outside the JBoss JVM.1.2.2.7modifiedejortmessaging/src/main/org/jboss/mq/server/jmx/DestinationMBean.javaMake the message history parameter work during the configuration phase.Add a MessageStatistics object that is serializable, i.e. useable outside the JBoss JVM.1.3.2.10modifiedejortmessaging/src/main/org/jboss/mq/server/jmx/DestinationMBeanSupport.javaMake the message history parameter work during the configuration phase.Add a MessageStatistics object that is serializable, i.e. useable outside the JBoss JVM.1.3.2.7modifiedejortmessaging/src/main/org/jboss/mq/server/jmx/Queue.javaMake the message history parameter work during the configuration phase.Add a MessageStatistics object that is serializable, i.e. useable outside the JBoss JVM.1.4.2.13modifiedejortmessaging/src/main/org/jboss/mq/server/jmx/DestinationManager.javaMake the message history parameter work during the configuration phase.Add a MessageStatistics object that is serializable, i.e. useable outside the JBoss JVM.1.3.2.7modifiedejortmessaging/src/main/org/jboss/mq/server/jmx/Topic.javaMake the message history parameter work during the configuration phase.Add a MessageStatistics object that is serializable, i.e. useable outside the JBoss JVM.1.1.2.6modifiedejortmessaging/src/main/org/jboss/mq/server/BasicQueueParameters.javaMake the message history parameter work during the configuration phase.Add a MessageStatistics object that is serializable, i.e. useable outside the JBoss JVM.1.12.2.13modifiedejortmessaging/src/main/org/jboss/mq/server/JMSQueue.javaMake the message history parameter work during the configuration phase.Add a MessageStatistics object that is serializable, i.e. useable outside the JBoss JVM.1.17.2.21modifiedejortmessaging/src/main/org/jboss/mq/server/JMSTopic.javaMake the message history parameter work during the configuration phase.Add a MessageStatistics object that is serializable, i.e. useable outside the JBoss JVM.1.1.2.7modifiedejortmessaging/src/main/org/jboss/mq/server/MessageCounter.javaMake the message history parameter work during the configuration phase.Add a MessageStatistics object that is serializable, i.e. useable outside the JBoss JVM.1.2.2.7modifiedloubyanskyserver/src/main/org/jboss/cache/invalidation/InvalidationManager.javaadded invalidateAll() operation for the InvalidationGroup1.1.4.1modifiedstarksmtestsuite/src/main/org/jboss/test/cluster/test/DRMTestCase.javaLog the replicants map from each node1.165.2.172modifiedstarksmtestsuite/build.xmlAdd a sleep seconds="15" after the cluster node web servers are seento be up to give the partition time to recognize the nodes. We need a custom test to validate the the cluster membership has the expected count on each node.1.1.1.1.2.3modifiedrecampbelljaxrpc/build.xmladd xalan to the library.classpath to allow building under jdk 1.31.1.2.18modifiedloubyanskyserver/src/main/org/jboss/ejb/plugins/cmp/jdbc2/bridge/JDBCCMRFieldBridge2.javafixed [ 1064073 ] CMP2.x jdbc2 handles CMR (M:N) collection incorrectly.