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

2005-01-24 Thread qa

View results here -> http://cruisecontrol.jboss.com/cc/buildresults/jboss-head-testsuite?log=log20050124021331
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:01/24/2005 02:13:31Time to build:26 minutes 5 secondsLast changed:01/23/2005 19:05:34Last log entry:Move the creation of the SRPParameters cipher iv to the SRPVerifierInfo.VerifierInfo




   Unit Tests: (0)   Total Errors and Failures: (0)
Modifications since last build:(5)1.11modifiedstarksmsecurity/src/main/org/jboss/security/srp/SRPRemoteServer.javaMove the creation of the SRPParameters cipher iv to the SRPVerifierInfo.VerifierInfo1.9modifiedstarksmsecurity/src/main/org/jboss/security/Util.javaUpdate the initialization of the sealed object cipher to only use the cipher iv its non-null. The previous approach of trying to init the cipher with an iv and then retrying without an iv on exception was not working across the jce implementations of jdk 1.3, 1.4.x and 1.5.1.5modifiedstarksmsecurity/src/main/org/jboss/security/srp/SRPParameters.javaAdd a ctor for that accepts the cipher iv.1.6modifiedstarksmsecurity/src/main/org/jboss/security/srp/SRPVerifierStore.javaAdd the cipher iv to the VerifierInfo as there are problems with simply trying to create an iv and use it across the various jdk jce implementations when the cipher does not support an iv.1.1addedloubyanskytestsuite/src/main/org/jboss/test/xml/UnmarshallingMetaDataTestCase.javatests stackable binding metadata for unmarshalling



[JBoss-dev] [JBoss JIRA] Updated: (JBCACHE-82) Deserialized Node object doesn't have the FQN set

2005-01-24 Thread Bela Ban (JIRA)
 [ http://jira.jboss.com/jira/browse/JBCACHE-82?page=history ]

Bela Ban updated JBCACHE-82:


Fix Version: 1.2.1

 Deserialized Node object doesn't have the FQN set
 -

  Key: JBCACHE-82
  URL: http://jira.jboss.com/jira/browse/JBCACHE-82
  Project: JBoss Cache
 Type: Patch
 Versions: 1.2
 Reporter: twundke
 Assignee: Bela Ban
 Priority: Minor
  Fix For: 1.2.1
  Attachments: NodeIssue.txt

 Original Estimate: 5 minutes
 Remaining: 5 minutes

 When a new cache starts and retrieves the transient state, Node objects are 
 created--by the serialisation process--using the no-arg constructor. This 
 constructor calls init(), which creates the IdentityLock object using new 
 IdentityLock(cache_,fqn). The problem is that the fqn is never set on the 
 IdentityLock (as the Node doesn't know the fqn at this point), which means 
 that all IdentityLock messages show null as the fqn. Here's a patch on 
 revision 1.60 that fixes the problem by creating the lock in readExternal() 
 rather than in the constructor. 
 *** Node.java.#.1.60  Thu Jan 20 10:45:55 2005
 --- Node.java Thu Jan 20 10:46:04 2005
 ***
 *** 66,73 
   
  protected static final int INDENT=4;
   
  public Node() {
 !   init();
  }
   
  public Node(TreeCache cache) {
 --- 66,76 
   
  protected static final int INDENT=4;
   
 +   /**
 +* This constructor is only to be used by serialization.
 +*/
  public Node() {
 !   // No operation as the object is initialised by readExternal()
  }
   
  public Node(TreeCache cache) {
 ***
 *** 494,501 
 parent=(Node)in.readObject();
 children=(Map)in.readObject();
 data=(Map)in.readObject();
 -}
   
   
   }
 - 
 --- 497,505 
 parent=(Node)in.readObject();
 children=(Map)in.readObject();
 data=(Map)in.readObject();
   
 +   // Perform default initialisation now that we have all of the 
 required data
 +   init();
 +}
   
   }

-- 
This message is automatically generated by JIRA.
-
If you think it was sent incorrectly contact one of the administrators:
   http://jira.jboss.com/jira/secure/Administrators.jspa
-
If you want more information on JIRA, or have a bug to report see:
   http://www.atlassian.com/software/jira



---
This SF.Net email is sponsored by: IntelliVIEW -- Interactive Reporting
Tool for open source databases. Create drag--drop reports. Save time
by over 75%! Publish reports on the web. Export to DOC, XLS, RTF, etc.
Download a FREE copy at http://www.intelliview.com/go/osdn_nl
___
JBoss-Development mailing list
JBoss-Development@lists.sourceforge.net
https://lists.sourceforge.net/lists/listinfo/jboss-development


[JBoss-dev] [JBoss JIRA] Updated: (JBCACHE-81) DummyTransactionManager ThreadLocal uses Map

2005-01-24 Thread Bela Ban (JIRA)
 [ http://jira.jboss.com/jira/browse/JBCACHE-81?page=history ]

Bela Ban updated JBCACHE-81:


Fix Version: 1.2.1

 DummyTransactionManager ThreadLocal uses Map
 

  Key: JBCACHE-81
  URL: http://jira.jboss.com/jira/browse/JBCACHE-81
  Project: JBoss Cache
 Type: Patch
 Versions: 1.2
 Reporter: twundke
 Assignee: Bela Ban
 Priority: Minor
  Fix For: 1.2.1
  Attachments: TxMgrIssue.txt

 Original Estimate: 5 minutes
 Remaining: 5 minutes

 The DummyTransactionManager uses a ThreadLocal to store transactions. 
 However, the manager then stores a Map in the ThreadLocal, containing 
 transactions keyed by Thread. Perhaps I'm missing something, but as far as I 
 can see the Map just isn't needed as ThreadLocal stores values per thread 
 itself.
 Here's a patch against revision 1.14 that removes the offending code.
 *** DummyTransactionManager.java.#.1.14   Thu Jan 20 14:17:51 2005
 --- DummyTransactionManager.java  Thu Jan 20 11:32:31 2005
 ***
 *** 6,13 
   import javax.naming.InitialContext;
   import javax.naming.NamingException;
   import javax.transaction.*;
 - import java.util.HashMap;
 - import java.util.Map;
   import java.util.Properties;
   
   /**
 --- 6,11 
 ***
 *** 20,31 
  static DummyTransactionManager instance=null;
  static Logger log=Logger.getLogger(DummyTransactionManager.class);
   
 !static ThreadLocal thread_local=new ThreadLocal() {
 !   protected synchronized Object initialValue() {
 !  Map map=new HashMap();
 !  return java.util.Collections.synchronizedMap(map);
 !   }
 !};
   
  public DummyTransactionManager() {
 ;
 --- 18,24 
  static DummyTransactionManager instance=null;
  static Logger log=Logger.getLogger(DummyTransactionManager.class);
   
 !static ThreadLocal thread_local=new ThreadLocal();
   
  public DummyTransactionManager() {
 ;
 ***
 *** 185,193 
   * unexpected way.
   */
  public Transaction getTransaction() throws SystemException {
 !   Map map=(Map)thread_local.get();
 !   String thread=Thread.currentThread().toString();
 !   return (Transaction)map.get(thread);
  }
   
  /**
 --- 178,184 
   * unexpected way.
   */
  public Transaction getTransaction() throws SystemException {
 !   return (Transaction)thread_local.get();
  }
   
  /**
 ***
 *** 240,253 
  }
   
  void setTransaction(Transaction tx) {
 -   Map map=(Map)thread_local.get();
 -   String thread=Thread.currentThread().toString();
 - //map.put(this, tx);
 if(tx == null) {
 !  map.remove(thread);
 }
 else {
 !  map.put(thread, tx);
 }
  }
   
 --- 231,241 
  }
   
  void setTransaction(Transaction tx) {
 if(tx == null) {
 !  thread_local.remove();
 }
 else {
 !  thread_local.set(tx);
 }
  }

-- 
This message is automatically generated by JIRA.
-
If you think it was sent incorrectly contact one of the administrators:
   http://jira.jboss.com/jira/secure/Administrators.jspa
-
If you want more information on JIRA, or have a bug to report see:
   http://www.atlassian.com/software/jira



---
This SF.Net email is sponsored by: IntelliVIEW -- Interactive Reporting
Tool for open source databases. Create drag--drop reports. Save time
by over 75%! Publish reports on the web. Export to DOC, XLS, RTF, etc.
Download a FREE copy at http://www.intelliview.com/go/osdn_nl
___
JBoss-Development mailing list
JBoss-Development@lists.sourceforge.net
https://lists.sourceforge.net/lists/listinfo/jboss-development


[JBoss-dev] [JBossCache] - Re: JBossCache 1.2 Still accepting members with Multicast se

2005-01-24 Thread [EMAIL PROTECTED]
ip_mcast=false means that instead of sending 1 multicast msg to N members, we 
send N datagrams (one per member).
If you want to turn off clustering, comment ClusterPartition in 
cluster-service.xml

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

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


---
This SF.Net email is sponsored by: IntelliVIEW -- Interactive Reporting
Tool for open source databases. Create drag--drop reports. Save time
by over 75%! Publish reports on the web. Export to DOC, XLS, RTF, etc.
Download a FREE copy at http://www.intelliview.com/go/osdn_nl
___
JBoss-Development mailing list
JBoss-Development@lists.sourceforge.net
https://lists.sourceforge.net/lists/listinfo/jboss-development


[JBoss-dev] [JBossCache] - Re: Cache Replication Timeout in a Cluster

2005-01-24 Thread [EMAIL PROTECTED]
1. The latest JBossCache is not in the 3.2 branch, but in CVS head. You are 
probably missing jboss-remoting.jar


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

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


---
This SF.Net email is sponsored by: IntelliVIEW -- Interactive Reporting
Tool for open source databases. Create drag--drop reports. Save time
by over 75%! Publish reports on the web. Export to DOC, XLS, RTF, etc.
Download a FREE copy at http://www.intelliview.com/go/osdn_nl
___
JBoss-Development mailing list
JBoss-Development@lists.sourceforge.net
https://lists.sourceforge.net/lists/listinfo/jboss-development


[JBoss-dev] [JBossCache] - Re: Problem with transaction isolation?

2005-01-24 Thread [EMAIL PROTECTED]
If you use isolation level of SERIALIZABLE, then the behvior you get is 
incorrect ! Reads and writes should have exclusive locks. 
Since we have tested that this works, please submit a short unit test that 
shows your issue.

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

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


---
This SF.Net email is sponsored by: IntelliVIEW -- Interactive Reporting
Tool for open source databases. Create drag--drop reports. Save time
by over 75%! Publish reports on the web. Export to DOC, XLS, RTF, etc.
Download a FREE copy at http://www.intelliview.com/go/osdn_nl
___
JBoss-Development mailing list
JBoss-Development@lists.sourceforge.net
https://lists.sourceforge.net/lists/listinfo/jboss-development


[JBoss-dev] [Design of Mail Services] - Re: JaasUserRepository

2005-01-24 Thread djmalan
I think what Andrew wants to achieve is a very simple installation where the 
user does not need to change anything on an existing JBoss installation to get 
JBMail running. 

My suggestion:

Basic mailbox configuration provides the following folders - INBOX, Sent, Draft 
and Trash.  To access the mailbox the user will require a role jbmail-.  The 
user will have full access to the mailbox i.e. read, write, delete, create 
folder, delete folder.

We may extend this to include specific roles e.g. jbmail--create-folder etc.

Postmaster access provides full access to the mailbox subsystem, and requires a 
role jbmail-postmaster.  We may also extend this to restrict postmasters to 
domains, such as postmaster--add-user etc.

Any other attributes and flags associated with the mailbox will be handled by 
the mailbox system itself, including additional security attributes.  In this 
way JAAS provides authentication and access control, and all mailbox-related 
details are managed by the mailbox implementation.

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

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


---
This SF.Net email is sponsored by: IntelliVIEW -- Interactive Reporting
Tool for open source databases. Create drag--drop reports. Save time
by over 75%! Publish reports on the web. Export to DOC, XLS, RTF, etc.
Download a FREE copy at http://www.intelliview.com/go/osdn_nl
___
JBoss-Development mailing list
JBoss-Development@lists.sourceforge.net
https://lists.sourceforge.net/lists/listinfo/jboss-development


[JBoss-dev] [Design of JBoss Portal] - Re: Errors when building and deploying Jboss Portal v.2.0 Al

2005-01-24 Thread prax
Good Morning,

Following config :

Jboss AS 4.0.1 RC1
- default (build.local.properties changed to default)

is now fully functional.

As thomas pointed out, the ddl files were not in place.
The main reason being that I did not realise that this was to be done for each 
component (reading the user guide)
Now all is as it should be. 
:) P

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

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


---
This SF.Net email is sponsored by: IntelliVIEW -- Interactive Reporting
Tool for open source databases. Create drag--drop reports. Save time
by over 75%! Publish reports on the web. Export to DOC, XLS, RTF, etc.
Download a FREE copy at http://www.intelliview.com/go/osdn_nl
___
JBoss-Development mailing list
JBoss-Development@lists.sourceforge.net
https://lists.sourceforge.net/lists/listinfo/jboss-development


[JBoss-dev] [JBossCache] - Re: Patch for DummyTransactionManager.java

2005-01-24 Thread [EMAIL PROTECTED]
done (replaced remove() with set(null) as remove() is JDK5 specific)

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

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


---
This SF.Net email is sponsored by: IntelliVIEW -- Interactive Reporting
Tool for open source databases. Create drag--drop reports. Save time
by over 75%! Publish reports on the web. Export to DOC, XLS, RTF, etc.
Download a FREE copy at http://www.intelliview.com/go/osdn_nl
___
JBoss-Development mailing list
JBoss-Development@lists.sourceforge.net
https://lists.sourceforge.net/lists/listinfo/jboss-development


[JBoss-dev] [JBoss JIRA] Resolved: (JBCACHE-81) DummyTransactionManager ThreadLocal uses Map

2005-01-24 Thread Bela Ban (JIRA)
 [ http://jira.jboss.com/jira/browse/JBCACHE-81?page=history ]
 
Bela Ban resolved JBCACHE-81:
-

Resolution: Done

done

 DummyTransactionManager ThreadLocal uses Map
 

  Key: JBCACHE-81
  URL: http://jira.jboss.com/jira/browse/JBCACHE-81
  Project: JBoss Cache
 Type: Patch
 Versions: 1.2
 Reporter: twundke
 Assignee: Bela Ban
 Priority: Minor
  Fix For: 1.2.1
  Attachments: TxMgrIssue.txt

 Original Estimate: 5 minutes
 Remaining: 5 minutes

 The DummyTransactionManager uses a ThreadLocal to store transactions. 
 However, the manager then stores a Map in the ThreadLocal, containing 
 transactions keyed by Thread. Perhaps I'm missing something, but as far as I 
 can see the Map just isn't needed as ThreadLocal stores values per thread 
 itself.
 Here's a patch against revision 1.14 that removes the offending code.
 *** DummyTransactionManager.java.#.1.14   Thu Jan 20 14:17:51 2005
 --- DummyTransactionManager.java  Thu Jan 20 11:32:31 2005
 ***
 *** 6,13 
   import javax.naming.InitialContext;
   import javax.naming.NamingException;
   import javax.transaction.*;
 - import java.util.HashMap;
 - import java.util.Map;
   import java.util.Properties;
   
   /**
 --- 6,11 
 ***
 *** 20,31 
  static DummyTransactionManager instance=null;
  static Logger log=Logger.getLogger(DummyTransactionManager.class);
   
 !static ThreadLocal thread_local=new ThreadLocal() {
 !   protected synchronized Object initialValue() {
 !  Map map=new HashMap();
 !  return java.util.Collections.synchronizedMap(map);
 !   }
 !};
   
  public DummyTransactionManager() {
 ;
 --- 18,24 
  static DummyTransactionManager instance=null;
  static Logger log=Logger.getLogger(DummyTransactionManager.class);
   
 !static ThreadLocal thread_local=new ThreadLocal();
   
  public DummyTransactionManager() {
 ;
 ***
 *** 185,193 
   * unexpected way.
   */
  public Transaction getTransaction() throws SystemException {
 !   Map map=(Map)thread_local.get();
 !   String thread=Thread.currentThread().toString();
 !   return (Transaction)map.get(thread);
  }
   
  /**
 --- 178,184 
   * unexpected way.
   */
  public Transaction getTransaction() throws SystemException {
 !   return (Transaction)thread_local.get();
  }
   
  /**
 ***
 *** 240,253 
  }
   
  void setTransaction(Transaction tx) {
 -   Map map=(Map)thread_local.get();
 -   String thread=Thread.currentThread().toString();
 - //map.put(this, tx);
 if(tx == null) {
 !  map.remove(thread);
 }
 else {
 !  map.put(thread, tx);
 }
  }
   
 --- 231,241 
  }
   
  void setTransaction(Transaction tx) {
 if(tx == null) {
 !  thread_local.remove();
 }
 else {
 !  thread_local.set(tx);
 }
  }

-- 
This message is automatically generated by JIRA.
-
If you think it was sent incorrectly contact one of the administrators:
   http://jira.jboss.com/jira/secure/Administrators.jspa
-
If you want more information on JIRA, or have a bug to report see:
   http://www.atlassian.com/software/jira



---
This SF.Net email is sponsored by: IntelliVIEW -- Interactive Reporting
Tool for open source databases. Create drag--drop reports. Save time
by over 75%! Publish reports on the web. Export to DOC, XLS, RTF, etc.
Download a FREE copy at http://www.intelliview.com/go/osdn_nl
___
JBoss-Development mailing list
JBoss-Development@lists.sourceforge.net
https://lists.sourceforge.net/lists/listinfo/jboss-development


[JBoss-dev] [JBossCache] - Re: Proposal for JBoss Cache events

2005-01-24 Thread [EMAIL PROTECTED]
I'm not sure I understand what you want to do. Do you want to get notified  
when a POJO has been modified, e.g.

p.setAge(80);

triggers a

pojoModified(p, age, 80) notification ?
The change is quite intrusive, so I want to see the use case first. Also, what 
happens if you don't use transactions ?

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

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


---
This SF.Net email is sponsored by: IntelliVIEW -- Interactive Reporting
Tool for open source databases. Create drag--drop reports. Save time
by over 75%! Publish reports on the web. Export to DOC, XLS, RTF, etc.
Download a FREE copy at http://www.intelliview.com/go/osdn_nl
___
JBoss-Development mailing list
JBoss-Development@lists.sourceforge.net
https://lists.sourceforge.net/lists/listinfo/jboss-development


[JBoss-dev] [JBossCache] - Re: JBossCache 1.2 released

2005-01-24 Thread [EMAIL PROTECTED]
Fixed (in CVS head, 1.2.1)
Thanks,

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

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


---
This SF.Net email is sponsored by: IntelliVIEW -- Interactive Reporting
Tool for open source databases. Create drag--drop reports. Save time
by over 75%! Publish reports on the web. Export to DOC, XLS, RTF, etc.
Download a FREE copy at http://www.intelliview.com/go/osdn_nl
___
JBoss-Development mailing list
JBoss-Development@lists.sourceforge.net
https://lists.sourceforge.net/lists/listinfo/jboss-development


[JBoss-dev] [Design of Mail Services] - Resending / bouncing of failed mail

2005-01-24 Thread pilhuhn
Hi,
I also opened a JIRA-issue on this (JBMAIL-24).

Currently, when mail-delivery fails, mail end in the DLQ, where it just sits 
and rots.

For 5xx style errors, mails should be handled back to the sending user 
informing him of the failure.

For 4xx style error, JBMails should try to redeliver a few times (with 
expoential backoff) and then in case of constant failure be handled back to the 
sender. There should be the possibility to inform the user after some time  
that the mail is deferred.

For the 5xx a task should e.g. check every minute the DLQ, take failed mail off 
it, atach a failed mail  message and send it to the originating user.

For 4xx mails, I am not sure if they stay on the outgoing queue or what 
happens. 

Opinions?

  Heiko


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

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


---
This SF.Net email is sponsored by: IntelliVIEW -- Interactive Reporting
Tool for open source databases. Create drag--drop reports. Save time
by over 75%! Publish reports on the web. Export to DOC, XLS, RTF, etc.
Download a FREE copy at http://www.intelliview.com/go/osdn_nl
___
JBoss-Development mailing list
JBoss-Development@lists.sourceforge.net
https://lists.sourceforge.net/lists/listinfo/jboss-development


[JBoss-dev] [JBoss JIRA] Commented: (JBCACHE-69) Optimistic Locking

2005-01-24 Thread Bela Ban (JIRA)
 [ 
http://jira.jboss.com/jira/browse/JBCACHE-69?page=comments#action_12314835 ]
 
Bela Ban commented on JBCACHE-69:
-

[Gavin]
Guys, here is my proposal, this is what I want people
to use with Hibernate, but it is actually generic:

The following algorithm basically lets the database
define an ordering of update messages for a particular
cache item. (It is not an ordering of all messages.)

(1) During the txn, cache.put(key, value) simply adds
   the key/value pair to a transaction-local collection
   of scheduled puts. The change is not yet visible to
   other, concurrent txns and the node is not locked.

(3) During afterTransactionCompletion, the collection of
   puts is applied to the local cache, and replicated to
   all other instances in the cluster. (All puts can be
   replicated in a single message.)

(4) When a put is actually applied (either to the local
   or remote cache instance), try to cast the value to
   VersionedItem. If successful, call
   value.isLaterThan(currentValueInCache), and actually
   apply the put only if isLaterThan returns true.
  Consequences:

(1) If no node fails, the cache will remain consistent
   with the database, apart from a short time after an
   update, while replication occurs, when stale data
   can be read by other transactions. (Note that
   staleness is not a huge problem, because we have
   optimistic locking at db level, to prevent lost
   updates.)

(2) If we use guaranteed delivery and a node fails,
   the cache will contain stale data until the
   message is eventually delivered.
  (3) If we configure a timeout based cache eviction
   policy, and a node fails, the cache will contain
   stale data for at maximum, the length of the
   timeout.

(2) No cached item is ever locked, and no voting ever
   occurs. 

 Optimistic Locking
 --

  Key: JBCACHE-69
  URL: http://jira.jboss.com/jira/browse/JBCACHE-69
  Project: JBoss Cache
 Type: Feature Request
 Reporter: Bela Ban
 Assignee: Bela Ban
  Fix For: 1.5


 Original Estimate: 10 weeks
 Remaining: 10 weeks



-- 
This message is automatically generated by JIRA.
-
If you think it was sent incorrectly contact one of the administrators:
   http://jira.jboss.com/jira/secure/Administrators.jspa
-
If you want more information on JIRA, or have a bug to report see:
   http://www.atlassian.com/software/jira



---
This SF.Net email is sponsored by: IntelliVIEW -- Interactive Reporting
Tool for open source databases. Create drag--drop reports. Save time
by over 75%! Publish reports on the web. Export to DOC, XLS, RTF, etc.
Download a FREE copy at http://www.intelliview.com/go/osdn_nl
___
JBoss-Development mailing list
JBoss-Development@lists.sourceforge.net
https://lists.sourceforge.net/lists/listinfo/jboss-development


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

2005-01-24 Thread qa

View results here -> http://cruisecontrol.jboss.com/cc/buildresults/jboss-head?log=log20050124055731Lbuild.734
BUILD COMPLETE-build.734Date of build:01/24/2005 05:57:31Time to build:36 minutes 2 secondsLast changed:01/24/2005 05:26:44Last log entry:Add jaxrpc-mapping metadata to client jar




   Unit Tests: (0)   Total Errors and Failures: (0)
Modifications since last build:(62)1.183modifiedtdieslerserver/build.xmlAdd jaxrpc-mapping metadata to client jar1.16modifiedtdieslerserver/src/main/org/jboss/webservice/metadata/jaxrpcmapping/JavaWsdlMappingFactory.javaThrow IOException instead of Exception1.2modifiedtdieslerserver/src/main/org/jboss/webservice/metadata/InitParamMetaData.javajavadoc1.13modifiedtdieslercommon/src/main/org/jboss/xml/binding/AbstractMarshaller.javaUse javax.xml.namespace.QName1.8modifiedtdieslercommon/src/main/org/jboss/xml/binding/XercesXsMarshaller.javaUse javax.xml.namespace.QName1.14modifiedtdieslercommon/src/main/org/jboss/xml/binding/XsMarshaller.javaUse javax.xml.namespace.QName1.24modifiedtdieslerwebservice/test/build.xmlAdd test for SimpleUserType1.3modifiedtdieslerwebservice/test/resources/jaxrpc/WEB-INF/wsdl/TestService.wsdlAdd test for SimpleUserType1.3modifiedtdieslerwebservice/test/resources/jaxrpc/WEB-INF/jaxrpc-mapping.xmlAdd test for SimpleUserType1.3modifiedtdieslerwebservice/test/resources/jaxrpc/WEB-INF/web.xmlAdd test for SimpleUserType1.3modifiedtdieslerwebservice/test/resources/jaxrpc/WEB-INF/webservices.xmlAdd test for SimpleUserType1.4modifiedtdieslerwebservice/test/resources/jaxrpc/config.xmlAdd test for SimpleUserType1.3modifiedtdieslerwebservice/test/java/org/jboss/test/ws/tools/sei/ArrayInterface.javaRemove duplicate class definitions1.3modifiedtdieslerwebservice/test/java/org/jboss/test/ws/tools/sei/CustomInterface.javaRemove duplicate class definitions1.3modifiedtdieslerwebservice/test/java/org/jboss/test/ws/tools/sei/ValueTypes.javaRemove duplicate class definitions1.4modifiedtdieslerwebservice/test/resources/jaxb/ComplexTypesService_RPC.xsdAdd test for array wrapper1.5modifiedtdieslerwebservice/test/java/org/jboss/test/ws/jaxb/ComplexTypeUnmarshallerTestCase.javaAdd test for array wrapper1.11modifiedtdieslerwebservice/test/java/org/jboss/test/ws/jaxb/ComplexTypeMarshallerTestCase.javaAdd test for array wrapper1.2modifiedtdieslerwebservice/test/java/org/jboss/test/ws/jaxb/ComplexTypeUnmarshallerGenTestCase.javaAdd test for array wrapper1.6modifiedtdieslerwebservice/test/java/org/jboss/test/ws/jaxb/ComplexTypeMarshallerGenTestCase.javaAdd test for array wrapper1.9modifiedtdieslerwebservice/test/java/org/jboss/test/ws/tools/JavaToWSDL20TestCase.javaMarshalling layer cannot handle complexType name != java class name1.7modifiedtdieslerwebservice/test/java/org/jboss/test/ws/tools/JavaToWSDL11TestCase.javaMarshalling layer cannot handle complexType name != java class name1.3modifiedtdieslerwebservice/test/java/org/jboss/test/ws/jaxb/sei/Base.javaMarshalling layer cannot handle complexType name != java class name1.2modifiedtdieslerwebservice/test/java/org/jboss/test/ws/jaxb/sei/ComplexTypes.javaMarshalling layer cannot handle complexType name != java class name1.1addedtdieslerwebservice/test/java/org/jboss/test/ws/tools/SchemaGeneratorTestCase.javaTest the generated xsd schemas1.1addedtdieslerwebservice/test/java/org/jboss/test/ws/jaxb/sei/Composite.javaMarshalling layer cannot handle complexType name != java class name1.2deletedtdieslerwebservice/test/java/org/jboss/test/ws/jaxb/sei/CompositeType.javaMarshalling layer cannot handle complexType name != java class name1.4deletedtdieslerwebservice/test/java/org/jboss/test/ws/tools/sei/Base.javaRemove duplicate class definitions1.3deletedtdieslerwebservice/test/java/org/jboss/test/ws/tools/sei/Derived.javaRemove duplicate class definitions1.2modifiedtdieslerwebservice/test/java/org/jboss/test/ws/JBossWSTestBase.javaAdd ability to assertEquals(Element, Element)1.5modifiedtdieslerwebservice/src/main/org/jboss/ws/soap/SOAPMessageContextImpl.javaExplicitly generate missing schema definitions1.7modifiedtdieslerwebservice/src/main/org/jboss/ws/soap/SOAPContentElement.javaTrap invalid marshalling result.TODO: better errror handling in the marshalling layer1.6modifiedtdieslerwebservice/src/main/org/jboss/ws/jaxrpc/encoding/JAXBSerializer.javaMake sure the root element has a namespace.1.23modifiedtdieslerwebservice/src/main/org/jboss/ws/jaxrpc/desc/OperationDesc.javaAdd support for jaxrpc-mapping.xml1.7modifiedtdieslerwebservice/src/main/org/jboss/ws/jaxrpc/desc/ServiceDesc.javaAdd support for jaxrpc-mapping.xml1.12modifiedtdieslerwebservice/src/main/org/jboss/ws/jaxrpc/ServiceImpl.javaAdd support for jaxrpc-mapping.xml1.3modifiedtdieslerwebservice/src/main/org/jboss/ws/jaxrpc/SchemaLocationRegistry.javaUse simplyfied xsd schema generation 

[JBoss-dev] [JBoss JIRA] Commented: (JBMICROCONT-5) Main Deployer

2005-01-24 Thread Dimitris Andreadis (JIRA)
 [ 
http://jira.jboss.com/jira/browse/JBMICROCONT-5?page=comments#action_12314837 ]
 
Dimitris Andreadis commented on JBMICROCONT-5:
--

I'm adding a comment here, because the forums are down..

Lets say we have:

a.bean
  |-b.bean
  |-c.jar

And just 3 deployers, registered in that priority order:

(C)lassLoadingDeployer - (B)eanDeployer - (J)ARDeployer.

After the deployment structure is analyzed (by the bean  jar deployers) we 
have the corresponding DeploymentContext/subcontexts in place with each one 
having recorded its own url as a classpath.

How 2nd stage deployment processing would work in this case, wrt depth and 
priority (.jar comes before .bean, according to suffix rules)

C(c.jar) C(b.bean) C(a.bean)
B(c.jar) B(b.bean) B(a.bean)
J(c.jar) J(b.bean) J(a.bean)

Or

C(c.jar) B(c.jar) J(c.jar)
C(b.bean) B(b.bean) J(b.bean)
C(a.bean) B(a.bean) J(a.bean)

Also, in the 1st case, should the MainDeployer control the traversal, or simply 
pass the base context to each deployer, and he traverses at will?

Finally, what would the ClassLoadingDeployer do?

Judging from the 3.x/4.x mechanism it seems to be creating a UCL for the base 
node, then adding the classpath of all subnodes to this UCL. (but processing 
here is parent first).

Should I just go to the top most deployment, create a plain URLClassLoader, add 
all classpaths, and point to it from subcontexts?






 Main Deployer
 -

  Key: JBMICROCONT-5
  URL: http://jira.jboss.com/jira/browse/JBMICROCONT-5
  Project: JBoss MicroContainer
 Type: Task
   Components: Deployment
 Reporter: Adrian Brock
 Assignee: Dimitris Andreadis
  Fix For: JBossMC_1_0_0M2



 MainDeployer
 
 The primary methods of MainDeployer are
 (re/un)deploy(URL)
 other methods are
 (un)register/register(deployer, priority)
 which will be used by the microcontainer
 when a deployer is installed
 stats based methods that expose information from the VDF
 and config/constructors methods for things like the VDF and
 initial deployers.
 deploy(url)
 1) create a skeleton VDF context for the top level deployment
 2) ask the structural component chain who recognises it
 repeat recursively for identified subcontexts
 3) invoke down the deployment component chain
 starting with the deepest subcontexts first
 redeploy(url)
 similar to deploy() but performing a reinstall on the
 microcontainer (i.e. suspend on valve for components being
 reinstalled)
 undeploy(url)
 invoke down the deployment chain in reverse order
 to remove the installed components
 Reverse order means both in terms of subcontexts
 and priority.
 (un)register/register(deployer)
 The deployer here identifies the structural and
 deployment components of the deployer
 and their respective priorities. 
 This will be the name in the registry which 
 might be instantiated later.
 Where present, the deployer is added to the
 relevent chain.
 ISSUE: Need to tighten up the semantics of the
 register/unregister(deployer) for when the
 deployment component has dependencies and
 cannot be instantiated immediately

-- 
This message is automatically generated by JIRA.
-
If you think it was sent incorrectly contact one of the administrators:
   http://jira.jboss.com/jira/secure/Administrators.jspa
-
If you want more information on JIRA, or have a bug to report see:
   http://www.atlassian.com/software/jira



---
This SF.Net email is sponsored by: IntelliVIEW -- Interactive Reporting
Tool for open source databases. Create drag--drop reports. Save time
by over 75%! Publish reports on the web. Export to DOC, XLS, RTF, etc.
Download a FREE copy at http://www.intelliview.com/go/osdn_nl
___
JBoss-Development mailing list
JBoss-Development@lists.sourceforge.net
https://lists.sourceforge.net/lists/listinfo/jboss-development


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

2005-01-24 Thread qa

View results here -> http://cruisecontrol.jboss.com/cc/buildresults/jboss-3.2?log=log20050124072912Lbuild.271
BUILD COMPLETE-build.271Date of build:01/24/2005 07:29:12Time to build:37 minutes 32 secondsLast changed:01/24/2005 06:57:18Last log entry:added cmp remove-table=true




   Unit Tests: (0)   Total Errors and Failures: (0)
Modifications since last build:(3)1.1.2.1modifiedloubyanskytestsuite/src/resources/idgen/META-INF/jbosscmp-jdbc.xmladded cmp remove-table=true1.1.2.2modifiedloubyanskytestsuite/src/resources/cmp2/cacheinvalidation/META-INF/jbosscmp-jdbc.xmladded cmp remove-table=true1.1.2.1modifiedloubyanskytestsuite/src/resources/cmp2/perf/jbosscmp-jdbc.xmladded cmp remove-table=true



[JBoss-dev] [JBoss JIRA] Created: (JBAS-1319) redeploy causes OutOfMemoryError

2005-01-24 Thread Matthew Todd (JIRA)
redeploy causes OutOfMemoryError


 Key: JBAS-1319
 URL: http://jira.jboss.com/jira/browse/JBAS-1319
 Project: JBoss Application Server
Type: Bug
Versions: JBossAS-4.0.1 Final
 Environment: JBoss 4.0.1 running on fedora core 3, using jdk 1.5.0
Reporter: Matthew Todd
 Assigned to: Scott M Stark 


Constant redployment, even of a simple web application eventually causes an 
OutOfMemoryError in JBoss. 
To duplicate, keep on copying a .war package into a servers hot deploy 
directory. Eventually an OutOfMemoryError occurs. 
This is especially dangerous when running as a cluster, as when the node is 
restarted, it is unable to join the cluster again.

-- 
This message is automatically generated by JIRA.
-
If you think it was sent incorrectly contact one of the administrators:
   http://jira.jboss.com/jira/secure/Administrators.jspa
-
If you want more information on JIRA, or have a bug to report see:
   http://www.atlassian.com/software/jira



---
This SF.Net email is sponsored by: IntelliVIEW -- Interactive Reporting
Tool for open source databases. Create drag--drop reports. Save time
by over 75%! Publish reports on the web. Export to DOC, XLS, RTF, etc.
Download a FREE copy at http://www.intelliview.com/go/osdn_nl
___
JBoss-Development mailing list
JBoss-Development@lists.sourceforge.net
https://lists.sourceforge.net/lists/listinfo/jboss-development


[JBoss-dev] [Design of Mail Services] - Re: Resending / bouncing of failed mail

2005-01-24 Thread [EMAIL PROTECTED]
thats odd I get bounce messages  KAbir are you watching?  You worked on 
this...  I think you wrote that code.

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

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


---
This SF.Net email is sponsored by: IntelliVIEW -- Interactive Reporting
Tool for open source databases. Create drag--drop reports. Save time
by over 75%! Publish reports on the web. Export to DOC, XLS, RTF, etc.
Download a FREE copy at http://www.intelliview.com/go/osdn_nl
___
JBoss-Development mailing list
JBoss-Development@lists.sourceforge.net
https://lists.sourceforge.net/lists/listinfo/jboss-development


[JBoss-dev] [JBoss JIRA] Commented: (JBAS-1316) LazyResultSetLoadingTest testLazyResultSetLoading failure

2005-01-24 Thread Alexey Loubyansky (JIRA)
 [ 
http://jira.jboss.com/jira/browse/JBAS-1316?page=comments#action_12314838 ]
 
Alexey Loubyansky commented on JBAS-1316:
-

I couldn't reproduce this with

C:\Program Files\Java\jdk1.5.0\binjava -version
java version 1.5.0
Java(TM) 2 Runtime Environment, Standard Edition (build 1.5.0-b64)
Java HotSpot(TM) Client VM (build 1.5.0-b64, mixed mode, sharing)

I looked at the code though and found several places that could be the cause. 
Most probably this is org/jboss/test/cmp2/commerce/OneToManyBiTest.java.
Could you please update it and try again? Thanks.

 LazyResultSetLoadingTest testLazyResultSetLoading failure
 -

  Key: JBAS-1316
  URL: http://jira.jboss.com/jira/browse/JBAS-1316
  Project: JBoss Application Server
 Type: Bug
   Components: CMP service
 Versions:  JBossAS-3.2.7 Final
  Environment: [EMAIL PROTECTED] testsuite]$ $JAVA_HOME/bin/java -version
 java version 1.5.0_01
 Java(TM) 2 Runtime Environment, Standard Edition (build 1.5.0_01-b08)
 Java HotSpot(TM) Client VM (build 1.5.0_01-b08, mixed mode, sharing)
 Reporter: Scott M Stark
 Assignee: Alexey Loubyansky
 Priority: Blocker
  Fix For:  JBossAS-3.2.7 Final



 This seems to be another case of test data conflicts that I only see when 
 running all cmp2 test, and in this case only when using java5.
 ant -Dtest=cmp2 -Djunit.timeout=18 -Dnojars=t test
 Buildfile: build.xml
 test:
[delete] Deleting: C:\cvs\JBoss3.2\jboss-3.2\testsuite\output\log\test.log
 [junit] Running org.jboss.test.cmp2.audit.test.AuditUnitTestCase
 [junit] Tests run: 7, Failures: 0, Errors: 0, Time elapsed: 0.765 sec
 [junit] Running 
 org.jboss.test.cmp2.cacheinvalidation.test.CacheInvalidation
 UnitTestCase
 [junit] Tests run: 3, Failures: 0, Errors: 0, Time elapsed: 0.828 sec
 [junit] Running 
 org.jboss.test.cmp2.cacheinvalidation.test.JDBC2PmCacheInval
 idationUnitTestCase
 [junit] Tests run: 3, Failures: 0, Errors: 0, Time elapsed: 0.703 sec
 [junit] Running 
 org.jboss.test.cmp2.cmr.test.CMRPostCreatesWrittenUnitTestCase
 [junit] Tests run: 3, Failures: 0, Errors: 0, Time elapsed: 0.563 sec
 [junit] Running org.jboss.test.cmp2.cmrstress.CMRStressTestCase
 [junit] Tests run: 2, Failures: 0, Errors: 0, Time elapsed: 1.125 sec
 [junit] Running 
 org.jboss.test.cmp2.cmrtransaction.test.CMRTransactionUnitTestCase
 [junit] Tests run: 2, Failures: 0, Errors: 0, Time elapsed: 0.437 sec
 [junit] Running org.jboss.test.cmp2.cmrtree.test.CascadeDeleteUnitTestCase
 [junit] Tests run: 1, Failures: 0, Errors: 0, Time elapsed: 0.609 sec
 [junit] Running org.jboss.test.cmp2.commerce.CompleteUnitTestCase
 [junit] Tests run: 31, Failures: 1, Errors: 0, Time elapsed: 5.281 sec
 [junit] Test org.jboss.test.cmp2.commerce.CompleteUnitTestCase FAILED
 ...
   testcase classname=org.jboss.test.cmp2.commerce.LazyResultSetLoadingTest 
 name=testLazyResultSetLoading time=0.203
 failure message=Expected 3 line items but got 53 
 type=net.sourceforge.junitejb.RemoteAssertionFailedErrorjunit.framework.AssertionFailedError:
  Expected 3 line items but got 53
   at 
 org.jboss.test.cmp2.commerce.LazyResultSetLoadingTest.testLazyResultSetLoading(LazyResultSetLoadingTest.java:95)
   at sun.reflect.NativeMethodAccessorImpl.invoke0(Native Method)
   at 
 sun.reflect.NativeMethodAccessorImpl.invoke(NativeMethodAccessorImpl.java:39)
   at 
 sun.reflect.DelegatingMethodAccessorImpl.invoke(DelegatingMethodAccessorImpl.java:25)
   at net.sourceforge.junitejb.EJBTestCase.runBare(EJBTestCase.java:133)
   at 
 net.sourceforge.junitejb.EJBTestRunnerBean.runTestCase(EJBTestRunnerBean.java:102)
   at 
 net.sourceforge.junitejb.EJBTestRunnerBean.run(EJBTestRunnerBean.java:44)
   at sun.reflect.NativeMethodAccessorImpl.invoke0(Native Method)
   at 
 sun.reflect.NativeMethodAccessorImpl.invoke(NativeMethodAccessorImpl.java:39)
   at 
 sun.reflect.DelegatingMethodAccessorImpl.invoke(DelegatingMethodAccessorImpl.java:25)
   at 
 org.jboss.ejb.StatelessSessionContainer$ContainerInterceptor.invoke(StatelessSessionContainer.java:683)
   at 
 org.jboss.resource.connectionmanager.CachedConnectionInterceptor.invoke(CachedConnectionInterceptor.java:186)
   at 
 org.jboss.ejb.plugins.AbstractTxInterceptor.invokeNext(AbstractTxInterceptor.java:84)
   at 
 org.jboss.ejb.plugins.AbstractTxInterceptorBMT.invokeNext(AbstractTxInterceptorBMT.java:144)
   at 
 org.jboss.ejb.plugins.TxInterceptorBMT.invoke(TxInterceptorBMT.java:62)
   at 
 org.jboss.ejb.plugins.StatelessSessionInstanceInterceptor.invoke(StatelessSessionInstanceInterceptor.java:72)
   at 
 org.jboss.ejb.plugins.SecurityInterceptor.invoke(SecurityInterceptor.java:111)
   at org.jboss.ejb.plugins.LogInterceptor.invoke(LogInterceptor.java:192)
   at 
 

[JBoss-dev] [JBossCache] - Re: JBossCache 1.2 released

2005-01-24 Thread octopus
One more problem found. I have 2 nodes in replicated cluster with following 
descriptor (the same for both nodes):


  | ?xml version=1.0 encoding=UTF-8?
  | 
  | !-- = 
--
  | !--  JBoss Cache configuration.   
--
  | !--   
--
  | !--   
--
  | !-- = 
--
  | 
  | server
  | 
  | classpath codebase=./lib archives=jboss-cache.jar, jgroups.jar/
  | 
  | 
  | !-- 
 --
  | !-- Defines TreeCache configuration
  --
  | !-- 
 --
  | 
  | mbean code=org.jboss.cache.TreeCache
  | name=jboss.cache:service=TreeCache
  | 
  | dependsjboss:service=Naming/depends
  | dependsjboss:service=TransactionManager/depends
  | 
  | !--attribute name=JndiNamejava:comp/TreeCache/attribute--
  | 
  | !--
  | Configure the TransactionManager
  | --
  | attribute 
name=TransactionManagerLookupClassorg.jboss.cache.JBossTransactionManagerLookup/attribute
  | 
  | !--
  | Isolation level : SERIALIZABLE
  |   REPEATABLE_READ (default)
  |   READ_COMMITTED
  |   READ_UNCOMMITTED
  |   NONE
  | --
  | attribute name=IsolationLevelNONE/attribute
  | 
  | !--
  |  Valid modes are LOCAL, REPL_ASYNC and REPL_SYNC
  | --
  | attribute name=CacheModeREPL_ASYNC/attribute
  | 
  | !--
  | Just used for async repl: use a replication queue
  | --
  | attribute name=UseReplQueuefalse/attribute
  | 
  | !--
  | Replication interval for replication queue (in ms)
  | --
  | attribute name=ReplQueueInterval0/attribute
  | 
  | !--
  | Max number of elements which trigger replication
  | --
  | attribute name=ReplQueueMaxElements0/attribute
  | 
  | !-- Name of cluster. Needs to be the same for all clusters, in 
order
  |  to find each other
  | --
  | attribute name=ClusterNameTreeCache-Cluster/attribute
  | 
  | !-- JGroups protocol stack properties. Can also be a URL,
  |  e.g. file:/home/bela/default.xml
  |attribute name=ClusterProperties/attribute
  | --
  | 
  | attribute name=ClusterConfig
  | config
  | !-- UDP: if you have a multihomed machine,
  | set the bind_addr attribute to the appropriate NIC IP 
address, e.g bind_addr=192.168.0.2
  | --
  | !-- UDP: On Windows machines, because of the media sense 
feature
  |  being broken with multicast (even after disabling media 
sense)
  |  set the loopback attribute to true --
  | UDP mcast_addr=228.1.2.3 mcast_port=45603
  | ip_ttl=64 ip_mcast=true
  | mcast_send_buf_size=15 mcast_recv_buf_size=8
  | ucast_send_buf_size=15 ucast_recv_buf_size=8
  | loopback=false bind_addr=192.168.100.155/
  | PING timeout=2000 num_initial_members=3
  | up_thread=false down_thread=false/
  | MERGE2 min_interval=1 max_interval=2/
  | !--FD shun=true up_thread=true 
down_thread=true /--
  | FD_SOCK/
  | VERIFY_SUSPECT timeout=1500
  | up_thread=false down_thread=false/
  | pbcast.NAKACK gc_lag=50 
retransmit_timeout=600,1200,2400,4800
  | max_xmit_size=8192 up_thread=false 
down_thread=false/
  | UNICAST timeout=600,1200,2400 window_size=100 
min_threshold=10
  | down_thread=false/
  | pbcast.STABLE desired_avg_gossip=2
  | up_thread=false down_thread=false/
  | FRAG frag_size=8192
  | down_thread=false up_thread=false/
  | pbcast.GMS join_timeout=5000 join_retry_timeout=2000
  | shun=true print_local_addr=true/
  | pbcast.STATE_TRANSFER up_thread=true down_thread=true/
  | /config
  | /attribute
  | 
  | !--
  |  Max number of entries in the cache. If this is exceeded, the
  |  eviction policy will kick some entries out in order to make
  |  more room
  | attribute 

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

2005-01-24 Thread qa

View results here -> http://cruisecontrol.jboss.com/cc/buildresults/jboss-3.2-testsuite?log=log20050124091936
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:01/24/2005 09:19:36Time to build:18 minutes 32 secondsLast changed:01/24/2005 08:55:29Last log entry:fixed potentional cleanup issue




   Unit Tests: (0)   Total Errors and Failures: (0)
Modifications since last build:(10)1.1.2.5modifiedloubyanskytestsuite/src/main/org/jboss/test/cmp2/commerce/LimitOffsetTest.javafixed potentional cleanup issue1.2.2.1modifiedloubyanskytestsuite/src/main/org/jboss/test/cmp2/commerce/ManyToOneUniTest.javafixed potentional cleanup issue1.2.2.1modifiedloubyanskytestsuite/src/main/org/jboss/test/cmp2/commerce/OneToManyBiTest.javafixed potentional cleanup issue1.1.2.1modifiedloubyanskytestsuite/src/resources/idgen/META-INF/jbosscmp-jdbc.xmladded cmp remove-table=true1.1.2.2modifiedloubyanskytestsuite/src/resources/cmp2/cacheinvalidation/META-INF/jbosscmp-jdbc.xmladded cmp remove-table=true1.1.2.1modifiedloubyanskytestsuite/src/resources/cmp2/perf/jbosscmp-jdbc.xmladded cmp remove-table=true1.4.2.6modifiedstarksmsecurity/src/main/org/jboss/security/Util.javaUpdate the initialization of the sealed object cipher to only use the cipher iv its non-null. The previous approach of trying to init the cipher with an iv and then retrying without an iv on exception was not working across the jce implementations of jdk 1.3, 1.4.x and 1.5.1.5.4.6modifiedstarksmsecurity/src/main/org/jboss/security/srp/SRPRemoteServer.javaMove the creation of the SRPParameters cipher iv to the SRPVerifierInfo.VerifierInfo1.2.6.3modifiedstarksmsecurity/src/main/org/jboss/security/srp/SRPParameters.javaAdd a ctor for that accepts the cipher iv.1.2.4.3modifiedstarksmsecurity/src/main/org/jboss/security/srp/SRPVerifierStore.javaAdd the cipher iv to the VerifierInfo as there are problems with simply trying to create an iv and use it across the various jdk jce implementations when the cipher does not support an iv.



[JBoss-dev] [JBoss JIRA] Updated: (JBCACHE-37) Stack Overflow when using Collection classes in TreeCacheAop

2005-01-24 Thread Andrew May (JIRA)
 [ http://jira.jboss.com/jira/browse/JBCACHE-37?page=history ]

Andrew May updated JBCACHE-37:
--

Attachment: project.zip

Eclipse project for test (includes ant script) - I've excluded the XDoclet libs 
that were in the lib directory, and you'll need to override the location of the 
JBoss installation so that it can find the necessary JBoss libs.

 Stack Overflow when using Collection classes in TreeCacheAop
 

  Key: JBCACHE-37
  URL: http://jira.jboss.com/jira/browse/JBCACHE-37
  Project: JBoss Cache
 Type: Bug
 Versions: 1.2
  Environment: JBoss 4.0.1, JDK 1.5 (and also 1.4.2), Linux (Mandrake 10.0)
 Reporter: Andrew May
 Assignee: Ben Wang
  Fix For: 1.2.1
  Attachments: cachetest.jar, cachetest.zip, jboss-aop.xml, project.zip, 
 treeCacheAop-service.xml


 Stack overflow when calling TreeCacheAop.putObject(Fqn, Object) for an 
 aspectized object that contains a Collection class (tested with HashSet, 
 ArrayList and HashMap):
 Thread [http-0.0.0.0-7001-Processor25] (Suspended (exception 
 java.lang.StackOverflowError))
   
 org.jboss.aop.deployment.JBossClassPool(javassist.ClassPool).toClass(javassist.CtClass)
  line: 713
 ...
   org.jboss.aop.deployment.JBossClassPool.toClass(javassist.CtClass, 
 java.lang.ClassLoader) line: 50
   
 org.jboss.aop.deployment.JBossClassPool(javassist.ClassPool).toClass(javassist.CtClass)
  line: 713
   org.jboss.aop.deployment.JBossClassPool.toClass(javassist.CtClass, 
 java.lang.ClassLoader) line: 50
   
 org.jboss.aop.deployment.JBossClassPool(javassist.ClassPool).toClass(javassist.CtClass)
  line: 713
   org.jboss.aop.deployment.JBossClassPool.toClass(javassist.CtClass, 
 java.lang.ClassLoader) line: 50
   javassist.CtNewClass(javassist.CtClass).toClass() line: 1000
   org.jboss.aop.proxy.ClassProxyFactory.generateProxy(java.lang.Class) 
 line: 138
   org.jboss.aop.proxy.ClassProxyFactory.newInstance(java.lang.Class) 
 line: 52
   
 org.jboss.cache.aop.CollectionInterceptorUtil.getMethodMap(java.lang.Class) 
 line: 50
   
 org.jboss.cache.aop.CachedSetInterceptor.init(org.jboss.cache.aop.TreeCacheAop,
  org.jboss.cache.Fqn, java.lang.Class) line: 41
   org.jboss.cache.aop.TreeCacheAop._putObject(org.jboss.cache.Fqn, 
 java.lang.Object) line: 372
   org.jboss.cache.aop.TreeCacheAop._putObject(org.jboss.cache.Fqn, 
 java.lang.Object) line: 265
   org.jboss.cache.aop.TreeCacheAop.putObject(org.jboss.cache.Fqn, 
 java.lang.Object) line: 130
 Originally this was happening within our application, but I've managed to 
 write a simple test bean that demonstrates the problem.

-- 
This message is automatically generated by JIRA.
-
If you think it was sent incorrectly contact one of the administrators:
   http://jira.jboss.com/jira/secure/Administrators.jspa
-
If you want more information on JIRA, or have a bug to report see:
   http://www.atlassian.com/software/jira



---
This SF.Net email is sponsored by: IntelliVIEW -- Interactive Reporting
Tool for open source databases. Create drag--drop reports. Save time
by over 75%! Publish reports on the web. Export to DOC, XLS, RTF, etc.
Download a FREE copy at http://www.intelliview.com/go/osdn_nl
___
JBoss-Development mailing list
JBoss-Development@lists.sourceforge.net
https://lists.sourceforge.net/lists/listinfo/jboss-development


[JBoss-dev] [JBoss JIRA] Commented: (JBREM-38) SSH transport

2005-01-24 Thread John Mazzitelli (JIRA)
 [ http://jira.jboss.com/jira/browse/JBREM-38?page=comments#action_12314842 
]
 
John Mazzitelli commented on JBREM-38:
--

Side note: this JSch (Java Secure Channel) project is integreated into Eclipse. 
 It's how Eclipse 3.x now does SSH2 with CVS.  So, you can look at Eclipse code 
to see how this JSch can be integrated.  See 
http://www.jcraft.com/eclipse-cvsssh2/

 SSH transport
 -

  Key: JBREM-38
  URL: http://jira.jboss.com/jira/browse/JBREM-38
  Project: JBoss Remoting
 Type: Feature Request
   Components: transport
 Versions: 1.0.1 beta
 Reporter: Tom  Elrod
 Assignee: Tom  Elrod
 Priority: Optional



 Check out http://www.jcraft.com/jsch/index.html and see if can be used for a 
 SSH transport.  Also see 
 http://www.jboss.org/index.html?module=bbop=viewtopict=58498 for more 
 comments on this topic.

-- 
This message is automatically generated by JIRA.
-
If you think it was sent incorrectly contact one of the administrators:
   http://jira.jboss.com/jira/secure/Administrators.jspa
-
If you want more information on JIRA, or have a bug to report see:
   http://www.atlassian.com/software/jira



---
This SF.Net email is sponsored by: IntelliVIEW -- Interactive Reporting
Tool for open source databases. Create drag--drop reports. Save time
by over 75%! Publish reports on the web. Export to DOC, XLS, RTF, etc.
Download a FREE copy at http://www.intelliview.com/go/osdn_nl
___
JBoss-Development mailing list
JBoss-Development@lists.sourceforge.net
https://lists.sourceforge.net/lists/listinfo/jboss-development


[JBoss-dev] [Design of Mail Services] - Re: JaasUserRepository

2005-01-24 Thread [EMAIL PROTECTED]
uhh...no because then ALL users would have access to *all* mailboxes.  Unless 
I'm missing something..

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

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


---
This SF.Net email is sponsored by: IntelliVIEW -- Interactive Reporting
Tool for open source databases. Create drag--drop reports. Save time
by over 75%! Publish reports on the web. Export to DOC, XLS, RTF, etc.
Download a FREE copy at http://www.intelliview.com/go/osdn_nl
___
JBoss-Development mailing list
JBoss-Development@lists.sourceforge.net
https://lists.sourceforge.net/lists/listinfo/jboss-development


[JBoss-dev] [Design of JBoss/Tomcat Integration] - tomcat-5.0.27 authentication/authorization

2005-01-24 Thread mate12


Can I change authorization parameters in code?

I found this:

1. Check whether there is an Authorization header. If there is
no such header, go to Step 2. If there is, skip over the word
basic and reverse the base64 encoding of the remaining part.
This results in a string of the form username:password. Check
the username and password against some stored set. If it
matches, return the page. If not, go to Step 2.

2. Return a 401 (Unauthorized) response code and a header of
the following form:
WWW-Authenticate: BASIC realm=some-name
This response instructs the browser to pop up a dialog box telling
the user to enter a name and password for some-name, then
to reconnect with that username and password embedded in a
single base64 string inside the Authorization header.

Also if auth-methodBASIC/auth-method then 
request.getHeader(Authorization); return something like this Basic 
YWRtaW46YWRtaW4= (this is for admin:admin ), but if 
auth-methodFORM/auth-method then request.getHeader(Authorization); 
return null.
Where is it? In session?

I use this for decoding:
String authorization = request.getHeader(Authorization);
String userInfo = authorization.substring(6).trim();
BASE64Decoder decoder = new BASE64Decoder();
String nameAndPassword =
  new String(decoder.decodeBuffer(userInfo));
int index = nameAndPassword.indexOf(:);
String user = nameAndPassword.substring(0, index);
String password = nameAndPassword.substring(index+1);

I try with admin:admin and with sun.misc.BASE64Encoder make encode, and with 
response.setHeader(Authorization, Basic YWRtaW46YWRtaW4=), but nothing 
happen and I can't get secure pages?

So, can I /addchange authorization parameters in code or server can only do 
this? 



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

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


---
This SF.Net email is sponsored by: IntelliVIEW -- Interactive Reporting
Tool for open source databases. Create drag--drop reports. Save time
by over 75%! Publish reports on the web. Export to DOC, XLS, RTF, etc.
Download a FREE copy at http://www.intelliview.com/go/osdn_nl
___
JBoss-Development mailing list
JBoss-Development@lists.sourceforge.net
https://lists.sourceforge.net/lists/listinfo/jboss-development


[JBoss-dev] [Design of JBoss Build System] - Re: New Build in JBoss-Head

2005-01-24 Thread [EMAIL PROTECTED]
I've fixed this. You are correct, SourceDefinition.generateTargets should break
out of the loop once it realizes that one of the Source elements applies rather
than trying to generate a target for each one that applies.

I fixed it in other places as well. Most of them were doing it wrong.

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

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


---
This SF.Net email is sponsored by: IntelliVIEW -- Interactive Reporting
Tool for open source databases. Create drag--drop reports. Save time
by over 75%! Publish reports on the web. Export to DOC, XLS, RTF, etc.
Download a FREE copy at http://www.intelliview.com/go/osdn_nl
___
JBoss-Development mailing list
JBoss-Development@lists.sourceforge.net
https://lists.sourceforge.net/lists/listinfo/jboss-development


[JBoss-dev] [Design of JBoss Build System] - Re: New Build in JBoss-Head

2005-01-24 Thread [EMAIL PROTECTED]
Also, as a heads up. 

We don't use tabs in source.

1) Most developers use 3 *spaces* for tabs which doesn't work if you use
different editors that defaults to 4 or 8
2) Tabs don't display correctly when source is viewed by online tools. HTML
converts the tab to one space.

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

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


---
This SF.Net email is sponsored by: IntelliVIEW -- Interactive Reporting
Tool for open source databases. Create drag--drop reports. Save time
by over 75%! Publish reports on the web. Export to DOC, XLS, RTF, etc.
Download a FREE copy at http://www.intelliview.com/go/osdn_nl
___
JBoss-Development mailing list
JBoss-Development@lists.sourceforge.net
https://lists.sourceforge.net/lists/listinfo/jboss-development


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

2005-01-24 Thread qa

View results here -> http://cruisecontrol.jboss.com/cc/buildresults/jboss-4.0-jdk-matrix?log=log20050124095046Lbuild.71
BUILD COMPLETE-build.71Date of build:01/24/2005 09:50:46Time to build:55 minutes 22 secondsLast changed:01/24/2005 09:21:57Last log entry:fixed potentional cleanup issue




   Unit Tests: (0)   Total Errors and Failures: (0)
Modifications since last build:(10)1.4.4.1modifiedloubyanskytestsuite/src/main/org/jboss/test/cmp2/commerce/LimitOffsetTest.javafixed potentional cleanup issue1.4.6.1modifiedloubyanskytestsuite/src/main/org/jboss/test/cmp2/commerce/ManyToOneUniTest.javafixed potentional cleanup issue1.4.6.1modifiedloubyanskytestsuite/src/main/org/jboss/test/cmp2/commerce/OneToManyBiTest.javafixed potentional cleanup issue1.2.2.1modifiedloubyanskytestsuite/src/resources/idgen/META-INF/jbosscmp-jdbc.xmladded cmp remove-table=true1.2.2.2modifiedloubyanskytestsuite/src/resources/cmp2/cacheinvalidation/META-INF/jbosscmp-jdbc.xmladded cmp remove-table=true1.2.2.1modifiedloubyanskytestsuite/src/resources/cmp2/perf/jbosscmp-jdbc.xmladded cmp remove-table=true1.8.4.1modifiedstarksmsecurity/src/main/org/jboss/security/Util.javaUpdate the initialization of the sealed object cipher to only use the cipher iv its non-null. The previous approach of trying to init the cipher with an iv and then retrying without an iv on exception was not working across the jce implementations of jdk 1.3, 1.4.x and 1.5.1.10.6.1modifiedstarksmsecurity/src/main/org/jboss/security/srp/SRPRemoteServer.javaMove the creation of the SRPParameters cipher iv to the SRPVerifierInfo.VerifierInfo1.4.6.1modifiedstarksmsecurity/src/main/org/jboss/security/srp/SRPParameters.javaAdd a ctor for that accepts the cipher iv.1.5.6.1modifiedstarksmsecurity/src/main/org/jboss/security/srp/SRPVerifierStore.javaAdd the cipher iv to the VerifierInfo as there are problems with simply trying to create an iv and use it across the various jdk jce implementations when the cipher does not support an iv.



[JBoss-dev] [Design of JBoss Build System] - Re: New Build in JBoss-Head

2005-01-24 Thread [EMAIL PROTECTED]
TABS?!  To the gallows with you!

[I believe there is code conventions document on sourceforge that describe the 
basic requirements]

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

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


---
This SF.Net email is sponsored by: IntelliVIEW -- Interactive Reporting
Tool for open source databases. Create drag--drop reports. Save time
by over 75%! Publish reports on the web. Export to DOC, XLS, RTF, etc.
Download a FREE copy at http://www.intelliview.com/go/osdn_nl
___
JBoss-Development mailing list
JBoss-Development@lists.sourceforge.net
https://lists.sourceforge.net/lists/listinfo/jboss-development


[JBoss-dev] [Design the new POJO MicroContainer] - Re: Deployers overview

2005-01-24 Thread [EMAIL PROTECTED]
Dimitris wrote : 
  | Lets say we have:
  | 
  | a.bean
  |   |-b.bean
  |   |-c.jar
  | 
  | And just 3 deployers, registered in that priority order:
  | 
  | (C)lassLoadingDeployer - (B)eanDeployer - (J)ARDeployer.
  | 
  | After the deployment structure is analyzed (by the bean  jar deployers) we 
have the corresponding DeploymentContext/subcontexts in place with each one 
having recorded its own url as a classpath.
  | 
  | How 2nd stage deployment processing would work in this case, wrt depth and 
priority (.jar comes before .bean, according to suffix rules)
  | 
  | C(c.jar) C(b.bean) C(a.bean)
  | B(c.jar) B(b.bean) B(a.bean)
  | J(c.jar) J(b.bean) J(a.bean)
  | 
  | Or
  | 
  | C(c.jar) B(c.jar) J(c.jar)
  | C(b.bean) B(b.bean) J(b.bean)
  | C(a.bean) B(a.bean) J(a.bean)
  | 
  | Also, in the 1st case, should the MainDeployer control the traversal, or 
simply pass the base context to each deployer, and he traverses at will?
  | 
  | Finally, what would the ClassLoadingDeployer do?
  | 
  | Judging from the 3.x/4.x mechanism it seems to be creating a UCL for the 
base node, then adding the classpath of all subnodes to this UCL. (but 
processing here is parent first).
  | 
  | Should I just go to the top most deployment, create a plain URLClassLoader, 
add all classpaths, and point to it from subcontexts?
  | 

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

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


---
This SF.Net email is sponsored by: IntelliVIEW -- Interactive Reporting
Tool for open source databases. Create drag--drop reports. Save time
by over 75%! Publish reports on the web. Export to DOC, XLS, RTF, etc.
Download a FREE copy at http://www.intelliview.com/go/osdn_nl
___
JBoss-Development mailing list
JBoss-Development@lists.sourceforge.net
https://lists.sourceforge.net/lists/listinfo/jboss-development


[JBoss-dev] [Design the new POJO MicroContainer] - Re: Deployers overview

2005-01-24 Thread [EMAIL PROTECTED]
The second stage deployers still need to ordered, but it may not be the
same order as the structural orders.

The difference is that ALL second stage deployers get to process the deployment.

The second stage deployers create the BeanMetaData and (un)install it to the 
kernel.

They DO NOT create objects explicitly, except where it would make no difference
to dependency ordering. e.g. There is little point telling the BeanMetaData to
instantatiate a java.lang.Integer through metadata when you can just pass the 
object
directly as the value (this assumes you have the object already rather than 
just a string).

So the ordering is less important at the second stage and only becomes relevent
when one deployer wants to process metadata created by a previous deployer.

This response is a repeat of a discussion we had at the end of last year.

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

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


---
This SF.Net email is sponsored by: IntelliVIEW -- Interactive Reporting
Tool for open source databases. Create drag--drop reports. Save time
by over 75%! Publish reports on the web. Export to DOC, XLS, RTF, etc.
Download a FREE copy at http://www.intelliview.com/go/osdn_nl
___
JBoss-Development mailing list
JBoss-Development@lists.sourceforge.net
https://lists.sourceforge.net/lists/listinfo/jboss-development


[JBoss-dev] [Design the new POJO MicroContainer] - Re: Deployers overview

2005-01-24 Thread [EMAIL PROTECTED]
It would not be a good idea to have the deployers know their own next
since the list can be potentially built and ordered dynamically.

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

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


---
This SF.Net email is sponsored by: IntelliVIEW -- Interactive Reporting
Tool for open source databases. Create drag--drop reports. Save time
by over 75%! Publish reports on the web. Export to DOC, XLS, RTF, etc.
Download a FREE copy at http://www.intelliview.com/go/osdn_nl
___
JBoss-Development mailing list
JBoss-Development@lists.sourceforge.net
https://lists.sourceforge.net/lists/listinfo/jboss-development


[JBoss-dev] [Design of Mail Services] - Re: JaasUserRepository

2005-01-24 Thread djmalan
The forum s/w gets confused with  characters and dropped some of the previous 
post, I'll use curly braces instead:

jbmail-{username}-access

e.g. the role jbmail-testuser-read will grant read access to the testuser 
mailbox.

Rights could include read, write, delete, create-folder, delete-folder and full.

The jbmail- prefix would distinguish the roles from other possibly pre-existing 
roles in the JAAS repository.


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

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


---
This SF.Net email is sponsored by: IntelliVIEW -- Interactive Reporting
Tool for open source databases. Create drag--drop reports. Save time
by over 75%! Publish reports on the web. Export to DOC, XLS, RTF, etc.
Download a FREE copy at http://www.intelliview.com/go/osdn_nl
___
JBoss-Development mailing list
JBoss-Development@lists.sourceforge.net
https://lists.sourceforge.net/lists/listinfo/jboss-development


[JBoss-dev] [JBoss JIRA] Assigned: (JBAS-1319) redeploy causes OutOfMemoryError

2005-01-24 Thread Scott M Stark (JIRA)
 [ http://jira.jboss.com/jira/browse/JBAS-1319?page=history ]

Scott M Stark reassigned JBAS-1319:
---

Assign To: Clebert Suconic  (was: Scott M Stark)

 redeploy causes OutOfMemoryError
 

  Key: JBAS-1319
  URL: http://jira.jboss.com/jira/browse/JBAS-1319
  Project: JBoss Application Server
 Type: Bug
 Versions: JBossAS-4.0.1 Final
  Environment: JBoss 4.0.1 running on fedora core 3, using jdk 1.5.0
 Reporter: Matthew Todd
 Assignee: Clebert Suconic



 Constant redployment, even of a simple web application eventually causes an 
 OutOfMemoryError in JBoss. 
 To duplicate, keep on copying a .war package into a servers hot deploy 
 directory. Eventually an OutOfMemoryError occurs. 
 This is especially dangerous when running as a cluster, as when the node is 
 restarted, it is unable to join the cluster again.

-- 
This message is automatically generated by JIRA.
-
If you think it was sent incorrectly contact one of the administrators:
   http://jira.jboss.com/jira/secure/Administrators.jspa
-
If you want more information on JIRA, or have a bug to report see:
   http://www.atlassian.com/software/jira



---
This SF.Net email is sponsored by: IntelliVIEW -- Interactive Reporting
Tool for open source databases. Create drag--drop reports. Save time
by over 75%! Publish reports on the web. Export to DOC, XLS, RTF, etc.
Download a FREE copy at http://www.intelliview.com/go/osdn_nl
___
JBoss-Development mailing list
JBoss-Development@lists.sourceforge.net
https://lists.sourceforge.net/lists/listinfo/jboss-development


[JBoss-dev] [TODO -- DEVELOPMENT] - Hibernate work

2005-01-24 Thread salmann
Hi I like to work with Hibernate Development Team. Is there some thing for me. 

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

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


---
This SF.Net email is sponsored by: IntelliVIEW -- Interactive Reporting
Tool for open source databases. Create drag--drop reports. Save time
by over 75%! Publish reports on the web. Export to DOC, XLS, RTF, etc.
Download a FREE copy at http://www.intelliview.com/go/osdn_nl
___
JBoss-Development mailing list
JBoss-Development@lists.sourceforge.net
https://lists.sourceforge.net/lists/listinfo/jboss-development


[JBoss-dev] [TODO -- DEVELOPMENT] - Re: Hibernate work

2005-01-24 Thread [EMAIL PROTECTED]
we have a JIRA that shows outstanding issues that you can chip in on.

We are also very close to do a alpha release of our toolset which could use 
more hands. lot of stuff to do - monitor the newschannels the next couple of 
days 

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

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


---
This SF.Net email is sponsored by: IntelliVIEW -- Interactive Reporting
Tool for open source databases. Create drag--drop reports. Save time
by over 75%! Publish reports on the web. Export to DOC, XLS, RTF, etc.
Download a FREE copy at http://www.intelliview.com/go/osdn_nl
___
JBoss-Development mailing list
JBoss-Development@lists.sourceforge.net
https://lists.sourceforge.net/lists/listinfo/jboss-development


[JBoss-dev] [Design the new POJO MicroContainer] - Re: Deployers overview

2005-01-24 Thread [EMAIL PROTECTED]
The points you mention are clear more less, i.e. deployers don't know their 
next, they all process the deployment after the structure has been identified 
and they don't instantiate objects directly. Their order is decided at 
registration time.

What I'm trying to understant is, when having a deployment with nested 
subdeployments, if it is important for any given Deployer to process the 
deployment  subdeployments completely (either parent first, or depth first), 
before the next in the chain does the same. (This was the first scenario 
described)



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

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


---
This SF.Net email is sponsored by: IntelliVIEW -- Interactive Reporting
Tool for open source databases. Create drag--drop reports. Save time
by over 75%! Publish reports on the web. Export to DOC, XLS, RTF, etc.
Download a FREE copy at http://www.intelliview.com/go/osdn_nl
___
JBoss-Development mailing list
JBoss-Development@lists.sourceforge.net
https://lists.sourceforge.net/lists/listinfo/jboss-development


[JBoss-dev] [Design of JBoss Portal] - Re: Errors when building and deploying Jboss Portal v.2.0 Al

2005-01-24 Thread Egarcialopez
FYI,

JBossPortal 2.0 on JBossAS 4.0.1 final release is fully functional.

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

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


---
This SF.Net email is sponsored by: IntelliVIEW -- Interactive Reporting
Tool for open source databases. Create drag--drop reports. Save time
by over 75%! Publish reports on the web. Export to DOC, XLS, RTF, etc.
Download a FREE copy at http://www.intelliview.com/go/osdn_nl
___
JBoss-Development mailing list
JBoss-Development@lists.sourceforge.net
https://lists.sourceforge.net/lists/listinfo/jboss-development


[JBoss-dev] [Design of AOP on JBoss (Aspects/JBoss)] - Inteception and SessionContext

2005-01-24 Thread john.howard9
On an intercept of a method call to a stateless session bean, is there anyway 
to get the SessionContext.  Failing this is there anyway I can obtain the 
caller  details (e.g. principal and isinrole).   I have no control over the 
SLSB, which may or may not have kept the session context passed in 
setSessionContext().

Thanks for any help,

John.

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

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


---
This SF.Net email is sponsored by: IntelliVIEW -- Interactive Reporting
Tool for open source databases. Create drag--drop reports. Save time
by over 75%! Publish reports on the web. Export to DOC, XLS, RTF, etc.
Download a FREE copy at http://www.intelliview.com/go/osdn_nl
___
JBoss-Development mailing list
JBoss-Development@lists.sourceforge.net
https://lists.sourceforge.net/lists/listinfo/jboss-development


[JBoss-dev] [JBossCache] - Re: JBossCache 1.2 released

2005-01-24 Thread [EMAIL PROTECTED]
Can you open up a JIRA (jira.jboss.com) issue  and supply a unit test case for 
this? Module is jboss cache and you can assign it to me.

I have tried to reproduce it using replicated/SyncTxUnitTestCase by assigning 
the islolation level to NONE. But only the case where testConcurrentPut fails. 
And this should be expected since there is NO locking what so ever so you'd 
expect concurrency won't work.

-Ben

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

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


---
This SF.Net email is sponsored by: IntelliVIEW -- Interactive Reporting
Tool for open source databases. Create drag--drop reports. Save time
by over 75%! Publish reports on the web. Export to DOC, XLS, RTF, etc.
Download a FREE copy at http://www.intelliview.com/go/osdn_nl
___
JBoss-Development mailing list
JBoss-Development@lists.sourceforge.net
https://lists.sourceforge.net/lists/listinfo/jboss-development


[JBoss-dev] [JBossCache] - Re: Proposal for JBoss Cache events

2005-01-24 Thread [EMAIL PROTECTED]
When TreeCacheAop detects a field R/W, the EventInterceptor will send out an 
event of object modified (and potentially the mod. fields), not just the field 
event. So this is object level event.

I am not sure if I like the idea of transaction-based event sending out from 
JBossCache either.

-Ben

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

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


---
This SF.Net email is sponsored by: IntelliVIEW -- Interactive Reporting
Tool for open source databases. Create drag--drop reports. Save time
by over 75%! Publish reports on the web. Export to DOC, XLS, RTF, etc.
Download a FREE copy at http://www.intelliview.com/go/osdn_nl
___
JBoss-Development mailing list
JBoss-Development@lists.sourceforge.net
https://lists.sourceforge.net/lists/listinfo/jboss-development


[JBoss-dev] [JBossCache] - Re: persistPolicy on TreeCache??

2005-01-24 Thread [EMAIL PROTECTED]
JBossCache xml won't accept your xmbean element. If you want to have different 
persistent policy, you will need a different CacheLoader, if this is what you 
are after.

-Ben

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

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


---
This SF.Net email is sponsored by: IntelliVIEW -- Interactive Reporting
Tool for open source databases. Create drag--drop reports. Save time
by over 75%! Publish reports on the web. Export to DOC, XLS, RTF, etc.
Download a FREE copy at http://www.intelliview.com/go/osdn_nl
___
JBoss-Development mailing list
JBoss-Development@lists.sourceforge.net
https://lists.sourceforge.net/lists/listinfo/jboss-development


[JBoss-dev] [JBossCache] - Re: prune in LRUAlgorithm

2005-01-24 Thread [EMAIL PROTECTED]
Kevin,

To re-phrase your question, yes, I think there is a use case when a GET is 
on-going and while evict is blocked. And when GET succeeds, evict will succeed 
as well in removing the same node. Next time GET will return a null.

But keep in mind that with eviction policy, there is no quaranttee that a GET 
will always be successful anyway. You will always need to guard against null 
return value anyway. So I don't think this is a serious issue. What do you 
think?

Finally, if CacheLoader is used, this is not an issue.

-Ben



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

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


---
This SF.Net email is sponsored by: IntelliVIEW -- Interactive Reporting
Tool for open source databases. Create drag--drop reports. Save time
by over 75%! Publish reports on the web. Export to DOC, XLS, RTF, etc.
Download a FREE copy at http://www.intelliview.com/go/osdn_nl
___
JBoss-Development mailing list
JBoss-Development@lists.sourceforge.net
https://lists.sourceforge.net/lists/listinfo/jboss-development


[JBoss-dev] [Design the new POJO MicroContainer] - Re: Deployers overview

2005-01-24 Thread [EMAIL PROTECTED]
I couldn't give you an answer to this without looking at use cases.
I would certainly stick to the current rules (deepest first).

My gut fealing is that you pass each deployment/subdeployment
individually down the chain. i.e. assume each deployment is independent.

PRO: We don't want subdeployments manipulating each other's data, they should
refer to each other via by reference/dependency
CON: If they are truly independent why would they be packaged together,
so maybe there are usecases where this tighter coupling is desirable?

Remember, when I talk about coupling I am talking about the metadata
processing.
They will of course be tightly coupled by the microcontainer when they are 
constructed
and wired together from the metadata.

The use case I can think of where coupling of metadata is required is when
the classloader metadata is constructed. Each subdeployment can add
metadata (urls) to the top level metadata that creates the classloader.

This is probably the more common pattern. i.e. Each subdeployment builds
up metadata (e.g. urls) at the top level which is processed last and adds 
global policy
(e.g. classloader isolation, java2 delegation, etc.)

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

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


---
This SF.Net email is sponsored by: IntelliVIEW -- Interactive Reporting
Tool for open source databases. Create drag--drop reports. Save time
by over 75%! Publish reports on the web. Export to DOC, XLS, RTF, etc.
Download a FREE copy at http://www.intelliview.com/go/osdn_nl
___
JBoss-Development mailing list
JBoss-Development@lists.sourceforge.net
https://lists.sourceforge.net/lists/listinfo/jboss-development


[JBoss-dev] [JBossCache] - Re: JBossCache 1.2 released

2005-01-24 Thread octopus
[EMAIL PROTECTED] wrote : Can you open up a JIRA (jira.jboss.com) issue  and 
supply a unit test case for this? Module is jboss cache and you can assign it 
to me.
  | 
  | I have tried to reproduce it using replicated/SyncTxUnitTestCase by 
assigning the islolation level to NONE. But only the case where 
testConcurrentPut fails. And this should be expected since there is NO locking 
what so ever so you'd expect concurrency won't work.
  | 
  | -Ben

Ok I'll try to reproduce it myself and post testcase for it.

Another (minor) problem with new version is Instance mbean attribute which 
prints its value in jmx-console - value in fact is current cache content 
(TreeCache.toString()) which in my case leaves me no chance to see mbean view 
page in reasonable time.

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

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


---
This SF.Net email is sponsored by: IntelliVIEW -- Interactive Reporting
Tool for open source databases. Create drag--drop reports. Save time
by over 75%! Publish reports on the web. Export to DOC, XLS, RTF, etc.
Download a FREE copy at http://www.intelliview.com/go/osdn_nl
___
JBoss-Development mailing list
JBoss-Development@lists.sourceforge.net
https://lists.sourceforge.net/lists/listinfo/jboss-development


[JBoss-dev] [ jboss-Bugs-1108530 ] XML file dtd errors

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

Category: None
Group: None
Status: Open
Resolution: None
Priority: 5
Submitted By: Jeff Conrad (jconradmn)
Assigned to: Nobody/Anonymous (nobody)
Summary: XML file dtd errors

Initial Comment:
See full description at

http://www.jboss.org/index.html?
module=bbop=viewtopict=58853

--

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


---
This SF.Net email is sponsored by: IntelliVIEW -- Interactive Reporting
Tool for open source databases. Create drag--drop reports. Save time
by over 75%! Publish reports on the web. Export to DOC, XLS, RTF, etc.
Download a FREE copy at http://www.intelliview.com/go/osdn_nl
___
JBoss-Development mailing list
JBoss-Development@lists.sourceforge.net
https://lists.sourceforge.net/lists/listinfo/jboss-development


[JBoss-dev] [Design of JBoss Portal] - Re: Errors when building and deploying Jboss Portal v.2.0 Al

2005-01-24 Thread prax
yes, therefore my last posting where I specifically point out that my config is 
now functional.
:)

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

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


---
This SF.Net email is sponsored by: IntelliVIEW -- Interactive Reporting
Tool for open source databases. Create drag--drop reports. Save time
by over 75%! Publish reports on the web. Export to DOC, XLS, RTF, etc.
Download a FREE copy at http://www.intelliview.com/go/osdn_nl
___
JBoss-Development mailing list
JBoss-Development@lists.sourceforge.net
https://lists.sourceforge.net/lists/listinfo/jboss-development


[JBoss-dev] [Design of JBoss Portal] - Re: themes and TABLEs vs DIVs

2005-01-24 Thread jimmyed2001
You can still apply styles to individual tables within a DIV. However a DIV 
allows you to manipulate a section of the page, including its location, 
something you cannot do with a table alone. 

See http://www.csszengarden.com for examples of how well you can theme pages if 
they are DIV'ed intelligently. You cannot do this kind of styling using tables. 
Consider these two web pages. The only difference between these pages is the 
CSS, the HTML is identical.
http://www.csszengarden.com/?cssfile=/142/142.csspage=0
http://www.csszengarden.com/?cssfile=/144/144.csspage=0
Not only are the fonts/colors etc different but the entire layout of the page 
(location of the menu, intoduction, paragraphs etc) is different.

IMO the differences between the handling of DIVs in IE and the mozilla-based 
browsers is no worse than the differences in the handling of tables and margins 
(in many cases is the same old issue, e.g. whether outer margins are counted as 
being within the overall width of the object etc)

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

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


---
This SF.Net email is sponsored by: IntelliVIEW -- Interactive Reporting
Tool for open source databases. Create drag--drop reports. Save time
by over 75%! Publish reports on the web. Export to DOC, XLS, RTF, etc.
Download a FREE copy at http://www.intelliview.com/go/osdn_nl
___
JBoss-Development mailing list
JBoss-Development@lists.sourceforge.net
https://lists.sourceforge.net/lists/listinfo/jboss-development


[JBoss-dev] [Design of JBoss Portal] - Re: themes and TABLEs vs DIVs

2005-01-24 Thread jimmyed2001

I redid the Pluto pages using DIVs and created a couple of different themes. If 
I get time I'll try the same with JBoss Portal 2.0 before I come to JBoss world.

 

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

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


---
This SF.Net email is sponsored by: IntelliVIEW -- Interactive Reporting
Tool for open source databases. Create drag--drop reports. Save time
by over 75%! Publish reports on the web. Export to DOC, XLS, RTF, etc.
Download a FREE copy at http://www.intelliview.com/go/osdn_nl
___
JBoss-Development mailing list
JBoss-Development@lists.sourceforge.net
https://lists.sourceforge.net/lists/listinfo/jboss-development


[JBoss-dev] [Design of JBoss Portal] - Re: themes and TABLEs vs DIVs

2005-01-24 Thread [EMAIL PROTECTED]
I know cssgarden this is great stuff, i learn from that to do the theme for 
Nukes that was supposed to be pure CSS.

If you can make a CSS theme that works on IE + firefox, that would be great.

See you at JBoss World then :)

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

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


---
This SF.Net email is sponsored by: IntelliVIEW -- Interactive Reporting
Tool for open source databases. Create drag--drop reports. Save time
by over 75%! Publish reports on the web. Export to DOC, XLS, RTF, etc.
Download a FREE copy at http://www.intelliview.com/go/osdn_nl
___
JBoss-Development mailing list
JBoss-Development@lists.sourceforge.net
https://lists.sourceforge.net/lists/listinfo/jboss-development


[JBoss-dev] [JBoss JIRA] Created: (JBAS-1320) Security Hole Created by MDB Deployment

2005-01-24 Thread eugene75 (JIRA)
Security Hole Created by MDB Deployment
---

 Key: JBAS-1320
 URL: http://jira.jboss.com/jira/browse/JBAS-1320
 Project: JBoss Application Server
Type: Bug
  Components: Security  
Versions: JBossAS-3.2.6 Final
Reporter: eugene75
 Assigned to: Scott M Stark 


During the deployment of a message driven bean, the container creates a 
connection to the message queue using the user/pwd provided by the deployment 
descriptor. The authenticated subject created by this operation is bound to the 
current thread (via the security association class) using a ThreadLocal. 

The thread that deploys components existing in the deploy directory at startup 
is the main thread. This means that the main thread has a security 
association. This security association (meaning the Subject bound to the thread 
by a ThreadLocal) is then copied to every other thread created by JBoss, 
including the the HTTP processor threads, class loader threads, etc. 

The very first time the application is accessed using one of the HTTP processor 
threads, it has the security association create the jms login. Once the 
processor thread has processed one request, the security association is cleared 
and functions normally. 

A partial workaround is to not deploy the MDBs until after JBoss has finished 
starting up. This prevents the jms-connection user security association from 
being inherited by the HTTP processor threads. 


-- 
This message is automatically generated by JIRA.
-
If you think it was sent incorrectly contact one of the administrators:
   http://jira.jboss.com/jira/secure/Administrators.jspa
-
If you want more information on JIRA, or have a bug to report see:
   http://www.atlassian.com/software/jira



---
This SF.Net email is sponsored by: IntelliVIEW -- Interactive Reporting
Tool for open source databases. Create drag--drop reports. Save time
by over 75%! Publish reports on the web. Export to DOC, XLS, RTF, etc.
Download a FREE copy at http://www.intelliview.com/go/osdn_nl
___
JBoss-Development mailing list
JBoss-Development@lists.sourceforge.net
https://lists.sourceforge.net/lists/listinfo/jboss-development


[JBoss-dev] [JBoss JIRA] Created: (JBPORTAL-189) password shown in plain text in URL

2005-01-24 Thread James Dixon (JIRA)
password shown in plain text in URL
---

 Key: JBPORTAL-189
 URL: http://jira.jboss.com/jira/browse/JBPORTAL-189
 Project: JBoss Portal
Type: Bug
  Components: Portal Core  
Versions: 2.0 Alpha
Reporter: James Dixon
 Assigned to: Julien Viet 


If you provide a wrong user id during login, you password is displayed in plain 
text on the URL of the next page. 

e.g. I have a typo in my user id, but provide the correct password. The URL of 
the next page is: Code: 

http://localhost:8080/portal/j_security_check?j_username=jdoeOOPSj_password=wingnuts
   
 
The login form is a 'post' but something somewhere must be doing a 'get' 
to result in this. 


-- 
This message is automatically generated by JIRA.
-
If you think it was sent incorrectly contact one of the administrators:
   http://jira.jboss.com/jira/secure/Administrators.jspa
-
If you want more information on JIRA, or have a bug to report see:
   http://www.atlassian.com/software/jira



---
This SF.Net email is sponsored by: IntelliVIEW -- Interactive Reporting
Tool for open source databases. Create drag--drop reports. Save time
by over 75%! Publish reports on the web. Export to DOC, XLS, RTF, etc.
Download a FREE copy at http://www.intelliview.com/go/osdn_nl
___
JBoss-Development mailing list
JBoss-Development@lists.sourceforge.net
https://lists.sourceforge.net/lists/listinfo/jboss-development


[JBoss-dev] [Design of JBoss Portal] - Re: themes and TABLEs vs DIVs

2005-01-24 Thread jimmyed2001

Ok, I'll try and get a theme or two going for JBoss Portal. If you look at the 
source for the CSSZenGarden HTML and CSS files, they rely on DIVs a lot to get 
the level of control that you need for creating extensive themes for these 
kinds of pages. 

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

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


---
This SF.Net email is sponsored by: IntelliVIEW -- Interactive Reporting
Tool for open source databases. Create drag--drop reports. Save time
by over 75%! Publish reports on the web. Export to DOC, XLS, RTF, etc.
Download a FREE copy at http://www.intelliview.com/go/osdn_nl
___
JBoss-Development mailing list
JBoss-Development@lists.sourceforge.net
https://lists.sourceforge.net/lists/listinfo/jboss-development


[JBoss-dev] [JBoss JIRA] Commented: (JBAS-1301) Tomcat backward compatbility loss VirtualHost-Alias mapping

2005-01-24 Thread Scott M Stark (JIRA)
 [ 
http://jira.jboss.com/jira/browse/JBAS-1301?page=comments#action_12314849 ]
 
Scott M Stark commented on JBAS-1301:
-

The problem is that there are Host mbeans being created that should be aliases 
associated with a Host. At the following stack trace:

Thread main@78 in group jboss status: RUNNING
addHost():99, org.apache.tomcat.util.http.mapper.Mapper
registerHost():297, org.apache.coyote.tomcat5.MapperListener
init():119, org.apache.coyote.tomcat5.MapperListener
start():1537, org.apache.coyote.tomcat5.CoyoteConnector
startConnectors():449, org.jboss.web.tomcat.tc5.Tomcat5
handleNotification():475, org.jboss.web.tomcat.tc5.Tomcat5

these host mbeans are seen:

[ObjectInstance[jboss.web:type=Host,host=choices.stage.bridges.com, 
org.apache.commons.modeler.BaseModelMBean], 
ObjectInstance[jboss.web:type=Host,host=localhost, 
org.apache.commons.modeler.BaseModelMBean], 
ObjectInstance[jboss.web:type=Host,host=cxonline.bridges.com, 
org.apache.commons.modeler.BaseModelMBean], 
ObjectInstance[jboss.web:type=Host,host=access.bridges.com, 
org.apache.commons.modeler.BaseModelMBean], 
ObjectInstance[jboss.web:type=Host,host=r.bridges.com, 
org.apache.commons.modeler.BaseModelMBean], 
ObjectInstance[jboss.web:type=Host,host=access.stage.bridges.com, 
org.apache.commons.modeler.BaseModelMBean], 
ObjectInstance[jboss.web:type=Host,host=choices.bridges.com, 
org.apache.commons.modeler.BaseModelMBean], 
ObjectInstance[jboss.web:type=Host,host=utahfinaid.bridges.com, 
org.apache.commons.modeler.BaseModelMBean], 
ObjectInstance[jboss.web:type=Host,host=cx.jboss.stage.bridges.com, 
org.apache.commons.modeler.BaseModelMBean]]

When the contexts are latter mapped, there are matches to the alias host entry 
instead of the actual host, and therefore the host context is not updated. Any 
attempt to use another alias then results in a 400 error because the contexts 
were not updated. In the list shown, choices.stage.bridges.com, 
access.stage.bridges.com and cx.jboss.stage.bridges.com are aliases coming from 
the jboss-web.xml/virtual-host values.

This looks like a problem with the jboss tomcat deployer not resolving the 
virtual host to the actual host name, but I need to track down where the Host 
mbeans are being created.

 Tomcat backward compatbility loss VirtualHost-Alias mapping
 

  Key: JBAS-1301
  URL: http://jira.jboss.com/jira/browse/JBAS-1301
  Project: JBoss Application Server
 Type: Bug
   Components: Web (Tomcat) service
 Versions: JBossAS-4.0.1 Final, JBossAS-3.2.6 Final
 Reporter: Andrew Oliver
 Assignee: Scott M Stark
  Fix For:  JBossAS-3.2.7 Final
  Attachments: server.xml

 Original Estimate: 3 hours
 Remaining: 3 hours

 In JBoss 3.2.3 (Tomcat 4.x) it was possible to create a Virtual Host and set 
 of Aliases in the jboss-service.xml and then map the webapps to the aliases 
 through the app deployment descriptors.  In tomcat 5 this works for *some* 
 apps that have been deployed.  The rest throw a 400 error saying no virtual 
 host has been configured.  The same apps mapped directly to the actual vhost 
 (not alias) do not throw this error.  The previous behavior can be useful for 
 builds which target multiple environments (stage/test/prod/etc).  Moreover it 
 should be preserverd for backward compatibility.

-- 
This message is automatically generated by JIRA.
-
If you think it was sent incorrectly contact one of the administrators:
   http://jira.jboss.com/jira/secure/Administrators.jspa
-
If you want more information on JIRA, or have a bug to report see:
   http://www.atlassian.com/software/jira



---
This SF.Net email is sponsored by: IntelliVIEW -- Interactive Reporting
Tool for open source databases. Create drag--drop reports. Save time
by over 75%! Publish reports on the web. Export to DOC, XLS, RTF, etc.
Download a FREE copy at http://www.intelliview.com/go/osdn_nl
___
JBoss-Development mailing list
JBoss-Development@lists.sourceforge.net
https://lists.sourceforge.net/lists/listinfo/jboss-development


[JBoss-dev] [Design of JBoss Portal] - Re: 'menu' style Porlet possible?

2005-01-24 Thread jimmyed2001

Jetspeed and Pluto have tabsets that let users easily navigate to different 
portals / portal pages. Is there a plan to have any portal level navigation? Or 
is that supposed to be supplied by a portlet (in which case we get into portal 
specific issues)?


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

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


---
This SF.Net email is sponsored by: IntelliVIEW -- Interactive Reporting
Tool for open source databases. Create drag--drop reports. Save time
by over 75%! Publish reports on the web. Export to DOC, XLS, RTF, etc.
Download a FREE copy at http://www.intelliview.com/go/osdn_nl
___
JBoss-Development mailing list
JBoss-Development@lists.sourceforge.net
https://lists.sourceforge.net/lists/listinfo/jboss-development


[JBoss-dev] [Design of JBoss Portal] - Re: 'menu' style Porlet possible?

2005-01-24 Thread [EMAIL PROTECTED]
Yes. Julien checked in a 'Menu Portlet' to HEAD. It looks up the pages in the 
descriptors and creates a menu item for each. It needs to be cleaned up a bit, 
but the idea is there, just as you mentioned.

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

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


---
This SF.Net email is sponsored by: IntelliVIEW -- Interactive Reporting
Tool for open source databases. Create drag--drop reports. Save time
by over 75%! Publish reports on the web. Export to DOC, XLS, RTF, etc.
Download a FREE copy at http://www.intelliview.com/go/osdn_nl
___
JBoss-Development mailing list
JBoss-Development@lists.sourceforge.net
https://lists.sourceforge.net/lists/listinfo/jboss-development


[JBoss-dev] [Design of JBoss Portal] - Re: 'menu' style Porlet possible?

2005-01-24 Thread jimmyed2001

can it be styled and controlled differently from the other portlets since its 
usage is significantly different from other portlets?


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

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


---
This SF.Net email is sponsored by: IntelliVIEW -- Interactive Reporting
Tool for open source databases. Create drag--drop reports. Save time
by over 75%! Publish reports on the web. Export to DOC, XLS, RTF, etc.
Download a FREE copy at http://www.intelliview.com/go/osdn_nl
___
JBoss-Development mailing list
JBoss-Development@lists.sourceforge.net
https://lists.sourceforge.net/lists/listinfo/jboss-development


[JBoss-dev] [JBoss JIRA] Created: (JBPM-62) Implement link semantics with jbpm Milestones

2005-01-24 Thread Juan Cantu (JIRA)
Implement link semantics with jbpm Milestones
-

 Key: JBPM-62
 URL: http://jira.jboss.com/jira/browse/JBPM-62
 Project: JBoss jBPM
Type: Sub-task
Reporter: Juan Cantu
 Assigned to: Juan Cantu 




-- 
This message is automatically generated by JIRA.
-
If you think it was sent incorrectly contact one of the administrators:
   http://jira.jboss.com/jira/secure/Administrators.jspa
-
If you want more information on JIRA, or have a bug to report see:
   http://www.atlassian.com/software/jira



---
This SF.Net email is sponsored by: IntelliVIEW -- Interactive Reporting
Tool for open source databases. Create drag--drop reports. Save time
by over 75%! Publish reports on the web. Export to DOC, XLS, RTF, etc.
Download a FREE copy at http://www.intelliview.com/go/osdn_nl
___
JBoss-Development mailing list
JBoss-Development@lists.sourceforge.net
https://lists.sourceforge.net/lists/listinfo/jboss-development


[JBoss-dev] [JBoss JIRA] Created: (JBPM-63) Refactor BpelActivity class hierarchy

2005-01-24 Thread Juan Cantu (JIRA)
Refactor BpelActivity class hierarchy
-

 Key: JBPM-63
 URL: http://jira.jboss.com/jira/browse/JBPM-63
 Project: JBoss jBPM
Type: Sub-task
Reporter: Juan Cantu
 Assigned to: Juan Cantu 




-- 
This message is automatically generated by JIRA.
-
If you think it was sent incorrectly contact one of the administrators:
   http://jira.jboss.com/jira/secure/Administrators.jspa
-
If you want more information on JIRA, or have a bug to report see:
   http://www.atlassian.com/software/jira



---
This SF.Net email is sponsored by: IntelliVIEW -- Interactive Reporting
Tool for open source databases. Create drag--drop reports. Save time
by over 75%! Publish reports on the web. Export to DOC, XLS, RTF, etc.
Download a FREE copy at http://www.intelliview.com/go/osdn_nl
___
JBoss-Development mailing list
JBoss-Development@lists.sourceforge.net
https://lists.sourceforge.net/lists/listinfo/jboss-development


[JBoss-dev] [JBoss JIRA] Updated: (JBAS-1320) Security Hole Created by MDB Deployment

2005-01-24 Thread Scott M Stark (JIRA)
 [ http://jira.jboss.com/jira/browse/JBAS-1320?page=history ]

Scott M Stark updated JBAS-1320:


   Priority: Blocker  (was: Major)
Fix Version:  JBossAS-3.2.7 Final

The default behavior for the SecurityAssociation thread locals should not be 
InheritableThreadLocal and this has been changed. This also fixes the leakage 
you describe. The mdb container needs to be cleaing up the security association 
in addition to this change so that if the SecurityAssociation has been 
configured to use InheritableThreadLocal there is no leakage of the security 
context.

 Security Hole Created by MDB Deployment
 ---

  Key: JBAS-1320
  URL: http://jira.jboss.com/jira/browse/JBAS-1320
  Project: JBoss Application Server
 Type: Bug
   Components: Security
 Versions: JBossAS-3.2.6 Final
 Reporter: eugene75
 Assignee: Scott M Stark
 Priority: Blocker
  Fix For:  JBossAS-3.2.7 Final



 During the deployment of a message driven bean, the container creates a 
 connection to the message queue using the user/pwd provided by the deployment 
 descriptor. The authenticated subject created by this operation is bound to 
 the current thread (via the security association class) using a ThreadLocal. 
 The thread that deploys components existing in the deploy directory at 
 startup is the main thread. This means that the main thread has a 
 security association. This security association (meaning the Subject bound to 
 the thread by a ThreadLocal) is then copied to every other thread created by 
 JBoss, including the the HTTP processor threads, class loader threads, etc. 
 The very first time the application is accessed using one of the HTTP 
 processor threads, it has the security association create the jms login. Once 
 the processor thread has processed one request, the security association is 
 cleared and functions normally. 
 A partial workaround is to not deploy the MDBs until after JBoss has finished 
 starting up. This prevents the jms-connection user security association from 
 being inherited by the HTTP processor threads. 

-- 
This message is automatically generated by JIRA.
-
If you think it was sent incorrectly contact one of the administrators:
   http://jira.jboss.com/jira/secure/Administrators.jspa
-
If you want more information on JIRA, or have a bug to report see:
   http://www.atlassian.com/software/jira



---
This SF.Net email is sponsored by: IntelliVIEW -- Interactive Reporting
Tool for open source databases. Create drag--drop reports. Save time
by over 75%! Publish reports on the web. Export to DOC, XLS, RTF, etc.
Download a FREE copy at http://www.intelliview.com/go/osdn_nl
___
JBoss-Development mailing list
JBoss-Development@lists.sourceforge.net
https://lists.sourceforge.net/lists/listinfo/jboss-development


[JBoss-dev] [Design of JBoss Portal] - Re: 'menu' style Porlet possible?

2005-01-24 Thread [EMAIL PROTECTED]
Currently the html is generated from the portlet class itself. What did you 
have in mind for it to behave differently?

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

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


---
This SF.Net email is sponsored by: IntelliVIEW -- Interactive Reporting
Tool for open source databases. Create drag--drop reports. Save time
by over 75%! Publish reports on the web. Export to DOC, XLS, RTF, etc.
Download a FREE copy at http://www.intelliview.com/go/osdn_nl
___
JBoss-Development mailing list
JBoss-Development@lists.sourceforge.net
https://lists.sourceforge.net/lists/listinfo/jboss-development


[JBoss-dev] [Design of Mail Services] - Re: JaasUserRepository

2005-01-24 Thread [EMAIL PROTECTED]
djmalan wrote : 
  | The jbmail- prefix would distinguish the roles from other possibly 
pre-existing roles in the JAAS repository.
  | 

We don't want to distinguish from other pre-existing roles.  For the mail 
driven application case folks may use mailboxes or process mailboxes or 
something.  They may use application roles throughout.  We don't want to stop 
them from using their existing roles.

-andy

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

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


---
This SF.Net email is sponsored by: IntelliVIEW -- Interactive Reporting
Tool for open source databases. Create drag--drop reports. Save time
by over 75%! Publish reports on the web. Export to DOC, XLS, RTF, etc.
Download a FREE copy at http://www.intelliview.com/go/osdn_nl
___
JBoss-Development mailing list
JBoss-Development@lists.sourceforge.net
https://lists.sourceforge.net/lists/listinfo/jboss-development


[JBoss-dev] [Design of JBoss Portal] - Re: themes and TABLEs vs DIVs

2005-01-24 Thread [EMAIL PROTECTED]
Impressive examples at csszengarden. Looking forward to see jimmy's theme for 
JBP.



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

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


---
This SF.Net email is sponsored by: IntelliVIEW -- Interactive Reporting
Tool for open source databases. Create drag--drop reports. Save time
by over 75%! Publish reports on the web. Export to DOC, XLS, RTF, etc.
Download a FREE copy at http://www.intelliview.com/go/osdn_nl
___
JBoss-Development mailing list
JBoss-Development@lists.sourceforge.net
https://lists.sourceforge.net/lists/listinfo/jboss-development


[JBoss-dev] [JBoss JIRA] Updated: (JBPM-62) Implement link semantics with jbpm Milestones

2005-01-24 Thread Juan Cantu (JIRA)
 [ http://jira.jboss.com/jira/browse/JBPM-62?page=history ]

Juan Cantu updated JBPM-62:
---

   Description: Move Milestone and MilestoneInstance classes to the 
jbpm graph package. Leverage this functionality to implement bpel link 
semantics.
   Environment: 
 Original Estimate: 86400
Remaining Estimate: 86400
   Version: 3.0 DR 1
 Component: BPEL
   Fix Version: 3.0 DR 1

 Implement link semantics with jbpm Milestones
 -

  Key: JBPM-62
  URL: http://jira.jboss.com/jira/browse/JBPM-62
  Project: JBoss jBPM
 Type: Sub-task
   Components: BPEL
 Versions: 3.0 DR 1
 Reporter: Juan Cantu
 Assignee: Juan Cantu
  Fix For: 3.0 DR 1


 Original Estimate: 3 days
 Remaining: 3 days

 Move Milestone and MilestoneInstance classes to the jbpm graph package. 
 Leverage this functionality to implement bpel link semantics.

-- 
This message is automatically generated by JIRA.
-
If you think it was sent incorrectly contact one of the administrators:
   http://jira.jboss.com/jira/secure/Administrators.jspa
-
If you want more information on JIRA, or have a bug to report see:
   http://www.atlassian.com/software/jira



---
This SF.Net email is sponsored by: IntelliVIEW -- Interactive Reporting
Tool for open source databases. Create drag--drop reports. Save time
by over 75%! Publish reports on the web. Export to DOC, XLS, RTF, etc.
Download a FREE copy at http://www.intelliview.com/go/osdn_nl
___
JBoss-Development mailing list
JBoss-Development@lists.sourceforge.net
https://lists.sourceforge.net/lists/listinfo/jboss-development


[JBoss-dev] [Design of JBoss Portal] - Re: themes and TABLEs vs DIVs

2005-01-24 Thread [EMAIL PROTECTED]
I was referring to:

anonymous wrote : 
  | 
  | Ok, I'll try and get a theme or two going for JBoss Portal. 
  | 
  | 

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

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


---
This SF.Net email is sponsored by: IntelliVIEW -- Interactive Reporting
Tool for open source databases. Create drag--drop reports. Save time
by over 75%! Publish reports on the web. Export to DOC, XLS, RTF, etc.
Download a FREE copy at http://www.intelliview.com/go/osdn_nl
___
JBoss-Development mailing list
JBoss-Development@lists.sourceforge.net
https://lists.sourceforge.net/lists/listinfo/jboss-development


[JBoss-dev] [JBoss JIRA] Updated: (JBPM-63) Refactor BpelActivity class hierarchy

2005-01-24 Thread Juan Cantu (JIRA)
 [ http://jira.jboss.com/jira/browse/JBPM-63?page=history ]

Juan Cantu updated JBPM-63:
---

   Description: Modify the class hierarchy of bpel activities. They 
used to be implemented by extending from two lines of inheritance (Node and 
SuperState). The goal is to create a single base class (BpelActivity) and 
remove any dependency with super states. The parent - child relation behavior 
is reimplemented at the CompositeActivity subclass. 
   Environment: 
 Original Estimate: 86400
Remaining Estimate: 86400
   Version: 3.0 DR 1
 Component: BPEL

 Refactor BpelActivity class hierarchy
 -

  Key: JBPM-63
  URL: http://jira.jboss.com/jira/browse/JBPM-63
  Project: JBoss jBPM
 Type: Sub-task
   Components: BPEL
 Versions: 3.0 DR 1
 Reporter: Juan Cantu
 Assignee: Juan Cantu


 Original Estimate: 3 days
 Remaining: 3 days

 Modify the class hierarchy of bpel activities. They used to be implemented by 
 extending from two lines of inheritance (Node and SuperState). The goal is to 
 create a single base class (BpelActivity) and remove any dependency with 
 super states. The parent - child relation behavior is reimplemented at the 
 CompositeActivity subclass. 

-- 
This message is automatically generated by JIRA.
-
If you think it was sent incorrectly contact one of the administrators:
   http://jira.jboss.com/jira/secure/Administrators.jspa
-
If you want more information on JIRA, or have a bug to report see:
   http://www.atlassian.com/software/jira



---
This SF.Net email is sponsored by: IntelliVIEW -- Interactive Reporting
Tool for open source databases. Create drag--drop reports. Save time
by over 75%! Publish reports on the web. Export to DOC, XLS, RTF, etc.
Download a FREE copy at http://www.intelliview.com/go/osdn_nl
___
JBoss-Development mailing list
JBoss-Development@lists.sourceforge.net
https://lists.sourceforge.net/lists/listinfo/jboss-development


[JBoss-dev] [Design of JBoss Portal] - Re: Developers, pickup a task and start your engine

2005-01-24 Thread [EMAIL PROTECTED]
There are also some unassigned task that can be picked.

http://jira.jboss.com/jira/secure/IssueNavigator.jspa?reset=truemode=hidesorter/order=ASCsorter/field=prioritypid=10050assigneeSelect=unassignedresolutionIds=-1

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

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


---
This SF.Net email is sponsored by: IntelliVIEW -- Interactive Reporting
Tool for open source databases. Create drag--drop reports. Save time
by over 75%! Publish reports on the web. Export to DOC, XLS, RTF, etc.
Download a FREE copy at http://www.intelliview.com/go/osdn_nl
___
JBoss-Development mailing list
JBoss-Development@lists.sourceforge.net
https://lists.sourceforge.net/lists/listinfo/jboss-development


[JBoss-dev] [Design of JBoss Internal Benchmarking] - Re: SPECJAppServer 2002 Driver fails

2005-01-24 Thread [EMAIL PROTECTED]
It's funny, because I was running in the same problem. (Coincidence, isn't?)

I talked to Alexey who was working with Specj2002 here at JBoss, and he told me 
that this is okay, because this is the sequence generation and the application 
tries to recover it based on number for tries.

I wanted to see the code myself before answering you anything, and making sure 
that this is what was happening:

At SequenceSesEJB.java (code distributed by Spec.org), you will have a loop of 
retries.

so... it's okay!


Clebert



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

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


---
This SF.Net email is sponsored by: IntelliVIEW -- Interactive Reporting
Tool for open source databases. Create drag--drop reports. Save time
by over 75%! Publish reports on the web. Export to DOC, XLS, RTF, etc.
Download a FREE copy at http://www.intelliview.com/go/osdn_nl
___
JBoss-Development mailing list
JBoss-Development@lists.sourceforge.net
https://lists.sourceforge.net/lists/listinfo/jboss-development


[JBoss-dev] [Design of JBoss Portal] - Re: 'menu' style Porlet possible?

2005-01-24 Thread jimmyed2001

Be able to display the navigation links as a horizontal or vertical tabset with 
none of the regular portlet window decorations, links etc.


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

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


---
This SF.Net email is sponsored by: IntelliVIEW -- Interactive Reporting
Tool for open source databases. Create drag--drop reports. Save time
by over 75%! Publish reports on the web. Export to DOC, XLS, RTF, etc.
Download a FREE copy at http://www.intelliview.com/go/osdn_nl
___
JBoss-Development mailing list
JBoss-Development@lists.sourceforge.net
https://lists.sourceforge.net/lists/listinfo/jboss-development


[JBoss-dev] [Design of Mail Services] - Re: JaasUserRepository

2005-01-24 Thread djmalan
In that case the only solution I can see would be to make it all configurable, 
i.e. when you create a mailbox you have to configure the required roles for 
that mailbox.  

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

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


---
This SF.Net email is sponsored by: IntelliVIEW -- Interactive Reporting
Tool for open source databases. Create drag--drop reports. Save time
by over 75%! Publish reports on the web. Export to DOC, XLS, RTF, etc.
Download a FREE copy at http://www.intelliview.com/go/osdn_nl
___
JBoss-Development mailing list
JBoss-Development@lists.sourceforge.net
https://lists.sourceforge.net/lists/listinfo/jboss-development


[JBoss-dev] [Design of JBoss Internal Benchmarking] - Re: SPECJAppServer 2002 Driver fails

2005-01-24 Thread [EMAIL PROTECTED]
Have you take a look at www.spec.org lately?

09/24/2004 The SPECjAppServer2002 expiration date has been extended by three 
months from the original date of October 27; submissions will now be accepted 
for review and publication until January 26, 2005.



Clebert Suconic

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

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


---
This SF.Net email is sponsored by: IntelliVIEW -- Interactive Reporting
Tool for open source databases. Create drag--drop reports. Save time
by over 75%! Publish reports on the web. Export to DOC, XLS, RTF, etc.
Download a FREE copy at http://www.intelliview.com/go/osdn_nl
___
JBoss-Development mailing list
JBoss-Development@lists.sourceforge.net
https://lists.sourceforge.net/lists/listinfo/jboss-development


[JBoss-dev] [Design of Mail Services] - Store Store (2nd version)

2005-01-24 Thread mikezzz
Hi,

I have uploaded a 0.2 version of the Stream Store to the patches wiki, to apply:

  |  cd jboss-mail
  |  patch -p1  streamstore-0.2.patch
  | 
Summary of the changes:
- Removed Factoryness of the implementation.  The Store is single instance 
MBean.
- Support for both connected and disconnected streams.  Connected streams will 
close underlying Connection when the stream is closed.
- Added a PostgresQL specific implementation that uses the LargeObjectAPI (jar 
included in patch).  This implementation is faster (128MB in 9 seconds vs 15 
minutes for MySQL), more robust, and more memory efficient than BDB and MySQL.
- Will close Jira JBMAIL-21.
- Lots of general refactoring.

Open Issues/To do list:
- What level of transactionality is required for writing the data to the store? 
 Many blob implementations (e.g. PostgresQL  Oracle) prefer to be within a 
transaction when using blob data.  Where abouts should jboss-mail's transaction 
bounderies be defined?
- It seems like very few OSS DBs handle blob data well.  PostgreSQL is the only 
one that passes my JUnits reliably.  BDB fails with an out of Memory error when 
trying to write 10MB in 1MB chunks.  MySQL basically sucks for blobs.  It 
either doesn't  work:

http://bugs.mysql.com/bug.php?id=7745
http://bugs.mysql.com/bug.php?id=8096

Or runs increadibly slowly, 2 orders of mangnitude slower than PostgreSQL in 
some cases.  I've basically given up on MySQL 4.  The above issues seem to be 
both problems with the server and not the JDBC driver (that's a whole 'nother 
can of worms).  Might try again when 5 goes final.
- Compression.  Started but still experimental (read, doesn't work).
- Integration with new MessageStore API (JBMAIL-25).
- Only unit tested outside of app. server.
- Do some testing with Oracle.

I am off on vacation next week, but will attack the above when I get back (La 
Plagne had a big dump of snow this week. Wahoo!!!)

Regards,
Mike.

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

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


---
This SF.Net email is sponsored by: IntelliVIEW -- Interactive Reporting
Tool for open source databases. Create drag--drop reports. Save time
by over 75%! Publish reports on the web. Export to DOC, XLS, RTF, etc.
Download a FREE copy at http://www.intelliview.com/go/osdn_nl
___
JBoss-Development mailing list
JBoss-Development@lists.sourceforge.net
https://lists.sourceforge.net/lists/listinfo/jboss-development


[JBoss-dev] [JBoss JIRA] Closed: (EJBTHREE-43) Regenerate tutorial based on .wiki files

2005-01-24 Thread Bill Burke (JIRA)
 [ http://jira.jboss.com/jira/browse/EJBTHREE-43?page=history ]
 
Bill Burke closed EJBTHREE-43:
--

Resolution: Done

 Regenerate tutorial based on .wiki files
 

  Key: EJBTHREE-43
  URL: http://jira.jboss.com/jira/browse/EJBTHREE-43
  Project: EJB 3.0
 Type: Task
 Versions: Preview 3
 Reporter: Bill Burke
 Assignee: Bill Burke
  Fix For: Preview 3





-- 
This message is automatically generated by JIRA.
-
If you think it was sent incorrectly contact one of the administrators:
   http://jira.jboss.com/jira/secure/Administrators.jspa
-
If you want more information on JIRA, or have a bug to report see:
   http://www.atlassian.com/software/jira



---
This SF.Net email is sponsored by: IntelliVIEW -- Interactive Reporting
Tool for open source databases. Create drag--drop reports. Save time
by over 75%! Publish reports on the web. Export to DOC, XLS, RTF, etc.
Download a FREE copy at http://www.intelliview.com/go/osdn_nl
___
JBoss-Development mailing list
JBoss-Development@lists.sourceforge.net
https://lists.sourceforge.net/lists/listinfo/jboss-development


[JBoss-dev] [JBossCache] - Re: Patch for DummyTransactionManager.java

2005-01-24 Thread twundke
Thanks Bela. I should have checked the @since for remove(). Oh well.

Tim.

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

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


---
This SF.Net email is sponsored by: IntelliVIEW -- Interactive Reporting
Tool for open source databases. Create drag--drop reports. Save time
by over 75%! Publish reports on the web. Export to DOC, XLS, RTF, etc.
Download a FREE copy at http://www.intelliview.com/go/osdn_nl
___
JBoss-Development mailing list
JBoss-Development@lists.sourceforge.net
https://lists.sourceforge.net/lists/listinfo/jboss-development


[JBoss-dev] [JBossCache] - Re: Patch for Node.java

2005-01-24 Thread twundke
Both of those patches look fine in CVS Bela.

Tim.

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

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


---
This SF.Net email is sponsored by: IntelliVIEW -- Interactive Reporting
Tool for open source databases. Create drag--drop reports. Save time
by over 75%! Publish reports on the web. Export to DOC, XLS, RTF, etc.
Download a FREE copy at http://www.intelliview.com/go/osdn_nl
___
JBoss-Development mailing list
JBoss-Development@lists.sourceforge.net
https://lists.sourceforge.net/lists/listinfo/jboss-development


[JBoss-dev] [Design of Management Features on JBoss] - Re: no ManagedConnections after timeouts

2005-01-24 Thread markwolfe
Any chance you could post or attach these test cases as I am having the same 
issues and I would like to have a look at the problem in more detail. 

Thanks a lot.

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

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


---
This SF.Net email is sponsored by: IntelliVIEW -- Interactive Reporting
Tool for open source databases. Create drag--drop reports. Save time
by over 75%! Publish reports on the web. Export to DOC, XLS, RTF, etc.
Download a FREE copy at http://www.intelliview.com/go/osdn_nl
___
JBoss-Development mailing list
JBoss-Development@lists.sourceforge.net
https://lists.sourceforge.net/lists/listinfo/jboss-development


[JBoss-dev] [JBoss JIRA] Resolved: (JBAS-1301) Tomcat backward compatbility loss VirtualHost-Alias mapping

2005-01-24 Thread Scott M Stark (JIRA)
 [ http://jira.jboss.com/jira/browse/JBAS-1301?page=history ]
 
Scott M Stark resolved JBAS-1301:
-

 Resolution: Done
Fix Version:  JBossAS-4.0.2RC1
 JBossPOJOServer-1.0 Alpha

Tomcat now dynamically creates hosts for names that do not have a Host element 
configured in the server.xml. The jboss tomcat deployer now resolves the 
jboss-web/virtual-host names from the deployment info to the configured Host 
names.

   /**
* Resolve the input virtual host names to the names of the configured Hosts
* @param vhostNames IteratorString for the jboss-web/virtual-host 
elements 
* @return IteratorString of the unique Host names
* @throws Exception
*/ 
   protected synchronized Iterator mapVirtualHosts(Iterator vhostNames)
  throws Exception
   {
  if( vhostToHostNames.size() == 0 )
  {
 // Query the configured Host mbeans
 String hostQuery = config.getCatalinaDomain() + :type=Host,*;
 ObjectName query = new ObjectName(hostQuery);
 Set hosts = server.queryNames(query, null);
 Iterator iter = hosts.iterator();
 while( iter.hasNext() )
 {
ObjectName host = (ObjectName) iter.next();
String name = host.getKeyProperty(host);
if( name != null )
{
   vhostToHostNames.put(name, name);
String[] aliases = (String[])
server.invoke(host, findAliases, null, null);
   int count = aliases != null ? aliases.length : 0;
   for(int n = 0;n  count; n ++)
   {
  vhostToHostNames.put(aliases[n], name);
   }
}
 }
  }

  // Map the virtual host names to the hosts
  HashSet hosts = new HashSet();
  while( vhostNames.hasNext() )
  {
 String vhost = (String) vhostNames.next();
 String host = (String) vhostToHostNames.get(vhost);
 if( host == null )
 {
log.warn(Failed to map vhost: +vhost);
// This will cause a new host to be created
host = vhost;
 }
 hosts.add(host);
  }
  return hosts.iterator();
   }


 Tomcat backward compatbility loss VirtualHost-Alias mapping
 

  Key: JBAS-1301
  URL: http://jira.jboss.com/jira/browse/JBAS-1301
  Project: JBoss Application Server
 Type: Bug
   Components: Web (Tomcat) service
 Versions: JBossAS-4.0.1 Final, JBossAS-3.2.6 Final
 Reporter: Andrew Oliver
 Assignee: Scott M Stark
  Fix For:  JBossAS-3.2.7 Final,  JBossAS-4.0.2RC1, JBossPOJOServer-1.0 
 Alpha
  Attachments: server.xml

 Original Estimate: 3 hours
 Remaining: 3 hours

 In JBoss 3.2.3 (Tomcat 4.x) it was possible to create a Virtual Host and set 
 of Aliases in the jboss-service.xml and then map the webapps to the aliases 
 through the app deployment descriptors.  In tomcat 5 this works for *some* 
 apps that have been deployed.  The rest throw a 400 error saying no virtual 
 host has been configured.  The same apps mapped directly to the actual vhost 
 (not alias) do not throw this error.  The previous behavior can be useful for 
 builds which target multiple environments (stage/test/prod/etc).  Moreover it 
 should be preserverd for backward compatibility.

-- 
This message is automatically generated by JIRA.
-
If you think it was sent incorrectly contact one of the administrators:
   http://jira.jboss.com/jira/secure/Administrators.jspa
-
If you want more information on JIRA, or have a bug to report see:
   http://www.atlassian.com/software/jira



---
This SF.Net email is sponsored by: IntelliVIEW -- Interactive Reporting
Tool for open source databases. Create drag--drop reports. Save time
by over 75%! Publish reports on the web. Export to DOC, XLS, RTF, etc.
Download a FREE copy at http://www.intelliview.com/go/osdn_nl
___
JBoss-Development mailing list
JBoss-Development@lists.sourceforge.net
https://lists.sourceforge.net/lists/listinfo/jboss-development


[JBoss-dev] [JBoss JIRA] Commented: (JBAS-26) Update 4.0.2 to use Tomcat-5.5.x

2005-01-24 Thread youngm (JIRA)
 [ http://jira.jboss.com/jira/browse/JBAS-26?page=comments#action_12314867 ]
 
youngm commented on JBAS-26:


This is just a vote to move this item up to 4.0.2 RC1 To show that there is 
interest out there for this item.  The classloading fix and faster JSP compiler 
in 5.5 would greatly improve my team's development productivity.

Just wanted to put my 2 cents forwardIf by chance lack of apparent interest 
was the reason for waiting for 4.0.2 final.

Mike

 Update 4.0.2 to use Tomcat-5.5.x
 

  Key: JBAS-26
  URL: http://jira.jboss.com/jira/browse/JBAS-26
  Project: JBoss Application Server
 Type: Task
 Versions: JBossAS-4.0.2 Final
 Reporter: Scott M Stark
 Assignee: Scott M Stark
  Fix For: JBossAS-4.0.2 Final



 We need to migrate the web container to tomcat 5.5.x to support JBossPortal 
 in the 4.0.x release series.

-- 
This message is automatically generated by JIRA.
-
If you think it was sent incorrectly contact one of the administrators:
   http://jira.jboss.com/jira/secure/Administrators.jspa
-
If you want more information on JIRA, or have a bug to report see:
   http://www.atlassian.com/software/jira



---
This SF.Net email is sponsored by: IntelliVIEW -- Interactive Reporting
Tool for open source databases. Create drag--drop reports. Save time
by over 75%! Publish reports on the web. Export to DOC, XLS, RTF, etc.
Download a FREE copy at http://www.intelliview.com/go/osdn_nl
___
JBoss-Development mailing list
JBoss-Development@lists.sourceforge.net
https://lists.sourceforge.net/lists/listinfo/jboss-development


[JBoss-dev] [Design of JBoss Build System] - Re: New Build in JBoss-Head

2005-01-24 Thread [EMAIL PROTECTED]
I've implemented the Class-Path processing.
Now the pathelements/
will include the dependencies of the jars they include.

e.g. kernel compiles over common-project, concurrent
and includes test-project for testcase support.


  |   source id=main
  |  include input=common-project/
  |  include input=concurrent/
  |   /source
  | 
  |   source id=tests test=org/jboss/test/**/*TestCase.java
  |  include input=main/
  |  include input=test-project/
  |   /source
  | 

This leads to all these jars and their depdencies getting included in the 
classpath
for running the tests:


  | [EMAIL PROTECTED] kernel]$ ant -f jbossbuild.xml show -Dshow=runtest
  | Buildfile: jbossbuild.xml
  | 
  | show:
  | !-- Run tests --
  | target name=runtest depends=runtest.tests
  | /target
  | 
  | !-- Run tests for the source src/tests --
  | target name=runtest.tests
  | mkdir dir=/home/ejort/jboss-head/workspace/kernel/output/reports/tests/
  | delete 
file=/home/ejort/jboss-head/workspace/kernel/output/reports/tests/test.log/
  | junit printsummary=true fork=true
  |   sysproperty key=org.jboss.test.logfile 
value=/home/ejort/jboss-head/workspace/kernel/output/reports/tests/test.log/
  |   formatter type=plain/
  |   classpath
  | pathelement 
location=/home/ejort/jboss-head/workspace/thirdparty/gnu-regexp/lib/gnu-regexp.jar/
  | pathelement 
location=/home/ejort/jboss-head/workspace/common/output/lib/namespace.jar/
  | pathelement 
location=/home/ejort/jboss-head/workspace/thirdparty/dom4j-dom4j/lib/dom4j.jar/
  | pathelement 
location=/home/ejort/jboss-head/workspace/thirdparty/apache-xerces/lib/xercesImpl.jar/
  | pathelement 
location=/home/ejort/jboss-head/workspace/thirdparty/apache-commons/lib/commons-httpclient.jar/
  | pathelement 
location=/home/ejort/jboss-head/workspace/thirdparty/apache-log4j/lib/log4j.jar/
  | pathelement 
location=/home/ejort/jboss-head/workspace/thirdparty/wutka-dtdparser/lib/dtdparser121.jar/
  | pathelement 
location=/home/ejort/jboss-head/workspace/test/output/lib/jboss-test.jar/
  | pathelement 
location=/home/ejort/jboss-head/workspace/kernel/output/classes/main/
  | pathelement 
location=/home/ejort/jboss-head/workspace/thirdparty/oswego-concurrent/lib/concurrent.jar/
  | pathelement 
location=/home/ejort/jboss-head/workspace/kernel/output/classes/tests/
  | pathelement 
location=/home/ejort/jboss-head/workspace/thirdparty/apache-jaxme/lib/jaxmexs.jar/
  | pathelement 
location=/home/ejort/jboss-head/workspace/common/output/lib/jboss-common.jar/
  | pathelement 
location=/home/ejort/jboss-head/workspace/thirdparty/apache-slide/client/lib/webdavlib.jar/
  | pathelement 
location=/home/ejort/jboss-head/workspace/thirdparty/junit-junit/lib/junit.jar/
  |   /classpath
  |   batchtest 
todir=/home/ejort/jboss-head/workspace/kernel/output/reports/tests
  | fileset dir=/home/ejort/jboss-head/workspace/kernel/src/tests 
includes=org/jboss/test/**/*TestCase.java/
  |   /batchtest
  | /junit
  | /target
  | 

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

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


---
This SF.Net email is sponsored by: IntelliVIEW -- Interactive Reporting
Tool for open source databases. Create drag--drop reports. Save time
by over 75%! Publish reports on the web. Export to DOC, XLS, RTF, etc.
Download a FREE copy at http://www.intelliview.com/go/osdn_nl
___
JBoss-Development mailing list
JBoss-Development@lists.sourceforge.net
https://lists.sourceforge.net/lists/listinfo/jboss-development


[JBoss-dev] [ jboss-Bugs-1108795 ] try to created existing tables when starting server

2005-01-24 Thread SourceForge.net
Bugs item #1108795, was opened at 2005-01-25 01:45
Message generated for change (Tracker Item Submitted) made by Item Submitter
You can respond by visiting: 
https://sourceforge.net/tracker/?func=detailatid=376685aid=1108795group_id=22866

Category: JBossCache
Group: v4.0
Status: Open
Resolution: None
Priority: 5
Submitted By: jl (jlzhang)
Assigned to: Nobody/Anonymous (nobody)
Summary: try to created existing tables when starting server

Initial Comment:
Here is bug information from the server log. It seems 
either Jboss need to check the existence before create 
or use a replacement or drop the tables during server 
shutdown.

2005-01-25 10:24:10,709 DEBUG 
[org.jboss.system.ServiceController] starting service 
jboss.mq:service=DestinationManager
2005-01-25 10:24:10,709 DEBUG 
[org.jboss.system.ServiceController] waiting in start 
jboss.mq:service=DestinationManager on 
jboss.mq:service=PersistenceManager
2005-01-25 10:24:10,709 DEBUG 
[org.jboss.system.ServiceController] starting service 
jboss.mq:service=PersistenceManager
2005-01-25 10:24:10,709 DEBUG 
[org.jboss.mq.pm.jdbc2.PersistenceManager] Starting 
jboss.mq:service=PersistenceManager
2005-01-25 10:24:10,709 DEBUG 
[org.jboss.mq.pm.jdbc2.PersistenceManager] Resolving 
uncommited TXS
2005-01-25 10:24:10,719 DEBUG 
[org.jboss.mq.pm.jdbc2.PersistenceManager] Could not 
create table with SQL: CREATE CACHED TABLE 
JMS_MESSAGES ( MESSAGEID INTEGER NOT NULL, 
DESTINATION VARCHAR(255) NOT NULL, TXID INTEGER, 
TXOP CHAR(1), MESSAGEBLOB OBJECT, PRIMARY KEY 
(MESSAGEID, DESTINATION) )
java.sql.SQLException: Table already exists: 
JMS_MESSAGES in statement [CREATE CACHED TABLE 
JMS_MESSAGES]
at org.hsqldb.jdbc.jdbcUtil.throwError(Unknown 
Source)
at 
org.hsqldb.jdbc.jdbcPreparedStatement.executeUpdate
(Unknown Source)
at 
org.jboss.resource.adapter.jdbc.WrappedPreparedStatem
ent.executeUpdate
(WrappedPreparedStatement.java:316)
at 
org.jboss.mq.pm.jdbc2.PersistenceManager.resolveAllUnc
ommitedTXs(PersistenceManager.java:224)
at 
org.jboss.mq.pm.jdbc2.PersistenceManager.startService
(PersistenceManager.java:1422)
at 
org.jboss.system.ServiceMBeanSupport.jbossInternalStart
(ServiceMBeanSupport.java:272)
at 
org.jboss.system.ServiceMBeanSupport.jbossInternalLifec
ycle(ServiceMBeanSupport.java:222)
at 
sun.reflect.GeneratedMethodAccessor2.invoke(Unknown 
Source)
at 
sun.reflect.DelegatingMethodAccessorImpl.invoke
(DelegatingMethodAccessorImpl.java:25)
at java.lang.reflect.Method.invoke
(Method.java:324)
at 
org.jboss.mx.interceptor.ReflectedDispatcher.invoke
(ReflectedDispatcher.java:144)
at org.jboss.mx.server.Invocation.dispatch
(Invocation.java:80)
at org.jboss.mx.server.Invocation.invoke
(Invocation.java:72)
at 
org.jboss.mx.server.AbstractMBeanInvoker.invoke
(AbstractMBeanInvoker.java:249)
at org.jboss.mx.server.MBeanServerImpl.invoke
(MBeanServerImpl.java:642)
at 
org.jboss.system.ServiceController$ServiceProxy.invoke
(ServiceController.java:891)
at $Proxy0.start(Unknown Source)



2005-01-25 10:24:10,729 DEBUG 
[org.jboss.mq.pm.jdbc2.PersistenceManager] Could not 
create table with SQL: CREATE CACHED TABLE 
JMS_TRANSACTIONS ( TXID INTEGER, PRIMARY KEY 
(TXID) )
java.sql.SQLException: Table already exists: 
JMS_TRANSACTIONS in statement [CREATE CACHED 
TABLE JMS_TRANSACTIONS]
at org.hsqldb.jdbc.jdbcUtil.throwError(Unknown 
Source)
at 
org.hsqldb.jdbc.jdbcPreparedStatement.executeUpdate
(Unknown Source)
at 
org.jboss.resource.adapter.jdbc.WrappedPreparedStatem
ent.executeUpdate
(WrappedPreparedStatement.java:316)
at 
org.jboss.mq.pm.jdbc2.PersistenceManager.resolveAllUnc
ommitedTXs(PersistenceManager.java:296)
at 
org.jboss.mq.pm.jdbc2.PersistenceManager.startService
(PersistenceManager.java:1422)
at 
org.jboss.system.ServiceMBeanSupport.jbossInternalStart
(ServiceMBeanSupport.java:272)
at 
org.jboss.system.ServiceMBeanSupport.jbossInternalLifec
ycle(ServiceMBeanSupport.java:222)
at 
sun.reflect.GeneratedMethodAccessor2.invoke(Unknown 
Source)
at 
sun.reflect.DelegatingMethodAccessorImpl.invoke
(DelegatingMethodAccessorImpl.java:25)
at java.lang.reflect.Method.invoke
(Method.java:324)
at 
org.jboss.mx.interceptor.ReflectedDispatcher.invoke
(ReflectedDispatcher.java:144)
at org.jboss.mx.server.Invocation.dispatch
(Invocation.java:80)
at org.jboss.mx.server.Invocation.invoke
(Invocation.java:72)
at 
org.jboss.mx.server.AbstractMBeanInvoker.invoke
(AbstractMBeanInvoker.java:249)
at org.jboss.mx.server.MBeanServerImpl.invoke
(MBeanServerImpl.java:642)
at 
org.jboss.system.ServiceController$ServiceProxy.invoke
(ServiceController.java:891)
at $Proxy0.start(Unknown Source)


--

You can respond by visiting: 

[JBoss-dev] [JBoss JIRA] Created: (JBAOP-68) JBoss AOP build should use docbook-support

2005-01-24 Thread Adrian Brock (JIRA)
JBoss AOP build should use docbook-support
--

 Key: JBAOP-68
 URL: http://jira.jboss.com/jira/browse/JBAOP-68
 Project: JBoss AOP
Type: Task
  Components: Documentation  
Versions: 2.1
Reporter: Adrian Brock
 Assigned to: Bill Burke 
Priority: Trivial


The jboss-aop build should use docbook-support rather than downloading a second 
copy
of these large jars.

-- 
This message is automatically generated by JIRA.
-
If you think it was sent incorrectly contact one of the administrators:
   http://jira.jboss.com/jira/secure/Administrators.jspa
-
If you want more information on JIRA, or have a bug to report see:
   http://www.atlassian.com/software/jira



---
This SF.Net email is sponsored by: IntelliVIEW -- Interactive Reporting
Tool for open source databases. Create drag--drop reports. Save time
by over 75%! Publish reports on the web. Export to DOC, XLS, RTF, etc.
Download a FREE copy at http://www.intelliview.com/go/osdn_nl
___
JBoss-Development mailing list
JBoss-Development@lists.sourceforge.net
https://lists.sourceforge.net/lists/listinfo/jboss-development


[JBoss-dev] [Design of JBoss Portal] - How do I access portlet preferences from a JSP?

2005-01-24 Thread jimmyed2001
I have a portlet that has some preferences and I can read the preferences 
successfully in the doDispatch of the portlet by calling getPreferences() on 
the RenderRequest object 'request'. 
I then create a PortletRequestDispatcher by calling 
context.getRequestDispatcher( jspName ) and make a call to my JSP by calling 
the PortletRequestDispatcher's include( request, response )

In Pluto the request object in the called JSP can be cast to a RenderRequest 
and getPreferences() can be called. This does not work in JBoss Portal (the 
request object cannot be cast to a RenderRequest). How can I get to the portlet 
preferences from a JSP in JBoss Portal?



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

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


---
This SF.Net email is sponsored by: IntelliVIEW -- Interactive Reporting
Tool for open source databases. Create drag--drop reports. Save time
by over 75%! Publish reports on the web. Export to DOC, XLS, RTF, etc.
Download a FREE copy at http://www.intelliview.com/go/osdn_nl
___
JBoss-Development mailing list
JBoss-Development@lists.sourceforge.net
https://lists.sourceforge.net/lists/listinfo/jboss-development


[JBoss-dev] [Design the new POJO MicroContainer] - Convenience or use case configurations

2005-01-24 Thread [EMAIL PROTECTED]
I'd better outline the idea of convenience or use case configurations.

The problem:
Although the jboss microcontainer metadata is very flexible and basically
will allow you configure anything you like that could be done through
java programming and much more, it is very verbose.
In many use cases, a lot of the configuration remains the same with only
a few parameters changing.

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

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


---
This SF.Net email is sponsored by: IntelliVIEW -- Interactive Reporting
Tool for open source databases. Create drag--drop reports. Save time
by over 75%! Publish reports on the web. Export to DOC, XLS, RTF, etc.
Download a FREE copy at http://www.intelliview.com/go/osdn_nl
___
JBoss-Development mailing list
JBoss-Development@lists.sourceforge.net
https://lists.sourceforge.net/lists/listinfo/jboss-development


[JBoss-dev] [Design the new POJO MicroContainer] - Re: Convenience or use case configurations

2005-01-24 Thread [EMAIL PROTECTED]
Let's take the example of constructing a classloader since that was brought up
by Scott.

In plain bean metadata this looks something like the following:


  | bean bean=java.net.URLClassLoader
  |constructor
  |   parameters
  |  parameter type=java.net.URLsomeURL/parameter
  |   /parameters
  |/constructor
  | /bean
  | 

which will become pretty tedious for more complicated constructs.

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

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


---
This SF.Net email is sponsored by: IntelliVIEW -- Interactive Reporting
Tool for open source databases. Create drag--drop reports. Save time
by over 75%! Publish reports on the web. Export to DOC, XLS, RTF, etc.
Download a FREE copy at http://www.intelliview.com/go/osdn_nl
___
JBoss-Development mailing list
JBoss-Development@lists.sourceforge.net
https://lists.sourceforge.net/lists/listinfo/jboss-development


[JBoss-dev] [Design the new POJO MicroContainer] - Re: Convenience or use case configurations

2005-01-24 Thread [EMAIL PROTECTED]
You will also note that multiple beans can be constructed
so you could use the same technique to simplify more complex 
(multi-bean) deployments:


  | proxy-container
  |interceptors.../interceptors
  |target.../target
  | /proxy-container
  | 

I see this as more important for the deployers where we should be able to
parse the more complex j2ee deployment descriptors and turn them into
a List getBeans() and let the kernel takeover to resolve dependencies,
construct containers and do all the other goodness in the correct order.

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

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


---
This SF.Net email is sponsored by: IntelliVIEW -- Interactive Reporting
Tool for open source databases. Create drag--drop reports. Save time
by over 75%! Publish reports on the web. Export to DOC, XLS, RTF, etc.
Download a FREE copy at http://www.intelliview.com/go/osdn_nl
___
JBoss-Development mailing list
JBoss-Development@lists.sourceforge.net
https://lists.sourceforge.net/lists/listinfo/jboss-development


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

2005-01-24 Thread qa

View results here -> http://cruisecontrol.jboss.com/cc/buildresults/jboss-3.2?log=log20050124224103Lbuild.272
BUILD COMPLETE-build.272Date of build:01/24/2005 22:41:03Time to build:35 minutes 32 secondsLast changed:01/24/2005 08:55:29Last log entry:fixed potentional cleanup issue




   Unit Tests: (0)   Total Errors and Failures: (0)
Modifications since last build:(3)1.1.2.5modifiedloubyanskytestsuite/src/main/org/jboss/test/cmp2/commerce/LimitOffsetTest.javafixed potentional cleanup issue1.2.2.1modifiedloubyanskytestsuite/src/main/org/jboss/test/cmp2/commerce/ManyToOneUniTest.javafixed potentional cleanup issue1.2.2.1modifiedloubyanskytestsuite/src/main/org/jboss/test/cmp2/commerce/OneToManyBiTest.javafixed potentional cleanup issue



[JBoss-dev] [Design of JBoss Admin Console] - Re: Datasource Component Design - Updating JBoss AS

2005-01-24 Thread [EMAIL PROTECTED]
[EMAIL PROTECTED] wrote : Ok, that was a great description of the steps.
  | 
  | How about this?
  | 
  | A file is transfered to a directory local to the AdminConsole as described. 
Then the Console prepares the input properties for the template to be executed. 
Part of the input properties is the URL to the local file. When the template 
runs, it copies the file over to the deployment.
  | 
  | In the remote scenario, the only thing that changes is the intermediate 
layer that takes care of transfering the file over (locally to the remote 
machine). The other steps are the same.
  | 
  | In the template config we would have something like:
  | 
  |   | template-config
  |   |... bla bla properties
  |   |property name=JarURL type=java.net.URL/
  |   |...
  |   |file-list
  |   |   file src=files/  !-- deep copy this from template dir --
  |   |   file src=${JarURL}/ !-- copy the pointed resource --
  |   |file-list/
  |   | 
  | 
  | The only problem I see, is whenever we need to rerun the template the 
caller needs to make sure the URL is valid, i.e. the file exists so it can be 
copied.

To solve the problem you describe how about not using a .sar to hold the 
-ds.xml and the driver .jar but instead use a -service.xml with an embedded 
classpath element and just copy the driver jar straight into a 
DeploymentService controlled directory. I think there are three scenarios of 
interest:

A) Create a new datasource:
1) A file is transfered to a directory local to the AdminConsole as described. 
2) Then the Console prepares the input properties for the template to be 
executed. Part of the input properties is the URL to the local file.
3) When the template runs, it copies the file specified by JarURL into 
./deploymentservice/datasource_jars/. Then it creates a -service.xml and copies 
it into ./deploy/deploymentservice/ making sure to include a classpath element 
which points to the driver jar in ./deploymentservice/datasource_jars/


B) Update a datasource, not changing the driver:
1) No file transfer step this time, for example we are just changing the jndi 
name
2) Then the Console prepares the input properties for the template to be 
executed. Since we don't have a URL pointing to a newly uploaded file we need 
the URL of the existing driver jar, which we can get in the following manner:
a) Call listDeployed() on MainDeployer which will return a Collection of 
DeploymentInfo objects.
b) Iterate through those finding all the ones where the URL contains 
./deploy/deploymentservice. 
c) Iterate through those finding all the ones which have MBeans whose 
ObjectNames are of the form jboss.jca:service=LocalTxCM,* or 
jboss.jca:service=TxCM,* or jboss.jca:service=??XA???.
d) Remove any DeploymentInfo objects where the package name of the 
ManagedConnectionFactory MBean does not contain jdbc. This obviously weeds 
out JCA resources which are not Datasources.
e) This give us a list of the datasources.
f) [When the user selected a datasource to update,step 0),  they would have 
effectively selected one from this list of DeploymentInfo objects]
g) Since the selected DeploymentInfo object will correspond to a file in 
./deploy/deploymentservice/ which contains a classpath element, then the 
contents of that element should be in the classpath attribute of the 
DeploymentInfo object. 
h) We now have the contents of the classpath element which will infact point to 
the existing driver jar e.g. ./deploymentservice/datasource_jars/???.jar
3) When the template runs, it copies the file specified by JarURL into 
./deploymentservice/datasource_jars/. [This will really be copying a file onto 
itself]. Then it creates a -service.xml and copies it into 
./deploy/deploymentservice/ making sure to include a classpath element which 
points to the driver jar in ./deploymentservice/datasource_jars/


C) Update a datasource, change the driver:
This is similar to scenario A) since a new driver file will be uploaded.

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

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


---
This SF.Net email is sponsored by: IntelliVIEW -- Interactive Reporting
Tool for open source databases. Create drag--drop reports. Save time
by over 75%! Publish reports on the web. Export to DOC, XLS, RTF, etc.
Download a FREE copy at http://www.intelliview.com/go/osdn_nl
___
JBoss-Development mailing list
JBoss-Development@lists.sourceforge.net
https://lists.sourceforge.net/lists/listinfo/jboss-development


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

2005-01-24 Thread qa

View results here -> http://cruisecontrol.jboss.com/cc/buildresults/jboss-head-jdk-matrix?log=log20050124235138Lbuild.66
BUILD COMPLETE-build.66Date of build:01/24/2005 23:51:38Time to build:22 minutes 19 secondsLast changed:01/24/2005 21:50:23Last log entry:Fix the eclipse build




   Unit Tests: (0)   Total Errors and Failures: (0)
Modifications since last build:(146)1.12modifiedejortiiop/.classpathFix the eclipse build1.4modifiedpatriot1burkeejb3/docs/tutorial/index.wikifix cluster config1.5modifiedpatriot1burkeejb3/docs/tutorial/index.htmlfix cluster config1.4modifiedpatriot1burkeejb3/docs/tutorial/timer/timer.htmlfix cluster config1.3modifiedpatriot1burkeejb3/docs/tutorial/stateless/stateless.htmlfix cluster config1.4modifiedpatriot1burkeejb3/docs/tutorial/security/security.htmlfix cluster config1.4modifiedpatriot1burkeejb3/docs/tutorial/relationships/relationships.htmlfix cluster config1.3modifiedpatriot1burkeejb3/docs/tutorial/mdb/mdb.htmlfix cluster config1.3modifiedpatriot1burkeejb3/docs/tutorial/merge/merge.htmlfix cluster config1.3modifiedpatriot1burkeejb3/docs/tutorial/joininheritance/join.htmlfix cluster config1.3modifiedpatriot1burkeejb3/docs/tutorial/interceptor/interceptor.htmlfix cluster config1.3modifiedpatriot1burkeejb3/docs/tutorial/injection/injection.htmlfix cluster config1.3modifiedpatriot1burkeejb3/docs/tutorial/entity/entity.htmlfix cluster config1.4modifiedpatriot1burkeejb3/docs/tutorial/composite/composite.htmlfix cluster config1.3modifiedpatriot1burkeejb3/docs/tutorial/blob/blob.htmlfix cluster config1.3modifiedpatriot1burkeejb3/docs/tutorial/blob/src/org/jboss/tutorial/blob/bean/LobTesterBean.javafix cluster config1.8modifiedejortjbossas/jbossbuild.xmltest-project no longer needs to include all its dependencies,they now come from the Class-Path of the jar.The XXX-project helper classpaths don't need to include the client jars.1.8modifiedejorttools/etc/jbossbuild/tasks.xmlFix the attribute names. Shouldn't be using the standard namesrather than the replacement properties.1.6modifiedejorttools/lib/jbossbuild.jarInclude the "Class-Path" of a jar in the pathelements/1.11modifiedpatriot1burkeejb3/src/resources/ejb3-interceptors-aop.xmlfix cluster config1.7modifiedejorttools/etc/jbossbuild/tasks.xmlAdd processing for generating the Class-Path element in the MANIFEST.MF1.5modifiedejorttools/lib/jbossbuild.jarAdd processing for generating the Class-Path element in the MANIFEST.MF1.6modifiedejorttools/etc/jbossbuild/tasks.xmlFixes for "name" attribute in target definitions.Move the manifest processing to the jar target.1.5modifiedejorttools/etc/jbossbuild/tasks.xmlFixes for "name" attribute in target definitions.Move the manifest processing to the jar target.1.4modifiedejorttools/lib/jbossbuild.jarFixes for "name" attribute in target definitions.Move the manifest processing to the jar target.1.4modifiedpatriot1burkeejb3/docs/tutorial/index.htmlfix tutorial1.3modifiedpatriot1burkeejb3/docs/tutorial/timer/timer.htmlfix tutorial1.2modifiedpatriot1burkeejb3/docs/tutorial/tableperinheritance/table.htmlfix tutorial1.2modifiedpatriot1burkeejb3/docs/tutorial/stateless/stateless.htmlfix tutorial1.3modifiedpatriot1burkeejb3/docs/tutorial/stateful/stateful.htmlfix tutorial1.2modifiedpatriot1burkeejb3/docs/tutorial/singleinheritance/single.htmlfix tutorial1.3modifiedpatriot1burkeejb3/docs/tutorial/security/security.htmlfix tutorial1.2modifiedpatriot1burkeejb3/docs/tutorial/secondary/secondary.htmlfix tutorial1.3modifiedpatriot1burkeejb3/docs/tutorial/relationships/relationships.htmlfix tutorial1.2modifiedpatriot1burkeejb3/docs/tutorial/merge/merge.htmlfix tutorial1.2modifiedpatriot1burkeejb3/docs/tutorial/mdb/mdb.htmlfix tutorial1.2modifiedpatriot1burkeejb3/docs/tutorial/joininheritance/join.htmlfix tutorial1.2modifiedpatriot1burkeejb3/docs/tutorial/interceptor/interceptor.htmlfix tutorial1.2modifiedpatriot1burkeejb3/docs/tutorial/injection/injection.htmlfix tutorial1.2modifiedpatriot1burkeejb3/docs/tutorial/entity/entity.htmlfix tutorial1.3modifiedpatriot1burkeejb3/docs/tutorial/dependent/dependent.htmlfix tutorial1.3modifiedpatriot1burkeejb3/docs/tutorial/composite/composite.htmlfix tutorial1.2modifiedpatriot1burkeejb3/docs/tutorial/blob/blob.htmlfix tutorial1.2modifiedpatriot1burkeejb3/docs/tutorial/blob/src/org/jboss/tutorial/blob/bean/LobTesterBean.javafix tutorial1.3modifiedejorttools/lib/jbossbuild.jarFix to avoid the show target trying to show tasks that don't apply.Tidyup of the path processing to avoid the path elements gettingadded twice through different includes.1.3modifiedpatriot1burkeejb3/docs/tutorial/index.wikiUpdate wiki and html for tutorial1.3modifiedpatriot1burkeejb3/docs/tutorial/timer/timer.wikiUpdate wiki and html for tutorial1.3modifiedpatriot1burkeejb3/docs/tutorial/relationships/relationships.wikiUpdate wiki and html for 

[JBoss-dev] [JBoss JIRA] Commented: (JBAS-1301) Tomcat backward compatbility loss VirtualHost-Alias mapping

2005-01-24 Thread Scott M Stark (JIRA)
 [ 
http://jira.jboss.com/jira/browse/JBAS-1301?page=comments#action_12314870 ]
 
Scott M Stark commented on JBAS-1301:
-

Yes, this was the cause of the issue and a patch has been provided.

 Tomcat backward compatbility loss VirtualHost-Alias mapping
 

  Key: JBAS-1301
  URL: http://jira.jboss.com/jira/browse/JBAS-1301
  Project: JBoss Application Server
 Type: Bug
   Components: Web (Tomcat) service
 Versions: JBossAS-4.0.1 Final, JBossAS-3.2.6 Final
 Reporter: Andrew Oliver
 Assignee: Scott M Stark
  Fix For:  JBossAS-3.2.7 Final,  JBossAS-4.0.2RC1, JBossPOJOServer-1.0 
 Alpha
  Attachments: server.xml

 Original Estimate: 3 hours
 Remaining: 3 hours

 In JBoss 3.2.3 (Tomcat 4.x) it was possible to create a Virtual Host and set 
 of Aliases in the jboss-service.xml and then map the webapps to the aliases 
 through the app deployment descriptors.  In tomcat 5 this works for *some* 
 apps that have been deployed.  The rest throw a 400 error saying no virtual 
 host has been configured.  The same apps mapped directly to the actual vhost 
 (not alias) do not throw this error.  The previous behavior can be useful for 
 builds which target multiple environments (stage/test/prod/etc).  Moreover it 
 should be preserverd for backward compatibility.

-- 
This message is automatically generated by JIRA.
-
If you think it was sent incorrectly contact one of the administrators:
   http://jira.jboss.com/jira/secure/Administrators.jspa
-
If you want more information on JIRA, or have a bug to report see:
   http://www.atlassian.com/software/jira



---
This SF.Net email is sponsored by: IntelliVIEW -- Interactive Reporting
Tool for open source databases. Create drag--drop reports. Save time
by over 75%! Publish reports on the web. Export to DOC, XLS, RTF, etc.
Download a FREE copy at http://www.intelliview.com/go/osdn_nl
___
JBoss-Development mailing list
JBoss-Development@lists.sourceforge.net
https://lists.sourceforge.net/lists/listinfo/jboss-development


[JBoss-dev] [JBossCache] - Re: Patch for Node.java

2005-01-24 Thread [EMAIL PROTECTED]
OK. Both will be part of JBossCache 1.2.1

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

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


---
This SF.Net email is sponsored by: IntelliVIEW -- Interactive Reporting
Tool for open source databases. Create drag--drop reports. Save time
by over 75%! Publish reports on the web. Export to DOC, XLS, RTF, etc.
Download a FREE copy at http://www.intelliview.com/go/osdn_nl
___
JBoss-Development mailing list
JBoss-Development@lists.sourceforge.net
https://lists.sourceforge.net/lists/listinfo/jboss-development


[JBoss-dev] [Design of JBoss Build System] - Re: New Build in JBoss-Head

2005-01-24 Thread [EMAIL PROTECTED]
Another heads up.

You don't need to include both the server jar and the client jar in the 
classpath.
e.g.
common-project only needs jboss-common.jar

jboss-common-client.jar is a cutdown version of jboss-common.jar
including only those classes required on the client side.

(Bad example, because in this case it is - all of them :-)

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

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


---
This SF.Net email is sponsored by: IntelliVIEW -- Interactive Reporting
Tool for open source databases. Create drag--drop reports. Save time
by over 75%! Publish reports on the web. Export to DOC, XLS, RTF, etc.
Download a FREE copy at http://www.intelliview.com/go/osdn_nl
___
JBoss-Development mailing list
JBoss-Development@lists.sourceforge.net
https://lists.sourceforge.net/lists/listinfo/jboss-development


[JBoss-dev] [JBossCache] - Re: Patch for Node.java

2005-01-24 Thread [EMAIL PROTECTED]
done, can you verify the code in CVS head ?

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

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


---
This SF.Net email is sponsored by: IntelliVIEW -- Interactive Reporting
Tool for open source databases. Create drag--drop reports. Save time
by over 75%! Publish reports on the web. Export to DOC, XLS, RTF, etc.
Download a FREE copy at http://www.intelliview.com/go/osdn_nl
___
JBoss-Development mailing list
JBoss-Development@lists.sourceforge.net
https://lists.sourceforge.net/lists/listinfo/jboss-development


[JBoss-dev] [JBoss JIRA] Resolved: (JBCACHE-82) Deserialized Node object doesn't have the FQN set

2005-01-24 Thread Bela Ban (JIRA)
 [ http://jira.jboss.com/jira/browse/JBCACHE-82?page=history ]
 
Bela Ban resolved JBCACHE-82:
-

Resolution: Done

done

 Deserialized Node object doesn't have the FQN set
 -

  Key: JBCACHE-82
  URL: http://jira.jboss.com/jira/browse/JBCACHE-82
  Project: JBoss Cache
 Type: Patch
 Versions: 1.2
 Reporter: twundke
 Assignee: Bela Ban
 Priority: Minor
  Fix For: 1.2.1
  Attachments: NodeIssue.txt

 Original Estimate: 5 minutes
 Remaining: 5 minutes

 When a new cache starts and retrieves the transient state, Node objects are 
 created--by the serialisation process--using the no-arg constructor. This 
 constructor calls init(), which creates the IdentityLock object using new 
 IdentityLock(cache_,fqn). The problem is that the fqn is never set on the 
 IdentityLock (as the Node doesn't know the fqn at this point), which means 
 that all IdentityLock messages show null as the fqn. Here's a patch on 
 revision 1.60 that fixes the problem by creating the lock in readExternal() 
 rather than in the constructor. 
 *** Node.java.#.1.60  Thu Jan 20 10:45:55 2005
 --- Node.java Thu Jan 20 10:46:04 2005
 ***
 *** 66,73 
   
  protected static final int INDENT=4;
   
  public Node() {
 !   init();
  }
   
  public Node(TreeCache cache) {
 --- 66,76 
   
  protected static final int INDENT=4;
   
 +   /**
 +* This constructor is only to be used by serialization.
 +*/
  public Node() {
 !   // No operation as the object is initialised by readExternal()
  }
   
  public Node(TreeCache cache) {
 ***
 *** 494,501 
 parent=(Node)in.readObject();
 children=(Map)in.readObject();
 data=(Map)in.readObject();
 -}
   
   
   }
 - 
 --- 497,505 
 parent=(Node)in.readObject();
 children=(Map)in.readObject();
 data=(Map)in.readObject();
   
 +   // Perform default initialisation now that we have all of the 
 required data
 +   init();
 +}
   
   }

-- 
This message is automatically generated by JIRA.
-
If you think it was sent incorrectly contact one of the administrators:
   http://jira.jboss.com/jira/secure/Administrators.jspa
-
If you want more information on JIRA, or have a bug to report see:
   http://www.atlassian.com/software/jira



---
This SF.Net email is sponsored by: IntelliVIEW -- Interactive Reporting
Tool for open source databases. Create drag--drop reports. Save time
by over 75%! Publish reports on the web. Export to DOC, XLS, RTF, etc.
Download a FREE copy at http://www.intelliview.com/go/osdn_nl
___
JBoss-Development mailing list
JBoss-Development@lists.sourceforge.net
https://lists.sourceforge.net/lists/listinfo/jboss-development