[JBoss-dev] [Design of Mail Services] - Re: MailListeners and Beanshells

2005-03-18 Thread mikezzz
Sounds my last friday night

Currently the store doesn't use EJBs it uses the Client Transaction explicitly, 
which really does make you feel dirty afterwards.

AOP transactions for the store will be M4.

Mike.

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

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


---
SF email is sponsored by - The IT Product Guide
Read honest  candid reviews on hundreds of IT Products from real users.
Discover which products truly live up to the hype. Start reading now.
http://ads.osdn.com/?ad_id=6595alloc_id=14396op=click
___
JBoss-Development mailing list
JBoss-Development@lists.sourceforge.net
https://lists.sourceforge.net/lists/listinfo/jboss-development


[JBoss-dev] [Design of Mail Services] - Re: M4 planning

2005-03-18 Thread mikezzz
For the store:

- AOP transactions
- Compression
- Indexing??

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

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


---
SF email is sponsored by - The IT Product Guide
Read honest  candid reviews on hundreds of IT Products from real users.
Discover which products truly live up to the hype. Start reading now.
http://ads.osdn.com/?ad_id=6595alloc_id=14396op=click
___
JBoss-Development mailing list
JBoss-Development@lists.sourceforge.net
https://lists.sourceforge.net/lists/listinfo/jboss-development


[JBoss-dev] [Design of Mail Services] - Re: MailListeners and Beanshells

2005-03-18 Thread mikezzz
anonymous wrote : or maybe implement a Lucene index

This is not such a bad idea.  Perhaps not to support the Mail API but to 
support protocols that require search.  We could use lucene, or roll our own 
that will allow joins directly from the index to the message rows.  I think 
this could be a POC task for M4.  If it will be useful, implement in M5.

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

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


---
SF email is sponsored by - The IT Product Guide
Read honest  candid reviews on hundreds of IT Products from real users.
Discover which products truly live up to the hype. Start reading now.
http://ads.osdn.com/?ad_id=6595alloc_id=14396op=click
___
JBoss-Development mailing list
JBoss-Development@lists.sourceforge.net
https://lists.sourceforge.net/lists/listinfo/jboss-development


[JBoss-dev] [Design of JBoss Portal] - about context-root of a portal

2005-03-18 Thread yxyang
Hi,i

According serviet  specs, context-root and url-pattern can be used to select 
the target.


!ELEMENT context-root (#PCDATA)
!ELEMENT servlet-mapping (servlet-name, url-pattern)


how does this work for Acessing a portal? 
In page http://docs.jboss.org/jbportal/v2.0beta1/reference-guide/html_single/, 
it is described somethng about how to accessing a portal. But it is not clear.

Why don't use the same mechanism as servlet specs to define the URL for a 
specific portal ?

Regards

Yang


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

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


---
SF email is sponsored by - The IT Product Guide
Read honest  candid reviews on hundreds of IT Products from real users.
Discover which products truly live up to the hype. Start reading now.
http://ads.osdn.com/?ad_id=6595alloc_id=14396op=click
___
JBoss-Development mailing list
JBoss-Development@lists.sourceforge.net
https://lists.sourceforge.net/lists/listinfo/jboss-development


[JBoss-dev] [Design of JBoss Portal] - Re: JBoss Portal 2.0 Beta 1

2005-03-18 Thread [EMAIL PROTECTED]
A critical bug has been found in JBoss-Forums beta 1, new packages has been 
released as jboss-forums-2.0.0-beta1a.

If you are using jboss-forums-2.0.0-beta1 please consider updating.

(It does not affect the core, so if you are not using the forums nothing has to 
be done.)

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

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


---
SF email is sponsored by - The IT Product Guide
Read honest  candid reviews on hundreds of IT Products from real users.
Discover which products truly live up to the hype. Start reading now.
http://ads.osdn.com/?ad_id=6595alloc_id=14396op=click
___
JBoss-Development mailing list
JBoss-Development@lists.sourceforge.net
https://lists.sourceforge.net/lists/listinfo/jboss-development


[JBoss-dev] [JBoss JIRA] Created: (JBAS-1596) collection_valued_path_expression IS [NOT] EMPTY does not work

2005-03-18 Thread Johan Borchers (JIRA)
collection_valued_path_expression IS [NOT] EMPTY does not work
--

 Key: JBAS-1596
 URL: http://jira.jboss.com/jira/browse/JBAS-1596
 Project: JBoss Application Server
Type: Bug
  Components: CMP service  
Versions:  JBossAS-4.0.1 SP1
 Environment: Windows XP Prof. SP2, 3.06 GHz, 1 GB RAM, MySQL 4.1.9, JBoss 
4.0.1sp1
Reporter: Johan Borchers


Hello,
The IS EMPTY does not work. I'm asking give me all object where there are no 
childs.

ejb-ql![CDATA[SELECT OBJECT(c) FROM Contract AS c, IN(c.tasks) AS t WHERE 
c.tasks IS EMPTY]]/ejb-ql

Executing SQL: SELECT DISTINCT t0_c.seq FROM contract t0_c, task t2_t WHERE 
((t1_c_tasks.seq IS NULL AND t0_c.seq=t1_c_tasks.contract)) AND 
t0_c.seq=t2_t.contract

java.sql.SQLException: Base table or view not found message from server: 
Unknown table 't1_c_tasks' in where clause


Also with the NOT operator it is not working.
ejb-ql![CDATA[SELECT OBJECT(c) FROM Contract AS c, IN(c.tasks) AS t WHERE 
c.tasks IS NOT EMPTY]]/ejb-ql

Executing SQL: SELECT DISTINCT t0_c.seq FROM contract t0_c, task t2_t WHERE 
((t1_c_tasks.seq IS  NOT NULL AND t0_c.seq=t1_c_tasks.contract)) AND 
t0_c.seq=t2_t.contract

java.sql.SQLException: Base table or view not found message from server: 
Unknown table 't1_c_tasks' in where clause


==Descriptors=
ejb-jar.xml
ejb-relation
  ejb-relation-nameContract-Task/ejb-relation-name
  ejb-relationship-role
ejb-relationship-role-namecontract-has-tasks/ejb-relationship-role-name
multiplicityOne/multiplicity
relationship-role-source
  ejb-nameContract/ejb-name
/relationship-role-source
cmr-field
  cmr-field-nametasks/cmr-field-name
  cmr-field-typejava.util.Collection/cmr-field-type
/cmr-field
  /ejb-relationship-role
  ejb-relationship-role

ejb-relationship-role-nametask-belongs-to-contract/ejb-relationship-role-name
multiplicityMany/multiplicity
relationship-role-source
  ejb-nameTask/ejb-name
/relationship-role-source
  /ejb-relationship-role
/ejb-relation

jbosscmp-jdbc.xml
ejb-relation  
 
  ejb-relation-nameContract-Task/ejb-relation-name  
   
  foreign-key-mapping/
   
  ejb-relationship-role   
   
ejb-relationship-role-namecontract-has-tasks/ejb-relationship-role-name 
 
key-fields
 
  key-field   
   
field-namekey/field-name
 
column-namecontract/column-name 
 
  /key-field  
   
/key-fields   
 
read-ahead
 
  strategyon-find/strategy  
   
  page-size16/page-size 
   
  eager-load-groupall/eager-load-group  
   
/read-ahead   
 
  /ejb-relationship-role  
   
  ejb-relationship-role   
   

ejb-relationship-role-nametask-belongs-to-contract/ejb-relationship-role-name
key-fields/   
 
  /ejb-relationship-role  
   
/ejb-relation 
==End of Descriptors=

My original question was:
Give me all objects with no childs OR with childs conform to some criteria.

ejb-ql![CDATA[SELECT OBJECT(c) FROM Contract AS c, IN(c.tasks) AS t WHERE 
(c.tasks IS EMPTY) OR (c.tasks IS NOT EMPTY AND t.type = 0 AND t.completed IS 
NULL)]]/ejb-ql

Executing SQL: SELECT DISTINCT t0_c.seq FROM contract t0_c, task t2_t WHERE 
(((t1_c_tasks.seq IS NULL) AND t0_c.seq=t1_c_tasks.contract) OR 
((t1_c_tasks.seq IS  NOT NULL AND t2_t.type = 0 AND t2_t.completed IS NULL) AND 
t0_c.seq=t1_c_tasks.contract)) AND t0_c.seq=t2_t.contract

java.sql.SQLException: Base table or view not found message from server: 
Unknown table 't1_c_tasks' in where clause

I hope that this can be fixed in the next release because now I have to loop in 
the EJB through all returned objects and examine the collection.


I would parse ejb-ql![CDATA[SELECT OBJECT(c) FROM Contract AS c, IN(c.tasks) 
AS t WHERE c.tasks IS EMPTY]]/ejb-ql to :

SELECT DISTINCT t0_c.seq FROM contract t0_c, task t1_t WHERE (t1_t.contract  
t0_c.seq)


[JBoss-dev] [JBoss JIRA] Created: (JBWEB-15) Create JK1.2 branch

2005-03-18 Thread Mladen Turk (JIRA)
Create JK1.2 branch
---

 Key: JBWEB-15
 URL: http://jira.jboss.com/jira/browse/JBWEB-15
 Project: JBoss Web
Type: Task
  Components: Tomcat Connectors  
Reporter: Mladen Turk
 Assigned to: Mladen Turk 


Create a JK1.2 branch with current status after the JK1.2.9 release.
We will probably have yet another version (1.2.10) in that branch,
that will only have bug fixes.

HEAD version will have version bump to JK1.3 with removed connectors:
- jni
- ajp12
- ajp14
and removed servers:
- isapi
- domino
- netscape

Most of the work will be related to lobbying for acceptance.
Purpose of that branching is to give us the clean mod_jk with
removed components that are either unused or outdated.



-- 
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



---
SF email is sponsored by - The IT Product Guide
Read honest  candid reviews on hundreds of IT Products from real users.
Discover which products truly live up to the hype. Start reading now.
http://ads.osdn.com/?ad_id=6595alloc_id=14396op=click
___
JBoss-Development mailing list
JBoss-Development@lists.sourceforge.net
https://lists.sourceforge.net/lists/listinfo/jboss-development


[JBoss-dev] [JBoss JIRA] Created: (JBPM-91) fixed SerializableSerializer

2005-03-18 Thread Tom Baeyens (JIRA)
fixed SerializableSerializer


 Key: JBPM-91
 URL: http://jira.jboss.com/jira/browse/JBPM-91
 Project: JBoss jBPM
Type: Bug
  Components: Core Engine  
Versions: jBPM 2.0
Reporter: Tom Baeyens
 Assigned to: Tom Baeyens 
 Fix For: jBPM 2.0.1


the serializable serializer used the wrong string to text conversion 
(String.getBytes() and new String(byte[]))

this was replaced with Base64 encoding provided by the apache commons codec 
library.


-- 
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



---
SF email is sponsored by - The IT Product Guide
Read honest  candid reviews on hundreds of IT Products from real users.
Discover which products truly live up to the hype. Start reading now.
http://ads.osdn.com/?ad_id=6595alloc_id=14396op=click
___
JBoss-Development mailing list
JBoss-Development@lists.sourceforge.net
https://lists.sourceforge.net/lists/listinfo/jboss-development


[JBoss-dev] [Design of JBoss Eclipse IDE (dev)] - Possible bug with VoiceXML files

2005-03-18 Thread zhengxinhang
I am editing some jsp files which generate VoiceXML files. 
The root tag is the following:

vxml version=2.0 xmlns=http://www.w3.org/2001/vxml;
xmlns:xsi=http://www.w3.org/2001/XMLSchema-instance; 
xsi:schemaLocation=http://www.w3.org/2001/vxml 
http://www.w3.org/TR/voicexml20/vxml.xsd;

The JSP editor won't open if the root tag is like this. There is an error 
message popping up saying Editor could not be initialized. The JSP editor can 
only be opened after I remove the schemaLocation attribute. I have correctly 
configured the Install/Update proxy.
Any suggestions will be appreciated.



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

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


---
SF email is sponsored by - The IT Product Guide
Read honest  candid reviews on hundreds of IT Products from real users.
Discover which products truly live up to the hype. Start reading now.
http://ads.osdn.com/?ad_id=6595alloc_id=14396op=click
___
JBoss-Development mailing list
JBoss-Development@lists.sourceforge.net
https://lists.sourceforge.net/lists/listinfo/jboss-development


[JBoss-dev] [Design of JBoss Portal] - Re: jboss portal start up problem

2005-03-18 Thread [EMAIL PROTECTED]
this is strange, and this does appzar if you don't set the portal on / ?

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

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


---
SF email is sponsored by - The IT Product Guide
Read honest  candid reviews on hundreds of IT Products from real users.
Discover which products truly live up to the hype. Start reading now.
http://ads.osdn.com/?ad_id=6595alloc_id=14396op=click
___
JBoss-Development mailing list
JBoss-Development@lists.sourceforge.net
https://lists.sourceforge.net/lists/listinfo/jboss-development


[JBoss-dev] [Design of Messaging on JBoss (Messaging/JBoss)] - Re: Testcase :failure

2005-03-18 Thread rajdeep_dua
a. got the reason--  

org.jboss.messaging.jms.server.container.ServerConnectionInterceptor.invoke()

 functionality still has to be imlpemented.

b.Would appreciate if the timelines  when the  JMSFacade would be in place,for 
my testcases to run and do their job.

c.i am using the following way of getting the connectionfactory

  | Properties props = new Properties();
  | 
props.put(java.naming.factory.initial,org.jboss.messaging.util.StandaloneInitialContextFactory);
  | ctx = new InitialContext(props);

Is this the right approach

For desintations i am using the following approach- 
javax.jms.Destination destination = new 
org.jboss.messaging.jms.destination.JBossDestination(destName);

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

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


---
SF email is sponsored by - The IT Product Guide
Read honest  candid reviews on hundreds of IT Products from real users.
Discover which products truly live up to the hype. Start reading now.
http://ads.osdn.com/?ad_id=6595alloc_id=14396op=click
___
JBoss-Development mailing list
JBoss-Development@lists.sourceforge.net
https://lists.sourceforge.net/lists/listinfo/jboss-development


[JBoss-dev] [JBoss JIRA] Commented: (JBIDE-124) Hotdeployment fails with StringIndexOutOfBounds Exception

2005-03-18 Thread Jrg Ktemeier (JIRA)
 [ 
http://jira.jboss.com/jira/browse/JBIDE-124?page=comments#action_12316246 ]
 
Jrg Ktemeier commented on JBIDE-124:
--

I have had exactly the same problem when I tried to integrate struts into my 
1.4 application.

It costs me a long night to figure out that it was not my fault... and it seams 
to be not related with the use of 1.3 or 1.4

Now my fix:

In org.jboss.util.file.JarUtils.java change line 255 to the following:

if ((fileName.length() - 1)  0) {
  fileName = fileName.substring(0, fileName.length() - 1);
}

now everything goes right (for me...)

 Hotdeployment fails with StringIndexOutOfBounds Exception
 -

  Key: JBIDE-124
  URL: http://jira.jboss.com/jira/browse/JBIDE-124
  Project: JBoss IDE
 Type: Bug
  Environment: Windows XP, Sun JDK 1.4.2_05
 Reporter: larswunderlich



 Deploying the sample application as described in JBoss IDE documentation 
 1.3.0 with 1.4.0 plugin fails with the following error. This happens in every 
 configuration (default as well as all). I don't know how to solve the bug, 
 the exception does not provide any further information what's going on.
 The EAR file structure, as well as the WAR and EJB structure seems just fine.
 18:43:28,986 INFO  [Server] JBoss (MX MicroKernel) [4.0.1 (build: 
 CVSTag=JBoss_4_0_1 date=200412230944)] Started in 22s:753ms
 18:43:48,574 INFO  [EARDeployer] Init J2EE application: 
 file:/D:/jboss-4.0.1/server/default/deploy/FiboApp.ear
 18:43:48,824 ERROR [Tomcat5] Problem in init 
 java.lang.StringIndexOutOfBoundsException: String index out of range: 0
   at java.lang.String.charAt(String.java:444)
   at org.jboss.util.file.JarUtils.unjar(JarUtils.java:252)
   at 
 org.jboss.web.AbstractWebContainer.init(AbstractWebContainer.java:262)
   at org.jboss.deployment.MainDeployer.init(MainDeployer.java:828)
   at org.jboss.deployment.MainDeployer.init(MainDeployer.java:848)
   at org.jboss.deployment.MainDeployer.deploy(MainDeployer.java:765)
   at org.jboss.deployment.MainDeployer.deploy(MainDeployer.java:738)
   at sun.reflect.GeneratedMethodAccessor46.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.interceptor.AbstractInterceptor.invoke(AbstractInterceptor.java:122)
   at org.jboss.mx.server.Invocation.invoke(Invocation.java:74)
   at 
 org.jboss.mx.interceptor.ModelMBeanOperationInterceptor.invoke(ModelMBeanOperationInterceptor.java:131)
   at org.jboss.mx.server.Invocation.invoke(Invocation.java:74)
   at 
 org.jboss.mx.server.AbstractMBeanInvoker.invoke(AbstractMBeanInvoker.java:249)
   at org.jboss.mx.server.MBeanServerImpl.invoke(MBeanServerImpl.java:642)
   at org.jboss.mx.util.MBeanProxyExt.invoke(MBeanProxyExt.java:177)
   at $Proxy8.deploy(Unknown Source)
   at 
 org.jboss.deployment.scanner.URLDeploymentScanner.deploy(URLDeploymentScanner.java:305)
   at 
 org.jboss.deployment.scanner.URLDeploymentScanner.scan(URLDeploymentScanner.java:481)
   at 
 org.jboss.deployment.scanner.AbstractDeploymentScanner$ScannerThread.doScan(AbstractDeploymentScanner.java:204)
   at 
 org.jboss.deployment.scanner.AbstractDeploymentScanner$ScannerThread.loop(AbstractDeploymentScanner.java:215)
   at 
 org.jboss.deployment.scanner.AbstractDeploymentScanner$ScannerThread.run(AbstractDeploymentScanner.java:194)
 18:43:48,844 ERROR [MainDeployer] Could not initialise deployment: 
 file:/D:/jboss-4.0.1/server/default/deploy/FiboApp.ear
 org.jboss.deployment.DeploymentException: String index out of range: 0; - 
 nested throwable: (java.lang.StringIndexOutOfBoundsException: String index 
 out of range: 0)
   at 
 org.jboss.web.AbstractWebContainer.init(AbstractWebContainer.java:312)
   at org.jboss.deployment.MainDeployer.init(MainDeployer.java:828)
   at org.jboss.deployment.MainDeployer.init(MainDeployer.java:848)
   at org.jboss.deployment.MainDeployer.deploy(MainDeployer.java:765)
   at org.jboss.deployment.MainDeployer.deploy(MainDeployer.java:738)
   at sun.reflect.GeneratedMethodAccessor46.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.interceptor.AbstractInterceptor.invoke(AbstractInterceptor.java:122)
   at org.jboss.mx.server.Invocation.invoke(Invocation.java:74)
   at 
 

[JBoss-dev] [JBoss JIRA] Commented: (JBIDE-124) Hotdeployment fails with StringIndexOutOfBounds Exception

2005-03-18 Thread Jrg Ktemeier (JIRA)
 [ 
http://jira.jboss.com/jira/browse/JBIDE-124?page=comments#action_12316247 ]
 
Jrg Ktemeier commented on JBIDE-124:
--

oh ... by the way... 

I used JBoss 4.0.1sp1

and the original line at 255 is:

fileName = fileName.substring(0, fileName.length() - 1);


(which causes the exception)

---

Extra Information:

WinRAR has no problem to deflate the war created with JBoss-IDE. If I repack 
it... everything was O.K., so I decided it must be a problem with JarUtils.java

Hope that helps saving more nights...

 Hotdeployment fails with StringIndexOutOfBounds Exception
 -

  Key: JBIDE-124
  URL: http://jira.jboss.com/jira/browse/JBIDE-124
  Project: JBoss IDE
 Type: Bug
  Environment: Windows XP, Sun JDK 1.4.2_05
 Reporter: larswunderlich



 Deploying the sample application as described in JBoss IDE documentation 
 1.3.0 with 1.4.0 plugin fails with the following error. This happens in every 
 configuration (default as well as all). I don't know how to solve the bug, 
 the exception does not provide any further information what's going on.
 The EAR file structure, as well as the WAR and EJB structure seems just fine.
 18:43:28,986 INFO  [Server] JBoss (MX MicroKernel) [4.0.1 (build: 
 CVSTag=JBoss_4_0_1 date=200412230944)] Started in 22s:753ms
 18:43:48,574 INFO  [EARDeployer] Init J2EE application: 
 file:/D:/jboss-4.0.1/server/default/deploy/FiboApp.ear
 18:43:48,824 ERROR [Tomcat5] Problem in init 
 java.lang.StringIndexOutOfBoundsException: String index out of range: 0
   at java.lang.String.charAt(String.java:444)
   at org.jboss.util.file.JarUtils.unjar(JarUtils.java:252)
   at 
 org.jboss.web.AbstractWebContainer.init(AbstractWebContainer.java:262)
   at org.jboss.deployment.MainDeployer.init(MainDeployer.java:828)
   at org.jboss.deployment.MainDeployer.init(MainDeployer.java:848)
   at org.jboss.deployment.MainDeployer.deploy(MainDeployer.java:765)
   at org.jboss.deployment.MainDeployer.deploy(MainDeployer.java:738)
   at sun.reflect.GeneratedMethodAccessor46.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.interceptor.AbstractInterceptor.invoke(AbstractInterceptor.java:122)
   at org.jboss.mx.server.Invocation.invoke(Invocation.java:74)
   at 
 org.jboss.mx.interceptor.ModelMBeanOperationInterceptor.invoke(ModelMBeanOperationInterceptor.java:131)
   at org.jboss.mx.server.Invocation.invoke(Invocation.java:74)
   at 
 org.jboss.mx.server.AbstractMBeanInvoker.invoke(AbstractMBeanInvoker.java:249)
   at org.jboss.mx.server.MBeanServerImpl.invoke(MBeanServerImpl.java:642)
   at org.jboss.mx.util.MBeanProxyExt.invoke(MBeanProxyExt.java:177)
   at $Proxy8.deploy(Unknown Source)
   at 
 org.jboss.deployment.scanner.URLDeploymentScanner.deploy(URLDeploymentScanner.java:305)
   at 
 org.jboss.deployment.scanner.URLDeploymentScanner.scan(URLDeploymentScanner.java:481)
   at 
 org.jboss.deployment.scanner.AbstractDeploymentScanner$ScannerThread.doScan(AbstractDeploymentScanner.java:204)
   at 
 org.jboss.deployment.scanner.AbstractDeploymentScanner$ScannerThread.loop(AbstractDeploymentScanner.java:215)
   at 
 org.jboss.deployment.scanner.AbstractDeploymentScanner$ScannerThread.run(AbstractDeploymentScanner.java:194)
 18:43:48,844 ERROR [MainDeployer] Could not initialise deployment: 
 file:/D:/jboss-4.0.1/server/default/deploy/FiboApp.ear
 org.jboss.deployment.DeploymentException: String index out of range: 0; - 
 nested throwable: (java.lang.StringIndexOutOfBoundsException: String index 
 out of range: 0)
   at 
 org.jboss.web.AbstractWebContainer.init(AbstractWebContainer.java:312)
   at org.jboss.deployment.MainDeployer.init(MainDeployer.java:828)
   at org.jboss.deployment.MainDeployer.init(MainDeployer.java:848)
   at org.jboss.deployment.MainDeployer.deploy(MainDeployer.java:765)
   at org.jboss.deployment.MainDeployer.deploy(MainDeployer.java:738)
   at sun.reflect.GeneratedMethodAccessor46.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.interceptor.AbstractInterceptor.invoke(AbstractInterceptor.java:122)
   at org.jboss.mx.server.Invocation.invoke(Invocation.java:74)
   at 
 

[JBoss-dev] [Design of Messaging on JBoss (Messaging/JBoss)] - Performance Harnesses for JMS

2005-03-18 Thread rajdeep_dua
First one is from sonic,not sure about the licensing issues.

http://www.sonicsoftware.com/products/sonicmq/performance_benchmarking/index.ssp

Second one is an open source performance testing framework for J2EE called 
Grinder developed by folks at BEA

http://grinder.sourceforge.net/

I have heard ECPerf has some scenarios for testing MDBs.

Any comments, to me sonic seems the easiest one because its very simple.Will 
have to look into grinder to comment about it.


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

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


---
SF email is sponsored by - The IT Product Guide
Read honest  candid reviews on hundreds of IT Products from real users.
Discover which products truly live up to the hype. Start reading now.
http://ads.osdn.com/?ad_id=6595alloc_id=14396op=click
___
JBoss-Development mailing list
JBoss-Development@lists.sourceforge.net
https://lists.sourceforge.net/lists/listinfo/jboss-development


[JBoss-dev] [TODO -- DEVELOPMENT] - Re: I18N logging messages

2005-03-18 Thread [EMAIL PROTECTED]
Very good thoughts, but one important aspect has not been discussed yet.  
You'll need to tell the i18N object which Locale to use or specify a particular 
ResourceBundle with the correct Locale already set on it.   Perhaps a new 
FileWriter would be appropriate in this case  with XML attributes in log4j.xml 
defining the ResourceBundle basename (required) and the Locale country, 
language, and variant (all optional, defaults to Locale.getDefault()).  Migfht 
also need to specify the charset for UTF-16 languages such as Chinese, Arabic, 
etc. You could then use Log4J as usual, but just passing in the key instead of 
the actual message.  Heck at that point you could define mutiple i18N appenders 
of this new subclass then define a Logger with refs to all the 
internationalized appenders.  Then you could be logging the same message in 
multiple languages simultaneously and the logging API would not change.

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

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


---
SF email is sponsored by - The IT Product Guide
Read honest  candid reviews on hundreds of IT Products from real users.
Discover which products truly live up to the hype. Start reading now.
http://ads.osdn.com/?ad_id=6595alloc_id=14396op=click
___
JBoss-Development mailing list
JBoss-Development@lists.sourceforge.net
https://lists.sourceforge.net/lists/listinfo/jboss-development


[JBoss-dev] [JBoss JIRA] Commented: (JBAS-1596) collection_valued_path_expression IS [NOT] EMPTY does not work

2005-03-18 Thread Alexey Loubyansky (JIRA)
 [ 
http://jira.jboss.com/jira/browse/JBAS-1596?page=comments#action_12316248 ]
 
Alexey Loubyansky commented on JBAS-1596:
-

This query SELECT OBJECT(c) FROM Contract AS c, IN(c.tasks) AS t WHERE c.tasks 
IS EMPTY doesn't make sense.
IN(c.tasks) means return instances of c only if they have tasks.
About table aliases, it's a bug.
Try using sql92 compiler.

 collection_valued_path_expression IS [NOT] EMPTY does not work
 --

  Key: JBAS-1596
  URL: http://jira.jboss.com/jira/browse/JBAS-1596
  Project: JBoss Application Server
 Type: Bug
   Components: CMP service
 Versions:  JBossAS-4.0.1 SP1
  Environment: Windows XP Prof. SP2, 3.06 GHz, 1 GB RAM, MySQL 4.1.9, JBoss 
 4.0.1sp1
 Reporter: Johan Borchers



 Hello,
 The IS EMPTY does not work. I'm asking give me all object where there are no 
 childs.
 ejb-ql![CDATA[SELECT OBJECT(c) FROM Contract AS c, IN(c.tasks) AS t WHERE 
 c.tasks IS EMPTY]]/ejb-ql
 Executing SQL: SELECT DISTINCT t0_c.seq FROM contract t0_c, task t2_t WHERE 
 ((t1_c_tasks.seq IS NULL AND t0_c.seq=t1_c_tasks.contract)) AND 
 t0_c.seq=t2_t.contract
 java.sql.SQLException: Base table or view not found message from server: 
 Unknown table 't1_c_tasks' in where clause
 Also with the NOT operator it is not working.
 ejb-ql![CDATA[SELECT OBJECT(c) FROM Contract AS c, IN(c.tasks) AS t WHERE 
 c.tasks IS NOT EMPTY]]/ejb-ql
 Executing SQL: SELECT DISTINCT t0_c.seq FROM contract t0_c, task t2_t WHERE 
 ((t1_c_tasks.seq IS  NOT NULL AND t0_c.seq=t1_c_tasks.contract)) AND 
 t0_c.seq=t2_t.contract
 java.sql.SQLException: Base table or view not found message from server: 
 Unknown table 't1_c_tasks' in where clause
 ==Descriptors=
 ejb-jar.xml
 ejb-relation
   ejb-relation-nameContract-Task/ejb-relation-name
   ejb-relationship-role
 
 ejb-relationship-role-namecontract-has-tasks/ejb-relationship-role-name
 multiplicityOne/multiplicity
 relationship-role-source
   ejb-nameContract/ejb-name
 /relationship-role-source
 cmr-field
   cmr-field-nametasks/cmr-field-name
   cmr-field-typejava.util.Collection/cmr-field-type
 /cmr-field
   /ejb-relationship-role
   ejb-relationship-role
 
 ejb-relationship-role-nametask-belongs-to-contract/ejb-relationship-role-name
 multiplicityMany/multiplicity
 relationship-role-source
   ejb-nameTask/ejb-name
 /relationship-role-source
   /ejb-relationship-role
 /ejb-relation
 jbosscmp-jdbc.xml
 ejb-relation

   ejb-relation-nameContract-Task/ejb-relation-name
  
   foreign-key-mapping/  
  
   ejb-relationship-role 
  
 
 ejb-relationship-role-namecontract-has-tasks/ejb-relationship-role-name   

 key-fields  

   key-field 
  
 field-namekey/field-name  

 column-namecontract/column-name   

   /key-field
  
 /key-fields 

 read-ahead  

   strategyon-find/strategy
  
   page-size16/page-size   
  
   eager-load-groupall/eager-load-group
  
 /read-ahead 

   /ejb-relationship-role
  
   ejb-relationship-role 
  
 
 ejb-relationship-role-nametask-belongs-to-contract/ejb-relationship-role-name
 key-fields/ 

   /ejb-relationship-role
  
 /ejb-relation 
 ==End of Descriptors=
 My original question was:
 Give me all objects with no childs OR with childs conform to some criteria.
 ejb-ql![CDATA[SELECT OBJECT(c) FROM Contract AS c, IN(c.tasks) AS t WHERE 
 (c.tasks IS EMPTY) OR (c.tasks IS NOT EMPTY AND t.type = 0 AND t.completed IS 
 NULL)]]/ejb-ql
 Executing SQL: SELECT DISTINCT t0_c.seq FROM contract t0_c, task t2_t WHERE 
 (((t1_c_tasks.seq IS NULL) AND t0_c.seq=t1_c_tasks.contract) OR 
 ((t1_c_tasks.seq IS  NOT NULL AND t2_t.type = 0 AND t2_t.completed IS NULL) 
 AND t0_c.seq=t1_c_tasks.contract)) 

[JBoss-dev] [JBoss JIRA] Assigned: (JBAS-1596) collection_valued_path_expression IS [NOT] EMPTY does not work

2005-03-18 Thread Alexey Loubyansky (JIRA)
 [ http://jira.jboss.com/jira/browse/JBAS-1596?page=history ]

Alexey Loubyansky reassigned JBAS-1596:
---

Assign To: Alexey Loubyansky

 collection_valued_path_expression IS [NOT] EMPTY does not work
 --

  Key: JBAS-1596
  URL: http://jira.jboss.com/jira/browse/JBAS-1596
  Project: JBoss Application Server
 Type: Bug
   Components: CMP service
 Versions:  JBossAS-4.0.1 SP1
  Environment: Windows XP Prof. SP2, 3.06 GHz, 1 GB RAM, MySQL 4.1.9, JBoss 
 4.0.1sp1
 Reporter: Johan Borchers
 Assignee: Alexey Loubyansky



 Hello,
 The IS EMPTY does not work. I'm asking give me all object where there are no 
 childs.
 ejb-ql![CDATA[SELECT OBJECT(c) FROM Contract AS c, IN(c.tasks) AS t WHERE 
 c.tasks IS EMPTY]]/ejb-ql
 Executing SQL: SELECT DISTINCT t0_c.seq FROM contract t0_c, task t2_t WHERE 
 ((t1_c_tasks.seq IS NULL AND t0_c.seq=t1_c_tasks.contract)) AND 
 t0_c.seq=t2_t.contract
 java.sql.SQLException: Base table or view not found message from server: 
 Unknown table 't1_c_tasks' in where clause
 Also with the NOT operator it is not working.
 ejb-ql![CDATA[SELECT OBJECT(c) FROM Contract AS c, IN(c.tasks) AS t WHERE 
 c.tasks IS NOT EMPTY]]/ejb-ql
 Executing SQL: SELECT DISTINCT t0_c.seq FROM contract t0_c, task t2_t WHERE 
 ((t1_c_tasks.seq IS  NOT NULL AND t0_c.seq=t1_c_tasks.contract)) AND 
 t0_c.seq=t2_t.contract
 java.sql.SQLException: Base table or view not found message from server: 
 Unknown table 't1_c_tasks' in where clause
 ==Descriptors=
 ejb-jar.xml
 ejb-relation
   ejb-relation-nameContract-Task/ejb-relation-name
   ejb-relationship-role
 
 ejb-relationship-role-namecontract-has-tasks/ejb-relationship-role-name
 multiplicityOne/multiplicity
 relationship-role-source
   ejb-nameContract/ejb-name
 /relationship-role-source
 cmr-field
   cmr-field-nametasks/cmr-field-name
   cmr-field-typejava.util.Collection/cmr-field-type
 /cmr-field
   /ejb-relationship-role
   ejb-relationship-role
 
 ejb-relationship-role-nametask-belongs-to-contract/ejb-relationship-role-name
 multiplicityMany/multiplicity
 relationship-role-source
   ejb-nameTask/ejb-name
 /relationship-role-source
   /ejb-relationship-role
 /ejb-relation
 jbosscmp-jdbc.xml
 ejb-relation

   ejb-relation-nameContract-Task/ejb-relation-name
  
   foreign-key-mapping/  
  
   ejb-relationship-role 
  
 
 ejb-relationship-role-namecontract-has-tasks/ejb-relationship-role-name   

 key-fields  

   key-field 
  
 field-namekey/field-name  

 column-namecontract/column-name   

   /key-field
  
 /key-fields 

 read-ahead  

   strategyon-find/strategy
  
   page-size16/page-size   
  
   eager-load-groupall/eager-load-group
  
 /read-ahead 

   /ejb-relationship-role
  
   ejb-relationship-role 
  
 
 ejb-relationship-role-nametask-belongs-to-contract/ejb-relationship-role-name
 key-fields/ 

   /ejb-relationship-role
  
 /ejb-relation 
 ==End of Descriptors=
 My original question was:
 Give me all objects with no childs OR with childs conform to some criteria.
 ejb-ql![CDATA[SELECT OBJECT(c) FROM Contract AS c, IN(c.tasks) AS t WHERE 
 (c.tasks IS EMPTY) OR (c.tasks IS NOT EMPTY AND t.type = 0 AND t.completed IS 
 NULL)]]/ejb-ql
 Executing SQL: SELECT DISTINCT t0_c.seq FROM contract t0_c, task t2_t WHERE 
 (((t1_c_tasks.seq IS NULL) AND t0_c.seq=t1_c_tasks.contract) OR 
 ((t1_c_tasks.seq IS  NOT NULL AND t2_t.type = 0 AND t2_t.completed IS NULL) 
 AND t0_c.seq=t1_c_tasks.contract)) AND t0_c.seq=t2_t.contract
 java.sql.SQLException: Base table or view not found message from server: 
 Unknown table 't1_c_tasks' in where clause
 I hope that this can be fixed in the next release 

[JBoss-dev] [Design the new POJO MicroContainer] - Re: Kernel XML format

2005-03-18 Thread [EMAIL PROTECTED]
[EMAIL PROTECTED] wrote : Another issue that jumps out is how to reverse the 
process.
  | e.g. Given an MC metadata config how do we identify the marshalling
  | of these javabeans back into an xml file?

With marshalling metadata.

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

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


---
SF email is sponsored by - The IT Product Guide
Read honest  candid reviews on hundreds of IT Products from real users.
Discover which products truly live up to the hype. Start reading now.
http://ads.osdn.com/?ad_id=6595alloc_id=14396op=click
___
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: Kernel XML format

2005-03-18 Thread [EMAIL PROTECTED]
[EMAIL PROTECTED] wrote : The complexity possible in the nesting of bean 
properties is not evident from the current testcases, and it did not jump out 
at me that the java configuration of the jbossxb factory supports this.

It depends on what API you looked at. For the latest API (sunday package), I 
would be interested to see a use-case that is not supported.

[EMAIL PROTECTED] wrote : We should define a schema for the xml deployer's 
supported document syntax. The question to Alexey is the suggested document 
model going to be drivable from the schema or the schema + a jbossxb/jaxb 
metadata document?

The aim is to have as little binding customizations (ideally to not have at 
all) as possible. This is the responsibility of the default binding rules. The 
real (e.g. Adrian's) world is full of exceptions.

You could minimize customizations when you write your Java object model by 
keeping in mind the XML schema the Java model is going to be bound to. I am 
actually not suggesting this approach and am sure that that's not what you want.

Let's create a real testcase and I'll work on it.
You could create an XML and Java object model and I'll then take care of the 
binding.

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

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


---
SF email is sponsored by - The IT Product Guide
Read honest  candid reviews on hundreds of IT Products from real users.
Discover which products truly live up to the hype. Start reading now.
http://ads.osdn.com/?ad_id=6595alloc_id=14396op=click
___
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: Kernel XML format

2005-03-18 Thread [EMAIL PROTECTED]
[EMAIL PROTECTED] wrote : Scott and I had a conversation.
  | We are going to look at generating the ObjectModel from a schema
  | using JBossXB.
  | This will need some feedback from Alex.

So, it looks like the approach when an XML schema drives the Java object model 
development. I think, Anil is working on Java object model generation based on 
XML schema.

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

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


---
SF email is sponsored by - The IT Product Guide
Read honest  candid reviews on hundreds of IT Products from real users.
Discover which products truly live up to the hype. Start reading now.
http://ads.osdn.com/?ad_id=6595alloc_id=14396op=click
___
JBoss-Development mailing list
JBoss-Development@lists.sourceforge.net
https://lists.sourceforge.net/lists/listinfo/jboss-development


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

2005-03-18 Thread qa

View results here -> http://cruisecontrol.jboss.com/cc/buildresults/jboss-head?log=log20050318081856Lbuild.893
BUILD COMPLETE-build.893Date of build:03/18/2005 08:18:56Time to build:21 minutes 36 secondsLast changed:03/18/2005 07:47:04Last log entry:Doesn't need to be Serializable




   Unit Tests: (0)   Total Errors and Failures: (0)
Modifications since last build:(1)1.4modifiedanddvaria/src/main/org/jboss/jmx/adaptor/snmp/agent/ManagerRecord.javaDoesn't need to be Serializable



[JBoss-dev] [JBoss JIRA] Commented: (JBAS-1391) Add support for datasource failover

2005-03-18 Thread Alexey Loubyansky (JIRA)
 [ 
http://jira.jboss.com/jira/browse/JBAS-1391?page=comments#action_12316249 ]
 
Alexey Loubyansky commented on JBAS-1391:
-

First step is done.

- local managed connection factory is added in

package org.jboss.resource.adapter.jdbc.local;
public class HALocalManagedConnectionFactory

it's very simple (even not thread-safe yet)

- ra.xml for this connection factory is added in resources/ha-local-rar
- it's packaged into jboss-ha-local-jdbc.rar
- the datasource is deployed in -ds.xml with ha-local-tx-datasource which has a 
new element url-delimeter

It worked for a simple testcase that I will add to the testsuite. Any remarks 
so far? This is in HEAD only for now.

Thanks.

 Add support for datasource failover
 ---

  Key: JBAS-1391
  URL: http://jira.jboss.com/jira/browse/JBAS-1391
  Project: JBoss Application Server
 Type: Feature Request
   Components: JCA service
 Versions: JBossAS-4.0.1 Final,  JBossAS-3.2.7 Final
 Reporter: Scott M Stark
 Assignee: Luc Texier
  Fix For: JBossAS-4.0.2 Final



 The change to 
 org.jboss.resource.adapter.jdbc.local.LocalManagedConnectionFactory
 is easier than org.jboss.resource.adapter.jdbc.xa.XAManagedConnectionFactory
 In LocalManagedConnectionFactory add a property delimiter
 which when present will parse the connectionURL into multiple urls.
 In XAManagedConnectionFactory you will also need a property to identify which 
 of the xaProps needs to be parsed for mulitple urls.
 i.e. you need to identify which property contains the server to contact.
 In both cases, if createManagedConnection fails for the first url, replace it 
 with the second url, and try again until all urls are exhausted.
 Of course, you can get clever and remember which urls are currently failing 
 and try the non failing urls first, And also if the db is replicating, you 
 might want it to load balance
 connections across the urls?
 Also, this design does not allow for using different properties with 
 different db servers, e.g. user and password might change across the servers.
 It also doesn't enforce that only connections from one connectionURL (db 
 server) are in the pool at the same time in the event the db is not 
 replicating.
 If you are going to do this, I would suggest you subclass/replicate the 
 managed connection factories and create separate rars so we can mark them as 
 experimental.
 
 Adrian Brock
 Director of Support
 Back Office
 JBoss Inc.
  

-- 
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



---
SF email is sponsored by - The IT Product Guide
Read honest  candid reviews on hundreds of IT Products from real users.
Discover which products truly live up to the hype. Start reading now.
http://ads.osdn.com/?ad_id=6595alloc_id=14396op=click
___
JBoss-Development mailing list
JBoss-Development@lists.sourceforge.net
https://lists.sourceforge.net/lists/listinfo/jboss-development


[JBoss-dev] [JBoss JIRA] Commented: (JBAS-1596) collection_valued_path_expression IS [NOT] EMPTY does not work

2005-03-18 Thread Johan Borchers (JIRA)
 [ 
http://jira.jboss.com/jira/browse/JBAS-1596?page=comments#action_12316250 ]
 
Johan Borchers commented on JBAS-1596:
--

I did try to use the SQL92 compiler for testing the EJB-QL:
ejb-qlSELECT OBJECT(c) FROM Contract AS c, IN(c.tasks) AS t WHERE c.tasks IS 
EMPTY/ejb-ql

First I tried the overall solution changing standardjbosscmp-jdbc.xml

The result is:
Executing SQL: SELECT t0_c.seq, ...a lot more fields... 
,t0_c.period_of_notice_period FROM contract t0_c INNER JOIN task t2_t ON 
t0_c.seq=t2_t.contract WHERE t1_c_tasks.seq IS NULL

java.sql.SQLException: Base table or view not found message from server: 
Unknown table 't1_c_tasks' in where clause

Changing to SQL92 gives also a problem with the alias.

But when I did not change standardjbosscmp-jdbc.xml but only on a per query 
element in jbosscmp-jdbc.xml the query did not change:

Executing SQL: SELECT DISTINCT t0_c.seq, t0_c.version, t0_c.active, 
t0_c.organization_number, t0_c.description, t0_c.characteristics, 
t0_c.start_date, t0_c.duration, t0_c.ending_date, t0_c.period_of_notice, 
t0_c.period_of_notice_ending_date, t0_c.discontinued FROM contract t0_c, task 
t2_t WHERE ((t1_c_tasks.seq IS NULL AND t0_c.seq=t1_c_tasks.contract)) AND 
t0_c.seq=t2_t.contract

java.sql.SQLException: Base table or view not found message from server: 
Unknown table 't1_c_tasks' in where clause

It seems that on a per query element change to SQL92 does not work.

query
query-method
method-nametestQuery/method-name
method-params/
/query-method
read-ahead
strategyon-find/strategy
eager-load-grouplite/eager-load-group
/read-ahead

ql-compilerorg.jboss.ejb.plugins.cmp.jdbc.EJBQLToSQL92Compiler/ql-compiler
/query

Johan


 collection_valued_path_expression IS [NOT] EMPTY does not work
 --

  Key: JBAS-1596
  URL: http://jira.jboss.com/jira/browse/JBAS-1596
  Project: JBoss Application Server
 Type: Bug
   Components: CMP service
 Versions:  JBossAS-4.0.1 SP1
  Environment: Windows XP Prof. SP2, 3.06 GHz, 1 GB RAM, MySQL 4.1.9, JBoss 
 4.0.1sp1
 Reporter: Johan Borchers
 Assignee: Alexey Loubyansky



 Hello,
 The IS EMPTY does not work. I'm asking give me all object where there are no 
 childs.
 ejb-ql![CDATA[SELECT OBJECT(c) FROM Contract AS c, IN(c.tasks) AS t WHERE 
 c.tasks IS EMPTY]]/ejb-ql
 Executing SQL: SELECT DISTINCT t0_c.seq FROM contract t0_c, task t2_t WHERE 
 ((t1_c_tasks.seq IS NULL AND t0_c.seq=t1_c_tasks.contract)) AND 
 t0_c.seq=t2_t.contract
 java.sql.SQLException: Base table or view not found message from server: 
 Unknown table 't1_c_tasks' in where clause
 Also with the NOT operator it is not working.
 ejb-ql![CDATA[SELECT OBJECT(c) FROM Contract AS c, IN(c.tasks) AS t WHERE 
 c.tasks IS NOT EMPTY]]/ejb-ql
 Executing SQL: SELECT DISTINCT t0_c.seq FROM contract t0_c, task t2_t WHERE 
 ((t1_c_tasks.seq IS  NOT NULL AND t0_c.seq=t1_c_tasks.contract)) AND 
 t0_c.seq=t2_t.contract
 java.sql.SQLException: Base table or view not found message from server: 
 Unknown table 't1_c_tasks' in where clause
 ==Descriptors=
 ejb-jar.xml
 ejb-relation
   ejb-relation-nameContract-Task/ejb-relation-name
   ejb-relationship-role
 
 ejb-relationship-role-namecontract-has-tasks/ejb-relationship-role-name
 multiplicityOne/multiplicity
 relationship-role-source
   ejb-nameContract/ejb-name
 /relationship-role-source
 cmr-field
   cmr-field-nametasks/cmr-field-name
   cmr-field-typejava.util.Collection/cmr-field-type
 /cmr-field
   /ejb-relationship-role
   ejb-relationship-role
 
 ejb-relationship-role-nametask-belongs-to-contract/ejb-relationship-role-name
 multiplicityMany/multiplicity
 relationship-role-source
   ejb-nameTask/ejb-name
 /relationship-role-source
   /ejb-relationship-role
 /ejb-relation
 jbosscmp-jdbc.xml
 ejb-relation

   ejb-relation-nameContract-Task/ejb-relation-name
  
   foreign-key-mapping/  
  
   ejb-relationship-role 
  
 
 ejb-relationship-role-namecontract-has-tasks/ejb-relationship-role-name   

 key-fields  

   key-field 
  
 field-namekey/field-name  

 column-namecontract/column-name   

   /key-field
  
 /key-fields 
  

[JBoss-dev] [JBoss JIRA] Commented: (JBAS-1596) collection_valued_path_expression IS [NOT] EMPTY does not work

2005-03-18 Thread Alexey Loubyansky (JIRA)
 [ 
http://jira.jboss.com/jira/browse/JBAS-1596?page=comments#action_12316251 ]
 
Alexey Loubyansky commented on JBAS-1596:
-

Have you made any changes to the queries before posting them here? They don't 
seem to be generated by the sql92 compiler.

 collection_valued_path_expression IS [NOT] EMPTY does not work
 --

  Key: JBAS-1596
  URL: http://jira.jboss.com/jira/browse/JBAS-1596
  Project: JBoss Application Server
 Type: Bug
   Components: CMP service
 Versions:  JBossAS-4.0.1 SP1
  Environment: Windows XP Prof. SP2, 3.06 GHz, 1 GB RAM, MySQL 4.1.9, JBoss 
 4.0.1sp1
 Reporter: Johan Borchers
 Assignee: Alexey Loubyansky



 Hello,
 The IS EMPTY does not work. I'm asking give me all object where there are no 
 childs.
 ejb-ql![CDATA[SELECT OBJECT(c) FROM Contract AS c, IN(c.tasks) AS t WHERE 
 c.tasks IS EMPTY]]/ejb-ql
 Executing SQL: SELECT DISTINCT t0_c.seq FROM contract t0_c, task t2_t WHERE 
 ((t1_c_tasks.seq IS NULL AND t0_c.seq=t1_c_tasks.contract)) AND 
 t0_c.seq=t2_t.contract
 java.sql.SQLException: Base table or view not found message from server: 
 Unknown table 't1_c_tasks' in where clause
 Also with the NOT operator it is not working.
 ejb-ql![CDATA[SELECT OBJECT(c) FROM Contract AS c, IN(c.tasks) AS t WHERE 
 c.tasks IS NOT EMPTY]]/ejb-ql
 Executing SQL: SELECT DISTINCT t0_c.seq FROM contract t0_c, task t2_t WHERE 
 ((t1_c_tasks.seq IS  NOT NULL AND t0_c.seq=t1_c_tasks.contract)) AND 
 t0_c.seq=t2_t.contract
 java.sql.SQLException: Base table or view not found message from server: 
 Unknown table 't1_c_tasks' in where clause
 ==Descriptors=
 ejb-jar.xml
 ejb-relation
   ejb-relation-nameContract-Task/ejb-relation-name
   ejb-relationship-role
 
 ejb-relationship-role-namecontract-has-tasks/ejb-relationship-role-name
 multiplicityOne/multiplicity
 relationship-role-source
   ejb-nameContract/ejb-name
 /relationship-role-source
 cmr-field
   cmr-field-nametasks/cmr-field-name
   cmr-field-typejava.util.Collection/cmr-field-type
 /cmr-field
   /ejb-relationship-role
   ejb-relationship-role
 
 ejb-relationship-role-nametask-belongs-to-contract/ejb-relationship-role-name
 multiplicityMany/multiplicity
 relationship-role-source
   ejb-nameTask/ejb-name
 /relationship-role-source
   /ejb-relationship-role
 /ejb-relation
 jbosscmp-jdbc.xml
 ejb-relation

   ejb-relation-nameContract-Task/ejb-relation-name
  
   foreign-key-mapping/  
  
   ejb-relationship-role 
  
 
 ejb-relationship-role-namecontract-has-tasks/ejb-relationship-role-name   

 key-fields  

   key-field 
  
 field-namekey/field-name  

 column-namecontract/column-name   

   /key-field
  
 /key-fields 

 read-ahead  

   strategyon-find/strategy
  
   page-size16/page-size   
  
   eager-load-groupall/eager-load-group
  
 /read-ahead 

   /ejb-relationship-role
  
   ejb-relationship-role 
  
 
 ejb-relationship-role-nametask-belongs-to-contract/ejb-relationship-role-name
 key-fields/ 

   /ejb-relationship-role
  
 /ejb-relation 
 ==End of Descriptors=
 My original question was:
 Give me all objects with no childs OR with childs conform to some criteria.
 ejb-ql![CDATA[SELECT OBJECT(c) FROM Contract AS c, IN(c.tasks) AS t WHERE 
 (c.tasks IS EMPTY) OR (c.tasks IS NOT EMPTY AND t.type = 0 AND t.completed IS 
 NULL)]]/ejb-ql
 Executing SQL: SELECT DISTINCT t0_c.seq FROM contract t0_c, task t2_t WHERE 
 (((t1_c_tasks.seq IS NULL) AND t0_c.seq=t1_c_tasks.contract) OR 
 ((t1_c_tasks.seq IS  NOT NULL AND t2_t.type = 0 AND t2_t.completed IS NULL) 
 AND t0_c.seq=t1_c_tasks.contract)) AND t0_c.seq=t2_t.contract
 java.sql.SQLException: Base table or view not found 

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

2005-03-18 Thread qa

View results here -> http://cruisecontrol.jboss.com/cc/buildresults/jboss-3.2?log=log20050318090520Lbuild.314
BUILD COMPLETE-build.314Date of build:03/18/2005 09:05:20Time to build:22 minutes 21 secondsLast changed:03/18/2005 07:44:45Last log entry:Doesn't need to be Serializable




   Unit Tests: (0)   Total Errors and Failures: (0)
Modifications since last build:(1)1.1.2.4modifiedanddvaria/src/main/org/jboss/jmx/adaptor/snmp/agent/ManagerRecord.javaDoesn't need to be Serializable



[JBoss-dev] [JBoss JIRA] Created: (JBAS-1597) Update docs for the 4.0.2 release

2005-03-18 Thread Scott M Stark (JIRA)
Update docs for the 4.0.2 release
-

 Key: JBAS-1597
 URL: http://jira.jboss.com/jira/browse/JBAS-1597
 Project: JBoss Application Server
Type: Task
  Components: Documentation  
Versions:  JBossAS-4.0.2RC1
Reporter: Scott M Stark
 Assigned to: Norman Richards 
 Fix For: JBossAS-4.0.2 Final


This links to the documentation project tasks that need to be completed for the 
4.0.2 release.


-- 
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



---
SF email is sponsored by - The IT Product Guide
Read honest  candid reviews on hundreds of IT Products from real users.
Discover which products truly live up to the hype. Start reading now.
http://ads.osdn.com/?ad_id=6595alloc_id=14396op=click
___
JBoss-Development mailing list
JBoss-Development@lists.sourceforge.net
https://lists.sourceforge.net/lists/listinfo/jboss-development


[JBoss-dev] [JBoss JIRA] Commented: (JBAS-1596) collection_valued_path_expression IS [NOT] EMPTY does not work

2005-03-18 Thread Johan Borchers (JIRA)
 [ 
http://jira.jboss.com/jira/browse/JBAS-1596?page=comments#action_12316252 ]
 
Johan Borchers commented on JBAS-1596:
--

I do not know exactly by what you are saying changing the query.

But a changed the query. I redeployed, I restarted JBoss. etc.
Just to be sure that I'm not testing with an old configuration.

I saw that changing the standardjbosscmp-jdbc.xml and restartig JBoss changed 
the SQL statement from 

FROM contract t0_c, task t2_t WHERE ((t1_c_tasks.seq IS NULL AND 
t0_c.seq=t1_c_tasks.contract)) AND t0_c.seq=t2_t.contract

to

FROM contract t0_c INNER JOIN task t2_t ON t0_c.seq=t2_t.contract WHERE 
t1_c_tasks.seq IS NULL

both giving an error : Unknown table 't1_c_tasks' in where clause

Johan

 collection_valued_path_expression IS [NOT] EMPTY does not work
 --

  Key: JBAS-1596
  URL: http://jira.jboss.com/jira/browse/JBAS-1596
  Project: JBoss Application Server
 Type: Bug
   Components: CMP service
 Versions:  JBossAS-4.0.1 SP1
  Environment: Windows XP Prof. SP2, 3.06 GHz, 1 GB RAM, MySQL 4.1.9, JBoss 
 4.0.1sp1
 Reporter: Johan Borchers
 Assignee: Alexey Loubyansky



 Hello,
 The IS EMPTY does not work. I'm asking give me all object where there are no 
 childs.
 ejb-ql![CDATA[SELECT OBJECT(c) FROM Contract AS c, IN(c.tasks) AS t WHERE 
 c.tasks IS EMPTY]]/ejb-ql
 Executing SQL: SELECT DISTINCT t0_c.seq FROM contract t0_c, task t2_t WHERE 
 ((t1_c_tasks.seq IS NULL AND t0_c.seq=t1_c_tasks.contract)) AND 
 t0_c.seq=t2_t.contract
 java.sql.SQLException: Base table or view not found message from server: 
 Unknown table 't1_c_tasks' in where clause
 Also with the NOT operator it is not working.
 ejb-ql![CDATA[SELECT OBJECT(c) FROM Contract AS c, IN(c.tasks) AS t WHERE 
 c.tasks IS NOT EMPTY]]/ejb-ql
 Executing SQL: SELECT DISTINCT t0_c.seq FROM contract t0_c, task t2_t WHERE 
 ((t1_c_tasks.seq IS  NOT NULL AND t0_c.seq=t1_c_tasks.contract)) AND 
 t0_c.seq=t2_t.contract
 java.sql.SQLException: Base table or view not found message from server: 
 Unknown table 't1_c_tasks' in where clause
 ==Descriptors=
 ejb-jar.xml
 ejb-relation
   ejb-relation-nameContract-Task/ejb-relation-name
   ejb-relationship-role
 
 ejb-relationship-role-namecontract-has-tasks/ejb-relationship-role-name
 multiplicityOne/multiplicity
 relationship-role-source
   ejb-nameContract/ejb-name
 /relationship-role-source
 cmr-field
   cmr-field-nametasks/cmr-field-name
   cmr-field-typejava.util.Collection/cmr-field-type
 /cmr-field
   /ejb-relationship-role
   ejb-relationship-role
 
 ejb-relationship-role-nametask-belongs-to-contract/ejb-relationship-role-name
 multiplicityMany/multiplicity
 relationship-role-source
   ejb-nameTask/ejb-name
 /relationship-role-source
   /ejb-relationship-role
 /ejb-relation
 jbosscmp-jdbc.xml
 ejb-relation

   ejb-relation-nameContract-Task/ejb-relation-name
  
   foreign-key-mapping/  
  
   ejb-relationship-role 
  
 
 ejb-relationship-role-namecontract-has-tasks/ejb-relationship-role-name   

 key-fields  

   key-field 
  
 field-namekey/field-name  

 column-namecontract/column-name   

   /key-field
  
 /key-fields 

 read-ahead  

   strategyon-find/strategy
  
   page-size16/page-size   
  
   eager-load-groupall/eager-load-group
  
 /read-ahead 

   /ejb-relationship-role
  
   ejb-relationship-role 
  
 
 ejb-relationship-role-nametask-belongs-to-contract/ejb-relationship-role-name
 key-fields/ 

   /ejb-relationship-role
  
 /ejb-relation 
 ==End of Descriptors=
 My original question was:
 Give me all objects with no childs OR with childs conform to some criteria.
 ejb-ql![CDATA[SELECT OBJECT(c) FROM 

[JBoss-dev] [JBoss JIRA] Commented: (JBAS-1596) collection_valued_path_expression IS [NOT] EMPTY does not work

2005-03-18 Thread Alexey Loubyansky (JIRA)
 [ 
http://jira.jboss.com/jira/browse/JBAS-1596?page=comments#action_12316253 ]
 
Alexey Loubyansky commented on JBAS-1596:
-

Ok, thanks. You answered my question.

 collection_valued_path_expression IS [NOT] EMPTY does not work
 --

  Key: JBAS-1596
  URL: http://jira.jboss.com/jira/browse/JBAS-1596
  Project: JBoss Application Server
 Type: Bug
   Components: CMP service
 Versions:  JBossAS-4.0.1 SP1
  Environment: Windows XP Prof. SP2, 3.06 GHz, 1 GB RAM, MySQL 4.1.9, JBoss 
 4.0.1sp1
 Reporter: Johan Borchers
 Assignee: Alexey Loubyansky



 Hello,
 The IS EMPTY does not work. I'm asking give me all object where there are no 
 childs.
 ejb-ql![CDATA[SELECT OBJECT(c) FROM Contract AS c, IN(c.tasks) AS t WHERE 
 c.tasks IS EMPTY]]/ejb-ql
 Executing SQL: SELECT DISTINCT t0_c.seq FROM contract t0_c, task t2_t WHERE 
 ((t1_c_tasks.seq IS NULL AND t0_c.seq=t1_c_tasks.contract)) AND 
 t0_c.seq=t2_t.contract
 java.sql.SQLException: Base table or view not found message from server: 
 Unknown table 't1_c_tasks' in where clause
 Also with the NOT operator it is not working.
 ejb-ql![CDATA[SELECT OBJECT(c) FROM Contract AS c, IN(c.tasks) AS t WHERE 
 c.tasks IS NOT EMPTY]]/ejb-ql
 Executing SQL: SELECT DISTINCT t0_c.seq FROM contract t0_c, task t2_t WHERE 
 ((t1_c_tasks.seq IS  NOT NULL AND t0_c.seq=t1_c_tasks.contract)) AND 
 t0_c.seq=t2_t.contract
 java.sql.SQLException: Base table or view not found message from server: 
 Unknown table 't1_c_tasks' in where clause
 ==Descriptors=
 ejb-jar.xml
 ejb-relation
   ejb-relation-nameContract-Task/ejb-relation-name
   ejb-relationship-role
 
 ejb-relationship-role-namecontract-has-tasks/ejb-relationship-role-name
 multiplicityOne/multiplicity
 relationship-role-source
   ejb-nameContract/ejb-name
 /relationship-role-source
 cmr-field
   cmr-field-nametasks/cmr-field-name
   cmr-field-typejava.util.Collection/cmr-field-type
 /cmr-field
   /ejb-relationship-role
   ejb-relationship-role
 
 ejb-relationship-role-nametask-belongs-to-contract/ejb-relationship-role-name
 multiplicityMany/multiplicity
 relationship-role-source
   ejb-nameTask/ejb-name
 /relationship-role-source
   /ejb-relationship-role
 /ejb-relation
 jbosscmp-jdbc.xml
 ejb-relation

   ejb-relation-nameContract-Task/ejb-relation-name
  
   foreign-key-mapping/  
  
   ejb-relationship-role 
  
 
 ejb-relationship-role-namecontract-has-tasks/ejb-relationship-role-name   

 key-fields  

   key-field 
  
 field-namekey/field-name  

 column-namecontract/column-name   

   /key-field
  
 /key-fields 

 read-ahead  

   strategyon-find/strategy
  
   page-size16/page-size   
  
   eager-load-groupall/eager-load-group
  
 /read-ahead 

   /ejb-relationship-role
  
   ejb-relationship-role 
  
 
 ejb-relationship-role-nametask-belongs-to-contract/ejb-relationship-role-name
 key-fields/ 

   /ejb-relationship-role
  
 /ejb-relation 
 ==End of Descriptors=
 My original question was:
 Give me all objects with no childs OR with childs conform to some criteria.
 ejb-ql![CDATA[SELECT OBJECT(c) FROM Contract AS c, IN(c.tasks) AS t WHERE 
 (c.tasks IS EMPTY) OR (c.tasks IS NOT EMPTY AND t.type = 0 AND t.completed IS 
 NULL)]]/ejb-ql
 Executing SQL: SELECT DISTINCT t0_c.seq FROM contract t0_c, task t2_t WHERE 
 (((t1_c_tasks.seq IS NULL) AND t0_c.seq=t1_c_tasks.contract) OR 
 ((t1_c_tasks.seq IS  NOT NULL AND t2_t.type = 0 AND t2_t.completed IS NULL) 
 AND t0_c.seq=t1_c_tasks.contract)) AND t0_c.seq=t2_t.contract
 java.sql.SQLException: Base table or view not found message from server: 
 Unknown table 't1_c_tasks' in where clause
 I hope that this 

[JBoss-dev] [Design of Mail Services] - Re: M4 planning

2005-03-18 Thread [EMAIL PROTECTED]
me?  accused of subtlety?  Excellent Dawie.  No expectations man.  Just planning

Compression and AOP transactions sounds good.  Subtly under AOP transactions 
ought to be rip out all stateless session beans.  Still, you'll need to make 
it work for 1.4 and 1.5 so at least you have a challenge.  Hopefully Kabir 
watches, he knows a couple things about AOP.

Indexing is probably out of scope for M4.  I would like to hear lots about 
thoughts you have to this effect.  However, IMAP will force us to think in that 
direction so I want to wait until we get some basic IMAP which will likely 
start killing some of our assumptions on security/store/structure.  Pieces of 
the house will fall, careful of the bricks.

Mike, I would like to get you branched out in a couple of places.  Prevent too 
much specialization.  


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

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


---
SF email is sponsored by - The IT Product Guide
Read honest  candid reviews on hundreds of IT Products from real users.
Discover which products truly live up to the hype. Start reading now.
http://ads.osdn.com/?ad_id=6595alloc_id=14396op=click
___
JBoss-Development mailing list
JBoss-Development@lists.sourceforge.net
https://lists.sourceforge.net/lists/listinfo/jboss-development


[JBoss-dev] [Design of Mail Services] - Indexing

2005-03-18 Thread [EMAIL PROTECTED]
mikezzz wrote : anonymous wrote : or maybe implement a Lucene index
  | 
  | This is not such a bad idea.  Perhaps not to support the Mail API but to 
support protocols that require search.  We could use lucene, or roll our own 
that will allow joins directly from the index to the message rows.  I think 
this could be a POC task for M4.  If it will be useful, implement in M5.

My temptation is to hold of indexing for M5.  The reason being is that IMAP has 
various search functions that we'll be half-impelemnting in M4.  These will 
dictate things about indexing.  

My only problem with Lucene is that it may be difficult to index concurrently 
enough to not make writes really slow and secondly we'll probably fragment the 
hell out of things.  We may need a different sort of index.

All databases doing this 
(http://www.oracle.com/technology/products/text/index.html in particular see 
the technical whitepaper) is an ideal.  However supporting that in a 
multi-dabase fashion is going to be a real challenge.

oracle technical whitepaper wrote : 
  | anonymous wrote : 
  |   | SELECT score(1), product_id, product_name 
  |   | FROM product_information
  |   | WHERE CONTAINS
  |   |   (product_description, 'monitor NEAR high resolution', 1)  0
  |   | ORDER BY score(1) DESC;
  |   | 
  | 
  | However with MySQL gaining triggers and PostgreSQL having them, it is 
possible that we'll be able to do database packages to accomplish this.  
  | 
  | Thoughts?

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

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


---
SF email is sponsored by - The IT Product Guide
Read honest  candid reviews on hundreds of IT Products from real users.
Discover which products truly live up to the hype. Start reading now.
http://ads.osdn.com/?ad_id=6595alloc_id=14396op=click
___
JBoss-Development mailing list
JBoss-Development@lists.sourceforge.net
https://lists.sourceforge.net/lists/listinfo/jboss-development


[JBoss-dev] [JBossCache] - Re: TimeoutExceptions from TreeCache.callRemoteMethods()

2005-03-18 Thread monocongo
[EMAIL PROTECTED] wrote : you are under the right module except the directory 
is lock instead of aop.
  | 

When I go to jboss/jbosstest/src/main/org/jboss/test/lock/test I don't see the 
file you mentioned.

Am I using the wrong interface, i.e. is there a better way than using the 
online CVS browser?  Because of a firewall on my network I'm unable to go 
directly to the CVS host with Eclipse.

anonymous wrote : The package is org.jboss.test.cache.test.local;.
  | 
  | Do a find on jboss-head/testsuite/
  | 

The problem with the CVS online browser I'm using is that it has no find 
capabilities, otherwise I would have already used it to find the file in 
question and not bothered you guys with these rookie questions on how to access 
files in the repository.  Perhaps the easiest thing for me to do is for me to 
just download the latest source distribution and do the finding myself on my 
local machine.  I'd like to learn how to use the repository a little more 
gracefully though -- is there a Wiki page or some other reference which gives 
an introductory explanation ?

Thanks.


--James

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

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


---
SF email is sponsored by - The IT Product Guide
Read honest  candid reviews on hundreds of IT Products from real users.
Discover which products truly live up to the hype. Start reading now.
http://ads.osdn.com/?ad_id=6595alloc_id=14396op=click
___
JBoss-Development mailing list
JBoss-Development@lists.sourceforge.net
https://lists.sourceforge.net/lists/listinfo/jboss-development


[JBoss-dev] [Deployers on JBoss (Deployers/JBoss)] - Problem trying to deploy a ejb into jboss 4.0

2005-03-18 Thread [EMAIL PROTECTED]
I built a EJBModule using Jbuilder.  When i try to deploy it, i recieve the 
following error. Could anybody give me a hint about what is happening?

Thanks.

at org.jboss.ejb.EJBDeployer.create(EJBDeployer.java:569)
... 67 more
08:21:29,104 INFO  [TomcatDeployer] deploy, ctxPath=/jmx-console, warUrl=file:/C
:/jbossAS/jboss-4.0.1RC1/server/default/deploy/jmx-console.war/
08:21:29,365 INFO  [TomcatDeployer] deploy, ctxPath=/web-console, warUrl=file:/C
:/jbossAS/jboss-4.0.1RC1/server/default/deploy/management/web-console.war/
08:21:30,116 ERROR [URLDeploymentScanner] Incomplete Deployment listing:
Incompletely deployed packages:
[EMAIL PROTECTED] { url=file:/C:/jbossAS/jboss-4.0.1RC1/
server/default/deploy/EJBModuleDBOnline.jar }
  deployer: [EMAIL PROTECTED]
  status: Deployment FAILED reason: Error during create of EjbModule: file:/C:/j
bossAS/jboss-4.0.1RC1/server/default/deploy/EJBModuleDBOnline.jar; - nested thro
wable: (javax.management.MalformedObjectNameException: missing domain)
  state: FAILED
  watch: file:/C:/jbossAS/jboss-4.0.1RC1/server/default/deploy/EJBModuleDBOnline
.jar
  altDD: null
  lastDeployed: 152088093
  lastModified: 152088073
  mbeans:


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

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


---
SF email is sponsored by - The IT Product Guide
Read honest  candid reviews on hundreds of IT Products from real users.
Discover which products truly live up to the hype. Start reading now.
http://ads.osdn.com/?ad_id=6595alloc_id=14396op=click
___
JBoss-Development mailing list
JBoss-Development@lists.sourceforge.net
https://lists.sourceforge.net/lists/listinfo/jboss-development


[JBoss-dev] [JBoss JIRA] Created: (JBIDE-134) adapt property sheet according to context in xml tab

2005-03-18 Thread Koen Aers (JIRA)
adapt property sheet according to context in xml tab


 Key: JBIDE-134
 URL: http://jira.jboss.com/jira/browse/JBIDE-134
 Project: JBoss IDE
Type: Task
  Components: jBPM Designer plugin  
Reporter: Koen Aers
 Assigned to: Koen Aers 
Priority: Minor


Currently the property sheet does not reflect the context when editing the 
process definition in the xml source tab.
Solution : define a selection listener that activates the model object 
corresponding to the cursor location in the xml source tab.

-- 
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



---
SF email is sponsored by - The IT Product Guide
Read honest  candid reviews on hundreds of IT Products from real users.
Discover which products truly live up to the hype. Start reading now.
http://ads.osdn.com/?ad_id=6595alloc_id=14396op=click
___
JBoss-Development mailing list
JBoss-Development@lists.sourceforge.net
https://lists.sourceforge.net/lists/listinfo/jboss-development


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

2005-03-18 Thread qa

View results here -> http://cruisecontrol.jboss.com/cc/buildresults/jboss-4.0?log=log20050318094244Lbuild.443
BUILD COMPLETE-build.443Date of build:03/18/2005 09:42:44Time to build:45 minutes 50 secondsLast changed:03/18/2005 09:36:04Last log entry:Added serialVersionUID




   Unit Tests: (0)   Total Errors and Failures: (0)
Modifications since last build:(2)1.2.16.1modifiedanddsystem/src/main/org/jboss/deployment/DeploymentState.javaAdded serialVersionUID1.2.6.2modifiedanddvaria/src/main/org/jboss/jmx/adaptor/snmp/agent/ManagerRecord.javaDoesn't need to be Serializable



[JBoss-dev] [Design of JBoss Portal] - Re: help with setup

2005-03-18 Thread mzak
I am not sure if this is what you are asking for but here it is:
ant  -1.6.2
portal -Portal 2.0 Beta 1 Release

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

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


---
SF email is sponsored by - The IT Product Guide
Read honest  candid reviews on hundreds of IT Products from real users.
Discover which products truly live up to the hype. Start reading now.
http://ads.osdn.com/?ad_id=6595alloc_id=14396op=click
___
JBoss-Development mailing list
JBoss-Development@lists.sourceforge.net
https://lists.sourceforge.net/lists/listinfo/jboss-development


[JBoss-dev] [JBoss JIRA] Created: (JBXB-5) Evolve the schema driven binding to that needed by the pojoserver

2005-03-18 Thread Scott M Stark (JIRA)
Evolve the schema driven binding to that needed by the pojoserver
-

 Key: JBXB-5
 URL: http://jira.jboss.com/jira/browse/JBXB-5
 Project: JBoss XML Binding (JBossXB)
Type: Feature Request
Reporter: Scott M Stark
 Assigned to: Alexey Loubyansky 


Ok, so what I would to see is that Adrian, myself and others provide as 
freakishly complex as needed xml documents and the associated object model as 
content that goes into the xml binding testsuite. We need to evolve the 
associated schema and if necessary, external binding metadata to the point that 
the xml to java binding is being completely driven by configuration outside of 
the micro-container.

In terms of being completely ignorant of the java object model/schema 
interaction, yes its true that the previous jaxb like frameworks were so 
completely tied to single dtd/schemas there were not usable for the object 
models we need to deal with. I'm open to having to tweak our object model 
somewhat if needed to be completely schema driven. The key thing is that I'm 
not willing to be restricted to a jaxb compatibile approach if it requires an 
object model we are not willing to live with. Additional binding metadata 
through schema annotations or an external jbossxb is fine to move beyond the 
jaxb compatible model.


-- 
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



---
SF email is sponsored by - The IT Product Guide
Read honest  candid reviews on hundreds of IT Products from real users.
Discover which products truly live up to the hype. Start reading now.
http://ads.osdn.com/?ad_id=6595alloc_id=14396op=click
___
JBoss-Development mailing list
JBoss-Development@lists.sourceforge.net
https://lists.sourceforge.net/lists/listinfo/jboss-development


[JBoss-dev] [JBoss JIRA] Updated: (JBXB-5) Evolve the schema driven binding to that needed by the pojoserver

2005-03-18 Thread Scott M Stark (JIRA)
 [ http://jira.jboss.com/jira/browse/JBXB-5?page=history ]

Scott M Stark updated JBXB-5:
-

Description: 
Ok, so what I would like to see is that Adrian, myself and others provide as 
freakishly complex as needed xml documents and the associated object model as 
content that goes into the xml binding testsuite. We need to evolve the 
associated schema and if necessary, external binding metadata to the point that 
the xml to java binding is being completely driven by configuration outside of 
the micro-container.

In terms of being completely ignorant of the java object model/schema 
interaction, yes its true that the previous jaxb like frameworks were so 
completely tied to single dtd/schemas there were not usable for the object 
models we need to deal with. I'm open to having to tweak our object model 
somewhat if needed to be completely schema driven. The key thing is that I'm 
not willing to be restricted to a jaxb compatibile approach if it requires an 
object model we are not willing to live with. Additional binding metadata 
through schema annotations or an external jbossxb is fine to move beyond the 
jaxb compatible model.


  was:
Ok, so what I would to see is that Adrian, myself and others provide as 
freakishly complex as needed xml documents and the associated object model as 
content that goes into the xml binding testsuite. We need to evolve the 
associated schema and if necessary, external binding metadata to the point that 
the xml to java binding is being completely driven by configuration outside of 
the micro-container.

In terms of being completely ignorant of the java object model/schema 
interaction, yes its true that the previous jaxb like frameworks were so 
completely tied to single dtd/schemas there were not usable for the object 
models we need to deal with. I'm open to having to tweak our object model 
somewhat if needed to be completely schema driven. The key thing is that I'm 
not willing to be restricted to a jaxb compatibile approach if it requires an 
object model we are not willing to live with. Additional binding metadata 
through schema annotations or an external jbossxb is fine to move beyond the 
jaxb compatible model.



 Evolve the schema driven binding to that needed by the pojoserver
 -

  Key: JBXB-5
  URL: http://jira.jboss.com/jira/browse/JBXB-5
  Project: JBoss XML Binding (JBossXB)
 Type: Feature Request
 Reporter: Scott M Stark
 Assignee: Alexey Loubyansky



 Ok, so what I would like to see is that Adrian, myself and others provide as 
 freakishly complex as needed xml documents and the associated object model as 
 content that goes into the xml binding testsuite. We need to evolve the 
 associated schema and if necessary, external binding metadata to the point 
 that the xml to java binding is being completely driven by configuration 
 outside of the micro-container.
 In terms of being completely ignorant of the java object model/schema 
 interaction, yes its true that the previous jaxb like frameworks were so 
 completely tied to single dtd/schemas there were not usable for the object 
 models we need to deal with. I'm open to having to tweak our object model 
 somewhat if needed to be completely schema driven. The key thing is that I'm 
 not willing to be restricted to a jaxb compatibile approach if it requires an 
 object model we are not willing to live with. Additional binding metadata 
 through schema annotations or an external jbossxb is fine to move beyond the 
 jaxb compatible model.

-- 
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



---
SF email is sponsored by - The IT Product Guide
Read honest  candid reviews on hundreds of IT Products from real users.
Discover which products truly live up to the hype. Start reading now.
http://ads.osdn.com/?ad_id=6595alloc_id=14396op=click
___
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: Kernel XML format

2005-03-18 Thread [EMAIL PROTECTED]
Ok, so what I would like to see is that Adrian, myself and others provide as 
freakishly complex as needed xml documents and the associated object model as 
content that goes into the xml binding testsuite. We need to evolve the 
associated schema and if necessary, external binding metadata to the point that 
the xml to java binding is being completely driven by configuration outside of 
the micro-container.

In terms of being completely ignorant of the java object model/schema 
interaction, yes its true that the previous jaxb like frameworks were so 
completely tied to single dtd/schemas there were not usable for the object 
models we need to deal with. I'm open to having to tweak our object model 
somewhat if needed to be completely schema driven. The key thing is that I'm 
not willing to be restricted to a jaxb compatibile approach if it requires an 
object model we are not willing to live with. Additional binding metadata 
through schema annotations or an external jbossxb is fine to move beyond the 
jaxb compatible model. 

The following issue can aggregate the tasks needed to do this:
http://jira.jboss.com/jira/browse/JBXB-5

I'm working on an xsd schema for the current pojo server xml deployer object 
model as a starting point. I'll update the JBXB-5 environment with the 
testsuite resource location for the location of this when done, and any 
associated external schemas and document instances should be placed there as 
well.


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

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


---
SF email is sponsored by - The IT Product Guide
Read honest  candid reviews on hundreds of IT Products from real users.
Discover which products truly live up to the hype. Start reading now.
http://ads.osdn.com/?ad_id=6595alloc_id=14396op=click
___
JBoss-Development mailing list
JBoss-Development@lists.sourceforge.net
https://lists.sourceforge.net/lists/listinfo/jboss-development


[JBoss-dev] [JBoss JIRA] Created: (JBXB-6) Create xsd for current pojo server xml deployer

2005-03-18 Thread Scott M Stark (JIRA)
Create xsd for current pojo server xml deployer
---

 Key: JBXB-6
 URL: http://jira.jboss.com/jira/browse/JBXB-6
 Project: JBoss XML Binding (JBossXB)
Type: Sub-task
Reporter: Scott M Stark
 Assigned to: Scott M Stark 


Need to create an xsd for current pojo server xml deployer as a starting point 
for the jbossxb binding testcases.

-- 
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



---
SF email is sponsored by - The IT Product Guide
Read honest  candid reviews on hundreds of IT Products from real users.
Discover which products truly live up to the hype. Start reading now.
http://ads.osdn.com/?ad_id=6595alloc_id=14396op=click
___
JBoss-Development mailing list
JBoss-Development@lists.sourceforge.net
https://lists.sourceforge.net/lists/listinfo/jboss-development


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

2005-03-18 Thread qa

View results here -> http://cruisecontrol.jboss.com/cc/buildresults/jboss-head?log=log20050318111008Lbuild.894
BUILD COMPLETE-build.894Date of build:03/18/2005 11:10:08Time to build:45 minutes 38 secondsLast changed:03/18/2005 10:13:57Last log entry:Added serialVersionUID




   Unit Tests: (0)   Total Errors and Failures: (0)
Modifications since last build:(7)1.13modifiedanddsystem/src/main/org/jboss/system/ServiceContext.javaAdded serialVersionUID1.4modifiedanddsystem/src/main/org/jboss/deployment/DeploymentState.javaAdded serialVersionUID1.3modifiedanddsystem/src/main/org/jboss/deployment/SerializableDeploymentInfo.javaAdded serialVersionUID1.3modifiedanddsystem/src/main/org/jboss/deployment/DeploymentState.javaAdded serialVersionUID1.76modifiedloubyanskyconnector/build.xmlcreate jboss-ha-local-jdbc.jar and *.rar for  (JBAS-1391) Add support for datasource failover1.29modifiedloubyanskyconnector/src/resources/stylesheets/ConnectionFactoryTemplate.xsladded transformation of ha-local-tx-datasource for  (JBAS-1391) Add support for datasource failover1.1addedloubyanskyconnector/src/main/org/jboss/resource/adapter/jdbc/local/HALocalManagedConnectionFactory.javafirst simple implementation of (JBAS-1391) Add support for datasource failover



[JBoss-dev] [JBoss JIRA] Deleted: (JBADMCON-97) Implement and test Model

2005-03-18 Thread Charles Crouch (JIRA)
 [ http://jira.jboss.com/jira/browse/JBADMCON-97?page=history ]
 
Charles Crouch deleted JBADMCON-97:
---


 Implement and test Model
 --

  Key: JBADMCON-97
  URL: http://jira.jboss.com/jira/browse/JBADMCON-97
  Project: JBoss Admin Console
 Type: Sub-task
 Reporter: Charles Crouch





-- 
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



---
SF email is sponsored by - The IT Product Guide
Read honest  candid reviews on hundreds of IT Products from real users.
Discover which products truly live up to the hype. Start reading now.
http://ads.osdn.com/?ad_id=6595alloc_id=14396op=click
___
JBoss-Development mailing list
JBoss-Development@lists.sourceforge.net
https://lists.sourceforge.net/lists/listinfo/jboss-development


[JBoss-dev] [JBoss JIRA] Deleted: (JBADMCON-99) Implement and test Controller

2005-03-18 Thread Charles Crouch (JIRA)
 [ http://jira.jboss.com/jira/browse/JBADMCON-99?page=history ]
 
Charles Crouch deleted JBADMCON-99:
---


 Implement and test Controller
 ---

  Key: JBADMCON-99
  URL: http://jira.jboss.com/jira/browse/JBADMCON-99
  Project: JBoss Admin Console
 Type: Sub-task
 Reporter: Charles Crouch





-- 
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



---
SF email is sponsored by - The IT Product Guide
Read honest  candid reviews on hundreds of IT Products from real users.
Discover which products truly live up to the hype. Start reading now.
http://ads.osdn.com/?ad_id=6595alloc_id=14396op=click
___
JBoss-Development mailing list
JBoss-Development@lists.sourceforge.net
https://lists.sourceforge.net/lists/listinfo/jboss-development


[JBoss-dev] [JBossCache] - Re: Some JBOSSCache questions...

2005-03-18 Thread abitha
Thank you. I would like to know about some production level deployments. 

How many nodes,  (with small objects associated) is typically recommended in a 
tree cache? Maybe a range would give me a better idea. 

Are there any best practices for using TreeCache? 



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

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


---
SF email is sponsored by - The IT Product Guide
Read honest  candid reviews on hundreds of IT Products from real users.
Discover which products truly live up to the hype. Start reading now.
http://ads.osdn.com/?ad_id=6595alloc_id=14396op=click
___
JBoss-Development mailing list
JBoss-Development@lists.sourceforge.net
https://lists.sourceforge.net/lists/listinfo/jboss-development


[JBoss-dev] [JBoss JIRA] Deleted: (JBADMCON-102) Implement and test View

2005-03-18 Thread Charles Crouch (JIRA)
 [ http://jira.jboss.com/jira/browse/JBADMCON-102?page=history ]
 
Charles Crouch deleted JBADMCON-102:



 Implement and test View
 -

  Key: JBADMCON-102
  URL: http://jira.jboss.com/jira/browse/JBADMCON-102
  Project: JBoss Admin Console
 Type: Sub-task
 Reporter: Charles Crouch





-- 
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



---
SF email is sponsored by - The IT Product Guide
Read honest  candid reviews on hundreds of IT Products from real users.
Discover which products truly live up to the hype. Start reading now.
http://ads.osdn.com/?ad_id=6595alloc_id=14396op=click
___
JBoss-Development mailing list
JBoss-Development@lists.sourceforge.net
https://lists.sourceforge.net/lists/listinfo/jboss-development


[JBoss-dev] [JBoss JIRA] Deleted: (JBADMCON-101) Implement and test Model

2005-03-18 Thread Charles Crouch (JIRA)
 [ http://jira.jboss.com/jira/browse/JBADMCON-101?page=history ]
 
Charles Crouch deleted JBADMCON-101:



 Implement and test Model
 --

  Key: JBADMCON-101
  URL: http://jira.jboss.com/jira/browse/JBADMCON-101
  Project: JBoss Admin Console
 Type: Sub-task
 Reporter: Charles Crouch





-- 
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



---
SF email is sponsored by - The IT Product Guide
Read honest  candid reviews on hundreds of IT Products from real users.
Discover which products truly live up to the hype. Start reading now.
http://ads.osdn.com/?ad_id=6595alloc_id=14396op=click
___
JBoss-Development mailing list
JBoss-Development@lists.sourceforge.net
https://lists.sourceforge.net/lists/listinfo/jboss-development


[JBoss-dev] [JBoss JIRA] Deleted: (JBADMCON-103) Implement and test Controller

2005-03-18 Thread Charles Crouch (JIRA)
 [ http://jira.jboss.com/jira/browse/JBADMCON-103?page=history ]
 
Charles Crouch deleted JBADMCON-103:



 Implement and test Controller
 ---

  Key: JBADMCON-103
  URL: http://jira.jboss.com/jira/browse/JBADMCON-103
  Project: JBoss Admin Console
 Type: Sub-task
 Reporter: Charles Crouch





-- 
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



---
SF email is sponsored by - The IT Product Guide
Read honest  candid reviews on hundreds of IT Products from real users.
Discover which products truly live up to the hype. Start reading now.
http://ads.osdn.com/?ad_id=6595alloc_id=14396op=click
___
JBoss-Development mailing list
JBoss-Development@lists.sourceforge.net
https://lists.sourceforge.net/lists/listinfo/jboss-development


[JBoss-dev] [JBoss JIRA] Created: (JBXB-7) Create a deployment instance doc illustrating the polymorphism requriements

2005-03-18 Thread Scott M Stark (JIRA)
Create a deployment instance doc illustrating the polymorphism requriements
---

 Key: JBXB-7
 URL: http://jira.jboss.com/jira/browse/JBXB-7
 Project: JBoss XML Binding (JBossXB)
Type: Sub-task
Reporter: Scott M Stark
 Assigned to: Adrian Brock 




-- 
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



---
SF email is sponsored by - The IT Product Guide
Read honest  candid reviews on hundreds of IT Products from real users.
Discover which products truly live up to the hype. Start reading now.
http://ads.osdn.com/?ad_id=6595alloc_id=14396op=click
___
JBoss-Development mailing list
JBoss-Development@lists.sourceforge.net
https://lists.sourceforge.net/lists/listinfo/jboss-development


[JBoss-dev] [JBoss JIRA] Updated: (JBXB-5) Evolve the schema driven binding to that needed by the pojoserver

2005-03-18 Thread Scott M Stark (JIRA)
 [ http://jira.jboss.com/jira/browse/JBXB-5?page=history ]

Scott M Stark updated JBXB-5:
-

Environment: Usecase Resources: 
jboss-head/testsuite/src/resources/xml/pojoserver  (was: )

 Evolve the schema driven binding to that needed by the pojoserver
 -

  Key: JBXB-5
  URL: http://jira.jboss.com/jira/browse/JBXB-5
  Project: JBoss XML Binding (JBossXB)
 Type: Feature Request
  Environment: Usecase Resources: 
 jboss-head/testsuite/src/resources/xml/pojoserver
 Reporter: Scott M Stark
 Assignee: Alexey Loubyansky



 Ok, so what I would like to see is that Adrian, myself and others provide as 
 freakishly complex as needed xml documents and the associated object model as 
 content that goes into the xml binding testsuite. We need to evolve the 
 associated schema and if necessary, external binding metadata to the point 
 that the xml to java binding is being completely driven by configuration 
 outside of the micro-container.
 In terms of being completely ignorant of the java object model/schema 
 interaction, yes its true that the previous jaxb like frameworks were so 
 completely tied to single dtd/schemas there were not usable for the object 
 models we need to deal with. I'm open to having to tweak our object model 
 somewhat if needed to be completely schema driven. The key thing is that I'm 
 not willing to be restricted to a jaxb compatibile approach if it requires an 
 object model we are not willing to live with. Additional binding metadata 
 through schema annotations or an external jbossxb is fine to move beyond the 
 jaxb compatible model.

-- 
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



---
SF email is sponsored by - The IT Product Guide
Read honest  candid reviews on hundreds of IT Products from real users.
Discover which products truly live up to the hype. Start reading now.
http://ads.osdn.com/?ad_id=6595alloc_id=14396op=click
___
JBoss-Development mailing list
JBoss-Development@lists.sourceforge.net
https://lists.sourceforge.net/lists/listinfo/jboss-development


[JBoss-dev] [JBoss JIRA] Updated: (JBXB-7) Create a deployment instance doc illustrating the polymorphism requirements

2005-03-18 Thread Scott M Stark (JIRA)
 [ http://jira.jboss.com/jira/browse/JBXB-7?page=history ]

Scott M Stark updated JBXB-7:
-

Summary: Create a deployment instance doc illustrating the polymorphism 
requirements  (was: Create a deployment instance doc illustrating the 
polymorphism requriements)
Description: Please create an xml deployer instance example which shows 
your polymorphism requirements.
Environment: 

 Create a deployment instance doc illustrating the polymorphism requirements
 ---

  Key: JBXB-7
  URL: http://jira.jboss.com/jira/browse/JBXB-7
  Project: JBoss XML Binding (JBossXB)
 Type: Sub-task
 Reporter: Scott M Stark
 Assignee: Adrian Brock



 Please create an xml deployer instance example which shows your polymorphism 
 requirements.

-- 
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



---
SF email is sponsored by - The IT Product Guide
Read honest  candid reviews on hundreds of IT Products from real users.
Discover which products truly live up to the hype. Start reading now.
http://ads.osdn.com/?ad_id=6595alloc_id=14396op=click
___
JBoss-Development mailing list
JBoss-Development@lists.sourceforge.net
https://lists.sourceforge.net/lists/listinfo/jboss-development


[JBoss-dev] [JBoss JIRA] Created: (JBXB-8) Create a deployment instance doc illustrating the extension point requirements

2005-03-18 Thread Scott M Stark (JIRA)
Create a deployment instance doc illustrating the extension point requirements
--

 Key: JBXB-8
 URL: http://jira.jboss.com/jira/browse/JBXB-8
 Project: JBoss XML Binding (JBossXB)
Type: Sub-task
Reporter: Scott M Stark
 Assigned to: Scott M Stark 


Need an xml deployer document instance example that illustrates the requirement 
for parsing an xml fragment from foreign namespaces at the xml-deployer_1_0.xsd 
xsd:any wildcard extension points. This should show incorpration into an object 
model that as the following type constraints:

1. None, setObject(Object x)
2. Interface, setInterface(IObject x)
3. Abstract type, setAbstract(AbstractOject x)
4. Concrete type, setConcrete(MyObject x)



-- 
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



---
SF email is sponsored by - The IT Product Guide
Read honest  candid reviews on hundreds of IT Products from real users.
Discover which products truly live up to the hype. Start reading now.
http://ads.osdn.com/?ad_id=6595alloc_id=14396op=click
___
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: Kernel XML format

2005-03-18 Thread [EMAIL PROTECTED]
anonymous wrote : 
  | I'll have to think about that one. It requires interaction with the 
classloader
  | which I definitly don't want to do in the xml parsing (the classloader may 
not
  | even exist at that point).
  | 

A early binding of the FQN to a classloader, while nice and would be really 
cool, was not what I was thinking primarily. Even with late binding it would 
save the developer's fingers.

Rather than having to repeat java.lang.String all over the place (actually this 
is a bad example, since it's always part of the JDK java.lang package I should 
never have to specify the package name by default, only if I decide to want to 
use acme.String from some other package), I'd like to just save myself from 
typing the same FQN in many locations. 

If I mess up the import (or alias or whatever you call it) and it fails at 
bind time, then I have one location to correct my mistake, instead of 10.

If some or even all things can be bound at parse time, then that's even better. 
Some packages, such as java.* and some javax.* packages should be imported by 
default, and allow overwrite with a FQN where necessary (really the same if in 
java you import with * wildcard and then override type def with FQN).


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

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


---
SF email is sponsored by - The IT Product Guide
Read honest  candid reviews on hundreds of IT Products from real users.
Discover which products truly live up to the hype. Start reading now.
http://ads.osdn.com/?ad_id=6595alloc_id=14396op=click
___
JBoss-Development mailing list
JBoss-Development@lists.sourceforge.net
https://lists.sourceforge.net/lists/listinfo/jboss-development


[JBoss-dev] [JBoss JIRA] Created: (JBWEB-16) scratchdir fails for multi-user installs

2005-03-18 Thread Norman Richards (JIRA)
scratchdir fails for multi-user installs


 Key: JBWEB-16
 URL: http://jira.jboss.com/jira/browse/JBWEB-16
 Project: JBoss Web
Type: Bug
  Components: Tomcat  
Versions:  JBossWeb-4.0.1
Reporter: Norman Richards
 Assigned to: Remy Maucherat 


The setup was the basic multi-user scenario described in the dev environment 
admin training slides (module 8).   Each user has his own data/tmp/deploy 
directory, but the conf directory is shared between all users and not writable.

This produces a a FATAL log message:

11:37:06,717 FATAL [EmbeddedServletOptions] The scratchDir you specified:
/private/tmp/jboss-4.0.2/server/test/work/jboss.web/localhost/jmx-console is 
unusable.

This also causes exceptions when the server shuts down.

The jboss.web directory should probably go under the data or tmp directory so 
that it can exist on a per-user basis.  Another option is to allow variable 
substitution in the server.xml file so that the scratchdir can be set based on 
the $[user.name} property. 

See the admin module 8, slides 5-16 for the complete configuration if my 
description isn't clear.

-- 
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



---
SF email is sponsored by - The IT Product Guide
Read honest  candid reviews on hundreds of IT Products from real users.
Discover which products truly live up to the hype. Start reading now.
http://ads.osdn.com/?ad_id=6595alloc_id=14396op=click
___
JBoss-Development mailing list
JBoss-Development@lists.sourceforge.net
https://lists.sourceforge.net/lists/listinfo/jboss-development


[JBoss-dev] [Design of Messaging on JBoss (Messaging/JBoss)] - Re: Testcase :failure

2005-03-18 Thread [EMAIL PROTECTED]
a. The current JMS Facade in CVS is just an incomplete prototype. DO NOT try to 
run any test on it, or you will just waste your time.

b. I plan to check in the new JMS Facade some time this weekend.  When I do it, 
I will make an announcement on this forum. 

c. Do not use org.jboss.messaging.util.StandaloneInitialContextFactory for your 
java.naming.factory.initial. The new facade will require a fully functional 
JNDI server (the JBoss' JNP). I will write a document explaining how to use it 
as soon as the code is in CVS.



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

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


---
SF email is sponsored by - The IT Product Guide
Read honest  candid reviews on hundreds of IT Products from real users.
Discover which products truly live up to the hype. Start reading now.
http://ads.osdn.com/?ad_id=6595alloc_id=14396op=click
___
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: Kernel XML format

2005-03-18 Thread [EMAIL PROTECTED]
anonymous wrote : 
  | Only thing is that the metadata becomes invalidatable...
  | 

Correct.

Now my next suggestion is to allow ANY content from all the way down from the 
root element...


  | deployment
  |bean name=SimpleBean1
  |  bean=org.jboss.test.kernel.xml.support.SimpleBeanImpl
  |   property name=otherdependency value=SimpleBean2//property
  |/bean
  |bean name=SimpleBean2
  |  bean=org.jboss.test.kernel.xml.support.SimpleBeanImpl
  |   constructor
  |  parameter type=java.lang.StringBean2/parameter
  |   /constructor
  |/bean
  | /deployment
  | 

Becomes...


  | deployment
  |Import name = 
org.jboss.test.kernel.xml.support.SimpleBeanImplSimpleBean/Import
  | 
  |SimpleBean
  |   Other ref = bean2/
  |/SimpleBean
  | 
  |SimpleBean name=bean2
  |   Constructor type = StringBean2/Constructor
  |/SimpleBean
  | 
  | /deployment
  | 

Wow.. that's almost readable... now if we could only get rid of those angled 
brackets

So what's wrong with writing a custom parser/validator?  :-)



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

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


---
SF email is sponsored by - The IT Product Guide
Read honest  candid reviews on hundreds of IT Products from real users.
Discover which products truly live up to the hype. Start reading now.
http://ads.osdn.com/?ad_id=6595alloc_id=14396op=click
___
JBoss-Development mailing list
JBoss-Development@lists.sourceforge.net
https://lists.sourceforge.net/lists/listinfo/jboss-development


[JBoss-dev] [Design of Messaging on JBoss (Messaging/JBoss)] - Re: Can we start writing jms test clients to check complianc

2005-03-18 Thread [EMAIL PROTECTED]
Try to build your compliance tests starting from what Adrian suggested 
http://cvs.sourceforge.net/viewcvs.py/jboss/jbosstest/src/main/org/objectweb/jtests/
and 
http://cvs.sourceforge.net/viewcvs.py/jboss/jbosstest/src/main/org/jboss/test/jbossmq/

No need to get into JBoss-specific API testing just yet. We'll do that later. 
If you could come up with a comprehensive JMS 1.1 test suite, that would be 
great.



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

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


---
SF email is sponsored by - The IT Product Guide
Read honest  candid reviews on hundreds of IT Products from real users.
Discover which products truly live up to the hype. Start reading now.
http://ads.osdn.com/?ad_id=6595alloc_id=14396op=click
___
JBoss-Development mailing list
JBoss-Development@lists.sourceforge.net
https://lists.sourceforge.net/lists/listinfo/jboss-development


[JBoss-dev] [Design of Mail Services] - Re: M4 planning

2005-03-18 Thread [EMAIL PROTECTED]
Rather than using annotations directly to mark the transactions, an option to 
avoid 1.4 and 5.0 annotation style issues would be to apply the tx attributes 
via metadata.

http://docs.jboss.org/aop/1.1/aspect-library/reference/transaction_demarcation.html

Or you could look at using annotation introductions
http://docs.jboss.org/aop/1.1/aspect-framework/examples/annotation-introductions/annotation.html

The main AOP docs page is here 
http://docs.jboss.org/aop/

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

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


---
SF email is sponsored by - The IT Product Guide
Read honest  candid reviews on hundreds of IT Products from real users.
Discover which products truly live up to the hype. Start reading now.
http://ads.osdn.com/?ad_id=6595alloc_id=14396op=click
___
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: configuring the benchmarking tool

2005-03-18 Thread [EMAIL PROTECTED]
It doesn't looks like a benchmark specific problem.


Although Specj2002 is discontinued now. You should try Specj2004.


Clebert

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

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


---
SF email is sponsored by - The IT Product Guide
Read honest  candid reviews on hundreds of IT Products from real users.
Discover which products truly live up to the hype. Start reading now.
http://ads.osdn.com/?ad_id=6595alloc_id=14396op=click
___
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: Kernel XML format

2005-03-18 Thread [EMAIL PROTECTED]
Is there anything yet for describing metadata (no property configuration).  The 
way we do it in JBoss AOP right now is two different ways.  One untyped, the 
other typed (annotated) metadata

http://docs.jboss.org/aop/1.1/aspect-framework/reference/en/html/xml.html#xml-metadata

http://docs.jboss.org/aop/1.1/aspect-framework/reference/en/html/xml.html#xml-annotation-introduction

Thoughts?

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

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


---
SF email is sponsored by - The IT Product Guide
Read honest  candid reviews on hundreds of IT Products from real users.
Discover which products truly live up to the hype. Start reading now.
http://ads.osdn.com/?ad_id=6595alloc_id=14396op=click
___
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: Kernel XML format

2005-03-18 Thread [EMAIL PROTECTED]
That is what I am going to try prototyping in the jbossxb testcases. I think it 
will have to be under a different namespace in order for jbossxb to know what 
to do with it:


  | deployment
  |Import name = 
org.jboss.test.kernel.xml.support.SimpleBeanImplSimpleBean/Import
  | 
  |x:SimpleBean
  |   Other ref = bean2/
  |/x:SimpleBean
  | 
  |x:SimpleBean name=bean2
  |   Constructor type = StringBean2/Constructor
  |/x:SimpleBean
  | 
  | /deployment
  | 

but this can actually make the document clearer.


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

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


---
SF email is sponsored by - The IT Product Guide
Read honest  candid reviews on hundreds of IT Products from real users.
Discover which products truly live up to the hype. Start reading now.
http://ads.osdn.com/?ad_id=6595alloc_id=14396op=click
___
JBoss-Development mailing list
JBoss-Development@lists.sourceforge.net
https://lists.sourceforge.net/lists/listinfo/jboss-development


[JBoss-dev] [JBoss JIRA] Created: (JBAOP-100) Check if we work on JRockit

2005-03-18 Thread Kabir Khan (JIRA)
Check if we work on JRockit
---

 Key: JBAOP-100
 URL: http://jira.jboss.com/jira/browse/JBAOP-100
 Project: JBoss AOP
Type: Task
Versions: 1.1.1
Reporter: Kabir Khan
 Assigned to: Kabir Khan 




-- 
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



---
SF email is sponsored by - The IT Product Guide
Read honest  candid reviews on hundreds of IT Products from real users.
Discover which products truly live up to the hype. Start reading now.
http://ads.osdn.com/?ad_id=6595alloc_id=14396op=click
___
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: Kernel XML format

2005-03-18 Thread [EMAIL PROTECTED]
Shit, ...catching up...I guess all the jaxb stuff is for providing any metadata 
format you want...

I've said this before, but I think its important to try to be consistent on how 
XML/MetaObjects/Annotations all relate to one another.  I've tried successfully 
to keep annotations and the metaobjects to be the same.  (XML creates concrete 
implementations of the annotation).

I also think this model is viable because it gives the user an easy to remember 
mapping from XML to annotation and back so that they can easily mix and match 
this stuff.

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

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


---
SF email is sponsored by - The IT Product Guide
Read honest  candid reviews on hundreds of IT Products from real users.
Discover which products truly live up to the hype. Start reading now.
http://ads.osdn.com/?ad_id=6595alloc_id=14396op=click
___
JBoss-Development mailing list
JBoss-Development@lists.sourceforge.net
https://lists.sourceforge.net/lists/listinfo/jboss-development


[JBoss-dev] [Design of JBoss Portal] - Re: help with setup

2005-03-18 Thread mzak
also the app server is jboss-4.0.1sp1

Something that i also didn't mention previously is that when i try to run the 
build.bat file i get this:


D:\tutorials\portal\buildbuild.bat
  | Executing D:\tutorials\portal\build\..\tools\bin\ant.bat  -logger 
org.apache.tools.ant.NoB
  | annerLogger
  | Exception in thread main java.lang.NoClassDefFoundError: 
Files\Java\jdk1/5/0_02\lib\tool
  | 
s/jar;D:\tutorials\portal\build\//\tools\lib\xml-apis/jar;D:\tutorials\portal\build\//\too
  | 
ls\lib\xercesImpl/jar;D:\tutorials\portal\build\//\tools\lib\xalan/jar;D:\tutorials\portal
  | 
\build\//\tools\lib\saxon/jar;D:\tutorials\portal\build\//\tools\lib\optional/jar;D:\tutor
  | 
ials\portal\build\//\tools\lib\junit/jar;D:\tutorials\portal\build\//\tools\lib\explode/ja
  | 
r;D:\tutorials\portal\build\//\tools\lib\crimson/jar;D:\tutorials\portal\build\//\tools\li
  | 
b\buildmagic-tasks/jar;D:\tutorials\portal\build\//\tools\lib\bsf/jar;D:\tutorials\portal\
  | build\//\tools\lib\ant/jar;
  | 

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

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


---
SF email is sponsored by - The IT Product Guide
Read honest  candid reviews on hundreds of IT Products from real users.
Discover which products truly live up to the hype. Start reading now.
http://ads.osdn.com/?ad_id=6595alloc_id=14396op=click
___
JBoss-Development mailing list
JBoss-Development@lists.sourceforge.net
https://lists.sourceforge.net/lists/listinfo/jboss-development


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

2005-03-18 Thread qa

View results here -> http://cruisecontrol.jboss.com/cc/buildresults/jboss-4.0?log=log20050318134359Lbuild.444
BUILD COMPLETE-build.444Date of build:03/18/2005 13:43:59Time to build:39 minutes 2 secondsLast changed:03/18/2005 13:22:22Last log entry:Minor check while closing connection




   Unit Tests: (0)   Total Errors and Failures: (0)
Modifications since last build:(5)1.1.4.4modifiedosdchicagovaria/src/main/org/jboss/jaxr/juddi/JUDDIService.javaMinor check while closing connection1.3.2.9modifiedbwang00tomcat/src/main/org/jboss/web/tomcat/tc5/session/JBossCacheManager.javaRefactored processSessionRepl and processExires with tx context1.12.6.1modifiedanddsystem/src/main/org/jboss/system/ServiceContext.javaAdded serialVersionUID1.2.16.2modifiedanddsystem/src/main/org/jboss/deployment/DeploymentState.javaAdded serialVersionUID1.2.6.1modifiedanddsystem/src/main/org/jboss/deployment/SerializableDeploymentInfo.javaAdded serialVersionUID



[JBoss-dev] [JBossCache] - Re: TimeoutExceptions from TreeCache.callRemoteMethods()

2005-03-18 Thread monocongo
Back to the original topic -- I have changed the TreeCacheAop's IsolationLevel 
attribute value from REPEATABLE_READ to READ_COMMITTED, and so far the 
TimeoutExceptions have not reappeared.  Hopefully this simple fix will be a 
permanent solution to the deadlock problem I was experiencing.

--James

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

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


---
SF email is sponsored by - The IT Product Guide
Read honest  candid reviews on hundreds of IT Products from real users.
Discover which products truly live up to the hype. Start reading now.
http://ads.osdn.com/?ad_id=6595alloc_id=14396op=click
___
JBoss-Development mailing list
JBoss-Development@lists.sourceforge.net
https://lists.sourceforge.net/lists/listinfo/jboss-development


[JBoss-dev] [JBoss JIRA] Commented: (JBAS-1579) Need to cleanup the serialVersionUIDs for Serializable/Externalizable classes

2005-03-18 Thread Dimitris Andreadis (JIRA)
 [ 
http://jira.jboss.com/jira/browse/JBAS-1579?page=comments#action_12316258 ]
 
Dimitris Andreadis commented on JBAS-1579:
--

I've fixed a couple of classes:

org.jboss.deployment.DeploymentState
org.jboss.deployment.SerializedDeploymentInfo
org.jboss.system.ServiceContext
org.jboss.jmx.adaptor.snmp.agent.ManagerRecord
org.jboss.management.j2ee.statistics.*
org.jboss.services.deployment.metadata.*

The following shouldn't probably be serializable:

org.jboss.management.j2ee.J2EEManagedObject
org.jboss.metadata.EjbPortComponentMetadata
org.jboss.metadata.IorSecurityConfigMetadata

I presume the castor stuff is gone, too.

 Need to cleanup the serialVersionUIDs for Serializable/Externalizable classes
 -

  Key: JBAS-1579
  URL: http://jira.jboss.com/jira/browse/JBAS-1579
  Project: JBoss Application Server
 Type: Bug
 Versions:  JBossAS-4.0.2RC1,  JBossAS-4.0.1 SP1
 Reporter: Scott M Stark
 Priority: Blocker
  Fix For: JBossAS-4.0.2 Final
  Attachments: SerializableHasSerialVersionUIDField.zip


 I'm seeing incomptibilities between versions that are simply due to the fact 
 that Serializable/Externalizable classes are letting their serialVersionUIDs 
 float instead of explicitly defining them. We need to get this cleaned up. 
 There should not be a single Serializable/Externalizable class that does not 
 fix its serialVersionUID and then take responsibility for maintaining 
 compatibility with the indicated version.
 The attached SerializableHasSerialVersionUIDField.zip unzips to create a 
 SerializableHasSerialVersionUIDField-index.html and 
 SerializableHasSerialVersionUIDField directory which is a report of all 
 classes in the 4.0 codebase that are not defining a serialVersionUID as they 
 should. 
 The JDK object serialization spec defines all you need to know about the apis 
 and contracts for object serialization:
 http://java.sun.com/j2se/1.4.2/docs/guide/serialization/spec/serialTOC.html
 In particular, Versioning of Serializable Objects:
 http://java.sun.com/j2se/1.4.2/docs/guide/serialization/spec/version.html#wp9419
 talks about binary compatibility and what is available to manage 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



---
SF email is sponsored by - The IT Product Guide
Read honest  candid reviews on hundreds of IT Products from real users.
Discover which products truly live up to the hype. Start reading now.
http://ads.osdn.com/?ad_id=6595alloc_id=14396op=click
___
JBoss-Development mailing list
JBoss-Development@lists.sourceforge.net
https://lists.sourceforge.net/lists/listinfo/jboss-development


[JBoss-dev] [JBoss JIRA] Commented: (JBAS-1579) Need to cleanup the serialVersionUIDs for Serializable/Externalizable classes

2005-03-18 Thread Scott M Stark (JIRA)
 [ 
http://jira.jboss.com/jira/browse/JBAS-1579?page=comments#action_12316260 ]
 
Scott M Stark commented on JBAS-1579:
-

Agreed that the org.jboss.management.j2ee.J2EEManagedObject should not be 
Serializable. All of the org.jboss.metadata.* really should be JavaBean 
compatible and Serializable. What is your concern about the 
EjbPortComponentMetadata and IorSecurityConfigMetadata classes?

 Need to cleanup the serialVersionUIDs for Serializable/Externalizable classes
 -

  Key: JBAS-1579
  URL: http://jira.jboss.com/jira/browse/JBAS-1579
  Project: JBoss Application Server
 Type: Bug
 Versions:  JBossAS-4.0.2RC1,  JBossAS-4.0.1 SP1
 Reporter: Scott M Stark
 Priority: Blocker
  Fix For: JBossAS-4.0.2 Final
  Attachments: SerializableHasSerialVersionUIDField.zip


 I'm seeing incomptibilities between versions that are simply due to the fact 
 that Serializable/Externalizable classes are letting their serialVersionUIDs 
 float instead of explicitly defining them. We need to get this cleaned up. 
 There should not be a single Serializable/Externalizable class that does not 
 fix its serialVersionUID and then take responsibility for maintaining 
 compatibility with the indicated version.
 The attached SerializableHasSerialVersionUIDField.zip unzips to create a 
 SerializableHasSerialVersionUIDField-index.html and 
 SerializableHasSerialVersionUIDField directory which is a report of all 
 classes in the 4.0 codebase that are not defining a serialVersionUID as they 
 should. 
 The JDK object serialization spec defines all you need to know about the apis 
 and contracts for object serialization:
 http://java.sun.com/j2se/1.4.2/docs/guide/serialization/spec/serialTOC.html
 In particular, Versioning of Serializable Objects:
 http://java.sun.com/j2se/1.4.2/docs/guide/serialization/spec/version.html#wp9419
 talks about binary compatibility and what is available to manage 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



---
SF email is sponsored by - The IT Product Guide
Read honest  candid reviews on hundreds of IT Products from real users.
Discover which products truly live up to the hype. Start reading now.
http://ads.osdn.com/?ad_id=6595alloc_id=14396op=click
___
JBoss-Development mailing list
JBoss-Development@lists.sourceforge.net
https://lists.sourceforge.net/lists/listinfo/jboss-development


[JBoss-dev] [JBoss JIRA] Created: (JBAS-1598) Create a compatibility matrix which tracks JBoss client vs. server class versions

2005-03-18 Thread Ivelin Ivanov (JIRA)
Create a compatibility matrix which tracks JBoss client  vs. server class 
versions
--

 Key: JBAS-1598
 URL: http://jira.jboss.com/jira/browse/JBAS-1598
 Project: JBoss Application Server
Type: Sub-task
Reporter: Ivelin Ivanov


The matrix should list JBoss client jars, the version of their JBoss distro and 
the respective JBoss versions that the clients are compatible with. For example 
(not verified)

| JBoss AS Client Jars | Compatible with JBoss AS versions |
| -|---|
| 4.0.2| 4.0.2, 4.0.1  |
| 3.2.7| 3.2.6, 3.2.5  |


Ideally the matrix should be maintained and updated as part of the build 
process using the automated tests from JBAS-1584.

-- 
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



---
SF email is sponsored by - The IT Product Guide
Read honest  candid reviews on hundreds of IT Products from real users.
Discover which products truly live up to the hype. Start reading now.
http://ads.osdn.com/?ad_id=6595alloc_id=14396op=click
___
JBoss-Development mailing list
JBoss-Development@lists.sourceforge.net
https://lists.sourceforge.net/lists/listinfo/jboss-development


[JBoss-dev] [JBoss JIRA] Assigned: (JBAS-1579) Need to cleanup the serialVersionUIDs for Serializable/Externalizable classes

2005-03-18 Thread Ivelin Ivanov (JIRA)
 [ http://jira.jboss.com/jira/browse/JBAS-1579?page=history ]

Ivelin Ivanov reassigned JBAS-1579:
---

Assign To: Clebert Suconic

 Need to cleanup the serialVersionUIDs for Serializable/Externalizable classes
 -

  Key: JBAS-1579
  URL: http://jira.jboss.com/jira/browse/JBAS-1579
  Project: JBoss Application Server
 Type: Bug
 Versions:  JBossAS-4.0.2RC1,  JBossAS-4.0.1 SP1
 Reporter: Scott M Stark
 Assignee: Clebert Suconic
 Priority: Blocker
  Fix For: JBossAS-4.0.2 Final
  Attachments: SerializableHasSerialVersionUIDField.zip


 I'm seeing incomptibilities between versions that are simply due to the fact 
 that Serializable/Externalizable classes are letting their serialVersionUIDs 
 float instead of explicitly defining them. We need to get this cleaned up. 
 There should not be a single Serializable/Externalizable class that does not 
 fix its serialVersionUID and then take responsibility for maintaining 
 compatibility with the indicated version.
 The attached SerializableHasSerialVersionUIDField.zip unzips to create a 
 SerializableHasSerialVersionUIDField-index.html and 
 SerializableHasSerialVersionUIDField directory which is a report of all 
 classes in the 4.0 codebase that are not defining a serialVersionUID as they 
 should. 
 The JDK object serialization spec defines all you need to know about the apis 
 and contracts for object serialization:
 http://java.sun.com/j2se/1.4.2/docs/guide/serialization/spec/serialTOC.html
 In particular, Versioning of Serializable Objects:
 http://java.sun.com/j2se/1.4.2/docs/guide/serialization/spec/version.html#wp9419
 talks about binary compatibility and what is available to manage 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



---
SF email is sponsored by - The IT Product Guide
Read honest  candid reviews on hundreds of IT Products from real users.
Discover which products truly live up to the hype. Start reading now.
http://ads.osdn.com/?ad_id=6595alloc_id=14396op=click
___
JBoss-Development mailing list
JBoss-Development@lists.sourceforge.net
https://lists.sourceforge.net/lists/listinfo/jboss-development


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

2005-03-18 Thread qa

View results here -> http://cruisecontrol.jboss.com/cc/buildresults/jboss-head-jdk-matrix?log=log20050318151922Lbuild.94
BUILD COMPLETE-build.94Date of build:03/18/2005 15:19:22Time to build:40 minutes 7 secondsLast changed:03/18/2005 14:05:44Last log entry:Refactored processSessionRepl and processExire for tx context.




   Unit Tests: (0)   Total Errors and Failures: (0)
Modifications since last build:(98)1.14modifiedbwang00tomcat/src/main/org/jboss/web/tomcat/tc5/session/JBossCacheManager.javaRefactored processSessionRepl and processExire for tx context.1.5modifiedanddmanagement/src/main/org/jboss/management/j2ee/statistics/BoundaryStatisticImpl.javaAdded serialVersionUID1.5modifiedanddmanagement/src/main/org/jboss/management/j2ee/statistics/BoundedRangeStatisticImpl.javaAdded serialVersionUID1.5modifiedanddmanagement/src/main/org/jboss/management/j2ee/statistics/CountStatisticImpl.javaAdded serialVersionUID1.5modifiedanddmanagement/src/main/org/jboss/management/j2ee/statistics/EJBStatsImpl.javaAdded serialVersionUID1.5modifiedanddmanagement/src/main/org/jboss/management/j2ee/statistics/EntityBeanStatsImpl.javaAdded serialVersionUID1.6modifiedanddmanagement/src/main/org/jboss/management/j2ee/statistics/JCAConnectionPoolStatsImpl.javaAdded serialVersionUID1.6modifiedanddmanagement/src/main/org/jboss/management/j2ee/statistics/JCAConnectionStatsImpl.javaAdded serialVersionUID1.5modifiedanddmanagement/src/main/org/jboss/management/j2ee/statistics/JCAStatsImpl.javaAdded serialVersionUID1.5modifiedanddmanagement/src/main/org/jboss/management/j2ee/statistics/JMSConnectionStatsImpl.javaAdded serialVersionUID1.5modifiedanddmanagement/src/main/org/jboss/management/j2ee/statistics/JMSConsumerStatsImpl.javaAdded serialVersionUID1.5modifiedanddmanagement/src/main/org/jboss/management/j2ee/statistics/JMSEndpointStatsImpl.javaAdded serialVersionUID1.5modifiedanddmanagement/src/main/org/jboss/management/j2ee/statistics/JMSProducerStatsImpl.javaAdded serialVersionUID1.5modifiedanddmanagement/src/main/org/jboss/management/j2ee/statistics/JMSSessionStatsImpl.javaAdded serialVersionUID1.5modifiedanddmanagement/src/main/org/jboss/management/j2ee/statistics/JMSStatsImpl.javaAdded serialVersionUID1.6modifiedanddmanagement/src/main/org/jboss/management/j2ee/statistics/JTAStatsImpl.javaAdded serialVersionUID1.5modifiedanddmanagement/src/main/org/jboss/management/j2ee/statistics/JVMStatsImpl.javaAdded serialVersionUID1.5modifiedanddmanagement/src/main/org/jboss/management/j2ee/statistics/MessageDrivenBeanStatsImpl.javaAdded serialVersionUID1.5modifiedanddmanagement/src/main/org/jboss/management/j2ee/statistics/RangeStatisticImpl.javaAdded serialVersionUID1.6modifiedanddmanagement/src/main/org/jboss/management/j2ee/statistics/ServletStatsImpl.javaAdded serialVersionUID1.5modifiedanddmanagement/src/main/org/jboss/management/j2ee/statistics/StatefulSessionBeanStatsImpl.javaAdded serialVersionUID1.5modifiedanddmanagement/src/main/org/jboss/management/j2ee/statistics/StatelessSessionBeanStatsImpl.javaAdded serialVersionUID1.5modifiedanddmanagement/src/main/org/jboss/management/j2ee/statistics/StatisticImpl.javaAdded serialVersionUID1.6modifiedanddmanagement/src/main/org/jboss/management/j2ee/statistics/StatsBase.javaAdded serialVersionUID1.5modifiedanddmanagement/src/main/org/jboss/management/j2ee/statistics/TimeStatisticImpl.javaAdded serialVersionUID1.13modifiedanddsystem/src/main/org/jboss/system/ServiceContext.javaAdded serialVersionUID1.4modifiedanddsystem/src/main/org/jboss/deployment/DeploymentState.javaAdded serialVersionUID1.3modifiedanddsystem/src/main/org/jboss/deployment/SerializableDeploymentInfo.javaAdded serialVersionUID1.3modifiedanddsystem/src/main/org/jboss/deployment/DeploymentState.javaAdded serialVersionUID1.76modifiedloubyanskyconnector/build.xmlcreate jboss-ha-local-jdbc.jar and *.rar for  (JBAS-1391) Add support for datasource failover1.29modifiedloubyanskyconnector/src/resources/stylesheets/ConnectionFactoryTemplate.xsladded transformation of ha-local-tx-datasource for  (JBAS-1391) Add support for datasource failover1.1addedloubyanskyconnector/src/resources/ha-local-rar/META-INF/ra.xml ra.xml for ha local connection factory for (JBAS-1391) Add support for datasource failover1.1addedloubyanskyconnector/src/main/org/jboss/resource/adapter/jdbc/local/HALocalManagedConnectionFactory.javafirst simple implementation of (JBAS-1391) Add support for datasource failover1.4modifiedanddvaria/src/main/org/jboss/jmx/adaptor/snmp/agent/ManagerRecord.javaDoesn't need to be Serializable1.2modifiedtelrodjmx-remoting/build.xmlInitial checking for most of the classes needed for jmx remoting including some implementation.1.1addedtelrodjmx-remoting/src/main/test/compliance/core/serviceurl/JMXConnectorFactoryTest.javaInitial checking for most of the classes needed for jmx remoting including some 

[JBoss-dev] [JBossCache] - Re: TimeoutExceptions from TreeCache.callRemoteMethods()

2005-03-18 Thread monocongo
I guess I spoke too soon, as the exceptions are now happening again.  Do these 
point to anything of interest?

17:31:42,780 WARN  [ReplicationInterceptor] runPreparePhase() failed. 
Transaction is marked as rolled back
  | org.jboss.cache.lock.TimeoutException: rsp=sender=10.10.10.23:39099, 
retval=null, received=false, suspected=false
  | at org.jboss.cache.TreeCache.callRemoteMethods(TreeCache.java:2169)
  | at org.jboss.cache.TreeCache.callRemoteMethods(TreeCache.java:2191)
  | at 
org.jboss.cache.interceptors.ReplicationInterceptor.runPreparePhase(ReplicationInterceptor.java:479)
  | at 
org.jboss.cache.interceptors.ReplicationInterceptor$SynchronizationHandler.beforeCompletion(ReplicationInterceptor.java:383)
  | at 
org.jboss.cache.interceptors.OrderedSynchronizationHandler.beforeCompletion(OrderedSynchronizationHandler.java:71)
  | at 
org.jboss.tm.TransactionImpl.doBeforeCompletion(TransactionImpl.java:1383)
  | at 
org.jboss.tm.TransactionImpl.beforePrepare(TransactionImpl.java:1075)
  | at org.jboss.tm.TransactionImpl.commit(TransactionImpl.java:296)
  | at org.jboss.tm.TxManager.commit(TxManager.java:200)
  | at 
org.jboss.jms.asf.StdServerSession.onMessage(StdServerSession.java:341)
  | at 
oracle.jms.AQjmsConnectionConsumer.run(AQjmsConnectionConsumer.java:210)
  | at java.lang.Thread.run(Thread.java:595)
  | 17:31:42,788 ERROR [StdServerSession] failed to commit/rollback
  | org.jboss.tm.JBossRollbackException: Unable to commit, 
tx=TransactionImpl:XidImpl[FormatId=257, 
GlobalId=brooklyn.harborsideplus.local/53, BranchQual=, localId=53] 
status=STATUS_NO_TRANSACTION; - nested throwable: 
(org.jboss.util.NestedRuntimeException: ; - nested throwable: 
(org.jboss.cache.lock.TimeoutException: rsp=sender=10.10.10.23:39099, 
retval=null, received=false, suspected=false))
  | at org.jboss.tm.TransactionImpl.commit(TransactionImpl.java:344)
  | at org.jboss.tm.TxManager.commit(TxManager.java:200)
  | at 
org.jboss.jms.asf.StdServerSession.onMessage(StdServerSession.java:341)
  | at 
oracle.jms.AQjmsConnectionConsumer.run(AQjmsConnectionConsumer.java:210)
  | at java.lang.Thread.run(Thread.java:595)

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

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


---
SF email is sponsored by - The IT Product Guide
Read honest  candid reviews on hundreds of IT Products from real users.
Discover which products truly live up to the hype. Start reading now.
http://ads.osdn.com/?ad_id=6595alloc_id=14396op=click
___
JBoss-Development mailing list
JBoss-Development@lists.sourceforge.net
https://lists.sourceforge.net/lists/listinfo/jboss-development


[JBoss-dev] jboss-head Build Failed

2005-03-18 Thread qa

View results here -> http://cruisecontrol.jboss.com/cc/buildresults/jboss-head?log=log20050318163313
BUILD FAILEDAnt Error Message:/home/cruisecontrol/work/scripts/build-jboss-head.xml:63: The following error occurred while executing this line: /home/cruisecontrol/work/scripts/build-jboss-head.xml:37: Exit code: 1 See compile.log in Build Artifacts for details. JAVA_HOME=/opt/j2sdk1.4.2_05/Date of build:03/18/2005 16:33:13Time to build:33 minutes 28 secondsLast changed:03/18/2005 15:48:52Last log entry:Handle JBWS-154: WSDLTypes schould be modeled properlyand other XML Schema related testcase




   Unit Tests: (0)   Total Errors and Failures: (0)
Modifications since last build:(43)1.2modifiedosdchicagowebservice/test/java/org/jboss/test/ws/tools/xmlschema/XMLSchemaTestCase.javaHandle JBWS-154: WSDLTypes schould be modeled properlyand other XML Schema related testcase1.2modifiedosdchicagowebservice/test/java/org/jboss/test/ws/tools/xmlschema/WSDLTypesTestCase.javaHandle JBWS-154: WSDLTypes schould be modeled properlyand other XML Schema related testcase1.24modifiedosdchicagowebservice/src/main/org/jboss/ws/tools/JavaToWSDL.javaRemove deprecated log.isDebugEnabled and also SchemaBuilder should take care of included as well as imported schema.1.6modifiedosdchicagowebservice/src/main/org/jboss/ws/tools/SchemaBuilder.javaRemove deprecated log.isDebugEnabled and also SchemaBuilder should take care of included as well as imported schema.1.3modifiedanddvaria/src/main/org/jboss/services/deployment/metadata/PropertyInfo.javaAdded serialVersionUID1.3modifiedanddvaria/src/main/org/jboss/services/deployment/metadata/TemplateInfo.javaAdded serialVersionUID1.3modifiedanddvaria/src/main/org/jboss/services/deployment/metadata/ConfigInfo.javaAdded serialVersionUID1.15modifiedosdchicagowebservice/src/main/org/jboss/ws/wsdl/xsd/XSDSchema.javaJBWS:154::WSDLTypes schould be modeled properly.WSDLTypes should have a schema element.1.21modifiedosdchicagowebservice/src/main/org/jboss/ws/wsdl/WSDL11Reader.javaJBWS:154::WSDLTypes schould be modeled properly.WSDLTypes should have a schema element.1.13modifiedosdchicagowebservice/src/main/org/jboss/ws/wsdl/WSDLTypes.javaJBWS:154::WSDLTypes schould be modeled properly.WSDLTypes should have a schema element.1.1addedosdchicagowebservice/test/resources/tools/wsdl/W3CExample_DOC_11.wsdlResource for testcase1.1addedosdchicagowebservice/test/resources/tools/xsd/schemainclude/SchemaBadInclude.xsdResources for XML Schema based testcases1.1addedosdchicagowebservice/test/resources/tools/xsd/schemainclude/SchemaBadMain.xsdResources for XML Schema based testcases1.1addedosdchicagowebservice/test/resources/tools/xsd/schemainclude/SchemaInclude.xsdResources for XML Schema based testcases1.1addedosdchicagowebservice/test/resources/tools/xsd/schemainclude/SchemaMain.xsdResources for XML Schema based testcases1.1addedosdchicagowebservice/test/resources/tools/xsd/schemaimport/SchemaImport.xsdResources for XML Schema based testcases1.1addedosdchicagowebservice/test/resources/tools/xsd/schemaimport/SchemaMain.xsdResources for XML Schema based testcases1.14modifiedbwang00tomcat/src/main/org/jboss/web/tomcat/tc5/session/JBossCacheManager.javaRefactored processSessionRepl and processExire for tx context.1.5modifiedanddmanagement/src/main/org/jboss/management/j2ee/statistics/BoundaryStatisticImpl.javaAdded serialVersionUID1.5modifiedanddmanagement/src/main/org/jboss/management/j2ee/statistics/BoundedRangeStatisticImpl.javaAdded serialVersionUID1.5modifiedanddmanagement/src/main/org/jboss/management/j2ee/statistics/CountStatisticImpl.javaAdded serialVersionUID1.5modifiedanddmanagement/src/main/org/jboss/management/j2ee/statistics/EJBStatsImpl.javaAdded serialVersionUID1.5modifiedanddmanagement/src/main/org/jboss/management/j2ee/statistics/EntityBeanStatsImpl.javaAdded serialVersionUID1.6modifiedanddmanagement/src/main/org/jboss/management/j2ee/statistics/JCAConnectionPoolStatsImpl.javaAdded serialVersionUID1.6modifiedanddmanagement/src/main/org/jboss/management/j2ee/statistics/JCAConnectionStatsImpl.javaAdded serialVersionUID1.5modifiedanddmanagement/src/main/org/jboss/management/j2ee/statistics/JCAStatsImpl.javaAdded serialVersionUID1.5modifiedanddmanagement/src/main/org/jboss/management/j2ee/statistics/JMSConnectionStatsImpl.javaAdded serialVersionUID1.5modifiedanddmanagement/src/main/org/jboss/management/j2ee/statistics/JMSConsumerStatsImpl.javaAdded serialVersionUID1.5modifiedanddmanagement/src/main/org/jboss/management/j2ee/statistics/JMSEndpointStatsImpl.javaAdded serialVersionUID1.5modifiedanddmanagement/src/main/org/jboss/management/j2ee/statistics/JMSProducerStatsImpl.javaAdded serialVersionUID1.5modifiedanddmanagement/src/main/org/jboss/management/j2ee/statistics/JMSSessionStatsImpl.javaAdded 

[JBoss-dev] [Design of JBossXB] - Re: Reusing xml element definitions/bindings

2005-03-18 Thread [EMAIL PROTECTED]

  | package org.jboss.test.xml;
  | public class SundayUnitTestCase
  |public void testKernel() throws Exception
  | 

Contains binding for kernel's XML schema based on what I have seen in the 
XMLKernelDeployer and XML test files.
The method is in comments since kernel's classes are not in the testsuite 
classpath.
Also, I have just typed it, not actually tested. This is very verbose and 
doesn't reuse handlers though there are places were it could.

Adrian, do you want me to complete this for you?

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

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


---
SF email is sponsored by - The IT Product Guide
Read honest  candid reviews on hundreds of IT Products from real users.
Discover which products truly live up to the hype. Start reading now.
http://ads.osdn.com/?ad_id=6595alloc_id=14396op=click
___
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: Kernel XML format

2005-03-18 Thread [EMAIL PROTECTED]
[EMAIL PROTECTED] wrote : That is what I am going to try prototyping in the 
jbossxb testcases. I think it will have to be under a different namespace in 
order for jbossxb to know what to do with it:
  | 
  | 
  |   | deployment
  |   |Import name = 
org.jboss.test.kernel.xml.support.SimpleBeanImplSimpleBean/Import
  |   | 
  |   |x:SimpleBean
  |   |   Other ref = bean2/
  |   |/x:SimpleBean
  |   | 
  |   |x:SimpleBean name=bean2
  |   |   Constructor type = StringBean2/Constructor
  |   |/x:SimpleBean
  |   | 
  |   | /deployment
  |   | 
  | 
  | but this can actually make the document clearer.
  | 

Whatever namespace it is under, the binding metadata will describe what should 
be done with the data. Just feed it a valid XML content and metadata.

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

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


---
SF email is sponsored by - The IT Product Guide
Read honest  candid reviews on hundreds of IT Products from real users.
Discover which products truly live up to the hype. Start reading now.
http://ads.osdn.com/?ad_id=6595alloc_id=14396op=click
___
JBoss-Development mailing list
JBoss-Development@lists.sourceforge.net
https://lists.sourceforge.net/lists/listinfo/jboss-development


[JBoss-dev] [JBossCache] - Re: TimeoutExceptions from TreeCache.callRemoteMethods()

2005-03-18 Thread [EMAIL PROTECTED]
This latest stacktrace shows only jms and TreeCache. This is not aop though?

-Ben

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

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


---
SF email is sponsored by - The IT Product Guide
Read honest  candid reviews on hundreds of IT Products from real users.
Discover which products truly live up to the hype. Start reading now.
http://ads.osdn.com/?ad_id=6595alloc_id=14396op=click
___
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: Kernel XML format

2005-03-18 Thread [EMAIL PROTECTED]
[EMAIL PROTECTED] wrote : Ok, so what I would like to see is that Adrian, 
myself and others provide as freakishly complex as needed xml documents and the 
associated object model as content that goes into the xml binding testsuite. We 
need to evolve the associated schema and if necessary, external binding 
metadata to the point that the xml to java binding is being completely driven 
by configuration outside of the micro-container.
  | ...
  | Additional binding metadata through schema annotations or an external 
jbossxb is fine to move beyond the jaxb compatible model. 
  | 
  | I'm working on an xsd schema for the current pojo server xml deployer 
object model as a starting point. I'll update the JBXB-5 environment with the 
testsuite resource location for the location of this when done, and any 
associated external schemas and document instances should be placed there as 
well.
  | 

Excellent. Let's go.

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

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


---
SF email is sponsored by - The IT Product Guide
Read honest  candid reviews on hundreds of IT Products from real users.
Discover which products truly live up to the hype. Start reading now.
http://ads.osdn.com/?ad_id=6595alloc_id=14396op=click
___
JBoss-Development mailing list
JBoss-Development@lists.sourceforge.net
https://lists.sourceforge.net/lists/listinfo/jboss-development


[JBoss-dev] [JBoss JIRA] Commented: (JBAS-55) Aspectize DynamicLoginConfig

2005-03-18 Thread Dimitris Andreadis (JIRA)
 [ http://jira.jboss.com/jira/browse/JBAS-55?page=comments#action_12316262 ]
 
Dimitris Andreadis commented on JBAS-55:


Independent of how we proceed with the aspectized deployers, I think we should 
probably backport from HEAD to 4.x/3.x the hooks that let you pluggin a 
DynamicInterceptor to an XMBean, which in turn, enables the capability of 
attaching/detaching dynamically interceptors at runtime.

Not sure why people will want to use this (but what the heck, why the'll want 
to use dynamic AOP, anyway :)

 Aspectize DynamicLoginConfig
 

  Key: JBAS-55
  URL: http://jira.jboss.com/jira/browse/JBAS-55
  Project: JBoss Application Server
 Type: Task
   Components: MicroContainer bus, Security
 Versions: JBossAS-5.0 Alpha
  Environment: org.jboss.security.auth.login
 Reporter: Dimitris Andreadis
 Assignee: Dimitris Andreadis
 Priority: Minor



 Create an interceptor based on DynamicLoginConfig module that can be attached 
 either statically or dynamically to any deployer, thus adding the ability to 
 create and remove security domains, if a META-INF/login-config.xml component 
 is included in the deployment

-- 
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



---
SF email is sponsored by - The IT Product Guide
Read honest  candid reviews on hundreds of IT Products from real users.
Discover which products truly live up to the hype. Start reading now.
http://ads.osdn.com/?ad_id=6595alloc_id=14396op=click
___
JBoss-Development mailing list
JBoss-Development@lists.sourceforge.net
https://lists.sourceforge.net/lists/listinfo/jboss-development


[JBoss-dev] [JBossCache] - Re: TimeoutExceptions from TreeCache.callRemoteMethods()

2005-03-18 Thread monocongo
I don't understand your question Ben, can you elaborate?  My assumption is that 
this is happening with the TreeCacheAop and that the exception messages are 
listed as coming from the TreeCache and ReplicationInterceptor since these 
classes are used by the TreeCacheAop class, and since my application only uses 
a TreeCacheAop for replication.  My only other guess would be that this is a 
clustering problem since JBoss clustering appears to be handled by using a 
TreeCache, but this is probably not the case because the application clusters 
fine and only has trouble replicating data cached in the TreeCacheAop MBean.  
As a matter of fact my data which is not being aspectized (by virtue of being 
an ArrayList) is being replicated just fine, but objects of POJO classes which 
are being aspectized (by using a prepare entry in jboss-aop.xml) are the ones 
whcih are not being replicated correctly.  Hence I expect that the problem is 
with the TreeCacheAop not being able to replicate the aspectized objects as 
well as it replicates the ArrayList collection.

--James

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

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


---
SF email is sponsored by - The IT Product Guide
Read honest  candid reviews on hundreds of IT Products from real users.
Discover which products truly live up to the hype. Start reading now.
http://ads.osdn.com/?ad_ide95alloc_id396op=click
___
JBoss-Development mailing list
JBoss-Development@lists.sourceforge.net
https://lists.sourceforge.net/lists/listinfo/jboss-development


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

2005-03-18 Thread qa

View results here -> http://cruisecontrol.jboss.com/cc/buildresults/jboss-3.2?log=log20050318174917Lbuild.315
BUILD COMPLETE-build.315Date of build:03/18/2005 17:49:17Time to build:26 minutes 54 secondsLast changed:03/18/2005 15:46:11Last log entry:Added serialVersionUID




   Unit Tests: (0)   Total Errors and Failures: (0)
Modifications since last build:(3)1.1.2.2modifiedanddvaria/src/main/org/jboss/services/deployment/metadata/ConfigInfo.javaAdded serialVersionUID1.1.2.2modifiedanddvaria/src/main/org/jboss/services/deployment/metadata/PropertyInfo.javaAdded serialVersionUID1.1.2.2modifiedanddvaria/src/main/org/jboss/services/deployment/metadata/TemplateInfo.javaAdded serialVersionUID



[JBoss-dev] jboss-4.0 Build Failed

2005-03-18 Thread qa

View results here -> http://cruisecontrol.jboss.com/cc/buildresults/jboss-4.0?log=log20050318185321
BUILD FAILEDAnt Error Message:/home/cruisecontrol/work/scripts/build-jboss-head.xml:63: The following error occurred while executing this line: /home/cruisecontrol/work/scripts/build-jboss-head.xml:37: Exit code: 1 See compile.log in Build Artifacts for details. JAVA_HOME=/opt/j2sdk1.4.2_05/Date of build:03/18/2005 18:53:21Time to build:30 minutes 55 secondsLast changed:03/18/2005 16:39:33Last log entry:All classes in this package should have been Serializable JavaBeans. Until we a ready to move forward with a jsr-88 client side implementation we make the only serializable classes, non-serializable so there is no concern with backwards compatibility.




   Unit Tests: (0)   Total Errors and Failures: (0)
Modifications since last build:(30)1.1.4.2modifiedanddserver/src/main/org/jboss/metadata/EjbPortComponentMetaData.javaAll classes in this package should have been Serializable JavaBeans. Until we a ready to move forward with a jsr-88 client side implementation we make the only serializable classes, non-serializable so there is no concern with backwards compatibility.1.8.2.1modifiedanddserver/src/main/org/jboss/metadata/IorSecurityConfigMetaData.javaAll classes in this package should have been Serializable JavaBeans. Until we a ready to move forward with a jsr-88 client side implementation we make the only serializable classes, non-serializable so there is no concern with backwards compatibility.1.27.4.1modifiedanddmanagement/src/main/org/jboss/management/j2ee/J2EEManagedObject.javaNot serializable MBean (actually the base for jsr77 mbeans)1.1.4.2modifiedanddvaria/src/main/org/jboss/services/deployment/metadata/PropertyInfo.javaAdded serialVersionUID1.1.4.2modifiedanddvaria/src/main/org/jboss/services/deployment/metadata/TemplateInfo.javaAdded serialVersionUID1.1.4.2modifiedanddvaria/src/main/org/jboss/services/deployment/metadata/ConfigInfo.javaAdded serialVersionUID1.4.6.1modifiedanddmanagement/src/main/org/jboss/management/j2ee/statistics/BoundedRangeStatisticImpl.javaAdded serialVersionUID1.4.6.1modifiedanddmanagement/src/main/org/jboss/management/j2ee/statistics/CountStatisticImpl.javaAdded serialVersionUID1.4.6.1modifiedanddmanagement/src/main/org/jboss/management/j2ee/statistics/EJBStatsImpl.javaAdded serialVersionUID1.4.6.1modifiedanddmanagement/src/main/org/jboss/management/j2ee/statistics/EntityBeanStatsImpl.javaAdded serialVersionUID1.5.6.1modifiedanddmanagement/src/main/org/jboss/management/j2ee/statistics/JCAConnectionPoolStatsImpl.javaAdded serialVersionUID1.5.6.1modifiedanddmanagement/src/main/org/jboss/management/j2ee/statistics/JCAConnectionStatsImpl.javaAdded serialVersionUID1.4.6.1modifiedanddmanagement/src/main/org/jboss/management/j2ee/statistics/JCAStatsImpl.javaAdded serialVersionUID1.4.6.1modifiedanddmanagement/src/main/org/jboss/management/j2ee/statistics/JMSConnectionStatsImpl.javaAdded serialVersionUID1.4.6.1modifiedanddmanagement/src/main/org/jboss/management/j2ee/statistics/JMSConsumerStatsImpl.javaAdded serialVersionUID1.4.6.1modifiedanddmanagement/src/main/org/jboss/management/j2ee/statistics/JMSEndpointStatsImpl.javaAdded serialVersionUID1.4.6.1modifiedanddmanagement/src/main/org/jboss/management/j2ee/statistics/JMSProducerStatsImpl.javaAdded serialVersionUID1.4.6.1modifiedanddmanagement/src/main/org/jboss/management/j2ee/statistics/JMSSessionStatsImpl.javaAdded serialVersionUID1.4.6.1modifiedanddmanagement/src/main/org/jboss/management/j2ee/statistics/JMSStatsImpl.javaAdded serialVersionUID1.5.6.1modifiedanddmanagement/src/main/org/jboss/management/j2ee/statistics/JTAStatsImpl.javaAdded serialVersionUID1.4.6.1modifiedanddmanagement/src/main/org/jboss/management/j2ee/statistics/JVMStatsImpl.javaAdded serialVersionUID1.4.6.1modifiedanddmanagement/src/main/org/jboss/management/j2ee/statistics/MessageDrivenBeanStatsImpl.javaAdded serialVersionUID1.4.6.1modifiedanddmanagement/src/main/org/jboss/management/j2ee/statistics/RangeStatisticImpl.javaAdded serialVersionUID1.5.6.1modifiedanddmanagement/src/main/org/jboss/management/j2ee/statistics/ServletStatsImpl.javaAdded serialVersionUID1.4.6.1modifiedanddmanagement/src/main/org/jboss/management/j2ee/statistics/StatefulSessionBeanStatsImpl.javaAdded serialVersionUID1.4.6.1modifiedanddmanagement/src/main/org/jboss/management/j2ee/statistics/StatelessSessionBeanStatsImpl.javaAdded serialVersionUID1.4.6.1modifiedanddmanagement/src/main/org/jboss/management/j2ee/statistics/StatisticImpl.javaAdded serialVersionUID1.5.6.1modifiedanddmanagement/src/main/org/jboss/management/j2ee/statistics/StatsBase.javaAdded serialVersionUID1.4.6.1modifiedanddmanagement/src/main/org/jboss/management/j2ee/statistics/TimeStatisticImpl.javaAdded 

[JBoss-dev] [Design of JBoss Portal] - Re: jboss portal start up problem

2005-03-18 Thread yxyang
Even i change the context root to /portal. the same thing happen.

yang

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

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


---
SF email is sponsored by - The IT Product Guide
Read honest  candid reviews on hundreds of IT Products from real users.
Discover which products truly live up to the hype. Start reading now.
http://ads.osdn.com/?ad_id=6595alloc_id=14396op=click
___
JBoss-Development mailing list
JBoss-Development@lists.sourceforge.net
https://lists.sourceforge.net/lists/listinfo/jboss-development


[JBoss-dev] [Design of JBoss Portal] - Re: jboss portal start up problem

2005-03-18 Thread yxyang
FYI:

ava version 1.4.2_07
Java(TM) 2 Runtime Environment, Standard Edition (build 1.4.2_07-b05)
Java HotSpot(TM) Client VM (build 1.4.2_07-b05, mixed mode)

Linux ibmt41 2.4.20-8 #1 Thu Mar 13 17:54:28 EST 2003 i686 i686 i386 GNU/Linux

jboss-4.0.1sp1 and jboss-portal just be check out from cvs.


regards

Yang


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

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


---
SF email is sponsored by - The IT Product Guide
Read honest  candid reviews on hundreds of IT Products from real users.
Discover which products truly live up to the hype. Start reading now.
http://ads.osdn.com/?ad_id=6595alloc_id=14396op=click
___
JBoss-Development mailing list
JBoss-Development@lists.sourceforge.net
https://lists.sourceforge.net/lists/listinfo/jboss-development


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

2005-03-18 Thread qa

View results here -> http://cruisecontrol.jboss.com/cc/buildresults/jboss-head?log=log20050318210737Lbuild.895
BUILD COMPLETE-build.895Date of build:03/18/2005 21:07:37Time to build:20 minutes 2 secondsLast changed:03/18/2005 20:16:14Last log entry:This class does need to be serializable as its marshalled to an any value for use by the clients




   Unit Tests: (0)   Total Errors and Failures: (0)
Modifications since last build:(48)1.10modifiedstarksmserver/src/main/org/jboss/metadata/IorSecurityConfigMetaData.javaThis class does need to be serializable as its marshalled to an any value for use by the clients1.2modifiedloubyanskytestsuite/src/main/org/jboss/test/xml/SundayUnitTestCase.javasample kernel xml binding in the comments since kernel's classes are not in the testsuite's classpath1.3modifiedanddserver/src/main/org/jboss/metadata/EjbPortComponentMetaData.javaAll classes in this package should have been Serializable JavaBeans. Until we a ready to move forward with a jsr-88 client side implementation we make the only serializable classes, non-serializable so there is no concern with backwards compatibility.1.9modifiedanddserver/src/main/org/jboss/metadata/IorSecurityConfigMetaData.javaAll classes in this package should have been Serializable JavaBeans. Until we a ready to move forward with a jsr-88 client side implementation we make the only serializable classes, non-serializable so there is no concern with backwards compatibility.1.28modifiedanddmanagement/src/main/org/jboss/management/j2ee/J2EEManagedObject.javaNot serializable MBean (actually the base for jsr77 mbeans)1.2modifiedosdchicagowebservice/test/java/org/jboss/test/ws/tools/xmlschema/XMLSchemaTestCase.javaHandle JBWS-154: WSDLTypes schould be modeled properlyand other XML Schema related testcase1.2modifiedosdchicagowebservice/test/java/org/jboss/test/ws/tools/xmlschema/WSDLTypesTestCase.javaHandle JBWS-154: WSDLTypes schould be modeled properlyand other XML Schema related testcase1.24modifiedosdchicagowebservice/src/main/org/jboss/ws/tools/JavaToWSDL.javaRemove deprecated log.isDebugEnabled and also SchemaBuilder should take care of included as well as imported schema.1.6modifiedosdchicagowebservice/src/main/org/jboss/ws/tools/SchemaBuilder.javaRemove deprecated log.isDebugEnabled and also SchemaBuilder should take care of included as well as imported schema.1.3modifiedanddvaria/src/main/org/jboss/services/deployment/metadata/PropertyInfo.javaAdded serialVersionUID1.3modifiedanddvaria/src/main/org/jboss/services/deployment/metadata/TemplateInfo.javaAdded serialVersionUID1.3modifiedanddvaria/src/main/org/jboss/services/deployment/metadata/ConfigInfo.javaAdded serialVersionUID1.15modifiedosdchicagowebservice/src/main/org/jboss/ws/wsdl/xsd/XSDSchema.javaJBWS:154::WSDLTypes schould be modeled properly.WSDLTypes should have a schema element.1.21modifiedosdchicagowebservice/src/main/org/jboss/ws/wsdl/WSDL11Reader.javaJBWS:154::WSDLTypes schould be modeled properly.WSDLTypes should have a schema element.1.13modifiedosdchicagowebservice/src/main/org/jboss/ws/wsdl/WSDLTypes.javaJBWS:154::WSDLTypes schould be modeled properly.WSDLTypes should have a schema element.1.1addedosdchicagowebservice/test/resources/tools/wsdl/W3CExample_DOC_11.wsdlResource for testcase1.1addedosdchicagowebservice/test/resources/tools/xsd/schemainclude/SchemaBadInclude.xsdResources for XML Schema based testcases1.1addedosdchicagowebservice/test/resources/tools/xsd/schemainclude/SchemaBadMain.xsdResources for XML Schema based testcases1.1addedosdchicagowebservice/test/resources/tools/xsd/schemainclude/SchemaInclude.xsdResources for XML Schema based testcases1.1addedosdchicagowebservice/test/resources/tools/xsd/schemainclude/SchemaMain.xsdResources for XML Schema based testcases1.1addedosdchicagowebservice/test/resources/tools/xsd/schemaimport/SchemaImport.xsdResources for XML Schema based testcases1.1addedosdchicagowebservice/test/resources/tools/xsd/schemaimport/SchemaMain.xsdResources for XML Schema based testcases1.14modifiedbwang00tomcat/src/main/org/jboss/web/tomcat/tc5/session/JBossCacheManager.javaRefactored processSessionRepl and processExire for tx context.1.5modifiedanddmanagement/src/main/org/jboss/management/j2ee/statistics/BoundaryStatisticImpl.javaAdded serialVersionUID1.5modifiedanddmanagement/src/main/org/jboss/management/j2ee/statistics/BoundedRangeStatisticImpl.javaAdded serialVersionUID1.5modifiedanddmanagement/src/main/org/jboss/management/j2ee/statistics/CountStatisticImpl.javaAdded serialVersionUID1.5modifiedanddmanagement/src/main/org/jboss/management/j2ee/statistics/EJBStatsImpl.javaAdded serialVersionUID1.5modifiedanddmanagement/src/main/org/jboss/management/j2ee/statistics/EntityBeanStatsImpl.javaAdded serialVersionUID1.6modifiedanddmanagement/src/main/org/jboss/management/j2ee/statistics/JCAConnectionPoolStatsImpl.javaAdded 

[JBoss-dev] [Design of JBoss Portal] - Re: jboss portal start up problem

2005-03-18 Thread yxyang
I suspected that something is wrong in the .../data/portal/directory.

Because when rebuild/redeploy from source, i need to clean 
~/jboss-4.0.1sp1/server/default/tmp, work, data directories. Otherwise, the 
portal server will fail and cannot access the portal page.



In addition, in the jmx-console, i can find that under  jboss.web, 
J2EEApplication=none,J2EEServer=none,j2eeType=WebModule,name=//localhost/
was deployed successfully. 

Is this due to classloader or deployment sequence?


ERROR MESSAGE
org.jboss.portal.server.deployment.CannotCreatePortletWebAppException: 
javax.management.InstanceNotFoundException: jboss.web
:J2EEApplication=none,J2EEServer=none,j2eeType=WebModule,name=//localhost/ is 
not registered.
at 
org.jboss.portal.server.deployment.PortalWebTomcat5App.(PortalWebTomcat5App.java:49)
at 
org.jboss.portal.server.deployment.PortalWebAppFactory.create(PortalWebAppFactory.java:55)
at 
org.jboss.portal.server.deployment.WebAppIntercepter.startService(WebAppIntercepter.java:190)
at 
org.jboss.system.ServiceMBeanSupport.jbossInternalStart(ServiceMBeanSupport.java:272)
at 
org.jboss.system.ServiceMBeanSupport.start(ServiceMBeanSupport.java:173)
at org.jboss.portal.server.util.Service.start(Service.java:73)
at sun.reflect.NativeMethodAccessorImpl.invoke0(Native Method)
at 
sun.reflect.NativeMethodAccessorImpl.invoke(NativeMethodAccessorImpl.java:39)
at 
sun.reflect.DelegatingMethodAccessorImpl.invoke(DelegatingMethodAccessorImpl.java:25)
at java.lang.reflect.Method.invoke(Method.java:324)


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

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


---
SF email is sponsored by - The IT Product Guide
Read honest  candid reviews on hundreds of IT Products from real users.
Discover which products truly live up to the hype. Start reading now.
http://ads.osdn.com/?ad_id=6595alloc_id=14396op=click
___
JBoss-Development mailing list
JBoss-Development@lists.sourceforge.net
https://lists.sourceforge.net/lists/listinfo/jboss-development


[JBoss-dev] [Design of JBoss Portal] - Re: jboss portal start up problem

2005-03-18 Thread yxyang
When i undeploy portal-core by removeing from the default/deploy directory, 

Following error displayed and 
jboss.web:J2EEApplication=none,J2EEServer=none,j2eeType=WebModule,name=//localhost/
 
dispeared from the jmx-console. But others like 

# 
J2EEApplication=none,J2EEServer=none,WebModule=//localhost/ws4ee,j2eeType=Servlet,name=JBossAxisAdminServlet
# 
J2EEApplication=none,J2EEServer=none,WebModule=//localhost/ws4ee,j2eeType=Servlet,name=PortComponentLinkServlet
# 
J2EEApplication=none,J2EEServer=none,WebModule=//localhost/ws4ee,j2eeType=Servlet,name=ServiceEndpointServlet
# 
J2EEApplication=none,J2EEServer=none,WebModule=//localhost/ws4ee,j2eeType=Servlet,name=default
# 
J2EEApplication=none,J2EEServer=none,WebModule=//localhost/ws4ee,j2eeType=Servlet,name=jsp
# 
J2EEApplication=none,J2EEServer=none,WebModule=//localhost/ws4ee,type=JspMonitor
# 
J2EEApplication=none,J2EEServer=none,j2eeType=WebModule,name=//localhost/invoker
# 
J2EEApplication=none,J2EEServer=none,j2eeType=WebModule,name=//localhost/jbossmq-httpil
# 
J2EEApplication=none,J2EEServer=none,j2eeType=WebModule,name=//localhost/jmx-console
# 
J2EEApplication=none,J2EEServer=none,j2eeType=WebModule,name=//localhost/web-console
# J2EEApplication=none,J2EEServer=none,j2eeType=WebModule,name=//localhost/ws4ee

still are displayed in the jmx-console.
--ERROR msg when undeploy the portal-core

0:58:11,694 ERROR [WebAppEnhancer] Cannot handle the intercepted deployment
java.lang.NullPointerException
at 
org.jboss.portal.server.deployment.WebAppIntercepter.handleNotification(WebAppIntercepter.java:118)
at org.jboss.mx.modelmbean.XMBean.handleNotification(XMBean.java:485)
at sun.reflect.GeneratedMethodAccessor3.invoke(Unknown Source)
at 
sun.reflect.DelegatingMethodAccessorImpl.invoke(DelegatingMethodAccessorImpl.java:25)
at java.lang.reflect.Method.invoke(Method.java:324)
at 
org.jboss.mx.notification.NotificationListenerProxy.invoke(NotificationListenerProxy.java:138)
at $Proxy49.handleNotification(Unknown Source)
at 
org.jboss.mx.util.JBossNotificationBroadcasterSupport.handleNotification(JBossNotificationBroadcasterSupport.java
:112)
at 
org.jboss.mx.util.JBossNotificationBroadcasterSupport.sendNotification(JBossNotificationBroadcasterSupport.java:9
3)
at 
org.jboss.deployment.SubDeployerSupport.stop(SubDeployerSupport.java:233)
at 
org.jboss.web.AbstractWebContainer.stop(AbstractWebContainer.java:402)
at org.jboss.deployment.MainDeployer.stop(MainDeployer.java:632)
at org.jboss.deployment.MainDeployer.stop(MainDeployer.java:624)
at org.jboss.deployment.MainDeployer.undeploy(MainDeployer.java:605)
at org.jboss.deployment.MainDeployer.undeploy(MainDeployer.java:600)
at org.jboss.deployment.MainDeployer.undeploy(MainDeployer.java:573)
at sun.reflect.NativeMethodAccessorImpl.invoke0(Native Method)
at 
sun.reflect.NativeMethodAccessorImpl.invoke(NativeMethodAccessorImpl.java:39)
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.interceptor.AbstractInterceptor.invoke(AbstractInterceptor.java:122)
at org.jboss.mx.server.Invocation.invoke(Invocation.java:74)
at 
org.jboss.mx.interceptor.ModelMBeanOperationInterceptor.invoke(ModelMBeanOperationInterceptor.java:131)
at org.jboss.mx.server.Invocation.invoke(Invocation.java:74)
at 
org.jboss.mx.server.AbstractMBeanInvoker.invoke(AbstractMBeanInvoker.java:249)
at org.jboss.mx.server.MBeanServerImpl.invoke(MBeanServerImpl.java:642)
at org.jboss.mx.util.MBeanProxyExt.invoke(MBeanProxyExt.java:177)
at $Proxy8.undeploy(Unknown Source

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

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


---
SF email is sponsored by - The IT Product Guide
Read honest  candid reviews on hundreds of IT Products from real users.
Discover which products truly live up to the hype. Start reading now.
http://ads.osdn.com/?ad_id=6595alloc_id=14396op=click
___
JBoss-Development mailing list
JBoss-Development@lists.sourceforge.net
https://lists.sourceforge.net/lists/listinfo/jboss-development


[JBoss-dev] jboss-4.0 build.445 Build Fixed

2005-03-18 Thread qa

View results here -> http://cruisecontrol.jboss.com/cc/buildresults/jboss-4.0?log=log20050318224120Lbuild.445
BUILD COMPLETE-build.445Date of build:03/18/2005 22:41:20Time to build:14 minutes 58 secondsLast changed:03/18/2005 20:18:35Last log entry:This class does need to be serializable as its marshalled to an any value for use by the clients




   Unit Tests: (0)   Total Errors and Failures: (0)
Modifications since last build:(31)1.8.2.2modifiedstarksmserver/src/main/org/jboss/metadata/IorSecurityConfigMetaData.javaThis class does need to be serializable as its marshalled to an any value for use by the clients1.1.4.2modifiedanddserver/src/main/org/jboss/metadata/EjbPortComponentMetaData.javaAll classes in this package should have been Serializable JavaBeans. Until we a ready to move forward with a jsr-88 client side implementation we make the only serializable classes, non-serializable so there is no concern with backwards compatibility.1.8.2.1modifiedanddserver/src/main/org/jboss/metadata/IorSecurityConfigMetaData.javaAll classes in this package should have been Serializable JavaBeans. Until we a ready to move forward with a jsr-88 client side implementation we make the only serializable classes, non-serializable so there is no concern with backwards compatibility.1.27.4.1modifiedanddmanagement/src/main/org/jboss/management/j2ee/J2EEManagedObject.javaNot serializable MBean (actually the base for jsr77 mbeans)1.1.4.2modifiedanddvaria/src/main/org/jboss/services/deployment/metadata/PropertyInfo.javaAdded serialVersionUID1.1.4.2modifiedanddvaria/src/main/org/jboss/services/deployment/metadata/TemplateInfo.javaAdded serialVersionUID1.1.4.2modifiedanddvaria/src/main/org/jboss/services/deployment/metadata/ConfigInfo.javaAdded serialVersionUID1.4.6.1modifiedanddmanagement/src/main/org/jboss/management/j2ee/statistics/BoundedRangeStatisticImpl.javaAdded serialVersionUID1.4.6.1modifiedanddmanagement/src/main/org/jboss/management/j2ee/statistics/CountStatisticImpl.javaAdded serialVersionUID1.4.6.1modifiedanddmanagement/src/main/org/jboss/management/j2ee/statistics/EJBStatsImpl.javaAdded serialVersionUID1.4.6.1modifiedanddmanagement/src/main/org/jboss/management/j2ee/statistics/EntityBeanStatsImpl.javaAdded serialVersionUID1.5.6.1modifiedanddmanagement/src/main/org/jboss/management/j2ee/statistics/JCAConnectionPoolStatsImpl.javaAdded serialVersionUID1.5.6.1modifiedanddmanagement/src/main/org/jboss/management/j2ee/statistics/JCAConnectionStatsImpl.javaAdded serialVersionUID1.4.6.1modifiedanddmanagement/src/main/org/jboss/management/j2ee/statistics/JCAStatsImpl.javaAdded serialVersionUID1.4.6.1modifiedanddmanagement/src/main/org/jboss/management/j2ee/statistics/JMSConnectionStatsImpl.javaAdded serialVersionUID1.4.6.1modifiedanddmanagement/src/main/org/jboss/management/j2ee/statistics/JMSConsumerStatsImpl.javaAdded serialVersionUID1.4.6.1modifiedanddmanagement/src/main/org/jboss/management/j2ee/statistics/JMSEndpointStatsImpl.javaAdded serialVersionUID1.4.6.1modifiedanddmanagement/src/main/org/jboss/management/j2ee/statistics/JMSProducerStatsImpl.javaAdded serialVersionUID1.4.6.1modifiedanddmanagement/src/main/org/jboss/management/j2ee/statistics/JMSSessionStatsImpl.javaAdded serialVersionUID1.4.6.1modifiedanddmanagement/src/main/org/jboss/management/j2ee/statistics/JMSStatsImpl.javaAdded serialVersionUID1.5.6.1modifiedanddmanagement/src/main/org/jboss/management/j2ee/statistics/JTAStatsImpl.javaAdded serialVersionUID1.4.6.1modifiedanddmanagement/src/main/org/jboss/management/j2ee/statistics/JVMStatsImpl.javaAdded serialVersionUID1.4.6.1modifiedanddmanagement/src/main/org/jboss/management/j2ee/statistics/MessageDrivenBeanStatsImpl.javaAdded serialVersionUID1.4.6.1modifiedanddmanagement/src/main/org/jboss/management/j2ee/statistics/RangeStatisticImpl.javaAdded serialVersionUID1.5.6.1modifiedanddmanagement/src/main/org/jboss/management/j2ee/statistics/ServletStatsImpl.javaAdded serialVersionUID1.4.6.1modifiedanddmanagement/src/main/org/jboss/management/j2ee/statistics/StatefulSessionBeanStatsImpl.javaAdded serialVersionUID1.4.6.1modifiedanddmanagement/src/main/org/jboss/management/j2ee/statistics/StatelessSessionBeanStatsImpl.javaAdded serialVersionUID1.4.6.1modifiedanddmanagement/src/main/org/jboss/management/j2ee/statistics/StatisticImpl.javaAdded serialVersionUID1.5.6.1modifiedanddmanagement/src/main/org/jboss/management/j2ee/statistics/StatsBase.javaAdded serialVersionUID1.4.6.1modifiedanddmanagement/src/main/org/jboss/management/j2ee/statistics/TimeStatisticImpl.javaAdded serialVersionUID1.4.6.1modifiedanddmanagement/src/main/org/jboss/management/j2ee/statistics/BoundaryStatisticImpl.javaAdded serialVersionUID



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

2005-03-18 Thread qa

View results here -> http://cruisecontrol.jboss.com/cc/buildresults/jboss-4.0-jdk-matrix?log=log20050318230237Lbuild.111
BUILD COMPLETE-build.111Date of build:03/18/2005 23:02:37Time to build:24 minutes 20 secondsLast changed:03/18/2005 20:18:35Last log entry:This class does need to be serializable as its marshalled to an any value for use by the clients




   Unit Tests: (0)   Total Errors and Failures: (0)
Modifications since last build:(48)1.8.2.2modifiedstarksmserver/src/main/org/jboss/metadata/IorSecurityConfigMetaData.javaThis class does need to be serializable as its marshalled to an any value for use by the clients1.1.4.2modifiedanddserver/src/main/org/jboss/metadata/EjbPortComponentMetaData.javaAll classes in this package should have been Serializable JavaBeans. Until we a ready to move forward with a jsr-88 client side implementation we make the only serializable classes, non-serializable so there is no concern with backwards compatibility.1.8.2.1modifiedanddserver/src/main/org/jboss/metadata/IorSecurityConfigMetaData.javaAll classes in this package should have been Serializable JavaBeans. Until we a ready to move forward with a jsr-88 client side implementation we make the only serializable classes, non-serializable so there is no concern with backwards compatibility.1.27.4.1modifiedanddmanagement/src/main/org/jboss/management/j2ee/J2EEManagedObject.javaNot serializable MBean (actually the base for jsr77 mbeans)1.1.4.2modifiedanddvaria/src/main/org/jboss/services/deployment/metadata/PropertyInfo.javaAdded serialVersionUID1.1.4.2modifiedanddvaria/src/main/org/jboss/services/deployment/metadata/TemplateInfo.javaAdded serialVersionUID1.1.4.2modifiedanddvaria/src/main/org/jboss/services/deployment/metadata/ConfigInfo.javaAdded serialVersionUID1.4.6.1modifiedanddmanagement/src/main/org/jboss/management/j2ee/statistics/BoundedRangeStatisticImpl.javaAdded serialVersionUID1.4.6.1modifiedanddmanagement/src/main/org/jboss/management/j2ee/statistics/CountStatisticImpl.javaAdded serialVersionUID1.4.6.1modifiedanddmanagement/src/main/org/jboss/management/j2ee/statistics/EJBStatsImpl.javaAdded serialVersionUID1.4.6.1modifiedanddmanagement/src/main/org/jboss/management/j2ee/statistics/EntityBeanStatsImpl.javaAdded serialVersionUID1.5.6.1modifiedanddmanagement/src/main/org/jboss/management/j2ee/statistics/JCAConnectionPoolStatsImpl.javaAdded serialVersionUID1.5.6.1modifiedanddmanagement/src/main/org/jboss/management/j2ee/statistics/JCAConnectionStatsImpl.javaAdded serialVersionUID1.4.6.1modifiedanddmanagement/src/main/org/jboss/management/j2ee/statistics/JCAStatsImpl.javaAdded serialVersionUID1.4.6.1modifiedanddmanagement/src/main/org/jboss/management/j2ee/statistics/JMSConnectionStatsImpl.javaAdded serialVersionUID1.4.6.1modifiedanddmanagement/src/main/org/jboss/management/j2ee/statistics/JMSConsumerStatsImpl.javaAdded serialVersionUID1.4.6.1modifiedanddmanagement/src/main/org/jboss/management/j2ee/statistics/JMSEndpointStatsImpl.javaAdded serialVersionUID1.4.6.1modifiedanddmanagement/src/main/org/jboss/management/j2ee/statistics/JMSProducerStatsImpl.javaAdded serialVersionUID1.4.6.1modifiedanddmanagement/src/main/org/jboss/management/j2ee/statistics/JMSSessionStatsImpl.javaAdded serialVersionUID1.4.6.1modifiedanddmanagement/src/main/org/jboss/management/j2ee/statistics/JMSStatsImpl.javaAdded serialVersionUID1.5.6.1modifiedanddmanagement/src/main/org/jboss/management/j2ee/statistics/JTAStatsImpl.javaAdded serialVersionUID1.4.6.1modifiedanddmanagement/src/main/org/jboss/management/j2ee/statistics/JVMStatsImpl.javaAdded serialVersionUID1.4.6.1modifiedanddmanagement/src/main/org/jboss/management/j2ee/statistics/MessageDrivenBeanStatsImpl.javaAdded serialVersionUID1.4.6.1modifiedanddmanagement/src/main/org/jboss/management/j2ee/statistics/RangeStatisticImpl.javaAdded serialVersionUID1.5.6.1modifiedanddmanagement/src/main/org/jboss/management/j2ee/statistics/ServletStatsImpl.javaAdded serialVersionUID1.4.6.1modifiedanddmanagement/src/main/org/jboss/management/j2ee/statistics/StatefulSessionBeanStatsImpl.javaAdded serialVersionUID1.4.6.1modifiedanddmanagement/src/main/org/jboss/management/j2ee/statistics/StatelessSessionBeanStatsImpl.javaAdded serialVersionUID1.4.6.1modifiedanddmanagement/src/main/org/jboss/management/j2ee/statistics/StatisticImpl.javaAdded serialVersionUID1.5.6.1modifiedanddmanagement/src/main/org/jboss/management/j2ee/statistics/StatsBase.javaAdded serialVersionUID1.4.6.1modifiedanddmanagement/src/main/org/jboss/management/j2ee/statistics/TimeStatisticImpl.javaAdded serialVersionUID1.4.6.1modifiedanddmanagement/src/main/org/jboss/management/j2ee/statistics/BoundaryStatisticImpl.javaAdded serialVersionUID1.1.4.4modifiedosdchicagovaria/src/main/org/jboss/jaxr/juddi/JUDDIService.javaMinor check while closing 

[JBoss-dev] [JBoss JIRA] Created: (EJBTHREE-105) DS: add hibernate.dialect metadata

2005-03-18 Thread Jens Elkner (JIRA)
DS: add hibernate.dialect metadata
--

 Key: EJBTHREE-105
 URL: http://jira.jboss.com/jira/browse/EJBTHREE-105
 Project: EJB 3.0
Type: Feature Request
Versions: Preview 4
 Environment: Linux, JDK 1.5; Jboss 4.0.1sp1
Reporter: Jens Elkner
Priority: Critical


Actually IMHO it is not possible, to deploy an EJB3 application to jboss in a 
relayable way. E.g. an application may ask a user to create a datasource with a 
certain name, however, it should not care/dictate, what a database the user 
chooses (IMHO thats one of the biggest advantage of an J2EE server). 

However, since the hibernate.dialect property depends direct on the type of 
database, an application can't be shipped with a META-INF/hibernate.properties, 
where the hibernate.dialect is set. E.g. if so 
driver-classoracle.jdbc.driver.OracleDriver/driver-class and 
hibernate.dialect=hibernate.dialect=org.hibernate.dialect.MySQLMyISAMDialect
simply would produce garbage.

Editing the META-INF/hibernate.properties is not an option, since if the 
archive is signed, this would destroy the inegrity of the archive (besides the 
fact, that it would be unaceppably to ask the user/admin to that).

To solve this problem, IMHO it is neccessary, that a new optional metadata tag 
should be allowed in local-tx-datasource. E.g.:
datasources
   ...
   metadata
  ...
  hibernate.dialect.../hibernate.dialect
   /metadata
/datasources

Now, if the EBJ3 deployer starts deploying an ejb3 archive,
it may have a look at the DS metadata and add/overwrite the hibernate.dialect 
property. 

Digging around, I guess, that 
org.jboss.ejb3.entity.HibernateSessionFactory:createSessionFactory(java.util.Collection
 classes, Properties props) right before 
if (props != null) cfg.setProperties(props); 
would be anappropriate place, doing that.

Unfortunately, I do not know, whether/how it is possible and allowed to access 
the metadata of the datasource at this point. 

If you can give me a hint, I would try to implement/test 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



---
SF email is sponsored by - The IT Product Guide
Read honest  candid reviews on hundreds of IT Products from real users.
Discover which products truly live up to the hype. Start reading now.
http://ads.osdn.com/?ad_id=6595alloc_id=14396op=click
___
JBoss-Development mailing list
JBoss-Development@lists.sourceforge.net
https://lists.sourceforge.net/lists/listinfo/jboss-development


[JBoss-dev] jboss-3.2-jdk-matrix build.80 Build Successful

2005-03-18 Thread qa

View results here -> http://cruisecontrol.jboss.com/cc/buildresults/jboss-3.2-jdk-matrix?log=log20050318234339Lbuild.80
BUILD COMPLETE-build.80Date of build:03/18/2005 23:43:39Time to build:28 minutes 4 secondsLast changed:03/18/2005 15:46:11Last log entry:Added serialVersionUID




   Unit Tests: (0)   Total Errors and Failures: (0)
Modifications since last build:(4)1.1.2.2modifiedanddvaria/src/main/org/jboss/services/deployment/metadata/ConfigInfo.javaAdded serialVersionUID1.1.2.2modifiedanddvaria/src/main/org/jboss/services/deployment/metadata/PropertyInfo.javaAdded serialVersionUID1.1.2.2modifiedanddvaria/src/main/org/jboss/services/deployment/metadata/TemplateInfo.javaAdded serialVersionUID1.1.2.4modifiedanddvaria/src/main/org/jboss/jmx/adaptor/snmp/agent/ManagerRecord.javaDoesn't need to be Serializable



[JBoss-dev] [Design of JBoss Portal] - Re: jboss portal start up problem

2005-03-18 Thread yxyang
Hi,

I try to unjar the portal-core.sar file and take the portal-core.war file out 
from the sar file.

Then deploy the new portal-core.sar file and portal-core.war file. Then the 
error msg gone.

I think more explaination about the build.xml script and the functions of the 
each components of the whole portal-core.sar should be put in the user guide 
and reference. 

regards

Yang

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

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


---
SF email is sponsored by - The IT Product Guide
Read honest  candid reviews on hundreds of IT Products from real users.
Discover which products truly live up to the hype. Start reading now.
http://ads.osdn.com/?ad_id=6595alloc_id=14396op=click
___
JBoss-Development mailing list
JBoss-Development@lists.sourceforge.net
https://lists.sourceforge.net/lists/listinfo/jboss-development


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

2005-03-18 Thread qa

View results here -> http://cruisecontrol.jboss.com/cc/buildresults/jboss-3.2-testsuite?log=log20050319005126
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:03/19/2005 00:51:26Time to build:22 minutes 3 secondsLast changed:03/18/2005 15:46:11Last log entry:Added serialVersionUID




   Unit Tests: (0)   Total Errors and Failures: (0)
Modifications since last build:(17)1.1.2.2modifiedanddvaria/src/main/org/jboss/services/deployment/metadata/ConfigInfo.javaAdded serialVersionUID1.1.2.2modifiedanddvaria/src/main/org/jboss/services/deployment/metadata/PropertyInfo.javaAdded serialVersionUID1.1.2.2modifiedanddvaria/src/main/org/jboss/services/deployment/metadata/TemplateInfo.javaAdded serialVersionUID1.1.2.4modifiedanddvaria/src/main/org/jboss/jmx/adaptor/snmp/agent/ManagerRecord.javaDoesn't need to be Serializable1.1.2.6modifiedanddvaria/src/main/org/jboss/jmx/adaptor/snmp/agent/SnmpAgentService.javaintroduced DynamicSubscriptions attribute1.1.2.5modifiedanddvaria/src/resources/services/snmp/deploy/META-INF/jboss-service.xmlintroduced DynamicSubscriptions attribute1.1.2.8modifiedanddsystem/src/main/org/jboss/system/ListenerServiceMBeanSupport.javareduce debug-trace for receiving baseclass jmx.mbean.registered notifs1.2.8.2modifiedejortmessaging/src/main/org/jboss/mq/pm/TxManager.java[JBAS-1589] - Typo in TxManager1.2.2.6modifiedanddsystem/src/main/org/jboss/system/ServiceMBean.javaJBAS-1577: white-space in ServiceMBean EVENT types, removed1.1.4.1modifiedanddsystem/src/main/org/jboss/system/filterfactory/AttributeChangeNotificationFilterFactory.javaNew Feature: JBAS-1365 - extension to ListenerServiceMBeanSupportThe filter mechanism has been extended to support specificationof arbitrary filters, using dynamic filter factory pluginsimplementing the NotificationFilterFactory interface.Three filter factories corresponding to the "standard" jmxnotification filters are supplied by default in packageorg.jboss.system.filterfactory.1.1.4.1modifiedanddsystem/src/main/org/jboss/system/filterfactory/MBeanServerNotificationFilterFactory.javaNew Feature: JBAS-1365 - extension to ListenerServiceMBeanSupportThe filter mechanism has been extended to support specificationof arbitrary filters, using dynamic filter factory pluginsimplementing the NotificationFilterFactory interface.Three filter factories corresponding to the "standard" jmxnotification filters are supplied by default in packageorg.jboss.system.filterfactory.1.1.4.1modifiedanddsystem/src/main/org/jboss/system/filterfactory/NotificationFilterSupportFactory.javaNew Feature: JBAS-1365 - extension to ListenerServiceMBeanSupportThe filter mechanism has been extended to support specificationof arbitrary filters, using dynamic filter factory pluginsimplementing the NotificationFilterFactory interface.Three filter factories corresponding to the "standard" jmxnotification filters are supplied by default in packageorg.jboss.system.filterfactory.1.1.2.3modifiedanddsystem/src/main/org/jboss/system/ListenerServiceMBean.javaNew Feature: JBAS-1365 - extension to ListenerServiceMBeanSupportThe filter mechanism has been extended to support specificationof arbitrary filters, using dynamic filter factory pluginsimplementing the NotificationFilterFactory interface.Three filter factories corresponding to the "standard" jmxnotification filters are supplied by default in packageorg.jboss.system.filterfactory.1.1.2.7modifiedanddsystem/src/main/org/jboss/system/ListenerServiceMBeanSupport.javaNew Feature: JBAS-1365 - extension to ListenerServiceMBeanSupportThe filter mechanism has been extended to support specificationof arbitrary filters, using dynamic filter factory pluginsimplementing the NotificationFilterFactory interface.Three filter factories corresponding to the "standard" jmxnotification filters are supplied by default in packageorg.jboss.system.filterfactory.1.1.4.1modifiedanddsystem/src/main/org/jboss/system/NotificationFilterFactory.javaNew Feature: JBAS-1365 - extension to ListenerServiceMBeanSupportThe filter mechanism has been extended to support specificationof arbitrary filters, using dynamic filter factory pluginsimplementing the NotificationFilterFactory interface.Three filter factories corresponding to the "standard" jmxnotification filters are supplied by default in packageorg.jboss.system.filterfactory.1.1.2.4modifiedanddsystem/src/resources/org/jboss/metadata/jboss-subscription.dtdNew Feature: JBAS-1365 - extension to ListenerServiceMBeanSupportThe filter mechanism has been extended to support specificationof arbitrary filters, using dynamic filter factory pluginsimplementing the NotificationFilterFactory 

[JBoss-dev] [Design of JBoss Portal] - Re: jboss portal start up problem

2005-03-18 Thread yxyang
the same error happen again even i seperate the war from sar file if i set the 
context root to /.



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

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


---
SF email is sponsored by - The IT Product Guide
Read honest  candid reviews on hundreds of IT Products from real users.
Discover which products truly live up to the hype. Start reading now.
http://ads.osdn.com/?ad_id=6595alloc_id=14396op=click
___
JBoss-Development mailing list
JBoss-Development@lists.sourceforge.net
https://lists.sourceforge.net/lists/listinfo/jboss-development