Re: Joe Admin User mail services Re: [JBoss-dev] Re: [Core] WG: Comparison between BEA JBoss

2003-11-13 Thread Scott M Stark
Install your own java.rmi.server.RMIClassLoaderSpi instance by setting
the java.rmi.server.RMIClassLoaderSpi system property to an implementation
of RMIClassLoaderSpi, and you can choose to load classes from the codebase
passed in to loadClass even if there is no security manager. You
can maintain a map of codebase to URLClassLoader instances and use
the URLClassLoader to do the actual loading of the class from the
codebase.
public abstract class RMIClassLoaderSpi
{
public abstract Class loadClass(String codebase, String name,
ClassLoader defaultLoader)
throws MalformedURLException, ClassNotFoundException;
public abstract Class loadProxyClass(String codebase,
String[] interfaces, ClassLoader defaultLoader)
throws MalformedURLException, ClassNotFoundException;
public abstract ClassLoader getClassLoader(String codebase)
throws MalformedURLException;
public abstract String getClassAnnotation(Class cl);
}
Andrew C. Oliver wrote:

On 11/10/03 8:18 AM, Scott M Stark [EMAIL PROTECTED] wrote:


In order to load the org.jboss.mail.userrepository.MetaInfoImpl
class from the codebase, you are going to have to catch the
UndeclaredThrowableException and check the nested type since
the RMIAdaptor interface does not allow for ClassNotFoundExceptions.


Right...how do I actually load it from the codebase...I got the catching the
exception issue.  



--

Scott Stark
Chief Technology Officer
JBoss Group, LLC



---
This SF.Net email sponsored by: ApacheCon 2003,
16-19 November in Las Vegas. Learn firsthand the latest
developments in Apache, PHP, Perl, XML, Java, MySQL,
WebDAV, and more! http://www.apachecon.com/
___
JBoss-Development mailing list
[EMAIL PROTECTED]
https://lists.sourceforge.net/lists/listinfo/jboss-development


RE: [JBoss-dev] Buildsystem help needed

2003-11-13 Thread Rupp, Heiko
Thanks Scott.


---
This SF.Net email sponsored by: ApacheCon 2003,
16-19 November in Las Vegas. Learn firsthand the latest
developments in Apache, PHP, Perl, XML, Java, MySQL,
WebDAV, and more! http://www.apachecon.com/
___
JBoss-Development mailing list
[EMAIL PROTECTED]
https://lists.sourceforge.net/lists/listinfo/jboss-development


RE: [JBoss-dev] West coast TRAINING

2003-11-13 Thread Rupp, Heiko
Hi Scott,

 The www.jbossgroup.com is using gzip compression. You probably are
 suffering from this IE issue which is not supposed to exist in
 6.0, but people have expierenced it:

Btw our corporate firewall says:

WatchGuard firewall: Response denied from http://217.8.204.122:80/index.html: Content 
type required

I have seen this on www.jboss.org in the past as well.

  Heiko
-- 
Heiko W. Rupp   EMail: [EMAIL PROTECTED]
Senior Consultant   Telefon: +49 711 222 992 - 900
Cellent AG Finance SolutionsTelefax: +49 711 222 992 - 999
Calwer Str. 33  D-70173 Stuttgart


---
This SF.Net email sponsored by: ApacheCon 2003,
16-19 November in Las Vegas. Learn firsthand the latest
developments in Apache, PHP, Perl, XML, Java, MySQL,
WebDAV, and more! http://www.apachecon.com/
___
JBoss-Development mailing list
[EMAIL PROTECTED]
https://lists.sourceforge.net/lists/listinfo/jboss-development


FW: [JBoss-dev] JNDI lookup problem with webservice client

2003-11-13 Thread Thomas Diesler
Scott,

the problem with the JNDI lookup of org.apache.axis.client.Service lies
within
the org.apache.axis.client.ServiceFactory.

It wants either the service classname or the WSDL location. If neither is
set, it'll
return null.

The JNDI spec allows for a null return from ObjectFactory.getObjectInstance
when the object cannot be created.

Cheers
-thomas

-Original Message-
From: Thomas Diesler [mailto:[EMAIL PROTECTED]
Sent: Thursday, November 13, 2003 9:44 AM
To: '[EMAIL PROTECTED]'
Subject: RE: [JBoss-dev] JNDI lookup problem with webservice client



... here is the test:
org.jboss.test.webservice.ws4eeclient.HelloClientTestCase

thanks
-thomas

 -Original Message-
 From: [EMAIL PROTECTED]
 [mailto:[EMAIL PROTECTED]
 Behalf Of Scott
 M Stark
 Sent: Tuesday, November 11, 2003 9:43 PM
 To: [EMAIL PROTECTED]
 Subject: Re: [JBoss-dev] JNDI lookup problem with webservice client


 No, not that I can see from this. Check the test in and let
 me look at it.

 --
 
 Scott Stark
 Chief Technology Officer
 JBoss Group, LLC
 

 [EMAIL PROTECTED] wrote:

  Scott,
 
  working on the webservice client programing model, I need
 to bind a javax.xml.rpc.Service to JNDI. In the test below I
 bind it to the global JNDI namespace. However, when I lookup
 the service I get null without a NamingException.
 
  The code below first tests if the service object can be
 serialized without JNDI involvement, then it tests if
 bind/lookup of a trival string object works. Finally the
 actual service is bound (I can see it in jmx-console) and
 then looked up again. The last assertion fails.
 
  Any idea?
 
  cheers
  -thomas
 
  --
 
String SERVICE_JNDI_NAME = service/HelloWsService1;
 
Service service = new org.apache.axis.client.Service();
 
// first try to marshal/unmarshal the service without JNDI
ByteArrayOutputStream baos = new ByteArrayOutputStream(1024);
ObjectOutputStream oos = new ObjectOutputStream(baos);
oos.writeObject(service);
oos.close();
ByteArrayInputStream bais = new
 ByteArrayInputStream(baos.toByteArray());
ObjectInputStream ois = new ObjectInputStream(bais);
service = (Service)ois.readObject();
assertNotNull(cannot serialize service, service);
 
// test JNDI lookup with a trivial String
InitialContext iniCtx = getInitialContext();
Util.bind(iniCtx, SERVICE_JNDI_NAME, Test JNDI);
assertEquals(Test JNDI, iniCtx.lookup(SERVICE_JNDI_NAME));
Util.unbind(iniCtx, SERVICE_JNDI_NAME);
 
service = new org.apache.axis.client.Service();
 
// now do the actual binding and lookup
Util.bind(iniCtx, SERVICE_JNDI_NAME, service);
service = (Service)iniCtx.lookup(SERVICE_JNDI_NAME);
assertNotNull (cannot lookup service, service);
Util.unbind(iniCtx, SERVICE_JNDI_NAME);






---
This SF.Net email sponsored by: ApacheCon 2003,
16-19 November in Las Vegas. Learn firsthand the latest
developments in Apache, PHP, Perl, XML, Java, MySQL,
WebDAV, and more! http://www.apachecon.com/
___
JBoss-Development mailing list
[EMAIL PROTECTED]
https://lists.sourceforge.net/lists/listinfo/jboss-development


[JBoss-dev] [ jboss-Bugs-841526 ] Could not load class

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

Category: Nukes
Group: CVS HEAD
Status: Open
Resolution: None
Priority: 5
Submitted By: Shawn Stephens (sstephens79)
Assigned to: Nobody/Anonymous (nobody)
Summary: Could not load class

Initial Comment:
I just checked out nukes CVS and deployed it in JBoss-
3.2.3RC1 (Tomcat) and I get the following error when 
tryging to add the bb module.  Please see attached 
server log for more info.



2003-11-13 09:59:13,646 ERROR 
[org.jboss.deployment.scanner.URLDeploymentScanner] 
MBeanException: Exception in MBean 
operation 'checkIncompleteDeployments()'
Cause: Incomplete Deployment listing:
Packages waiting for a deployer:
  none
Incompletely deployed packages:
  none
MBeans waiting for classes:
  none
MBeans waiting for other MBeans:
[ObjectName: nukes.modules:name=bb
 state: CREATED
 I Depend On:  nukes.modules:name=core
 jboss.j2ee:service=EJB,jndiName=nukes/bb/Category
 jboss.j2ee:service=EJB,jndiName=nukes/bb/Forum
 jboss.j2ee:service=EJB,jndiName=nukes/bb/Group
 jboss.j2ee:service=EJB,jndiName=nukes/bb/Option
 jboss.j2ee:service=EJB,jndiName=nukes/bb/Poll
 jboss.j2ee:service=EJB,jndiName=nukes/bb/Post
 jboss.j2ee:service=EJB,jndiName=nukes/bb/Topic
 jboss.j2ee:service=EJB,jndiName=nukes/bb/User
 jboss.j2ee:service=EJB,jndiName=nukes/bb/Utils
 jboss.j2ee:service=EJB,jndiName=nukes/bb/Vote
 jboss.j2ee:service=EJB,jndiName=nukes/bb/Watch

 Depends On Me:  nukes.blocks:name=bb
, ObjectName: nukes.blocks:name=bb
 state: CREATED
 I Depend On:  nukes.modules:name=bb

 Depends On Me: , ObjectName: 
jboss.j2ee:service=EJB,jndiName=nukes/bb/Watch
 state: FAILED
 I Depend On: 
 Depends On Me:  nukes.modules:name=bb
org.jboss.deployment.DeploymentException: Could not 
load class: , ObjectName: 
jboss.j2ee:service=EJB,jndiName=nukes/bb/Post
 state: FAILED
 I Depend On: 
 Depends On Me:  nukes.modules:name=bb
org.jboss.deployment.DeploymentException: Could not 
load class: , ObjectName: 
jboss.j2ee:service=EJB,jndiName=nukes/bb/Poll
 state: FAILED
 I Depend On: 
 Depends On Me:  nukes.modules:name=bb
org.jboss.deployment.DeploymentException: Could not 
load class: , ObjectName: 
jboss.j2ee:service=EJB,jndiName=nukes/bb/Forum
 state: FAILED
 I Depend On: 
 Depends On Me:  nukes.modules:name=bb
org.jboss.deployment.DeploymentException: Could not 
load class: , ObjectName: 
jboss.j2ee:service=EJB,jndiName=nukes/bb/Group
 state: FAILED
 I Depend On: 
 Depends On Me:  nukes.modules:name=bb
org.jboss.deployment.DeploymentException: Could not 
load class: , ObjectName: 
jboss.j2ee:service=EJB,jndiName=nukes/bb/Topic
 state: FAILED
 I Depend On: 
 Depends On Me:  nukes.modules:name=bb
org.jboss.deployment.DeploymentException: Could not 
load class: , ObjectName: 
jboss.j2ee:service=EJB,jndiName=nukes/bb/Option
 state: FAILED
 I Depend On: 
 Depends On Me:  nukes.modules:name=bb
org.jboss.deployment.DeploymentException: Could not 
load class: , ObjectName: 
jboss.j2ee:service=EJB,jndiName=nukes/bb/Category
 state: FAILED
 I Depend On: 
 Depends On Me:  nukes.modules:name=bb
org.jboss.deployment.DeploymentException: Could not 
load class: , ObjectName: 
jboss.j2ee:service=EJB,jndiName=nukes/bb/Vote
 state: FAILED
 I Depend On: 
 Depends On Me:  nukes.modules:name=bb
org.jboss.deployment.DeploymentException: Could not 
load class: , ObjectName: 
jboss.j2ee:service=EJB,jndiName=nukes/bb/User
 state: FAILED
 I Depend On: 
 Depends On Me:  nukes.modules:name=bb
org.jboss.deployment.DeploymentException: Could not 
load class: ]

--

Comment By: Shawn Stephens (sstephens79)
Date: 2003-11-13 16:05

Message:
Logged In: YES 
user_id=684706

Search for Could not load class no quotes to find the error in 
the attached log file.

--

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


---
This SF.Net email sponsored by: ApacheCon 2003,
16-19 November in Las Vegas. Learn firsthand the latest
developments in Apache, PHP, Perl, XML, Java, MySQL,
WebDAV, and more! http://www.apachecon.com/
___
JBoss-Development mailing list
[EMAIL PROTECTED]
https://lists.sourceforge.net/lists/listinfo/jboss-development


[JBoss-dev] [ jboss-Bugs-841526 ] Could not load class

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

Category: Nukes
Group: CVS HEAD
Status: Open
Resolution: None
Priority: 5
Submitted By: Shawn Stephens (sstephens79)
Assigned to: Nobody/Anonymous (nobody)
Summary: Could not load class

Initial Comment:
I just checked out nukes CVS and deployed it in JBoss-
3.2.3RC1 (Tomcat) and I get the following error when 
tryging to add the bb module.  Please see attached 
server log for more info.



2003-11-13 09:59:13,646 ERROR 
[org.jboss.deployment.scanner.URLDeploymentScanner] 
MBeanException: Exception in MBean 
operation 'checkIncompleteDeployments()'
Cause: Incomplete Deployment listing:
Packages waiting for a deployer:
  none
Incompletely deployed packages:
  none
MBeans waiting for classes:
  none
MBeans waiting for other MBeans:
[ObjectName: nukes.modules:name=bb
 state: CREATED
 I Depend On:  nukes.modules:name=core
 jboss.j2ee:service=EJB,jndiName=nukes/bb/Category
 jboss.j2ee:service=EJB,jndiName=nukes/bb/Forum
 jboss.j2ee:service=EJB,jndiName=nukes/bb/Group
 jboss.j2ee:service=EJB,jndiName=nukes/bb/Option
 jboss.j2ee:service=EJB,jndiName=nukes/bb/Poll
 jboss.j2ee:service=EJB,jndiName=nukes/bb/Post
 jboss.j2ee:service=EJB,jndiName=nukes/bb/Topic
 jboss.j2ee:service=EJB,jndiName=nukes/bb/User
 jboss.j2ee:service=EJB,jndiName=nukes/bb/Utils
 jboss.j2ee:service=EJB,jndiName=nukes/bb/Vote
 jboss.j2ee:service=EJB,jndiName=nukes/bb/Watch

 Depends On Me:  nukes.blocks:name=bb
, ObjectName: nukes.blocks:name=bb
 state: CREATED
 I Depend On:  nukes.modules:name=bb

 Depends On Me: , ObjectName: 
jboss.j2ee:service=EJB,jndiName=nukes/bb/Watch
 state: FAILED
 I Depend On: 
 Depends On Me:  nukes.modules:name=bb
org.jboss.deployment.DeploymentException: Could not 
load class: , ObjectName: 
jboss.j2ee:service=EJB,jndiName=nukes/bb/Post
 state: FAILED
 I Depend On: 
 Depends On Me:  nukes.modules:name=bb
org.jboss.deployment.DeploymentException: Could not 
load class: , ObjectName: 
jboss.j2ee:service=EJB,jndiName=nukes/bb/Poll
 state: FAILED
 I Depend On: 
 Depends On Me:  nukes.modules:name=bb
org.jboss.deployment.DeploymentException: Could not 
load class: , ObjectName: 
jboss.j2ee:service=EJB,jndiName=nukes/bb/Forum
 state: FAILED
 I Depend On: 
 Depends On Me:  nukes.modules:name=bb
org.jboss.deployment.DeploymentException: Could not 
load class: , ObjectName: 
jboss.j2ee:service=EJB,jndiName=nukes/bb/Group
 state: FAILED
 I Depend On: 
 Depends On Me:  nukes.modules:name=bb
org.jboss.deployment.DeploymentException: Could not 
load class: , ObjectName: 
jboss.j2ee:service=EJB,jndiName=nukes/bb/Topic
 state: FAILED
 I Depend On: 
 Depends On Me:  nukes.modules:name=bb
org.jboss.deployment.DeploymentException: Could not 
load class: , ObjectName: 
jboss.j2ee:service=EJB,jndiName=nukes/bb/Option
 state: FAILED
 I Depend On: 
 Depends On Me:  nukes.modules:name=bb
org.jboss.deployment.DeploymentException: Could not 
load class: , ObjectName: 
jboss.j2ee:service=EJB,jndiName=nukes/bb/Category
 state: FAILED
 I Depend On: 
 Depends On Me:  nukes.modules:name=bb
org.jboss.deployment.DeploymentException: Could not 
load class: , ObjectName: 
jboss.j2ee:service=EJB,jndiName=nukes/bb/Vote
 state: FAILED
 I Depend On: 
 Depends On Me:  nukes.modules:name=bb
org.jboss.deployment.DeploymentException: Could not 
load class: , ObjectName: 
jboss.j2ee:service=EJB,jndiName=nukes/bb/User
 state: FAILED
 I Depend On: 
 Depends On Me:  nukes.modules:name=bb
org.jboss.deployment.DeploymentException: Could not 
load class: ]

--

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


---
This SF.Net email sponsored by: ApacheCon 2003,
16-19 November in Las Vegas. Learn firsthand the latest
developments in Apache, PHP, Perl, XML, Java, MySQL,
WebDAV, and more! http://www.apachecon.com/
___
JBoss-Development mailing list
[EMAIL PROTECTED]
https://lists.sourceforge.net/lists/listinfo/jboss-development


[JBoss-dev] [ jboss-Bugs-841526 ] Could not load class

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

Category: Nukes
Group: CVS HEAD
Status: Deleted
Resolution: None
Priority: 5
Submitted By: Shawn Stephens (sstephens79)
Assigned to: Nobody/Anonymous (nobody)
Summary: Could not load class

Initial Comment:
I just checked out nukes CVS and deployed it in JBoss-
3.2.3RC1 (Tomcat) and I get the following error when 
tryging to add the bb module.  Please see attached 
server log for more info.



2003-11-13 09:59:13,646 ERROR 
[org.jboss.deployment.scanner.URLDeploymentScanner] 
MBeanException: Exception in MBean 
operation 'checkIncompleteDeployments()'
Cause: Incomplete Deployment listing:
Packages waiting for a deployer:
  none
Incompletely deployed packages:
  none
MBeans waiting for classes:
  none
MBeans waiting for other MBeans:
[ObjectName: nukes.modules:name=bb
 state: CREATED
 I Depend On:  nukes.modules:name=core
 jboss.j2ee:service=EJB,jndiName=nukes/bb/Category
 jboss.j2ee:service=EJB,jndiName=nukes/bb/Forum
 jboss.j2ee:service=EJB,jndiName=nukes/bb/Group
 jboss.j2ee:service=EJB,jndiName=nukes/bb/Option
 jboss.j2ee:service=EJB,jndiName=nukes/bb/Poll
 jboss.j2ee:service=EJB,jndiName=nukes/bb/Post
 jboss.j2ee:service=EJB,jndiName=nukes/bb/Topic
 jboss.j2ee:service=EJB,jndiName=nukes/bb/User
 jboss.j2ee:service=EJB,jndiName=nukes/bb/Utils
 jboss.j2ee:service=EJB,jndiName=nukes/bb/Vote
 jboss.j2ee:service=EJB,jndiName=nukes/bb/Watch

 Depends On Me:  nukes.blocks:name=bb
, ObjectName: nukes.blocks:name=bb
 state: CREATED
 I Depend On:  nukes.modules:name=bb

 Depends On Me: , ObjectName: 
jboss.j2ee:service=EJB,jndiName=nukes/bb/Watch
 state: FAILED
 I Depend On: 
 Depends On Me:  nukes.modules:name=bb
org.jboss.deployment.DeploymentException: Could not 
load class: , ObjectName: 
jboss.j2ee:service=EJB,jndiName=nukes/bb/Post
 state: FAILED
 I Depend On: 
 Depends On Me:  nukes.modules:name=bb
org.jboss.deployment.DeploymentException: Could not 
load class: , ObjectName: 
jboss.j2ee:service=EJB,jndiName=nukes/bb/Poll
 state: FAILED
 I Depend On: 
 Depends On Me:  nukes.modules:name=bb
org.jboss.deployment.DeploymentException: Could not 
load class: , ObjectName: 
jboss.j2ee:service=EJB,jndiName=nukes/bb/Forum
 state: FAILED
 I Depend On: 
 Depends On Me:  nukes.modules:name=bb
org.jboss.deployment.DeploymentException: Could not 
load class: , ObjectName: 
jboss.j2ee:service=EJB,jndiName=nukes/bb/Group
 state: FAILED
 I Depend On: 
 Depends On Me:  nukes.modules:name=bb
org.jboss.deployment.DeploymentException: Could not 
load class: , ObjectName: 
jboss.j2ee:service=EJB,jndiName=nukes/bb/Topic
 state: FAILED
 I Depend On: 
 Depends On Me:  nukes.modules:name=bb
org.jboss.deployment.DeploymentException: Could not 
load class: , ObjectName: 
jboss.j2ee:service=EJB,jndiName=nukes/bb/Option
 state: FAILED
 I Depend On: 
 Depends On Me:  nukes.modules:name=bb
org.jboss.deployment.DeploymentException: Could not 
load class: , ObjectName: 
jboss.j2ee:service=EJB,jndiName=nukes/bb/Category
 state: FAILED
 I Depend On: 
 Depends On Me:  nukes.modules:name=bb
org.jboss.deployment.DeploymentException: Could not 
load class: , ObjectName: 
jboss.j2ee:service=EJB,jndiName=nukes/bb/Vote
 state: FAILED
 I Depend On: 
 Depends On Me:  nukes.modules:name=bb
org.jboss.deployment.DeploymentException: Could not 
load class: , ObjectName: 
jboss.j2ee:service=EJB,jndiName=nukes/bb/User
 state: FAILED
 I Depend On: 
 Depends On Me:  nukes.modules:name=bb
org.jboss.deployment.DeploymentException: Could not 
load class: ]

--

Comment By: Shawn Stephens (sstephens79)
Date: 2003-11-13 16:15

Message:
Logged In: YES 
user_id=684706

for some reason nukes overwrite local.properties if the files 
date is different than the one it overwrite.  Solution, open file 
and paste in my-sql info.

--

Comment By: Shawn Stephens (sstephens79)
Date: 2003-11-13 16:05

Message:
Logged In: YES 
user_id=684706

Search for Could not load class no quotes to find the error in 
the attached log file.

--

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


---
This SF.Net email sponsored by: ApacheCon 2003,
16-19 November in Las Vegas. Learn firsthand the latest
developments in Apache, PHP, Perl, XML, Java, MySQL,
WebDAV, and more! http://www.apachecon.com/
___
JBoss-Development mailing list
[EMAIL PROTECTED]
https://lists.sourceforge.net/lists/listinfo/jboss-development


RE: [JBoss-dev] West coast TRAINING

2003-11-13 Thread marc fleury
He he

It is SNOWCRASH the known computer virus that when seen turns you into a zombie.  It 
really reprograms your brain to give us all your earthy belonging to us and attend LA 
bootcamp.

Sorry you are having such a horrible experience, 

marcf 

 

 -Original Message-
 From: [EMAIL PROTECTED] 
 [mailto:[EMAIL PROTECTED] On 
 Behalf Of Jim Brownfield
 Sent: Wednesday, November 12, 2003 5:34 PM
 To: [EMAIL PROTECTED]
 Subject: RE: [JBoss-dev] West coast TRAINING
 
 I click on your link, and I get a page full of the following:
 
 [vwrtT]/9qTK(E4}\t
  
 )R'nvM`0]om'ds~%]*]Ro3r
  
 | T_ZMO 
 LQ)9B0*/(;]e 
 t/$N#qqb-2IT|N-}Me!/'.3
 m'49bBKu2Bl-RiM!4,U~8 
 I?%'H6xM3Y e ,[EMAIL 
 PROTECTED] 
 Ep?YMyb64J[/?kk|xTt3;,ua!.a
 }=ZD`h0=7 
 TkBC7U,iBhJ 
 9E[ 
 J^XHL0jgCYJAZ'G%`wE4m5A 
 a2w]O64?S}|~'d%08R|F
 \_#* ln\s'K;[EMAIL PROTECTED] 
 .nUZM#R8f-6EbHZST{~$8:R 
 _yrYNBecS.E,M
 
 I'm assuming somehow the MIME information is not being 
 exchanged properly.  I've seen this before on jboss.org (and, 
 occasionally, on pages served up internally using 
 JBoss/Jetty).  I'm running with sp2.
 
 --
 Jim Brownfield
 [EMAIL PROTECTED]
 Radical System Solutions, Inc. 
 
  -Original Message-
  From: [EMAIL PROTECTED]
  [mailto:[EMAIL PROTECTED] On Behalf Of 
  Scott M Stark
  Sent: Wednesday, November 12, 2003 2:09 PM
  To: [EMAIL PROTECTED]
  Subject: Re: [JBoss-dev] West coast TRAINING
  
  
  I have IE60sp1 with winxp pro and the bootcamp link looks fine:
  http://www.jbossgroup.com/index.html?module=htmlop=userdispla
 yid=services/training/bootcamp#losangeles
 Not sure what the issue could be.
 
 --
 
 Scott Stark
 Chief Technology Officer
 JBoss Group, LLC
 
 
 Jim Brownfield wrote:
 
  I tried to check out the LA bootcamp, but all I get is 
 garbage when I 
  click on the link.
  
  I've seen this before on other pages under jboss.org.  I tried 
  deleting the cache and forcing a reload, but nothing seems 
 to make it readable.
  
  I'm using I.E. 6 under Windows XP Pro.
  
 
 
 
 ---
 This SF.Net email sponsored by: ApacheCon 2003,
 16-19 November in Las Vegas. Learn firsthand the latest 
 developments in Apache, PHP, Perl, XML, Java, MySQL, WebDAV, 
 and more! http://www.apachecon.com/ 
 ___
 JBoss-Development mailing list
 [EMAIL PROTECTED]
 https://lists.sourceforge.net/lists/listinfo/jboss-development
 NHS[?{
 r}}z h?z?-z-? ZazV?z]z ?
 Zr U,[EMAIL PROTECTED] 0j( h ?hg?f)+-$,?7zZ) +-.?aa l b,? y+ ?b ?+-w 6 ^hg?
 
NHS^[){([
Zr}}zhz-z-ZazVz]z
ZrU,[EMAIL PROTECTED]
0j(hhgf)+-$,7zZ)+-.alb,y+b?+-w6^hg

[JBoss-dev] [ jboss-Bugs-841526 ] Could not load class

2003-11-13 Thread SourceForge.net
Bugs item #841526, was opened at 2003-11-13 17:03
Message generated for change (Comment added) made by cooperfbi
You can respond by visiting: 
https://sourceforge.net/tracker/?func=detailatid=376685aid=841526group_id=22866

Category: Nukes
Group: CVS HEAD
Status: Open
Resolution: None
Priority: 5
Submitted By: Shawn Stephens (sstephens79)
Assigned to: Julien Viet (cooperfbi)
Summary: Could not load class

Initial Comment:
I just checked out nukes CVS and deployed it in JBoss-
3.2.3RC1 (Tomcat) and I get the following error when 
tryging to add the bb module.  Please see attached 
server log for more info.



2003-11-13 09:59:13,646 ERROR 
[org.jboss.deployment.scanner.URLDeploymentScanner] 
MBeanException: Exception in MBean 
operation 'checkIncompleteDeployments()'
Cause: Incomplete Deployment listing:
Packages waiting for a deployer:
  none
Incompletely deployed packages:
  none
MBeans waiting for classes:
  none
MBeans waiting for other MBeans:
[ObjectName: nukes.modules:name=bb
 state: CREATED
 I Depend On:  nukes.modules:name=core
 jboss.j2ee:service=EJB,jndiName=nukes/bb/Category
 jboss.j2ee:service=EJB,jndiName=nukes/bb/Forum
 jboss.j2ee:service=EJB,jndiName=nukes/bb/Group
 jboss.j2ee:service=EJB,jndiName=nukes/bb/Option
 jboss.j2ee:service=EJB,jndiName=nukes/bb/Poll
 jboss.j2ee:service=EJB,jndiName=nukes/bb/Post
 jboss.j2ee:service=EJB,jndiName=nukes/bb/Topic
 jboss.j2ee:service=EJB,jndiName=nukes/bb/User
 jboss.j2ee:service=EJB,jndiName=nukes/bb/Utils
 jboss.j2ee:service=EJB,jndiName=nukes/bb/Vote
 jboss.j2ee:service=EJB,jndiName=nukes/bb/Watch

 Depends On Me:  nukes.blocks:name=bb
, ObjectName: nukes.blocks:name=bb
 state: CREATED
 I Depend On:  nukes.modules:name=bb

 Depends On Me: , ObjectName: 
jboss.j2ee:service=EJB,jndiName=nukes/bb/Watch
 state: FAILED
 I Depend On: 
 Depends On Me:  nukes.modules:name=bb
org.jboss.deployment.DeploymentException: Could not 
load class: , ObjectName: 
jboss.j2ee:service=EJB,jndiName=nukes/bb/Post
 state: FAILED
 I Depend On: 
 Depends On Me:  nukes.modules:name=bb
org.jboss.deployment.DeploymentException: Could not 
load class: , ObjectName: 
jboss.j2ee:service=EJB,jndiName=nukes/bb/Poll
 state: FAILED
 I Depend On: 
 Depends On Me:  nukes.modules:name=bb
org.jboss.deployment.DeploymentException: Could not 
load class: , ObjectName: 
jboss.j2ee:service=EJB,jndiName=nukes/bb/Forum
 state: FAILED
 I Depend On: 
 Depends On Me:  nukes.modules:name=bb
org.jboss.deployment.DeploymentException: Could not 
load class: , ObjectName: 
jboss.j2ee:service=EJB,jndiName=nukes/bb/Group
 state: FAILED
 I Depend On: 
 Depends On Me:  nukes.modules:name=bb
org.jboss.deployment.DeploymentException: Could not 
load class: , ObjectName: 
jboss.j2ee:service=EJB,jndiName=nukes/bb/Topic
 state: FAILED
 I Depend On: 
 Depends On Me:  nukes.modules:name=bb
org.jboss.deployment.DeploymentException: Could not 
load class: , ObjectName: 
jboss.j2ee:service=EJB,jndiName=nukes/bb/Option
 state: FAILED
 I Depend On: 
 Depends On Me:  nukes.modules:name=bb
org.jboss.deployment.DeploymentException: Could not 
load class: , ObjectName: 
jboss.j2ee:service=EJB,jndiName=nukes/bb/Category
 state: FAILED
 I Depend On: 
 Depends On Me:  nukes.modules:name=bb
org.jboss.deployment.DeploymentException: Could not 
load class: , ObjectName: 
jboss.j2ee:service=EJB,jndiName=nukes/bb/Vote
 state: FAILED
 I Depend On: 
 Depends On Me:  nukes.modules:name=bb
org.jboss.deployment.DeploymentException: Could not 
load class: , ObjectName: 
jboss.j2ee:service=EJB,jndiName=nukes/bb/User
 state: FAILED
 I Depend On: 
 Depends On Me:  nukes.modules:name=bb
org.jboss.deployment.DeploymentException: Could not 
load class: ]

--

Comment By: Julien Viet (cooperfbi)
Date: 2003-11-13 17:19

Message:
Logged In: YES 
user_id=337141

Did you copy the file nukes/build/etc/local.properties-mysql in 
nukes/build/local.properties to setup the mysql database ?

Most of the time this error is seen when the preceding has not 
been done because the nukes-entity-command is a class name and 
the token in the EJB-JAR.XML is not replaced by the good value, so 
instead of having org.jboss.server.etc you have the token 
$nukes-entity-command@

you can check that by looking at the file :

nukes/bb/output/resources/nukes-bb-ejb-jar/META-INF/jbosscmp-
jdbc.xml which contains the entity commands tag

if you have @nukes-entity-command@, this is that error. 
Otherwise if this is a classname, then that means that class is not 
available in the server (unlikely). The value should be : 
org.jboss.ejb.plugins.cmp.jdbc.keygen.JDBCMySQLCreateCommand


--

Comment By: Shawn Stephens (sstephens79)
Date: 2003-11-13 17:15

Message:
Logged In: YES 
user_id=684706

for some reason nukes overwrite local.properties if the files 
date is different than the one it overwrite.  Solution, open file 
and paste in 

[JBoss-dev] [ jboss-Bugs-841526 ] Could not load class

2003-11-13 Thread SourceForge.net
Bugs item #841526, was opened at 2003-11-13 17:03
Message generated for change (Comment added) made by cooperfbi
You can respond by visiting: 
https://sourceforge.net/tracker/?func=detailatid=376685aid=841526group_id=22866

Category: Nukes
Group: CVS HEAD
Status: Open
Resolution: None
Priority: 5
Submitted By: Shawn Stephens (sstephens79)
Assigned to: Julien Viet (cooperfbi)
Summary: Could not load class

Initial Comment:
I just checked out nukes CVS and deployed it in JBoss-
3.2.3RC1 (Tomcat) and I get the following error when 
tryging to add the bb module.  Please see attached 
server log for more info.



2003-11-13 09:59:13,646 ERROR 
[org.jboss.deployment.scanner.URLDeploymentScanner] 
MBeanException: Exception in MBean 
operation 'checkIncompleteDeployments()'
Cause: Incomplete Deployment listing:
Packages waiting for a deployer:
  none
Incompletely deployed packages:
  none
MBeans waiting for classes:
  none
MBeans waiting for other MBeans:
[ObjectName: nukes.modules:name=bb
 state: CREATED
 I Depend On:  nukes.modules:name=core
 jboss.j2ee:service=EJB,jndiName=nukes/bb/Category
 jboss.j2ee:service=EJB,jndiName=nukes/bb/Forum
 jboss.j2ee:service=EJB,jndiName=nukes/bb/Group
 jboss.j2ee:service=EJB,jndiName=nukes/bb/Option
 jboss.j2ee:service=EJB,jndiName=nukes/bb/Poll
 jboss.j2ee:service=EJB,jndiName=nukes/bb/Post
 jboss.j2ee:service=EJB,jndiName=nukes/bb/Topic
 jboss.j2ee:service=EJB,jndiName=nukes/bb/User
 jboss.j2ee:service=EJB,jndiName=nukes/bb/Utils
 jboss.j2ee:service=EJB,jndiName=nukes/bb/Vote
 jboss.j2ee:service=EJB,jndiName=nukes/bb/Watch

 Depends On Me:  nukes.blocks:name=bb
, ObjectName: nukes.blocks:name=bb
 state: CREATED
 I Depend On:  nukes.modules:name=bb

 Depends On Me: , ObjectName: 
jboss.j2ee:service=EJB,jndiName=nukes/bb/Watch
 state: FAILED
 I Depend On: 
 Depends On Me:  nukes.modules:name=bb
org.jboss.deployment.DeploymentException: Could not 
load class: , ObjectName: 
jboss.j2ee:service=EJB,jndiName=nukes/bb/Post
 state: FAILED
 I Depend On: 
 Depends On Me:  nukes.modules:name=bb
org.jboss.deployment.DeploymentException: Could not 
load class: , ObjectName: 
jboss.j2ee:service=EJB,jndiName=nukes/bb/Poll
 state: FAILED
 I Depend On: 
 Depends On Me:  nukes.modules:name=bb
org.jboss.deployment.DeploymentException: Could not 
load class: , ObjectName: 
jboss.j2ee:service=EJB,jndiName=nukes/bb/Forum
 state: FAILED
 I Depend On: 
 Depends On Me:  nukes.modules:name=bb
org.jboss.deployment.DeploymentException: Could not 
load class: , ObjectName: 
jboss.j2ee:service=EJB,jndiName=nukes/bb/Group
 state: FAILED
 I Depend On: 
 Depends On Me:  nukes.modules:name=bb
org.jboss.deployment.DeploymentException: Could not 
load class: , ObjectName: 
jboss.j2ee:service=EJB,jndiName=nukes/bb/Topic
 state: FAILED
 I Depend On: 
 Depends On Me:  nukes.modules:name=bb
org.jboss.deployment.DeploymentException: Could not 
load class: , ObjectName: 
jboss.j2ee:service=EJB,jndiName=nukes/bb/Option
 state: FAILED
 I Depend On: 
 Depends On Me:  nukes.modules:name=bb
org.jboss.deployment.DeploymentException: Could not 
load class: , ObjectName: 
jboss.j2ee:service=EJB,jndiName=nukes/bb/Category
 state: FAILED
 I Depend On: 
 Depends On Me:  nukes.modules:name=bb
org.jboss.deployment.DeploymentException: Could not 
load class: , ObjectName: 
jboss.j2ee:service=EJB,jndiName=nukes/bb/Vote
 state: FAILED
 I Depend On: 
 Depends On Me:  nukes.modules:name=bb
org.jboss.deployment.DeploymentException: Could not 
load class: , ObjectName: 
jboss.j2ee:service=EJB,jndiName=nukes/bb/User
 state: FAILED
 I Depend On: 
 Depends On Me:  nukes.modules:name=bb
org.jboss.deployment.DeploymentException: Could not 
load class: ]

--

Comment By: Julien Viet (cooperfbi)
Date: 2003-11-13 17:34

Message:
Logged In: YES 
user_id=337141

I will modify the build therefore to not overwrite with the default 
config file if it already exists.

--

Comment By: Julien Viet (cooperfbi)
Date: 2003-11-13 17:19

Message:
Logged In: YES 
user_id=337141

Did you copy the file nukes/build/etc/local.properties-mysql in 
nukes/build/local.properties to setup the mysql database ?

Most of the time this error is seen when the preceding has not 
been done because the nukes-entity-command is a class name and 
the token in the EJB-JAR.XML is not replaced by the good value, so 
instead of having org.jboss.server.etc you have the token 
$nukes-entity-command@

you can check that by looking at the file :

nukes/bb/output/resources/nukes-bb-ejb-jar/META-INF/jbosscmp-
jdbc.xml which contains the entity commands tag

if you have @nukes-entity-command@, this is that error. 
Otherwise if this is a classname, then that means that class is not 
available in the server (unlikely). The value should be : 
org.jboss.ejb.plugins.cmp.jdbc.keygen.JDBCMySQLCreateCommand



Re: [JBoss-dev] 4.0 Roadmap

2003-11-13 Thread Brian Stansberry
Hi Scott,

At 10:12 AM 11/8/2003 -0800, you wrote:
Attached is the draft of the 4.0 roadmap. The 4.0 codebase will be
the basis for the j2ee 1.4 certification work. The outline is still
too coarse grained due to the fact that tasks have not been assigned.
If you have interest in an area let me know so tasks can be scoped
out and assigned.

Thanks for sending out the roadmap.  I'm relatively free at the moment and would like 
to help out.  I'm particularly interested in working in the JSR-115 (JACC) area or the 
servlet/jsp/web-tier integration areas, but can help wherever needed.

Best regards,


Brian Stansberry
WAN Concepts, Inc.
www.wanconcepts.com
Tel:(510) 894-0114 x 116
Fax:(510) 797-3005 



---
This SF.Net email sponsored by: ApacheCon 2003,
16-19 November in Las Vegas. Learn firsthand the latest
developments in Apache, PHP, Perl, XML, Java, MySQL,
WebDAV, and more! http://www.apachecon.com/
___
JBoss-Development mailing list
[EMAIL PROTECTED]
https://lists.sourceforge.net/lists/listinfo/jboss-development


[JBoss-dev] jndi.properties in client/jbossjmx-ant.jar

2003-11-13 Thread Luke Taylor
Is this file required for anything or can it safely be removed?

It can be a source of confusion when running a standalone client (with 
the JBOSS_HOME/client jars added to the classpath) because JNDI may
pick use this without you realising it and you can't work out why your 
own jndi.properties file isn't working.

Luke.

--
 Luke Taylor.  Monkey Machine Ltd.
 PGP Key ID: 0x57E9523Chttp://www.monkeymachine.ltd.uk




---
This SF.Net email sponsored by: ApacheCon 2003,
16-19 November in Las Vegas. Learn firsthand the latest
developments in Apache, PHP, Perl, XML, Java, MySQL,
WebDAV, and more! http://www.apachecon.com/
___
JBoss-Development mailing list
[EMAIL PROTECTED]
https://lists.sourceforge.net/lists/listinfo/jboss-development


RE: [JBoss-dev] West coast TRAINING

2003-11-13 Thread Jim Brownfield
I was wondering why my wife had to keep yanking my wallet out of my hands ;).

It's no problem.  I finally figured out it has something to do with the proxy.  I'm 
not sure exactly what, but

Thanks.

-- 
Jim Brownfield
[EMAIL PROTECTED]
Radical System Solutions, Inc. 

 -Original Message-
 From: [EMAIL PROTECTED] 
 [mailto:[EMAIL PROTECTED] On 
 Behalf Of marc fleury
 Sent: Thursday, November 13, 2003 8:17 AM
 To: [EMAIL PROTECTED]
 Subject: RE: [JBoss-dev] West coast TRAINING
 
 
 He he
 
 It is SNOWCRASH the known computer virus that when seen turns 
 you into a zombie.  It really reprograms your brain to give 
 us all your earthy belonging to us and attend LA bootcamp.
 
 Sorry you are having such a horrible experience, 
 
 marcf 
 
  
 
  -Original Message-
  From: [EMAIL PROTECTED] 
  [mailto:[EMAIL PROTECTED] On 
  Behalf Of Jim Brownfield
  Sent: Wednesday, November 12, 2003 5:34 PM
  To: [EMAIL PROTECTED]
  Subject: RE: [JBoss-dev] West coast TRAINING
  
  I click on your link, and I get a page full of the following:
  
  [vwrtT]/9qTK(E4}\t
   
  )R'nvM`0]om'ds~%]*]Ro3r
   
  | T_ZMO 
  LQ)9B0*/(;]e 
  t/$N#qqb-2IT|N-}Me!/'.3
  m'49bBKu2Bl-RiM!4,U~8 
  I?%'H6xM3Y e ,[EMAIL 
  PROTECTED] 
  Ep?YMyb64J[/?kk|xTt3;,ua!.a
  }=ZD`h0=7 
  TkBC7U,iBhJ 
  9E[ 
  J^XHL0jgCYJAZ'G%`wE4m5A 
  a2w]O64?S}|~'d%08R|F
  \_#* ln\s'K;[EMAIL PROTECTED] 
  .nUZM#R8f-6EbHZST{~$8:R 
  _yrYNBecS.E,M
  
  I'm assuming somehow the MIME information is not being 
  exchanged properly.  I've seen this before on jboss.org (and, 
  occasionally, on pages served up internally using 
  JBoss/Jetty).  I'm running with sp2.
  
  --
  Jim Brownfield
  [EMAIL PROTECTED]
  Radical System Solutions, Inc. 
  
   -Original Message-
   From: [EMAIL PROTECTED]
   [mailto:[EMAIL PROTECTED] On 
 Behalf Of 
   Scott M Stark
   Sent: Wednesday, November 12, 2003 2:09 PM
   To: [EMAIL PROTECTED]
   Subject: Re: [JBoss-dev] West coast TRAINING
   
   
   I have IE60sp1 with winxp pro and the bootcamp link looks fine:
   http://www.jbossgroup.com/index.html?module=htmlop=userdispla
  yid=services/training/bootcamp#losangeles
  Not sure what the issue could be.
  
  --
  
  Scott Stark
  Chief Technology Officer
  JBoss Group, LLC
  
  
  Jim Brownfield wrote:
  
   I tried to check out the LA bootcamp, but all I get is 
  garbage when I 
   click on the link.
   
   I've seen this before on other pages under jboss.org.  I tried 
   deleting the cache and forcing a reload, but nothing seems 
  to make it readable.
   
   I'm using I.E. 6 under Windows XP Pro.
   
  
  
  
  ---
  This SF.Net email sponsored by: ApacheCon 2003,
  16-19 November in Las Vegas. Learn firsthand the latest 
  developments in Apache, PHP, Perl, XML, Java, MySQL, WebDAV, 
  and more! http://www.apachecon.com/ 
  ___
  JBoss-Development mailing list
  [EMAIL PROTECTED]
  https://lists.sourceforge.net/lists/listinfo/jboss-development
  NHS[?{
  r}}z h?z?-z-? ZazV?z]z ?
  Zr U,[EMAIL PROTECTED]  0j( h ?hg?f)+-$,?7zZ) +-.?aa l b,? y+ ?b ?+-w 6 
  ^hg?
  
  +^ [){([ )i ^
  M  /zf )j ^-  ZazVz]z 
 Zrs = s
  k2I Y _   0 i^rr  ,7zZ) x%I,7zZ)  
 X  y+ z m b q   +-b ~n, zZ)
 



---
This SF.Net email sponsored by: ApacheCon 2003,
16-19 November in Las Vegas. Learn firsthand the latest
developments in Apache, PHP, Perl, XML, Java, MySQL,
WebDAV, and more! http://www.apachecon.com/
___
JBoss-Development mailing list
[EMAIL PROTECTED]
https://lists.sourceforge.net/lists/listinfo/jboss-development


RE: [JBoss-dev] 4.0 Roadmap

2003-11-13 Thread Vesco Claudio
Hi alls!

Sorry for my english... :-)

I am also interested in working in the JACC area.

I propose this roadmap:

1) implementing the required javax.security.jacc.* classes/interfaces in
j2ee module.
this javax.security.jacc.* does not depend on jboss

2) implementing a MBean that manage jacc

3) [the dirty work] rewrite/restyle the jboss security system :-)


For point 3, I have in mind this proposal:

- we need j2sdk 1.4 then we can remove deprecated classes

- jaas authentication with javax.security.auth.conf.AppConfigurationEntry[]
associated to single module (ejb, ejbjar, ear, web, sar etc) with default to
parent module.
  in this way a ejb is self contained and we don't need to modify the global
configuration

- jaas authorization associated to single module with merging to parent
module (so we can run ejb/sar  co in a sandbox)

Claudio

 -Original Message-
 From: Brian Stansberry [SMTP:[EMAIL PROTECTED]
 Sent: Thursday, November 13, 2003 6:16 PM
 To:   [EMAIL PROTECTED]
 Subject:  Re: [JBoss-dev] 4.0 Roadmap
 
 Hi Scott,
 
 At 10:12 AM 11/8/2003 -0800, you wrote:
 Attached is the draft of the 4.0 roadmap. The 4.0 codebase will be
 the basis for the j2ee 1.4 certification work. The outline is still
 too coarse grained due to the fact that tasks have not been assigned.
 If you have interest in an area let me know so tasks can be scoped
 out and assigned.
 
 Thanks for sending out the roadmap.  I'm relatively free at the moment and
 would like to help out.  I'm particularly interested in working in the
 JSR-115 (JACC) area or the servlet/jsp/web-tier integration areas, but can
 help wherever needed.
 
 Best regards,
 
 
 Brian Stansberry
 WAN Concepts, Inc.
 www.wanconcepts.com
 Tel:(510) 894-0114 x 116
 Fax:(510) 797-3005 
 
 
 
 ---
 This SF.Net email sponsored by: ApacheCon 2003,
 16-19 November in Las Vegas. Learn firsthand the latest
 developments in Apache, PHP, Perl, XML, Java, MySQL,
 WebDAV, and more! http://www.apachecon.com/
 ___
 JBoss-Development mailing list
 [EMAIL PROTECTED]
 https://lists.sourceforge.net/lists/listinfo/jboss-development


---
This SF.Net email sponsored by: ApacheCon 2003,
16-19 November in Las Vegas. Learn firsthand the latest
developments in Apache, PHP, Perl, XML, Java, MySQL,
WebDAV, and more! http://www.apachecon.com/
___
JBoss-Development mailing list
[EMAIL PROTECTED]
https://lists.sourceforge.net/lists/listinfo/jboss-development


Re: [JBoss-dev] jndi.properties in client/jbossjmx-ant.jar

2003-11-13 Thread Scott M Stark
There should be not jndi.properties files in the client jars for
the reason you state. Please remove it.
--

Scott Stark
Chief Technology Officer
JBoss Group, LLC

Luke Taylor wrote:

Is this file required for anything or can it safely be removed?

It can be a source of confusion when running a standalone client (with 
the JBOSS_HOME/client jars added to the classpath) because JNDI may
pick use this without you realising it and you can't work out why your 
own jndi.properties file isn't working.

Luke.



---
This SF.Net email sponsored by: ApacheCon 2003,
16-19 November in Las Vegas. Learn firsthand the latest
developments in Apache, PHP, Perl, XML, Java, MySQL,
WebDAV, and more! http://www.apachecon.com/
___
JBoss-Development mailing list
[EMAIL PROTECTED]
https://lists.sourceforge.net/lists/listinfo/jboss-development


Re: [JBoss-dev] 4.0 Roadmap

2003-11-13 Thread Scott M Stark
Great, both are areas I'm interested in and I'll be happy to
farm out tasks to you. One big one is the integration of the
SSO patch that you already have outstanding. We need to come
to an agreement with Remy on what is an acceptable mechanism
for the logic.
--

Scott Stark
Chief Technology Officer
JBoss Group, LLC

Brian Stansberry wrote:

Hi Scott,

At 10:12 AM 11/8/2003 -0800, you wrote:

Attached is the draft of the 4.0 roadmap. The 4.0 codebase will be
the basis for the j2ee 1.4 certification work. The outline is still
too coarse grained due to the fact that tasks have not been assigned.
If you have interest in an area let me know so tasks can be scoped
out and assigned.


Thanks for sending out the roadmap.  I'm relatively free at the moment and would like to help out.  I'm particularly interested in working in the JSR-115 (JACC) area or the servlet/jsp/web-tier integration areas, but can help wherever needed.

Best regards,

Brian Stansberry
WAN Concepts, Inc.
www.wanconcepts.com
Tel:(510) 894-0114 x 116
Fax:(510) 797-3005 




---
This SF.Net email sponsored by: ApacheCon 2003,
16-19 November in Las Vegas. Learn firsthand the latest
developments in Apache, PHP, Perl, XML, Java, MySQL,
WebDAV, and more! http://www.apachecon.com/
___
JBoss-Development mailing list
[EMAIL PROTECTED]
https://lists.sourceforge.net/lists/listinfo/jboss-development


Re: [JBoss-dev] 4.0 Roadmap

2003-11-13 Thread Scott M Stark
The big change in the current JBoss security layer in terms of
MBeans and interfaces is that the extension point for security
needs to be based on the JACC apis as much as possible with
any extensions we deem neccessary. Currently the contract is
just the AuthenticationManager, RealmMapping.
You'll have to clarify the notion of association with the j2ee
component modules.
--

Scott Stark
Chief Technology Officer
JBoss Group, LLC

Vesco Claudio wrote:

Hi alls!

Sorry for my english... :-)

I am also interested in working in the JACC area.

I propose this roadmap:

1) implementing the required javax.security.jacc.* classes/interfaces in
j2ee module.
this javax.security.jacc.* does not depend on jboss
2) implementing a MBean that manage jacc

3) [the dirty work] rewrite/restyle the jboss security system :-)

For point 3, I have in mind this proposal:

- we need j2sdk 1.4 then we can remove deprecated classes

- jaas authentication with javax.security.auth.conf.AppConfigurationEntry[]
associated to single module (ejb, ejbjar, ear, web, sar etc) with default to
parent module.
  in this way a ejb is self contained and we don't need to modify the global
configuration
- jaas authorization associated to single module with merging to parent
module (so we can run ejb/sar  co in a sandbox)
	Claudio



---
This SF.Net email sponsored by: ApacheCon 2003,
16-19 November in Las Vegas. Learn firsthand the latest
developments in Apache, PHP, Perl, XML, Java, MySQL,
WebDAV, and more! http://www.apachecon.com/
___
JBoss-Development mailing list
[EMAIL PROTECTED]
https://lists.sourceforge.net/lists/listinfo/jboss-development


[JBoss-dev] [ jboss-Bugs-841136 ] ResourceBundle classloader errors

2003-11-13 Thread SourceForge.net
Bugs item #841136, was opened at 2003-11-12 21:29
Message generated for change (Comment added) made by geraldthewes
You can respond by visiting: 
https://sourceforge.net/tracker/?func=detailatid=376685aid=841136group_id=22866

Category: JBossWeb
Group: None
Status: Open
Resolution: None
Priority: 5
Submitted By: Elias Ross (genman)
Assigned to: Scott M Stark (starksm)
Summary: ResourceBundle classloader errors

Initial Comment:

Deployment information:

java version 1.4.2_02
Java(TM) 2 Runtime Environment, 
   Standard Edition (build 1.4.2_02-b03)
Java HotSpot(TM) Client VM (build 1.4.2_02-b03, mixed mode)
JBoss 3.2.2 (release)
Linux Redhat 8

I cannot reproduce this problem when I use Java
1.4.1-01 Blackdown for Linux, though again it might be
a timing issue.

There is a resource bundle located in an exploded .war
file with a ResourceBundle at top-level:

xyz.war
  WEB-INF
 classes
AppResources.properties

Struts 1.1 (periodically) cannot locate this bundle.

javax.servlet.jsp.JspException: Missing message for key
label.product.name
at
org.apache.struts.taglib.bean.MessageTag.doStartTag(MessageTag.java:298)
at Home_jsp._jspx_meth_bean_message_0(Home_jsp.java:170)
at Home_jsp._jspService(Home_jsp.java:107)
at
org.apache.jasper.runtime.HttpJspBase.service(HttpJspBase.java:137)

The weird part is that it found the bundle, but is
MISSING the key.  (We have seen this problem when
loading from other resource bundles.)


I constructed a test JSP  The JSP always works fine. 
It spits  out the key label.product.name

%@ page contentType=text/plain %
%@ page import=java.util.*%

%
  ResourceBundle rb = null;
  for (int i = 0; i  100; i++) {
rb  = ResourceBundle.getBundle(AppResources,
Locale.getDefault());
// rb = ResourceBundle.getBundle(AppResources);
  }
  Enumeration e = rb.getKeys();
  while (e.hasMoreElements())
out.println(e.nextElement());
  out.println(rb.getString(label.product.name));
%



--

Comment By: Gerald Hewes (geraldthewes)
Date: 2003-11-13 14:30

Message:
Logged In: YES 
user_id=908642

I originally reported the problem to genman, I
tried the suggestion of setting

attribute name=UseJBossWebLoaderfalse/att
ribute

And that solved all the problems as far as I can tell
for now. The property files (loaded as resources)
I had indeed existed (with different content) in different
WAR and EAR deployments.



--

Comment By: Elias Ross (genman)
Date: 2003-11-13 00:32

Message:
Logged In: YES 
user_id=556458


This same property file appears in a .jar in a (scoped) .ear
file.  Actually, the property files that we're having
trouble with appear in scoped .ear files.

I tried disabling the UCL, just to see what would happen
before I filed this bug.  I end up with this exception instead:

java.lang.ClassCastException
at
org.apache.struts.tiles.TilesRequestProcessor.initDefinitionsMapping(TilesRequestProcessor.java:126)
at
org.apache.struts.tiles.TilesRequestProcessor.init(TilesRequestProcessor.java:116)
at
org.apache.struts.action.ActionServlet.getRequestProcessor(ActionServlet.java:872)
at
org.apache.struts.action.ActionServlet.process(ActionServlet.java:1482)
at
org.apache.struts.action.ActionServlet.doPost(ActionServlet.java:525)
at javax.servlet.http.HttpServlet.service(HttpServlet.java:760)
at javax.servlet.http.HttpServlet.service(HttpServlet.java:853)

The source code looks like this:

  protected void initDefinitionsMapping() throws
ServletException
{
  // Retrieve and set factory for this modules
definitionsFactory =
((TilesUtilStrutsImpl)TilesUtil.getTilesUtil()).getDefinitionsFactory(getServletContext(),
moduleConfig);

I don't know if Struts is messed up under JBoss with this
sort of configuration, but doing a quick google search
turned up some junk on some mailing lists.

I am wondering how a resource bundle could be found, but
have no entries in it...

We haven't had any trouble with our Solaris installations so
far.  Since the problem is erratic, I wonder if somehow the
directory ordering has had some effect.


--

Comment By: Scott M Stark (starksm)
Date: 2003-11-12 22:04

Message:
Logged In: YES 
user_id=175228

Are there multiple AppResources.properties deployed? If so
then it is probably related to the use of the UCL in the web
container. You can disable this by editing the 
jbossweb-tomcat41.sar/META-INF/jboss-service.xml and setting
the UseJBossWebLoader attribute to false:

attribute name=UseJBossWebLoaderfalse/attribute

--

Comment By: Elias Ross (genman)
Date: 2003-11-12 21:49

Message:
Logged In: YES 
user_id=556458

More info:

Doesn't happen with JBoss 3.2.1.

If you visit another web 

[JBoss-dev] [ jboss-Bugs-840449 ] Exceptions from CMR iterator of NotSupported RO bean

2003-11-13 Thread SourceForge.net
Bugs item #840449, was opened at 2003-11-12 02:52
Message generated for change (Comment added) made by adrianprice
You can respond by visiting: 
https://sourceforge.net/tracker/?func=detailatid=376685aid=840449group_id=22866

Category: JBossCMP
Group: v3.2
Status: Closed
Resolution: Rejected
Priority: 5
Submitted By: Adrian Price (adrianprice)
Assigned to: Alexey Loubyansky (loubyansky)
Summary: Exceptions from CMR iterator of NotSupported RO bean

Initial Comment:
Read-Only entity beans are typically deployed with a 
transactional attribute of NotSupported, because there 
is no intention to update the entity, and one wishes to 
leverage the container's caching capabilities across 
multiple transactions.  One does not wish the RO entity 
to be enlisted in a transaction, because this would 
negative impact performance by dramatically increasing 
the size of the cache required to support a given TPS 
throughput.  The same applies when an RO entity has a 
1:n or m:n relationship with other RO beans.  

According to the EJB2.0 Specification 17.6.2.1:

If a client calls with a transaction context, the 
container suspends the association of the transaction 
context with the current thread before invoking the 
enterprise bean’s business method. The container
resumes the suspended association when the business 
method has completed. The suspended transaction
context of the client is not passed to the resource 
managers or other enterprise Bean objects that are
invoked from the business method.

If the business method invokes other enterprise beans, 
the Container passes no transaction context with
the invocation.

However, according to the EJB2.0 Specification 10.3.8:

• It is the responsibility of the Container to throw the 
java.lang.IllegalStateException if an attempt is made to 
use a java.util.Iterator for a container-managed 
collection in a transaction context other than that in 
which the iterator was obtained.

It would seem that JBoss interprets this provision too 
literally, and throws an IllegalStateException even when 
a CMR collection of RO entities is obtained from within 
this same 'transaction suspended' state.  __This 
behaviour completely defeats the purpose of RO 
entities__.

For example, if we have two RO entities A and B, both 
deployed as txn NotSupported, and A has a 1:n 
parent:child relationship with B, the following code 
currently will not work:

public abstract class A implements EntityBean {
// ejb*() etc...

// Multi-valued CMR field.
public abstract Collection getBCmr();
public abstract void setBCmr(Collection bs);

public BVO[] getBVO() {
Collection bs = getBCmr();
BVO[] bvo = new BVO[bs.size()];
int i = 0;
// Next line throws IllegalStateException!!!
for (Iterator j = bs.iterator(); j.hasNext(); i++) {
B b = (B)j.next();
bvo[i] = b.getVO();
}
return bvo;
}
}

BTW, the above code works fine on WebLogic.

--

Comment By: Adrian Price (adrianprice)
Date: 2003-11-13 20:27

Message:
Logged In: YES 
user_id=580837

In my example, the CMR collection was NOT being accessed 
from outside of the transactional context in which it was 
created; it was being used within the same NotSupported 
context.

Aside from the provisions of 17.4.1, I'm having some trouble 
following your logic (sorry).  Sure, NotSupported is now 
optional and non-portable, but so is the concept of read-only 
beans, but JBoss does purport to support that.

Here are a couple of important and inescapable points, borne 
of long personal experience with the read-mostly pattern:

1.) In order to make the read-mostly pattern useful to an 
application, an app. server really does need to support 
NotSupported for RO entities, because otherwise

EITHER:

A.) under txn Required or Mandatory the RO entities will be 
enlisted in an existing transaction until it commits, thus 
preventing that RO bean from being re-used in another 
concurrent transaction and forcing serialization on that 
bean.  Even if one uses a non-standard locking option 
like 'instance per transaction' to permit multiple copies of the 
entity to coexist in different transactions, that still has a 
profound impact on the size of the cache required to support 
a given transactional rate and concurrent user community, 
especially where multi-valued finders or CMR collections are 
involved.  The cache size necessary to support a given 
community of concurrent users becomes equals to the 
product nusers x nbeans-per-txn, compared to a mere 
nbeans for the NotSupported model.

OR

B.) Under txn RequiresNew, the container is obliged to start 
and commit a new transaction on every call to a business 
method on the RO bean, which is likely to have a negative 
performance impact unless the TXN_BEGIN can be deferred 
until the first transactional resource is enlisted (as would be 
the case if the bean 

[JBoss-dev] Compilation Failed! JBoss (Branch_3_2/winxp/1.3.1_09) [AUTOMATED]

2003-11-13 Thread chris
===
==THIS IS AN AUTOMATED EMAIL - SEE http://jboss.kimptoc.net/ FOR DETAILS==
===
===
Fri Nov 14 00:01:32 GMTST 2003
===
HERE ARE THE LAST 100 LINES OF THE LOG:
===
==THIS IS AN AUTOMATED EMAIL - SEE http://jboss.kimptoc.net/ FOR DETAILS==
===
===
D:\jboss\jboss-head\messaging\src\main\org\jboss\mq\il\oil\OILServerILService.java -- 
OILServerILServiceMBean qualified to org.jboss.mq.il.oil.OILServerILServiceMBean
D:\jboss\jboss-head\messaging\src\main\org\jboss\mq\il\oil2\OIL2ServerILService.java 
-- OIL2ServerILServiceMBean qualified to org.jboss.mq.il.oil2.OIL2ServerILServiceMBean
D:\jboss\jboss-head\messaging\src\main\org\jboss\mq\il\rmi\RMIServerILService.java -- 
RMIServerILServiceMBean qualified to org.jboss.mq.il.rmi.RMIServerILServiceMBean
D:\jboss\jboss-head\messaging\src\main\org\jboss\mq\il\uil\UILServerILService.java -- 
UILServerILServiceMBean qualified to org.jboss.mq.il.uil.UILServerILServiceMBean
D:\jboss\jboss-head\messaging\src\main\org\jboss\mq\il\uil2\UILServerILService.java 
-- UILServerILServiceMBean qualified to org.jboss.mq.il.uil2.UILServerILServiceMBean
D:\jboss\jboss-head\messaging\src\main\org\jboss\mq\server\MessageCache.java -- 
MessageCacheMBean qualified to org.jboss.mq.server.MessageCacheMBean
D:\jboss\jboss-head\messaging\src\main\org\jboss\mq\pm\file\CacheStore.java -- 
CacheStoreMBean qualified to org.jboss.mq.pm.file.CacheStoreMBean
D:\jboss\jboss-head\messaging\src\main\org\jboss\mq\pm\file\PersistenceManager.java 
-- PersistenceManagerMBean qualified to org.jboss.mq.pm.file.PersistenceManagerMBean
D:\jboss\jboss-head\messaging\src\main\org\jboss\mq\pm\jdbc2\PersistenceManager.java 
-- PersistenceManagerMBean qualified to org.jboss.mq.pm.jdbc2.PersistenceManagerMBean
D:\jboss\jboss-head\messaging\src\main\org\jboss\mq\pm\rollinglogged\PersistenceManager.java
 -- PersistenceManagerMBean qualified to 
org.jboss.mq.pm.rollinglogged.PersistenceManagerMBean
D:\jboss\jboss-head\messaging\src\main\org\jboss\mq\server\jmx\ClientMonitorInterceptor.java
 -- ClientMonitorInterceptorMBean qualified to 
org.jboss.mq.server.jmx.ClientMonitorInterceptorMBean
D:\jboss\jboss-head\messaging\src\main\org\jboss\mq\server\jmx\DelayInterceptor.java 
-- DelayInterceptorMBean qualified to org.jboss.mq.server.jmx.DelayInterceptorMBean
D:\jboss\jboss-head\messaging\src\main\org\jboss\mq\server\jmx\DestinationManager.java 
-- DestinationManagerMBean qualified to 
org.jboss.mq.server.jmx.DestinationManagerMBean
D:\jboss\jboss-head\messaging\src\main\org\jboss\mq\server\jmx\InterceptorLoader.java 
-- InterceptorLoaderMBean qualified to org.jboss.mq.server.jmx.InterceptorLoaderMBean
D:\jboss\jboss-head\messaging\src\main\org\jboss\mq\server\jmx\Invoker.java -- 
InvokerMBean qualified to org.jboss.mq.server.jmx.InvokerMBean
D:\jboss\jboss-head\messaging\src\main\org\jboss\mq\server\jmx\Queue.java -- 
QueueMBean qualified to org.jboss.mq.server.jmx.QueueMBean
D:\jboss\jboss-head\messaging\src\main\org\jboss\mq\server\jmx\Topic.java -- 
TopicMBean qualified to org.jboss.mq.server.jmx.TopicMBean
D:\jboss\jboss-head\messaging\src\main\org\jboss\mq\sm\file\DynamicStateManager.java 
-- DynamicStateManagerMBean qualified to org.jboss.mq.sm.file.DynamicStateManagerMBean
D:\jboss\jboss-head\messaging\src\main\org\jboss\mq\sm\file\DynamicStateManager.java 
-- DurableSubscription qualified to org.jboss.mq.sm.file.DurableSubscription
D:\jboss\jboss-head\messaging\src\main\org\jboss\mq\sm\file\OldStateManager.java -- 
OldStateManagerMBean qualified to org.jboss.mq.sm.file.OldStateManagerMBean
D:\jboss\jboss-head\messaging\src\main\org\jboss\mq\sm\jdbc\JDBCStateManager.java -- 
JDBCStateManagerMBean qualified to org.jboss.mq.sm.jdbc.JDBCStateManagerMBean
D:\jboss\jboss-head\messaging\src\main\org\jboss\mq\sm\jdbc\JDBCStateManager.java -- 
DurableSubscription qualified to org.jboss.mq.sm.jdbc.DurableSubscription

compile-parsers:
[mkdir] Created dir: 
D:\jboss\jboss-head\messaging\output\parsers\org\jboss\mq\selectors
   [javacc] Java Compiler Compiler Version 2.0 (Parser Generator)
   [javacc] Copyright (c) 1996-2000 Sun Microsystems, Inc.
   [javacc] Copyright (c) 1997-2000 Metamata, Inc.
   [javacc] (type javacc with no arguments for help)
   [javacc] Reading from file 
D:\jboss\jboss-head\messaging\src\main\org\jboss\mq\selectors\SelectorParser.jj . . .
   [javacc] Warning: Lookahead adequacy checking not being performed since option 
LOOKAHEAD is more than 1.  Set option FORCE_LA_CHECK to true to force 

Re: [JBoss-dev] 4.0 Roadmap

2003-11-13 Thread Brian Stansberry
At 11:00 AM 11/13/2003 -0800, you wrote:
Great, both are areas I'm interested in and I'll be happy to
farm out tasks to you. One big one is the integration of the
SSO patch that you already have outstanding. We need to come
to an agreement with Remy on what is an acceptable mechanism
for the logic.

Sounds good.  The patch I wrote was really a pretty small change to the Tomcat 4.1 
authenticators.  I haven't had a chance to look at the TC 5 code in that area, but 
from some comments I saw on the tomcat-dev list I belief Remy et al did some 
refactoring.  I'll take a look at the TC 5 code this evening and see what if any 
issues addressed in my patch may remain.

Brian Stansberry
WAN Concepts, Inc.
www.wanconcepts.com
Tel:(510) 894-0114 x 116
Fax:(510) 797-3005 

-- 


Chief Technology Officer
JBoss Group, LLC


Brian Stansberry wrote:

Hi Scott,
At 10:12 AM 11/8/2003 -0800, you wrote:

Attached is the draft of the 4.0 roadmap. The 4.0 codebase will be
the basis for the j2ee 1.4 certification work. The outline is still
too coarse grained due to the fact that tasks have not been assigned.
If you have interest in an area let me know so tasks can be scoped
out and assigned.

Thanks for sending out the roadmap.  I'm relatively free at the moment and would 
like to help out.  I'm particularly interested in working in the JSR-115 (JACC) area 
or the servlet/jsp/web-tier integration areas, but can help wherever needed.
Best regards,

Brian Stansberry
WAN Concepts, Inc.
www.wanconcepts.com
Tel:(510) 894-0114 x 116
Fax:(510) 797-3005 





---
This SF.Net email sponsored by: ApacheCon 2003,
16-19 November in Las Vegas. Learn firsthand the latest
developments in Apache, PHP, Perl, XML, Java, MySQL,
WebDAV, and more! http://www.apachecon.com/
___
JBoss-Development mailing list
[EMAIL PROTECTED]
https://lists.sourceforge.net/lists/listinfo/jboss-development


[JBoss-dev]

2003-11-13 Thread
¸ºÔðÈË£º
   ÔçÉϺ㡽ñÌìºÃÐÄÇ飡
   µÚ¶þ½ì»ªÄϲÆÎñ¹ÜÀí¸ß·åÂÛ̳½«ÓÚ±¾ÔÂ28-29ÈÕÔÚ¹ãÖÝÃùȪ¾Ó¾ÙÐÐ
  ¼Î±ö¼°Ñݽ²Ö÷Ìâ
 ÀÉÏÌƽ½ÌÊÚ   £º¹úÆóÖØ×é̸ÃñÆó·¢Õ¹
¹ã·¢ÒøÐÐ×ܲÃÕŹ⻪£º½ðÈÚ·þÎñºÍÆóÒµ²ÆÎñÕ½ÂÔ
³ÇÆô¼¯ÍŶ­Ê³¤ÑîÊ÷ƺ£ºÔÁÌ©½èÁ¦×ʱ¾Êг¡´òÔì¼Ò×åÆóÒµ

±¾´ÎÂÛ̳½«ÔÚÄÏ·½µçÊÓ¡°ÄÏ·½²Æ¸»ÂÙ̳¡±£¬ÐÂÀËÍø¡°ÐÂÀËÖ±²¥ÊÒ¡±Í¬²½²¥³ö

E-mail: [EMAIL PROTECTED]

ÍøÉϲéѯ£ºhttp://www.21cnsun.com/ltang.htm
Çë²éÔĸ½¼þ£¡Ï£ÍûÓÐÐÒÑûÇëµ½Äú²ÎÓë!


×ʱ¾ÔËÓªÓë²ÆÎñÕ½ÂÔ.htm
Description: Binary data


[JBoss-dev] JBoss Test Results: 94 % ( 1397 / 1486 ) - come on - pull your finger out. JBoss (HEAD/winxp/1.4.1_05) [AUTOMATED]

2003-11-13 Thread chris
===
==THIS IS AN AUTOMATED EMAIL - SEE http://jboss.kimptoc.net/ FOR DETAILS==
===
===
Fri Nov 14 01:34:55 GMTST 2003
===
HERE ARE THE LAST 100 LINES OF THE LOG:
===
==THIS IS AN AUTOMATED EMAIL - SEE http://jboss.kimptoc.net/ FOR DETAILS==
===
===


JBoss daily test results

SUMMARY

Number of tests run:   1486



Successful tests:  1397

Errors:72

Failures:  17





[time of test: 2003-11-14.00-48 GMT]
[java.version: 1.4.1_05]
[java.vendor: Sun Microsystems Inc.]
[java.vm.version: 1.4.1_05-b01]
[java.vm.name: Java HotSpot(TM) Client VM]
[java.vm.info: mixed mode]
[os.name: Windows XP]
[os.arch: x86]
[os.version: 5.1]

Useful resources:

- 
http://jboss.kimptoc.net/winxp/1.4.1_05/logtests/testresults/reports/html//2003-11-14.00-48
 for
the junit report of this test.


NOTE: If there are any errors shown above - this mail is only highlighting 
them - it is NOT indicating that they are being looked at by anyone.

It is assumed that whoever makes change(s) to jboss that 
break the test will be fixing the test or jboss, as appropriate!





DETAILS OF ERRORS



Suite:   LocalUnitTestCase
Test:testSetup
Type:error
Exception:   java.rmi.NoSuchObjectException
Message: Could not activate; failed to restore state; CausedByException is:  
D:\jboss\jboss-head-test\build\output\testbuild\server\all\tmp\sessions\test\TreeCacheAopTester-dmziqylh-16\dmziqzpe-19.ser
 (The system cannot find the file specified)
-



Suite:   IdentityLockUnitTestCase
Test:testNullOwner_RWLock
Type:error
Exception:   java.lang.IllegalArgumentException
Message: IdentityLock.acquireWriteLock(): null owner object.
-



Suite:   IdentityLockUnitTestCase
Test:testNullOwner_SimpleLock
Type:error
Exception:   java.lang.IllegalArgumentException
Message: IdentityLock.acquireWriteLock(): null owner object.
-



Suite:   IdentityLockUnitTestCase
Test:testNullOwner2_RWLock
Type:error
Exception:   java.lang.IllegalArgumentException
Message: IdentityLock.acquireReadLock(): null owner object.
-



Suite:   IdentityLockUnitTestCase
Test:testNullOwner2_SimpleLock
Type:error
Exception:   java.lang.IllegalArgumentException
Message: IdentityLock.acquireReadLock(): null owner object.
-



Suite:   IdentityLockUnitTestCase
Test:testNullOwner3_RWLock
Type:error
Exception:   java.lang.IllegalArgumentException
Message: IdentityLock.acquireWriteLock(): null owner object.

===
Fri Nov 14 01:34:55 GMTST 2003
===
CYGWIN_NT-5.1 quarks2 1.5.4(0.94/3/2) 2003-09-12 23:08 i686 unknown unknown Cygwin
===
java -version
java version 1.4.1_05
Java(TM) 2 Runtime Environment, Standard Edition (build 1.4.1_05-b01)
Java HotSpot(TM) Client VM (build 1.4.1_05-b01, mixed mode)


---
This SF.Net email sponsored by: ApacheCon 2003,
16-19 November in Las Vegas. Learn firsthand the latest
developments in Apache, PHP, Perl, XML, Java, MySQL,
WebDAV, and more! http://www.apachecon.com/
___
JBoss-Development mailing list
[EMAIL PROTECTED]
https://lists.sourceforge.net/lists/listinfo/jboss-development


[JBoss-dev] JBoss Test Results: 93 % ( 1368 / 1458 ) - come on - pull your finger out. JBoss (HEAD/linux1/1.4.1_05) [AUTOMATED]

2003-11-13 Thread chris
===
==THIS IS AN AUTOMATED EMAIL - SEE http://jboss.kimptoc.net/ FOR DETAILS==
===
===
Fri Nov 14 02:12:18 GMT 2003
===
HERE ARE THE LAST 100 LINES OF THE LOG:
===
==THIS IS AN AUTOMATED EMAIL - SEE http://jboss.kimptoc.net/ FOR DETAILS==
===
===


JBoss daily test results

SUMMARY

Number of tests run:   1458



Successful tests:  1368

Errors:71

Failures:  19





[time of test: 2003-11-14.00-42 GMT]
[java.version: 1.4.1_05]
[java.vendor: Sun Microsystems Inc.]
[java.vm.version: 1.4.1_05-b01]
[java.vm.name: Java HotSpot(TM) Client VM]
[java.vm.info: mixed mode]
[os.name: Linux]
[os.arch: i386]
[os.version: 2.4.20-20.7]

Useful resources:

- 
http://jboss.kimptoc.net/linux1/1.4.1_05/logtests/testresults/reports/html//2003-11-14.00-42
 for
the junit report of this test.


NOTE: If there are any errors shown above - this mail is only highlighting 
them - it is NOT indicating that they are being looked at by anyone.

It is assumed that whoever makes change(s) to jboss that 
break the test will be fixing the test or jboss, as appropriate!





DETAILS OF ERRORS



Suite:   LocalUnitTestCase
Test:testSetup
Type:error
Exception:   java.rmi.NoSuchObjectException
Message: Could not activate; failed to restore state; CausedByException is:  
/home/jbossci/jbossci2/jboss-head-test/build/output/testbuild/server/all/tmp/sessions/test/TreeCacheAopTester-dmzitbev-16/dmzitdkf-19.ser
 (No such file or directory)
-



Suite:   IdentityLockUnitTestCase
Test:testNullOwner_RWLock
Type:error
Exception:   java.lang.IllegalArgumentException
Message: IdentityLock.acquireWriteLock(): null owner object.
-



Suite:   IdentityLockUnitTestCase
Test:testNullOwner_SimpleLock
Type:error
Exception:   java.lang.IllegalArgumentException
Message: IdentityLock.acquireWriteLock(): null owner object.
-



Suite:   IdentityLockUnitTestCase
Test:testNullOwner2_RWLock
Type:error
Exception:   java.lang.IllegalArgumentException
Message: IdentityLock.acquireReadLock(): null owner object.
-



Suite:   IdentityLockUnitTestCase
Test:testNullOwner2_SimpleLock
Type:error
Exception:   java.lang.IllegalArgumentException
Message: IdentityLock.acquireReadLock(): null owner object.
-



Suite:   IdentityLockUnitTestCase
Test:testNullOwner3_RWLock
Type:error
Exception:   java.lang.IllegalArgumentException
Message: IdentityLock.acquireWriteLock(): null owner object.

===
Fri Nov 14 02:12:18 GMT 2003
===
Linux nog.kimptoc.net 2.4.20-20.7 #1 Mon Aug 18 14:56:30 EDT 2003 i686 unknown
===
java -version
java version 1.4.1_05
Java(TM) 2 Runtime Environment, Standard Edition (build 1.4.1_05-b01)
Java HotSpot(TM) Client VM (build 1.4.1_05-b01, mixed mode)


---
This SF.Net email sponsored by: ApacheCon 2003,
16-19 November in Las Vegas. Learn firsthand the latest
developments in Apache, PHP, Perl, XML, Java, MySQL,
WebDAV, and more! http://www.apachecon.com/
___
JBoss-Development mailing list
[EMAIL PROTECTED]
https://lists.sourceforge.net/lists/listinfo/jboss-development


[JBoss-dev] JBoss Test Results: 94 % ( 1399 / 1486 ) - come on - pull your finger out. JBoss (HEAD/winxp/1.4.2_01) [AUTOMATED]

2003-11-13 Thread chris
===
==THIS IS AN AUTOMATED EMAIL - SEE http://jboss.kimptoc.net/ FOR DETAILS==
===
===
Fri Nov 14 02:55:22 GMTST 2003
===
HERE ARE THE LAST 100 LINES OF THE LOG:
===
==THIS IS AN AUTOMATED EMAIL - SEE http://jboss.kimptoc.net/ FOR DETAILS==
===
===


JBoss daily test results

SUMMARY

Number of tests run:   1486



Successful tests:  1399

Errors:71

Failures:  16





[time of test: 2003-11-14.02-09 GMT]
[java.version: 1.4.2_01]
[java.vendor: Sun Microsystems Inc.]
[java.vm.version: 1.4.2_01-b06]
[java.vm.name: Java HotSpot(TM) Client VM]
[java.vm.info: mixed mode]
[os.name: Windows XP]
[os.arch: x86]
[os.version: 5.1]

Useful resources:

- 
http://jboss.kimptoc.net/winxp/1.4.2_01/logtests/testresults/reports/html//2003-11-14.02-09
 for
the junit report of this test.


NOTE: If there are any errors shown above - this mail is only highlighting 
them - it is NOT indicating that they are being looked at by anyone.

It is assumed that whoever makes change(s) to jboss that 
break the test will be fixing the test or jboss, as appropriate!





DETAILS OF ERRORS



Suite:   LocalUnitTestCase
Test:testSetup
Type:error
Exception:   java.rmi.NoSuchObjectException
Message: Could not activate; failed to restore state; CausedByException is:  
D:\jboss\jboss-head-test\build\output\testbuild\server\all\tmp\sessions\test\TreeCacheAopTester-dmzln6hm-16\dmzln79u-19.ser
 (The system cannot find the file specified)
-



Suite:   IdentityLockUnitTestCase
Test:testNullOwner_RWLock
Type:error
Exception:   java.lang.IllegalArgumentException
Message: IdentityLock.acquireWriteLock(): null owner object.
-



Suite:   IdentityLockUnitTestCase
Test:testNullOwner_SimpleLock
Type:error
Exception:   java.lang.IllegalArgumentException
Message: IdentityLock.acquireWriteLock(): null owner object.
-



Suite:   IdentityLockUnitTestCase
Test:testNullOwner2_RWLock
Type:error
Exception:   java.lang.IllegalArgumentException
Message: IdentityLock.acquireReadLock(): null owner object.
-



Suite:   IdentityLockUnitTestCase
Test:testNullOwner2_SimpleLock
Type:error
Exception:   java.lang.IllegalArgumentException
Message: IdentityLock.acquireReadLock(): null owner object.
-



Suite:   IdentityLockUnitTestCase
Test:testNullOwner3_RWLock
Type:error
Exception:   java.lang.IllegalArgumentException
Message: IdentityLock.acquireWriteLock(): null owner object.

===
Fri Nov 14 02:55:22 GMTST 2003
===
CYGWIN_NT-5.1 quarks2 1.5.4(0.94/3/2) 2003-09-12 23:08 i686 unknown unknown Cygwin
===
java -version
java version 1.4.2_01
Java(TM) 2 Runtime Environment, Standard Edition (build 1.4.2_01-b06)
Java HotSpot(TM) Client VM (build 1.4.2_01-b06, mixed mode)


---
This SF.Net email sponsored by: ApacheCon 2003,
16-19 November in Las Vegas. Learn firsthand the latest
developments in Apache, PHP, Perl, XML, Java, MySQL,
WebDAV, and more! http://www.apachecon.com/
___
JBoss-Development mailing list
[EMAIL PROTECTED]
https://lists.sourceforge.net/lists/listinfo/jboss-development


[JBoss-dev] JBoss Test Results: 93 % ( 1369 / 1458 ) - come on - pull your finger out. JBoss (HEAD/linux1/1.4.2_01) [AUTOMATED]

2003-11-13 Thread chris
===
==THIS IS AN AUTOMATED EMAIL - SEE http://jboss.kimptoc.net/ FOR DETAILS==
===
===
Fri Nov 14 04:01:36 GMT 2003
===
HERE ARE THE LAST 100 LINES OF THE LOG:
===
==THIS IS AN AUTOMATED EMAIL - SEE http://jboss.kimptoc.net/ FOR DETAILS==
===
===


JBoss daily test results

SUMMARY

Number of tests run:   1458



Successful tests:  1369

Errors:72

Failures:  17





[time of test: 2003-11-14.02-37 GMT]
[java.version: 1.4.2_01]
[java.vendor: Sun Microsystems Inc.]
[java.vm.version: 1.4.2_01-b06]
[java.vm.name: Java HotSpot(TM) Client VM]
[java.vm.info: mixed mode]
[os.name: Linux]
[os.arch: i386]
[os.version: 2.4.20-20.7]

Useful resources:

- 
http://jboss.kimptoc.net/linux1/1.4.2_01/logtests/testresults/reports/html//2003-11-14.02-37
 for
the junit report of this test.


NOTE: If there are any errors shown above - this mail is only highlighting 
them - it is NOT indicating that they are being looked at by anyone.

It is assumed that whoever makes change(s) to jboss that 
break the test will be fixing the test or jboss, as appropriate!





DETAILS OF ERRORS



Suite:   LocalUnitTestCase
Test:testSetup
Type:error
Exception:   java.rmi.NoSuchObjectException
Message: Could not activate; failed to restore state; CausedByException is:  
/home/jbossci/jbossci2/jboss-head-test/build/output/testbuild/server/all/tmp/sessions/test/TreeCacheAopTester-dmzmv4yu-16/dmzmv65d-19.ser
 (No such file or directory)
-



Suite:   IdentityLockUnitTestCase
Test:testNullOwner_RWLock
Type:error
Exception:   java.lang.IllegalArgumentException
Message: IdentityLock.acquireWriteLock(): null owner object.
-



Suite:   IdentityLockUnitTestCase
Test:testNullOwner_SimpleLock
Type:error
Exception:   java.lang.IllegalArgumentException
Message: IdentityLock.acquireWriteLock(): null owner object.
-



Suite:   IdentityLockUnitTestCase
Test:testNullOwner2_RWLock
Type:error
Exception:   java.lang.IllegalArgumentException
Message: IdentityLock.acquireReadLock(): null owner object.
-



Suite:   IdentityLockUnitTestCase
Test:testNullOwner2_SimpleLock
Type:error
Exception:   java.lang.IllegalArgumentException
Message: IdentityLock.acquireReadLock(): null owner object.
-



Suite:   IdentityLockUnitTestCase
Test:testNullOwner3_RWLock
Type:error
Exception:   java.lang.IllegalArgumentException
Message: IdentityLock.acquireWriteLock(): null owner object.

===
Fri Nov 14 04:01:36 GMT 2003
===
Linux nog.kimptoc.net 2.4.20-20.7 #1 Mon Aug 18 14:56:30 EDT 2003 i686 unknown
===
java -version
java version 1.4.2_01
Java(TM) 2 Runtime Environment, Standard Edition (build 1.4.2_01-b06)
Java HotSpot(TM) Client VM (build 1.4.2_01-b06, mixed mode)


---
This SF.Net email sponsored by: ApacheCon 2003,
16-19 November in Las Vegas. Learn firsthand the latest
developments in Apache, PHP, Perl, XML, Java, MySQL,
WebDAV, and more! http://www.apachecon.com/
___
JBoss-Development mailing list
[EMAIL PROTECTED]
https://lists.sourceforge.net/lists/listinfo/jboss-development


Re: [JBoss-dev] 4.0 Roadmap

2003-11-13 Thread Scott M Stark
Ok, but we do need to get a 4.1.x solution in as well. I'll take a look
at the patch again next week and try to move forward with it.

Scott Stark
Chief Technology Officer
JBoss Group, LLC

Brian Stansberry wrote:

At 11:00 AM 11/13/2003 -0800, you wrote:

Great, both are areas I'm interested in and I'll be happy to
farm out tasks to you. One big one is the integration of the
SSO patch that you already have outstanding. We need to come
to an agreement with Remy on what is an acceptable mechanism
for the logic.


Sounds good.  The patch I wrote was really a pretty small change to the Tomcat 4.1 authenticators.  I haven't had a chance to look at the TC 5 code in that area, but from some comments I saw on the tomcat-dev list I belief Remy et al did some refactoring.  I'll take a look at the TC 5 code this evening and see what if any issues addressed in my patch may remain.

Brian Stansberry
WAN Concepts, Inc.
www.wanconcepts.com
Tel:(510) 894-0114 x 116
Fax:(510) 797-3005 





---
This SF.Net email sponsored by: ApacheCon 2003,
16-19 November in Las Vegas. Learn firsthand the latest
developments in Apache, PHP, Perl, XML, Java, MySQL,
WebDAV, and more! http://www.apachecon.com/
___
JBoss-Development mailing list
[EMAIL PROTECTED]
https://lists.sourceforge.net/lists/listinfo/jboss-development


[JBoss-dev] AMERICAN STOCK MARKET: TRHL Retains Sky Investor Relations...Kyler

2003-11-13 Thread Johnathon Fritz
American Stock Market - Press Release...

True Health - TRHL - Retains Sky Investor Relations

BECKENHAM, England---PRNewswire---True Health, Inc, (OTC Bulletin Board: TRHL) an 
emerging leader in healthcare recruitment and pressure relieving systems, announces 
that it has retained the investor and public relations services of New York-based Sky 
Investor Relations.

Read the entire news release: http://biz.yahoo.com/prnews/031112/lnw017_1.html









































rtxitxyijeabdepnkiplhehvf
vxx
coigdngkvfa as  ynfhtu
ynzarfla
rio m tkzkixt
e