[JBoss-dev] [JBossCache] - Re: Who can tell me how to use jboss cache to store records

2004-10-26 Thread norbert
You are free in your decision how to map your 'keys' to the tree-structure that 
TreeCache provides. You may also decide not to use the Tree-structure and store all 
Records as Key-value-pairs in a single Node.

Keep in mind that locking is taking place on node-level. And the kind of lock being 
used depends on the transaction-isolation-level.

Every time you put a key-value-pair into a node locking takes place.

Every time you create or remove a node locking also takes place (on the parent node).

The kind of lock being used depends on the transaction-isolation-level. If you specify 
REPEATABLE_READ or SERIALIZABLE, the nodes in question are write-locked for the time 
of your transaction read-access is blocked during this time. If you use a lower 
isolation-level nodes may be accessed from within multiple transactions in paralell 
and the use of transactions does not have a negative performance-impact (as a drawback 
it's not garanteed you will allways retrive the same value during the transaction 
because another thread might have altered the data in the meantime).

Because of this I'd recommend you map your keys to the last entry in the FQNs being 
used if you have to use at least REPEATABLE_READ. If a lower isolation-level is 
sufficient using a single node and putting all data into it like a regular hashtable 
will perform slighly better.

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

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


---
This SF.net email is sponsored by: IT Product Guide on ITManagersJournal
Use IT products in your business? Tell us what you think of them. Give us
Your Opinions, Get Free ThinkGeek Gift Certificates! Click to find out more
http://productguide.itmanagersjournal.com/guidepromo.tmpl
___
JBoss-Development mailing list
[EMAIL PROTECTED]
https://lists.sourceforge.net/lists/listinfo/jboss-development


[JBoss-dev] [Benchmarking] - Re: Help about SPECjAppServer2002 and jboss.

2004-10-26 Thread loubyansky
The fact that EAR deployer is not available hints that the specj configuration was not 
created properly. What does the specj directory contain?
You don't need to copy any war, jar, ear files. This all is done for you by deploy-all 
target.

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

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


---
This SF.net email is sponsored by: IT Product Guide on ITManagersJournal
Use IT products in your business? Tell us what you think of them. Give us
Your Opinions, Get Free ThinkGeek Gift Certificates! Click to find out more
http://productguide.itmanagersjournal.com/guidepromo.tmpl
___
JBoss-Development mailing list
[EMAIL PROTECTED]
https://lists.sourceforge.net/lists/listinfo/jboss-development


[JBoss-dev] [AOP on JBoss (Aspects/JBoss)] - Re: Question on Interceptor. Getting a Null Pointer!

2004-10-26 Thread SushmaM
oops!! It was a mistake in my code.  I've fixed it and the interceptor is working 
fine.  Thanks for your help. :)



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

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


---
This SF.net email is sponsored by: IT Product Guide on ITManagersJournal
Use IT products in your business? Tell us what you think of them. Give us
Your Opinions, Get Free ThinkGeek Gift Certificates! Click to find out more
http://productguide.itmanagersjournal.com/guidepromo.tmpl
___
JBoss-Development mailing list
[EMAIL PROTECTED]
https://lists.sourceforge.net/lists/listinfo/jboss-development


[JBoss-dev] [JBossCache] - Re: Who can tell me how to use jboss cache to store records

2004-10-26 Thread guowenrui
Thanks to bela and norbert. I got it.

norbert remind me of the lock mechanism. Yes, If I put all record s into a node under 
the root, then when I read or remove some keys  values from the data node, then the 
whole node will be locked, that's a bad thing. So if I put every record into its own 
node which Fqn is maked up of primary key of it, then every time I get/put/remove the 
node, the lock will only be acquired on the node and its parents, but the others will 
not be affected.

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

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


---
This SF.net email is sponsored by: IT Product Guide on ITManagersJournal
Use IT products in your business? Tell us what you think of them. Give us
Your Opinions, Get Free ThinkGeek Gift Certificates! Click to find out more
http://productguide.itmanagersjournal.com/guidepromo.tmpl
___
JBoss-Development mailing list
[EMAIL PROTECTED]
https://lists.sourceforge.net/lists/listinfo/jboss-development


[JBoss-dev] [Benchmarking] - Re: Help about SPECjAppServer2002 and jboss.

2004-10-26 Thread terryxian
The specj directory under $JBOSS_HOME/server contains six sub-directories:
conf  deploy  lib  log  tmp  work
among them the directory 'deploy' contains all ear files.
Why I copied these files manually is that I am afraid the command 'ant .. deploy-all 
didnt copy .war files.
The other question is that jboss40.xml provided by the toolkit seems incorrect. You 
can easily see that it refers to the file config/jboss32.env. It is supposed to refer 
to jboss40.env, but no such file in config directory. 
Now I am frustrated about jboss4.0. Do I need to try jboss3.2??


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

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


---
This SF.net email is sponsored by: IT Product Guide on ITManagersJournal
Use IT products in your business? Tell us what you think of them. Give us
Your Opinions, Get Free ThinkGeek Gift Certificates! Click to find out more
http://productguide.itmanagersjournal.com/guidepromo.tmpl
___
JBoss-Development mailing list
[EMAIL PROTECTED]
https://lists.sourceforge.net/lists/listinfo/jboss-development


[JBoss-dev] [Benchmarking] - Re: Help about SPECjAppServer2002 and jboss.

2004-10-26 Thread loubyansky
There is no jboss40.env. jboss32.env works for both 3.2 and 4.0.
What else does the deploy directory contain?

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

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


---
This SF.net email is sponsored by: IT Product Guide on ITManagersJournal
Use IT products in your business? Tell us what you think of them. Give us
Your Opinions, Get Free ThinkGeek Gift Certificates! Click to find out more
http://productguide.itmanagersjournal.com/guidepromo.tmpl
___
JBoss-Development mailing list
[EMAIL PROTECTED]
https://lists.sourceforge.net/lists/listinfo/jboss-development


[JBoss-dev] [Benchmarking] - Re: Help about SPECjAppServer2002 and jboss.

2004-10-26 Thread terryxian
Actually, there are only three files after I ran ''ant . deploy-all'' comand.
These three files are:

emulator.ear
jboss32-oracle-ds.xml
SPECjAppServer.ear

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

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


---
This SF.net email is sponsored by: IT Product Guide on ITManagersJournal
Use IT products in your business? Tell us what you think of them. Give us
Your Opinions, Get Free ThinkGeek Gift Certificates! Click to find out more
http://productguide.itmanagersjournal.com/guidepromo.tmpl
___
JBoss-Development mailing list
[EMAIL PROTECTED]
https://lists.sourceforge.net/lists/listinfo/jboss-development


[JBoss-dev] [ jboss-Patches-1054419 ] Support for TLS in LdapLoginModule

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

Category: JBossSX
Group: v3.2
Status: Open
Resolution: None
Priority: 5
Submitted By: Alexei Yudichev (sflexus)
Assigned to: Nobody/Anonymous (nobody)
Summary: Support for TLS in LdapLoginModule

Initial Comment:
For one of my projects I am using user authentication on 
LDAP server. LDAP admins required supprot for TLS 
transport, which was missing in LdapLoginModule. 
Attached is the patch that enables TLS by intruducing 
two more options: useTls and tlsHostnameVerifierClass. 
The code is almost copied from http://java.sun.com/
products/jndi/tutorial/ldap/ext/starttls.html. Patch is 
made against and tested with JBoss 3.2.5. Requires JDK 
1.4 to compile and operate, however, should not break 
anything if run under 1.3 with useTls=false.

--

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


---
This SF.net email is sponsored by: IT Product Guide on ITManagersJournal
Use IT products in your business? Tell us what you think of them. Give us
Your Opinions, Get Free ThinkGeek Gift Certificates! Click to find out more
http://productguide.itmanagersjournal.com/guidepromo.tmpl
___
JBoss-Development mailing list
[EMAIL PROTECTED]
https://lists.sourceforge.net/lists/listinfo/jboss-development


[JBoss-dev] [Benchmarking] - Re: Help about SPECjAppServer2002 and jboss.

2004-10-26 Thread loubyansky
Do you have default configuration (server/default) in jboss-4.0?

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

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


---
This SF.net email is sponsored by: IT Product Guide on ITManagersJournal
Use IT products in your business? Tell us what you think of them. Give us
Your Opinions, Get Free ThinkGeek Gift Certificates! Click to find out more
http://productguide.itmanagersjournal.com/guidepromo.tmpl
___
JBoss-Development mailing list
[EMAIL PROTECTED]
https://lists.sourceforge.net/lists/listinfo/jboss-development


[JBoss-dev] [Benchmarking] - Re: Help about SPECjAppServer2002 and jboss.

2004-10-26 Thread terryxian
Yes, it has

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

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


---
This SF.net email is sponsored by: IT Product Guide on ITManagersJournal
Use IT products in your business? Tell us what you think of them. Give us
Your Opinions, Get Free ThinkGeek Gift Certificates! Click to find out more
http://productguide.itmanagersjournal.com/guidepromo.tmpl
___
JBoss-Development mailing list
[EMAIL PROTECTED]
https://lists.sourceforge.net/lists/listinfo/jboss-development


[JBoss-dev] [Benchmarking] - Re: Help about SPECjAppServer2002 and jboss.

2004-10-26 Thread loubyansky
What is the value of J2EE_HOME and the location of jboss-4.0?

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

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


---
This SF.net email is sponsored by: IT Product Guide on ITManagersJournal
Use IT products in your business? Tell us what you think of them. Give us
Your Opinions, Get Free ThinkGeek Gift Certificates! Click to find out more
http://productguide.itmanagersjournal.com/guidepromo.tmpl
___
JBoss-Development mailing list
[EMAIL PROTECTED]
https://lists.sourceforge.net/lists/listinfo/jboss-development


[JBoss-dev] [Benchmarking] - Re: Help about SPECjAppServer2002 and jboss.

2004-10-26 Thread terryxian
J2EE_HOME=/usr/java/jboss

/usr/java/jboss contains all jboss4.2 files  (five directories):

bin/
client/
docs/
lib/
server/


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

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


---
This SF.net email is sponsored by: IT Product Guide on ITManagersJournal
Use IT products in your business? Tell us what you think of them. Give us
Your Opinions, Get Free ThinkGeek Gift Certificates! Click to find out more
http://productguide.itmanagersjournal.com/guidepromo.tmpl
___
JBoss-Development mailing list
[EMAIL PROTECTED]
https://lists.sourceforge.net/lists/listinfo/jboss-development


[JBoss-dev] [Benchmarking] - Re: Help about SPECjAppServer2002 and jboss.

2004-10-26 Thread terryxian
Actually, I am now trying jboss3.2.6, but I cannot deploy ear beans still. 
After I ran 
  run.sh -c spec
I got the following errors:

2004-10-26 02:10:03,659 INFO  [org.jboss.deployment.EARDeployer] Init J2EE 
application: file:/usr/java/jboss/server/specj/de
ploy/SPECjAppServer.ear
2004-10-26 02:10:05,776 INFO  [org.jboss.ejb.EjbModule] Deploying RuleEnt
2004-10-26 02:10:06,311 INFO  [org.jboss.ejb.EjbModule] Deploying DiscountEnt
2004-10-26 02:10:06,327 INFO  [org.jboss.ejb.EjbModule] Deploying CustomerEnt
2004-10-26 02:10:15,600 WARN  
[org.jboss.resource.connectionmanager.JBossManagedConnectionPool] Throwable while 
attempting to get a new connection: null
java.lang.NoClassDefFoundError: oracle/dms/console/DMSConsole
at oracle.jdbc.driver.DMSFactory.(DMSFactory.java:28)
.

A lot if errors. the root cause is that I cannot find class DMSConsole. But I already 
added classes12dms.jar to CLASSPATH.
Why  jboss4.0 is still not working also..   :-(


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

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


---
This SF.net email is sponsored by: IT Product Guide on ITManagersJournal
Use IT products in your business? Tell us what you think of them. Give us
Your Opinions, Get Free ThinkGeek Gift Certificates! Click to find out more
http://productguide.itmanagersjournal.com/guidepromo.tmpl
___
JBoss-Development mailing list
[EMAIL PROTECTED]
https://lists.sourceforge.net/lists/listinfo/jboss-development


[JBoss-dev] [Benchmarking] - Re: Help about SPECjAppServer2002 and jboss.

2004-10-26 Thread loubyansky
There is a target specj-config. Is it executed? It copies stuff from default to specj. 
Can you now figure out why specj is empty? Add some echo logging from the target.


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

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


---
This SF.net email is sponsored by: IT Product Guide on ITManagersJournal
Use IT products in your business? Tell us what you think of them. Give us
Your Opinions, Get Free ThinkGeek Gift Certificates! Click to find out more
http://productguide.itmanagersjournal.com/guidepromo.tmpl
___
JBoss-Development mailing list
[EMAIL PROTECTED]
https://lists.sourceforge.net/lists/listinfo/jboss-development


[JBoss-dev] Patch #1054419 Support for TLS in LdapLoginModule

2004-10-26 Thread Alexei S Yudichev
Just submitted the new patch:
===
For one of my projects I am using user authentication on 
LDAP server. LDAP admins required support for TLS 
transport, which was missing in LdapLoginModule. 
Attached is the patch that enables TLS by intruducing 
two more options: useTls and tlsHostnameVerifierClass. 
The code is almost copied from http://java.sun.com/
products/jndi/tutorial/ldap/ext/starttls.html. Patch is 
made against and tested with JBoss 3.2.5. Requires JDK 
1.4 to compile and operate, however, does not break 
anything if run under 1.3 with useTls omitted or
useTls=false (tested).

Sample login-conf I am using:

   application-policy name=FSLDAP
authentication
login-module code=org.jboss.security.auth.spi.LdapLoginModule 
flag=required 
module-option 
name=java.naming.provider.urlldap://ldap.linux.dom:389//module-option
module-option name=useTlstrue/module-option
module-option 
name=tlsHostnameVerifierClassorg.jboss.security.auth.spi.IgnoringHostnameVerifier/module-option

module-option name=principalDNPrefixuid=/module-option
module-option 
name=principalDNSuffix,ou=people,dc=linux,dc=dom,dc=./module-option
module-option 
name=rolesCtxDNou=groups,dc=linux,dc=dom,dc=./module-option
module-option name=uidAttributeIDmemberUid/module-option
module-option name=roleAttributeIDcn/module-option
/login-module
/authentication
/application-policy

===




---
This SF.net email is sponsored by: IT Product Guide on ITManagersJournal
Use IT products in your business? Tell us what you think of them. Give us
Your Opinions, Get Free ThinkGeek Gift Certificates! Click to find out more
http://productguide.itmanagersjournal.com/guidepromo.tmpl
___
JBoss-Development mailing list
[EMAIL PROTECTED]
https://lists.sourceforge.net/lists/listinfo/jboss-development


[JBoss-dev] [Benchmarking] - Re: Help about SPECjAppServer2002 and jboss.

2004-10-26 Thread terryxian
Sorry I didnt make it clearer. Actually, there are several  default files other than 
the three files just mentioned:

jbossweb-tomcat50.sar/
jmx-console.war/
jboss-local-jdbc.rar
jboss-xa-jdbc.rar
jbossjca-service.xml



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

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


---
This SF.net email is sponsored by: IT Product Guide on ITManagersJournal
Use IT products in your business? Tell us what you think of them. Give us
Your Opinions, Get Free ThinkGeek Gift Certificates! Click to find out more
http://productguide.itmanagersjournal.com/guidepromo.tmpl
___
JBoss-Development mailing list
[EMAIL PROTECTED]
https://lists.sourceforge.net/lists/listinfo/jboss-development


[JBoss-dev] [Benchmarking] - Re: Help about SPECjAppServer2002 and jboss.

2004-10-26 Thread loubyansky
Ok, then paste the following into jboss40-service.xml somewhere inside server element:

  |   !--  --
  |   !-- The deployers... --
  |   !--  --
  | 
  |   !-- EJB deployer, remove to disable EJB behavior--
  |   mbean code=org.jboss.ejb.EJBDeployer name=jboss.ejb:service=EJBDeployer
  | attribute name=VerifyDeploymentstrue/attribute
  | attribute name=ValidateDTDsfalse/attribute
  | attribute name=MetricsEnabledfalse/attribute
  | attribute name=VerifierVerbosetrue/attribute
  | 
  | !--
  | StrictVerifier: Setting this to 'true' will cause all deployments
  | to fail when the Verifier detected a problem with the contained
  | Beans.
  | --
  | attribute name=StrictVerifiertrue/attribute
  | 
  | depends 
optional-attribute-name=TransactionManagerServiceNamejboss:service=TransactionManager/depends
  | depends 
optional-attribute-name=WebServiceNamejboss:service=WebService/depends
  |   /mbean
  |   
  |   !-- EAR deployer, remove if you are not using Web layers --
  |   mbean code=org.jboss.deployment.EARDeployer 
name=jboss.j2ee:service=EARDeployer
  |   /mbean
  | 

The deployers where taken out of jboss-service.xml and deployed as -deployer.xml in 
recent Branch_4_0. That's probably why you have problems.

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

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


---
This SF.net email is sponsored by: IT Product Guide on ITManagersJournal
Use IT products in your business? Tell us what you think of them. Give us
Your Opinions, Get Free ThinkGeek Gift Certificates! Click to find out more
http://productguide.itmanagersjournal.com/guidepromo.tmpl
___
JBoss-Development mailing list
[EMAIL PROTECTED]
https://lists.sourceforge.net/lists/listinfo/jboss-development


[JBoss-dev] [JBossWS] - JBossWS dysfunctional? Can't get DocumentLiteral with Comple

2004-10-26 Thread jlauemoeller
Hi all,

I'm trying to get a very simple Document/Literal sample application to work in JBoss 
4.0 and I'm failing. The application deploys allright and I'm able to view it's start 
page provided by Axis.

However, when I call the only method provided by the service, I get the following 
exception (start-up trace included in case it contains any clues):

10:02:15,631 INFO  [Server] Starting JBoss (MX MicroKernel)...
  | 10:02:15,634 INFO  [Server] Release ID: JBoss [Zion] 4.0.0 (build: 
CVSTag=JBoss_4_0_0 date=200409200418)
  | 10:02:15,635 INFO  [Server] Home Dir: /home/jacob/development/jboss-4.0.0
  | 10:02:15,635 INFO  [Server] Home URL: file:/home/jacob/development/jboss-4.0.0/
  | 10:02:15,636 INFO  [Server] Library URL: 
file:/home/jacob/development/jboss-4.0.0/lib/
  | 10:02:15,638 INFO  [Server] Patch URL: null
  | 10:02:15,639 INFO  [Server] Server Name: jboss-ws
  | 10:02:15,639 INFO  [Server] Server Home Dir: 
/home/jacob/development/jboss-4.0.0/server/jboss-ws
  | 10:02:15,640 INFO  [Server] Server Home URL: 
file:/home/jacob/development/jboss-4.0.0/server/jboss-ws/
  | 10:02:15,641 INFO  [Server] Server Data Dir: 
/home/jacob/development/jboss-4.0.0/server/jboss-ws/data
  | 10:02:15,642 INFO  [Server] Server Temp Dir: 
/home/jacob/development/jboss-4.0.0/server/jboss-ws/tmp
  | 10:02:15,643 INFO  [Server] Server Config URL: 
file:/home/jacob/development/jboss-4.0.0/server/jboss-ws/conf/
  | 10:02:15,643 INFO  [Server] Server Library URL: 
file:/home/jacob/development/jboss-4.0.0/server/jboss-ws/lib/
  | 10:02:15,644 INFO  [Server] Root Deployment Filename: jboss-service.xml
  | 10:02:15,655 INFO  [Server] Starting General Purpose Architecture (GPA)...
  | 10:02:16,874 INFO  [ServerInfo] Java version: 1.5.0,Sun Microsystems Inc.
  | 10:02:16,875 INFO  [ServerInfo] Java VM: Java HotSpot(TM) Server VM 1.5.0-b64,Sun 
Microsystems Inc.
  | 10:02:16,875 INFO  [ServerInfo] OS-System: Linux 2.6.5-7.111-default,i386
  | 10:02:19,083 INFO  [Server] Core system initialized
  | 10:02:29,884 INFO  [Log4jService$URLWatchTimerTask] Configuring from URL: 
resource:log4j.xml
  | 10:02:30,378 INFO  [WebService] Using RMI server codebase: http://linux:8083/
  | 10:02:31,362 INFO  [NamingService] Started jnpPort=1099, rmiPort=1098, backlog=50, 
bindAddress=/0.0.0.0, Client SocketFactory=null, Server [EMAIL PROTECTED]
  | 10:02:58,272 INFO  [Embedded] Catalina naming disabled
  | 10:03:02,176 INFO  [Http11Protocol] Initializing Coyote HTTP/1.1 on 
http-0.0.0.0-8080
  | 10:03:02,380 INFO  [Catalina] Initialization processed in 3585 ms
  | 10:03:02,381 INFO  [StandardService] Starting service jboss.web
  | 10:03:02,432 INFO  [StandardEngine] Starting Servlet Engine: Apache Tomcat/5.0.28
  | 10:03:02,652 INFO  [StandardHost] XML validation disabled
  | 10:03:02,841 INFO  [Catalina] Server startup in 460 ms
  | 10:03:03,647 INFO  [TomcatDeployer] deploy, ctxPath=/jbossmq-httpil, 
warUrl=file:/home/jacob/development/jboss-4.0.0/server/jboss-ws/deploy/jms/jbossmq-httpil.sar/jbossmq-httpil.war/
  | 10:03:05,991 INFO  [ContextConfig] WARNING: Security role name durpublisher used 
in an auth-constraint without being defined in a security-role
  | 10:03:05,992 INFO  [ContextConfig] WARNING: Security role name publisher used in 
an auth-constraint without being defined in a security-role
  | 10:03:05,993 INFO  [ContextConfig] WARNING: Security role name guest used in an 
auth-constraint without being defined in a security-role
  | 10:03:05,994 INFO  [ContextConfig] WARNING: Security role name j2ee used in an 
auth-constraint without being defined in a security-role
  | 10:03:05,995 INFO  [ContextConfig] WARNING: Security role name subscriber used in 
an auth-constraint without being defined in a security-role
  | 10:03:07,860 INFO  [TomcatDeployer] deploy, ctxPath=/ws4ee, 
warUrl=file:/home/jacob/development/jboss-4.0.0/server/jboss-ws/tmp/deploy/tmp9180jboss-ws4ee-exp.war/
  | 10:03:08,839 INFO  [TomcatDeployer] deploy, ctxPath=/invoker, 
warUrl=file:/home/jacob/development/jboss-4.0.0/server/jboss-ws/deploy/http-invoker.sar/invoker.war/
  | 10:03:09,868 INFO  [TomcatDeployer] deploy, ctxPath=/, 
warUrl=file:/home/jacob/development/jboss-4.0.0/server/jboss-ws/deploy/jbossweb-tomcat50.sar/ROOT.war/
  | 10:03:22,885 INFO  [RARDeployment] Required license terms exist view the 
META-INF/ra.xml: 
file:/home/jacob/development/jboss-4.0.0/server/jboss-ws/deploy/jms/jms-ra.rar
  | 10:03:23,816 INFO  [RARDeployment] Required license terms exist view the 
META-INF/ra.xml: 
file:/home/jacob/development/jboss-4.0.0/server/jboss-ws/deploy/jboss-local-jdbc.rar
  | 10:03:24,754 INFO  [RARDeployment] Required license terms exist view the 
META-INF/ra.xml: 
file:/home/jacob/development/jboss-4.0.0/server/jboss-ws/deploy/jboss-xa-jdbc.rar
  | 10:03:30,421 INFO  [ConnectionFactoryBindingService] Bound connection factory for 
resource adapter for ConnectionManager 
'jboss.jca:service=ConnectionFactoryBinding,name=JmsXA to JNDI name 

[JBoss-dev] [Tomcat] - Re: Clustered SSO and REPL_ASYNC TreeCache

2004-10-26 Thread bela
I'd say switch back to *sync* repl for the unit test.

But IMO *async* repl is good enough in the real world.

Bela

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

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


---
This SF.net email is sponsored by: IT Product Guide on ITManagersJournal
Use IT products in your business? Tell us what you think of them. Give us
Your Opinions, Get Free ThinkGeek Gift Certificates! Click to find out more
http://productguide.itmanagersjournal.com/guidepromo.tmpl
___
JBoss-Development mailing list
[EMAIL PROTECTED]
https://lists.sourceforge.net/lists/listinfo/jboss-development


[JBoss-dev] [Benchmarking] - Re: Help about SPECjAppServer2002 and jboss.

2004-10-26 Thread terryxian
I added these stuff into jboss40-service.xml, but got the following errors:

.
2004-10-26 03:29:30,587 INFO  [org.jboss.web.tomcat.tc5.TomcatDeployer] deploy, 
ctxPath=/jmx-console, warUrl=file:/usr/java/jboss/server/specj/deploy/jmx-console.war/
2004-10-26 03:29:31,078 INFO  [org.jboss.web.tomcat.tc5.TomcatDeployer] deploy, 
ctxPath=/emulator, 
warUrl=file:/usr/java/jboss/server/specj/tmp/deploy/tmp42238emulator-exp.war/
2004-10-26 03:29:31,859 INFO  [org.jboss.web.tomcat.tc5.TomcatDeployer] deploy, 
ctxPath=/supplier, 
warUrl=file:/usr/java/jboss/server/specj/tmp/deploy/tmp42239supplier-exp.war/
2004-10-26 03:29:32,395 INFO  [org.jboss.web.tomcat.tc5.TomcatDeployer] deploy, 
ctxPath=/web, warUrl=file:/usr/java/jboss/server/specj/tmp/deploy/tmp42240web-exp.war/
2004-10-26 03:29:34,111 INFO  [org.jboss.deployment.EARDeployer] Init J2EE 
application: file:/usr/java/jboss/server/specj/deploy/SPECjAppServer.ear
2004-10-26 03:29:36,128 INFO  [org.jboss.ejb.EjbModule] Deploying AssemblyEnt  
 2004-10-26 03:29:36,600 WARN  
[org.jboss.ejb.EjbModule] Could not load the 
org.jboss.ejb.plugins.cmp.jdbc2.RelationIntercept
or interceptor 
 2004-10-26 03:29:36,786 ERROR 
[org.jboss.ejb.EjbModule] Initialization failed 
jboss.j2ee:module=mfg.jar,service=EjbModule
org.jboss.deployment.DeploymentException: Missing or invalid Instance Cache (in 
jboss.xml or standardjboss.xml); - nested throwable: 
(java.lang.ClassNotFoundException: No ClassLoaders found for: 
org.jboss.ejb.plugins.PerTxEntityInstanceCache)
at org.jboss.ejb.EjbModule.createInstanceCache(EjbModule.java:1176)
 at 
org.jboss.ejb.EjbModule.createEntityContainer(EjbModule.java:635)
at org.jboss.ejb.EjbModule.createContainer(EjbModule.java:544) 
 at 
org.jboss.ejb.EjbModule.createService(EjbModule.java:330)
at 
org.jboss.system.ServiceMBeanSupport.jbossInternalCreate(ServiceMBeanSupport.java:237) 
  at 
org.jboss.system.ServiceMBeanSupport.jbossInternalLifecycle(ServiceMBeanSupport.java:219)
at sun.reflect.GeneratedMethodAccessor2.invoke(Unknown Source) 
 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=3852686#3852686

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


---
This SF.net email is sponsored by: IT Product Guide on ITManagersJournal
Use IT products in your business? Tell us what you think of them. Give us
Your Opinions, Get Free ThinkGeek Gift Certificates! Click to find out more
http://productguide.itmanagersjournal.com/guidepromo.tmpl
___
JBoss-Development mailing list
[EMAIL PROTECTED]
https://lists.sourceforge.net/lists/listinfo/jboss-development


[JBoss-dev] [Deployers on JBoss (Deployers/JBoss)] - Re: java.lang.NoClassDefFoundError where to put classes ???

2004-10-26 Thread 760613
I added the classes to my ejb-module.jar and it was accessed with no error. But I want 
all my EJBs to access this classes, thats why I want them in my EAR file.

Is there no other way to solve this then putting the classes in each EJB-modul.jars ?

thanks.

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

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


---
This SF.net email is sponsored by: IT Product Guide on ITManagersJournal
Use IT products in your business? Tell us what you think of them. Give us
Your Opinions, Get Free ThinkGeek Gift Certificates! Click to find out more
http://productguide.itmanagersjournal.com/guidepromo.tmpl
___
JBoss-Development mailing list
[EMAIL PROTECTED]
https://lists.sourceforge.net/lists/listinfo/jboss-development


[JBoss-dev] [Benchmarking] - Re: Help about SPECjAppServer2002 and jboss.

2004-10-26 Thread loubyansky
This class should be in the specj/lib/jboss.jar.

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

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


---
This SF.net email is sponsored by: IT Product Guide on ITManagersJournal
Use IT products in your business? Tell us what you think of them. Give us
Your Opinions, Get Free ThinkGeek Gift Certificates! Click to find out more
http://productguide.itmanagersjournal.com/guidepromo.tmpl
___
JBoss-Development mailing list
[EMAIL PROTECTED]
https://lists.sourceforge.net/lists/listinfo/jboss-development


[JBoss-dev] [Benchmarking] - Re: Help about SPECjAppServer2002 and jboss.

2004-10-26 Thread terryxian
oh, I didnt include jboss.jar in my CLASSPATH.  I just included some jar files under 
$JBOSS_HOME/lib in CLASSPATH, such as jboss-common.jar,
So, what else jar files do I  need to add to CLASSPATH?

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

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


---
This SF.net email is sponsored by: IT Product Guide on ITManagersJournal
Use IT products in your business? Tell us what you think of them. Give us
Your Opinions, Get Free ThinkGeek Gift Certificates! Click to find out more
http://productguide.itmanagersjournal.com/guidepromo.tmpl
___
JBoss-Development mailing list
[EMAIL PROTECTED]
https://lists.sourceforge.net/lists/listinfo/jboss-development


[JBoss-dev] [Benchmarking] - Re: Help about SPECjAppServer2002 and jboss.

2004-10-26 Thread loubyansky
What if you just execute deploy-all target?

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

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


---
This SF.net email is sponsored by: IT Product Guide on ITManagersJournal
Use IT products in your business? Tell us what you think of them. Give us
Your Opinions, Get Free ThinkGeek Gift Certificates! Click to find out more
http://productguide.itmanagersjournal.com/guidepromo.tmpl
___
JBoss-Development mailing list
[EMAIL PROTECTED]
https://lists.sourceforge.net/lists/listinfo/jboss-development


[JBoss-dev] [Benchmarking] - Re: Help about SPECjAppServer2002 and jboss.

2004-10-26 Thread terryxian
Execute what?

You mean run the following commands:

   $ANT_HOME/bin/ant -buildfile jboss40.xml deploy-all   ?



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

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


---
This SF.net email is sponsored by: IT Product Guide on ITManagersJournal
Use IT products in your business? Tell us what you think of them. Give us
Your Opinions, Get Free ThinkGeek Gift Certificates! Click to find out more
http://productguide.itmanagersjournal.com/guidepromo.tmpl
___
JBoss-Development mailing list
[EMAIL PROTECTED]
https://lists.sourceforge.net/lists/listinfo/jboss-development


[JBoss-dev] [Benchmarking] - Re: Help about SPECjAppServer2002 and jboss.

2004-10-26 Thread loubyansky
Yes.

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

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


---
This SF.net email is sponsored by: IT Product Guide on ITManagersJournal
Use IT products in your business? Tell us what you think of them. Give us
Your Opinions, Get Free ThinkGeek Gift Certificates! Click to find out more
http://productguide.itmanagersjournal.com/guidepromo.tmpl
___
JBoss-Development mailing list
[EMAIL PROTECTED]
https://lists.sourceforge.net/lists/listinfo/jboss-development


[JBoss-dev] [Benchmarking] - Re: Help about SPECjAppServer2002 and jboss.

2004-10-26 Thread terryxian
Still errors.  Even i ran deploy-all again. After run  run.sh -c specj. The same 
errors came out again. After I remove the stuff you mentioned from 
jboss40-service.xml. The error disappeared. 

The main error is like this:

org.jboss.deployment.DeploymentException: Missing or invalid Instance Cache (in 
jboss.xml or standardjboss.xml); - nested throwable: 
(java.lang.ClassNotFoundException: No ClassLoaders found for: 
org.jboss.ejb.plugins.PerTxEntityInstanceCache)
at org.jboss.ejb.EjbModule.createInstanceCache(EjbModule.java:1176)

So , do I need to change standardjboss.xml also? How to change?
 

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

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


---
This SF.net email is sponsored by: IT Product Guide on ITManagersJournal
Use IT products in your business? Tell us what you think of them. Give us
Your Opinions, Get Free ThinkGeek Gift Certificates! Click to find out more
http://productguide.itmanagersjournal.com/guidepromo.tmpl
___
JBoss-Development mailing list
[EMAIL PROTECTED]
https://lists.sourceforge.net/lists/listinfo/jboss-development


[JBoss-dev] [JBoss Media (EMB)] - If the current status is suitable I will take it over

2004-10-26 Thread rcbeuker
Bill Burke wrote : We had some guys implement an EMB solution about 6 months to a 
year ago.  Not sure how complete or robust it is.  It is distributed with JBoss 4.  If 
you're interested in taking it over give me a buzz.  [EMAIL PROTECTED]
  | 
  | Bill

I have to check if the current available code matches my planned video streaming 
solution. Therefore, I will get the code from CVS. What about the current maintainer 
(Ricardo Arguello)? Does he have some information? If the current status is suitable I 
will take it over, otherwise I have to start a new module?

Roland Beuker

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

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


---
This SF.net email is sponsored by: IT Product Guide on ITManagersJournal
Use IT products in your business? Tell us what you think of them. Give us
Your Opinions, Get Free ThinkGeek Gift Certificates! Click to find out more
http://productguide.itmanagersjournal.com/guidepromo.tmpl
___
JBoss-Development mailing list
[EMAIL PROTECTED]
https://lists.sourceforge.net/lists/listinfo/jboss-development


[JBoss-dev] [JMS on JBoss (JMS/JBoss)] - Where is JMS message stored? And which file is this location

2004-10-26 Thread north
Now we are testing a project, and need to remove JMS message in queue or topic 
manually, but we could not find the file in which message is stored? Would you like 
help us ? thanks a lot.

regard

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

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


---
This SF.net email is sponsored by: IT Product Guide on ITManagersJournal
Use IT products in your business? Tell us what you think of them. Give us
Your Opinions, Get Free ThinkGeek Gift Certificates! Click to find out more
http://productguide.itmanagersjournal.com/guidepromo.tmpl
___
JBoss-Development mailing list
[EMAIL PROTECTED]
https://lists.sourceforge.net/lists/listinfo/jboss-development


[JBoss-dev] [Benchmarking] - Re: Help about SPECjAppServer2002 and jboss.

2004-10-26 Thread loubyansky
You don't need to change anything except for adding deployers to jboss40-service.xml. 
And then run deploy-all. Do you have jboss.jar in server/specj/lib. If not, what did 
you do with the default jboss-4.0?

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

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


---
This SF.net email is sponsored by: IT Product Guide on ITManagersJournal
Use IT products in your business? Tell us what you think of them. Give us
Your Opinions, Get Free ThinkGeek Gift Certificates! Click to find out more
http://productguide.itmanagersjournal.com/guidepromo.tmpl
___
JBoss-Development mailing list
[EMAIL PROTECTED]
https://lists.sourceforge.net/lists/listinfo/jboss-development


[JBoss-dev] [Benchmarking] - Re: Help about SPECjAppServer2002 and jboss.

2004-10-26 Thread terryxian
I have jboss.jar in the directory server/default/lib. I didnt  change anything in 
jboss4.0.
Also, all necessary jar files are in the default/lib directory. Why jboss cannot find 
such class? 
 Do I need change the CLASSPATH variables in SPECjAppServer2002/config/jboss32.env, 
but it seems the result wouldnt change.

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

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


---
This SF.net email is sponsored by: IT Product Guide on ITManagersJournal
Use IT products in your business? Tell us what you think of them. Give us
Your Opinions, Get Free ThinkGeek Gift Certificates! Click to find out more
http://productguide.itmanagersjournal.com/guidepromo.tmpl
___
JBoss-Development mailing list
[EMAIL PROTECTED]
https://lists.sourceforge.net/lists/listinfo/jboss-development


[JBoss-dev] [Benchmarking] - Re: Help about SPECjAppServer2002 and jboss.

2004-10-26 Thread loubyansky
Does jboss.jar in server/specj/lib contain 
org.jboss.ejb.plugins.PerTxEntityInstanceCache?

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

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


---
This SF.net email is sponsored by: IT Product Guide on ITManagersJournal
Use IT products in your business? Tell us what you think of them. Give us
Your Opinions, Get Free ThinkGeek Gift Certificates! Click to find out more
http://productguide.itmanagersjournal.com/guidepromo.tmpl
___
JBoss-Development mailing list
[EMAIL PROTECTED]
https://lists.sourceforge.net/lists/listinfo/jboss-development


[JBoss-dev] [Benchmarking] - Re: Help about SPECjAppServer2002 and jboss.

2004-10-26 Thread terryxian
No, it doesnt contain org.jboss.ejb.plugins.PerTxEntityInstanceCache.   

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

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


---
This SF.net email is sponsored by: IT Product Guide on ITManagersJournal
Use IT products in your business? Tell us what you think of them. Give us
Your Opinions, Get Free ThinkGeek Gift Certificates! Click to find out more
http://productguide.itmanagersjournal.com/guidepromo.tmpl
___
JBoss-Development mailing list
[EMAIL PROTECTED]
https://lists.sourceforge.net/lists/listinfo/jboss-development


[JBoss-dev] [Benchmarking] - Re: Help about SPECjAppServer2002 and jboss.

2004-10-26 Thread terryxian
What I am using is jboss-4.0.0RC1.tar.gz. Which vesion has 
org.jboss.ejb.plugins.PerTxEntityInstanceCache?

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

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


---
This SF.net email is sponsored by: IT Product Guide on ITManagersJournal
Use IT products in your business? Tell us what you think of them. Give us
Your Opinions, Get Free ThinkGeek Gift Certificates! Click to find out more
http://productguide.itmanagersjournal.com/guidepromo.tmpl
___
JBoss-Development mailing list
[EMAIL PROTECTED]
https://lists.sourceforge.net/lists/listinfo/jboss-development


[JBoss-dev] [Benchmarking] - Re: Help about SPECjAppServer2002 and jboss.

2004-10-26 Thread loubyansky
What is the content of jboss.jar!META-INF/manifest.mf that is in server/specj/lib?

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

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


---
This SF.net email is sponsored by: IT Product Guide on ITManagersJournal
Use IT products in your business? Tell us what you think of them. Give us
Your Opinions, Get Free ThinkGeek Gift Certificates! Click to find out more
http://productguide.itmanagersjournal.com/guidepromo.tmpl
___
JBoss-Development mailing list
[EMAIL PROTECTED]
https://lists.sourceforge.net/lists/listinfo/jboss-development


[JBoss-dev] [Benchmarking] - Re: Help about SPECjAppServer2002 and jboss.

2004-10-26 Thread loubyansky
Why don't you use the final release?

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

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


---
This SF.net email is sponsored by: IT Product Guide on ITManagersJournal
Use IT products in your business? Tell us what you think of them. Give us
Your Opinions, Get Free ThinkGeek Gift Certificates! Click to find out more
http://productguide.itmanagersjournal.com/guidepromo.tmpl
___
JBoss-Development mailing list
[EMAIL PROTECTED]
https://lists.sourceforge.net/lists/listinfo/jboss-development


[JBoss-dev] [Benchmarking] - Re: Help about SPECjAppServer2002 and jboss.

2004-10-26 Thread terryxian
The content is :


Manifest-Version: 1.0
Ant-Version: Apache Ant 1.6.1
Created-By: 1.4.2_04-b05 (Sun Microsystems Inc.)
Specification-Title: JBoss
Specification-Version: 4.0.0
Specification-Vendor: JBoss (http://www.jboss.org/)
Implementation-Title: JBoss [Zion]
Implementation-URL: http://www.jboss.org/
Implementation-Version: 4.0.0RC1 (build: CVSTag=JBoss_4_0_0_RC1 date=2
 00407211135)
Implementation-Vendor: JBoss.org
Implementation-Vendor-Id: http://www.jboss.org/


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

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


---
This SF.net email is sponsored by: IT Product Guide on ITManagersJournal
Use IT products in your business? Tell us what you think of them. Give us
Your Opinions, Get Free ThinkGeek Gift Certificates! Click to find out more
http://productguide.itmanagersjournal.com/guidepromo.tmpl
___
JBoss-Development mailing list
[EMAIL PROTECTED]
https://lists.sourceforge.net/lists/listinfo/jboss-development


[JBoss-dev] [Benchmarking] - Re: Help about SPECjAppServer2002 and jboss.

2004-10-26 Thread terryxian
I check the download site. jboss-4.0.0RC1.tar.gz is the newest version.  I am using 
this version now.

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

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


---
This SF.net email is sponsored by: IT Product Guide on ITManagersJournal
Use IT products in your business? Tell us what you think of them. Give us
Your Opinions, Get Free ThinkGeek Gift Certificates! Click to find out more
http://productguide.itmanagersjournal.com/guidepromo.tmpl
___
JBoss-Development mailing list
[EMAIL PROTECTED]
https://lists.sourceforge.net/lists/listinfo/jboss-development


[JBoss-dev] [JBoss Media (EMB)] - Re: MPEG-4 content over a network with EMB

2004-10-26 Thread [EMAIL PROTECTED]
If the current status is not suitable make it so. We don't need multiple 
implementations of the EMB.

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

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


---
This SF.net email is sponsored by: IT Product Guide on ITManagersJournal
Use IT products in your business? Tell us what you think of them. Give us
Your Opinions, Get Free ThinkGeek Gift Certificates! Click to find out more
http://productguide.itmanagersjournal.com/guidepromo.tmpl
___
JBoss-Development mailing list
[EMAIL PROTECTED]
https://lists.sourceforge.net/lists/listinfo/jboss-development


[JBoss-dev] [ jboss-Bugs-1044569 ] CMP beans always looks for the DefaultDS

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

Category: JBossCMP
Group: v4.0
Status: Closed
Resolution: Fixed
Priority: 5
Submitted By: Robert Marcano (robmv)
Assigned to: Alexey Loubyansky (loubyansky)
Summary: CMP beans always looks for the DefaultDS

Initial Comment:
If the DefaultDS is not deployed, an exception is
thrown when deploying CMP beans beacuse the
jboss.jdbc:service=metadata,datasource=DefaultDS is
not found

The problem is caused by the fact that the when jboss
assigns first the default values and the it try apply
the specific datasource assigned on the
jbosscmp-jdbc.xml If the DefaultDS is removed from
standardjbosscmp-jdbc.xml some error are generated.

I am attaching a workaround to this problem, so without
the DefaultDS on standardjbosscmp-jdbc.xml the error is
not generated, but I think that real fix is to change
the order of the CMP bean datasource cofiguration, so
it assign the DefaultDS only if it has no specific
datasource

I previously applied the ConnectionFactoryTemplate.xsl
and related Java classes fixes of another reported bug
that i do not find now, sorry

--

Comment By: Alexey Loubyansky (loubyansky)
Date: 2004-10-26 13:05

Message:
Logged In: YES 
user_id=543482

Fixed. Thanks.

--

Comment By: Robert Marcano (robmv)
Date: 2004-10-11 17:13

Message:
Logged In: YES 
user_id=575475

I found the bug report it is

http://sourceforge.net/tracker/index.php?func=detailaid=1037044group_id=22866atid=376685

--

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


---
This SF.net email is sponsored by: IT Product Guide on ITManagersJournal
Use IT products in your business? Tell us what you think of them. Give us
Your Opinions, Get Free ThinkGeek Gift Certificates! Click to find out more
http://productguide.itmanagersjournal.com/guidepromo.tmpl
___
JBoss-Development mailing list
[EMAIL PROTECTED]
https://lists.sourceforge.net/lists/listinfo/jboss-development


[JBoss-dev] [Benchmarking] - Re: Help about SPECjAppServer2002 and jboss.

2004-10-26 Thread loubyansky
It is the oldest in JBoss-4.0.0 list. The newest is jboss-4.0.0.zip.

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

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


---
This SF.net email is sponsored by: IT Product Guide on ITManagersJournal
Use IT products in your business? Tell us what you think of them. Give us
Your Opinions, Get Free ThinkGeek Gift Certificates! Click to find out more
http://productguide.itmanagersjournal.com/guidepromo.tmpl
___
JBoss-Development mailing list
[EMAIL PROTECTED]
https://lists.sourceforge.net/lists/listinfo/jboss-development


[JBoss-dev] [TODO -- DEVELOPMENT] - Re: 4.0.1 Release Tasks

2004-10-26 Thread loubyansky
Bugs item #1044569, CMP beans always looks for the DefaultDS, Assigned to Alexey, 
Status: fixed in Branch_4_0 and HEAD

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

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


---
This SF.net email is sponsored by: IT Product Guide on ITManagersJournal
Use IT products in your business? Tell us what you think of them. Give us
Your Opinions, Get Free ThinkGeek Gift Certificates! Click to find out more
http://productguide.itmanagersjournal.com/guidepromo.tmpl
___
JBoss-Development mailing list
[EMAIL PROTECTED]
https://lists.sourceforge.net/lists/listinfo/jboss-development


[JBoss-dev] [Benchmarking] - Re: Help about SPECjAppServer2002 and jboss.

2004-10-26 Thread terryxian
I just tried  jboss-4.0.zip. After executing deploy-all comand, then ran specj.
The errors disappeared, but got  another error:

2004-10-26 05:26:59,052 INFO  [org.jboss.web.WebService] Using RMI server codebase: 
http://pcp060362pcs.unl.edu:8083/
2004-10-26 05:27:00,696 INFO  [org.jboss.naming.NamingService] Started jnpPort=1100, 
rmiPort=0, backlog=50, bindAddress=null, Client SocketFactory=null, Server [EMAIL 
PROTECTED]
2004-10-26 05:27:03,239 ERROR [org.jboss.deployment.MainDeployer] could not create 
deployment: file:/usr/java/jboss/server/specj/deploy/ear-deployer.xml
org.jboss.deployment.DeploymentException: Trying to install an already registered 
mbean: jboss.j2ee:service=EARDeployer
at org.jboss.system.ServiceCreator.install(ServiceCreator.java:71)
.

Thanks a lot for your help. I think I am close to success!

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

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


---
This SF.net email is sponsored by: IT Product Guide on ITManagersJournal
Use IT products in your business? Tell us what you think of them. Give us
Your Opinions, Get Free ThinkGeek Gift Certificates! Click to find out more
http://productguide.itmanagersjournal.com/guidepromo.tmpl
___
JBoss-Development mailing list
[EMAIL PROTECTED]
https://lists.sourceforge.net/lists/listinfo/jboss-development


[JBoss-dev] [Benchmarking] - Re: Help about SPECjAppServer2002 and jboss.

2004-10-26 Thread terryxian
I dont know the whether or not the above error is neglible. 

I used grep and found EARDeployer is included in both boss-service.xml and 
ear-deployer.xml

[EMAIL PROTECTED] specj]$ grep EARDeployer */*
conf/jboss-service.xml:  
deploy/ear-deployer.xml:   mbean code=org.jboss.deployment.EARDeployer
deploy/ear-deployer.xml:  name=jboss.j2ee:service=EARDeployer
 
I guess specj/conf/jboss-service.xml already registered such service, so 
deploy/ear-deployer.xml cannot register again: Is that true? 

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

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


---
This SF.net email is sponsored by: IT Product Guide on ITManagersJournal
Use IT products in your business? Tell us what you think of them. Give us
Your Opinions, Get Free ThinkGeek Gift Certificates! Click to find out more
http://productguide.itmanagersjournal.com/guidepromo.tmpl
___
JBoss-Development mailing list
[EMAIL PROTECTED]
https://lists.sourceforge.net/lists/listinfo/jboss-development


[JBoss-dev] [JBossWS] - Re: Difference between JBoss.NET and JBossWS

2004-10-26 Thread tdiesler
Do you have time to read the wiki ;-)

http://www.jboss.org/wiki/Wiki.jsp?page=JBoss.NET

The binaries for JBoss.Net are distributed under ${jboss.home}/docs/examples/jboss.net 



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

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


---
This SF.net email is sponsored by: IT Product Guide on ITManagersJournal
Use IT products in your business? Tell us what you think of them. Give us
Your Opinions, Get Free ThinkGeek Gift Certificates! Click to find out more
http://productguide.itmanagersjournal.com/guidepromo.tmpl
___
JBoss-Development mailing list
[EMAIL PROTECTED]
https://lists.sourceforge.net/lists/listinfo/jboss-development


[JBoss-dev] [JBossWS] - Re: JBossWS dysfunctional? Can't get DocumentLiteral with Co

2004-10-26 Thread tdiesler
Is there a type mapping missing? Have a look at the generated wsdd in 
${jboss.server.data.dir}/wsdl

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

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


---
This SF.net email is sponsored by: IT Product Guide on ITManagersJournal
Use IT products in your business? Tell us what you think of them. Give us
Your Opinions, Get Free ThinkGeek Gift Certificates! Click to find out more
http://productguide.itmanagersjournal.com/guidepromo.tmpl
___
JBoss-Development mailing list
[EMAIL PROTECTED]
https://lists.sourceforge.net/lists/listinfo/jboss-development


[JBoss-dev] [JBossWS] - Re: Switching communication direction

2004-10-26 Thread tdiesler
A JBossWS client can only ever initiate the request/response pair.  However, its easy 
to setup two jboss instances to do what you want, both acting as WS client and server. 
Remember, jboss can be very leight weight (microkernal + deployed services).

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

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


---
This SF.net email is sponsored by: IT Product Guide on ITManagersJournal
Use IT products in your business? Tell us what you think of them. Give us
Your Opinions, Get Free ThinkGeek Gift Certificates! Click to find out more
http://productguide.itmanagersjournal.com/guidepromo.tmpl
___
JBoss-Development mailing list
[EMAIL PROTECTED]
https://lists.sourceforge.net/lists/listinfo/jboss-development


[JBoss-dev] [JBossWS] - Re: DII client complains about serializer

2004-10-26 Thread tdiesler
The JAXRPC DII API is agnostic about ws4ee artifacts like the jaxrpc-mapping.xml.

If you must use DII, try 

  | org.jboss.webservice.client.ServiceFactoryImpl factory = 
(org.jboss.webservice.client.ServiceFactoryImpl)ServiceFactory.newInstance();
  | service.createService(wsdlLocation, mappingLocation, ws4eeMetaData, serviceName, 
portName)
  | 

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

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


---
This SF.net email is sponsored by: IT Product Guide on ITManagersJournal
Use IT products in your business? Tell us what you think of them. Give us
Your Opinions, Get Free ThinkGeek Gift Certificates! Click to find out more
http://productguide.itmanagersjournal.com/guidepromo.tmpl
___
JBoss-Development mailing list
[EMAIL PROTECTED]
https://lists.sourceforge.net/lists/listinfo/jboss-development


[JBoss-dev] [Benchmarking] - Re: Help about SPECjAppServer2002 and jboss.

2004-10-26 Thread loubyansky
So now remove the deployers you added to jboss40-service.xml.

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

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


---
This SF.net email is sponsored by: IT Product Guide on ITManagersJournal
Use IT products in your business? Tell us what you think of them. Give us
Your Opinions, Get Free ThinkGeek Gift Certificates! Click to find out more
http://productguide.itmanagersjournal.com/guidepromo.tmpl
___
JBoss-Development mailing list
[EMAIL PROTECTED]
https://lists.sourceforge.net/lists/listinfo/jboss-development


[JBoss-dev] [Benchmarking] - Re: Help about SPECjAppServer2002 and jboss.

2004-10-26 Thread terryxian
Okay, Now I removed the deployers I just added in jboss-service.xml. Now I got the 
errors like:
2004-10-26 06:40:28,609 WARN  
[org.jboss.resource.connectionmanager.JBossManagedConnectionPool] Throwable while 
attempting to get a new connection: null
org.jboss.resource.JBossResourceException: Could not create connection; - nested 
throwable: (org.jboss.resource.JBossResourceException: Failed to register driver for: 
oracle.jdbc.driver.OracleDriver; - nested throwable: 
(java.lang.ClassNotFoundException: No ClassLoaders found for: 
oracle.jdbc.driver.OracleDriver))
at 
org.jboss.resource.adapter.jdbc.local.LocalManagedConnectionFactory.createManagedConnection(LocalManagedConnectionFactory.java:161)


I guess it is caused by that I modified *db.properties in a wrong way:

dbURL = jdbc:oracle:oci:@SPEC.UNL.EDU 
dbDriver = oracle.jdbc.driver.OracleDriver
jdbcVersion = 2

where  SPEC.UNL.EDU  is tnsname to the actual database (localhost:1521:spec)
I dont know the parameter 'dbDriver' should be 'oracle.jdbc.driver.OracleDriver' or  
'oracle.jdbc.OracleDriver'




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

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


---
This SF.net email is sponsored by: IT Product Guide on ITManagersJournal
Use IT products in your business? Tell us what you think of them. Give us
Your Opinions, Get Free ThinkGeek Gift Certificates! Click to find out more
http://productguide.itmanagersjournal.com/guidepromo.tmpl
___
JBoss-Development mailing list
[EMAIL PROTECTED]
https://lists.sourceforge.net/lists/listinfo/jboss-development


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

2004-10-26 Thread qa

View results here -> http://cruisecontrol.jboss.com/cc/buildresults/jboss-4.0?log=log20041026060001Lbuild.96
BUILD COMPLETE-build.96Date of build:10/26/2004 06:00:01Time to build:82 minutes 58 secondsLast changed:10/26/2004 05:28:38Last log entry:fixed [ 1044569 ] CMP beans always looks for the DefaultDS




   Unit Tests: (1975)   Total Errors and Failures: (31)testAllTx_RWLockorg.jboss.test.cache.stress.EvictionLocalStressTestCasetestAllTx_RWLockorg.jboss.test.cache.stress.LocalStressTestCasetestWarXmlOverridesorg.jboss.test.classloader.test.ScopingUnitTestCasetestStateReplicationorg.jboss.test.cluster.test.DistributedStateTestCasetestServletSessionLoadBalancingorg.jboss.test.cluster.test.WebSessionTestCaseunknownorg.jboss.test.jbossmq.test.LargeMessageUnitTestCaseunknownorg.jboss.test.jbossmq.test.OILConnectionUnitTestCasetestMCFDefaultValuesorg.jboss.test.jca.test.DeploymentUnitTestCasetestHaParitionNameorg.jboss.test.naming.test.SimpleUnitTestCasetestDiscoveryPortorg.jboss.test.naming.test.SimpleUnitTestCasetestEvictionorg.jboss.test.cache.test.eviction.ReplicatedLRUPolicyUnitTestCasetestEvictionReplicationorg.jboss.test.cache.test.eviction.ReplicatedLRUPolicyUnitTestCasetestStateTransferorg.jboss.test.cache.test.replicated.AsyncUnitTestCasetestSyncReplorg.jboss.test.cache.test.replicated.AsyncUnitTestCasetestSyncReplorg.jboss.test.cache.test.replicated.SyncTxUnitTestCasetestASyncReplorg.jboss.test.cache.test.replicated.SyncTxUnitTestCasetestPutorg.jboss.test.cache.test.replicated.SyncTxUnitTestCasetestPutTxorg.jboss.test.cache.test.replicated.SyncTxUnitTestCasetestStateReplicationorg.jboss.test.cluster.test.DRMTestCasetestServletSessionFailoverorg.jboss.test.cluster.test.WebSessionTestCasetestCounterSimpleNotificationorg.jboss.test.jbossmx.compliance.monitor.BasicTestCasetestCounterDifferenceNotificationorg.jboss.test.jbossmx.compliance.monitor.BasicTestCasetestGaugeSimpleBothNotificationorg.jboss.test.jbossmx.compliance.monitor.BasicTestCasetestGaugeSimpleHighNotificationorg.jboss.test.jbossmx.compliance.monitor.BasicTestCasetestGaugeSimpleLowNotificationorg.jboss.test.jbossmx.compliance.monitor.BasicTestCasetestStringBothNotificationorg.jboss.test.jbossmx.compliance.monitor.BasicTestCasetestStringMatchNotificationorg.jboss.test.jbossmx.compliance.monitor.BasicTestCasetestStringDifferNotificationorg.jboss.test.jbossmx.compliance.monitor.BasicTestCasetestNameChangesorg.jboss.test.naming.test.SimpleUnitTestCasetestMDBRunAsorg.jboss.test.security.test.EJBSpecUnitTestCasetestMDBTimerorg.jboss.test.timer.test.BasicTimerUnitTestCase
Modifications since last build:(6)1.25.2.3modifiedloubyanskyserver/src/main/org/jboss/ejb/plugins/cmp/jdbc/metadata/JDBCRelationMetaData.javafixed [ 1044569 ] CMP beans always looks for the DefaultDS1.42.2.2modifiedloubyanskyserver/src/main/org/jboss/ejb/plugins/cmp/jdbc/metadata/JDBCEntityMetaData.javafixed [ 1044569 ] CMP beans always looks for the DefaultDS1.26.4.1modifiedloubyanskyserver/src/main/org/jboss/ejb/plugins/cmp/jdbc/JDBCCommandFactory.javafixed [ 1044569 ] CMP beans always looks for the DefaultDS1.36.2.1modifiedloubyanskyserver/src/main/org/jboss/ejb/plugins/cmp/jdbc/JDBCLoadEntityCommand.javafixed [ 1044569 ] CMP beans always looks for the DefaultDS1.31.2.1modifiedloubyanskyserver/src/main/org/jboss/ejb/plugins/cmp/jdbc/JDBCLoadRelationCommand.javafixed [ 1044569 ] CMP beans always looks for the DefaultDS1.50.2.1modifiedloubyanskyserver/src/main/org/jboss/ejb/plugins/cmp/jdbc/JDBCStartCommand.javafixed [ 1044569 ] CMP beans always looks for the DefaultDS



[JBoss-dev] [JBossWS] - Re: JBossWS dysfunctional? Can't get DocumentLiteral with Co

2004-10-26 Thread jlauemoeller
Hi Thomas,

Thanks for looking into this. The WSDD generated by JBoss looks like this:

deployment
  |  xmlns='http://xml.apache.org/axis/wsdd/'
  |  xmlns:java='http://xml.apache.org/axis/wsdd/providers/java'
  |  xmlns:soap='http://schemas.xmlsoap.org/soap/encoding/'
  |  xmlns:xsi='http://www.w3.org/2000/10/XMLSchema-instance'
  |  xmlns:xsd='http://www.w3.org/2001/XMLSchema'
  | 
  | service name='WeatherService' style='document' use='literal' provider='Handler'
  | 
  |   parameter name='webservice-identifier' 
value='WeatherService.war#WeatherServiceJSE' /
  |   parameter name='handlerClass' 
value='org.jboss.webservice.server.InvokerProviderJSE' /
  | 
  |   operation name='getForecast' qname='ns1:getForecast' 
returnQName='ns1:GetForecastResponseDocument' 
returnType='ns1:GetForecastResponseDocument' 
xmlns:ns1='http://jbossws/weatherservice/service/1.0' 
  | parameter name='request' qname='ns1:GetForecastRequestDocument' mode='IN' 
type='ns1:GetForecastRequestDocument' 
xmlns:ns1='http://jbossws/weatherservice/service/1.0' /
  | fault name='errorMessage' qname='ns1:ForecastNotAvailableDetails' 
type='ns1:ForecastNotAvailableDetails' 
class='jbossws.server.ws.ForecastNotAvailableDetails' 
xmlns:ns1='http://jbossws/weatherservice/service/1.0' /
  |   /operation
  | 
  |   typeMapping
  | qname='ns1:GetForecastRequestDocument' 
xmlns:ns1='http://jbossws/weatherservice/service/1.0'
  | type='java:jbossws.server.ws.GetForecastRequestDocument'
  | serializer='org.apache.axis.encoding.ser.BeanSerializerFactory'
  | deserializer='org.apache.axis.encoding.ser.BeanDeserializerFactory'
  | encodingStyle=''
  |   /typeMapping
  | 
  |   typeMapping
  | qname='ns1:GetForecastResponseDocument' 
xmlns:ns1='http://jbossws/weatherservice/service/1.0'
  | type='java:jbossws.server.ws.GetForecastResponseDocument'
  | serializer='org.apache.axis.encoding.ser.BeanSerializerFactory'
  | deserializer='org.apache.axis.encoding.ser.BeanDeserializerFactory'
  | encodingStyle=''
  |   /typeMapping
  | 
  | 
  | /service
  | /deployment
  | 

This is somewhat different from the WSDD file generated by Axis as part of the build 
step:

!-- Use this file to deploy some handlers/chains and services  --
  | !-- Two ways to do this:   --
  | !--   java org.apache.axis.client.AdminClient deploy.wsdd  --
  | !--  after the axis server is running  --
  | !-- or --
  | !--   java org.apache.axis.utils.Admin client|server deploy.wsdd   --
  | !--  from the same directory that the Axis engine runs --
  | 
  | deployment
  | xmlns=http://xml.apache.org/axis/wsdd/;
  | xmlns:java=http://xml.apache.org/axis/wsdd/providers/java;
  | 
  |   !-- Services from WeatherService WSDL service --
  | 
  |   service name=WeatherServicePort provider=java:RPC style=document 
use=literal
  |   parameter name=wsdlTargetNamespace 
value=http://jbossws/weatherservice/service/1.0/
  |   parameter name=wsdlServiceElement value=WeatherService/
  |   parameter name=wsdlServicePort value=WeatherServicePort/
  |   parameter name=className 
value=jbossws.server.ws.WeatherServiceSoapBindingImpl/
  |   parameter name=wsdlPortType value=WeatherServicePortType/
  |   operation name=getForecast qname=getForecast 
returnQName=retNS:GetForecastResponseDocument 
xmlns:retNS=http://jbossws/weatherservice/service/1.0; 
returnType=rtns:GetForecastResponseDocument 
xmlns:rtns=http://jbossws/weatherservice/service/1.0; 
  | parameter qname=pns:GetForecastRequestDocument 
xmlns:pns=http://jbossws/weatherservice/service/1.0; 
type=tns:GetForecastRequestDocument 
xmlns:tns=http://jbossws/weatherservice/service/1.0/
  | fault name=ForecastNotAvailableFault 
qname=fns:ForecastNotAvailableDetails 
xmlns:fns=http://jbossws/weatherservice/service/1.0; 
class=jbossws.server.ws.ForecastNotAvailableDetails 
type=tns:ForecastNotAvailableDetails 
xmlns:tns=http://jbossws/weatherservice/service/1.0/
  |   /operation
  |   parameter name=allowedMethods value=getForecast/
  | 
  |   typeMapping
  | xmlns:ns=http://jbossws/weatherservice/forecast/1.0;
  | qname=ns:Day
  | type=java:jbossws.server.ws.Day
  | serializer=org.apache.axis.encoding.ser.BeanSerializerFactory
  | deserializer=org.apache.axis.encoding.ser.BeanDeserializerFactory
  | encodingStyle=
  |   /
  |   typeMapping
  | xmlns:ns=http://jbossws/weatherservice/service/1.0;
  | qname=ns:GetForecastRequestDocument
  | type=java:jbossws.server.ws.GetForecastRequestDocument
  | serializer=org.apache.axis.encoding.ser.BeanSerializerFactory
  | deserializer=org.apache.axis.encoding.ser.BeanDeserializerFactory
  | encodingStyle=
  |   /
  |   typeMapping
  | 

[JBoss-dev] [Benchmarking] - Re: Help about SPECjAppServer2002 and jboss.

2004-10-26 Thread terryxian
Oops, I forgot copying jdbc driver files into $JBOSS_HOME..

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

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


---
This SF.net email is sponsored by: IT Product Guide on ITManagersJournal
Use IT products in your business? Tell us what you think of them. Give us
Your Opinions, Get Free ThinkGeek Gift Certificates! Click to find out more
http://productguide.itmanagersjournal.com/guidepromo.tmpl
___
JBoss-Development mailing list
[EMAIL PROTECTED]
https://lists.sourceforge.net/lists/listinfo/jboss-development


[JBoss-dev] [JBossWS] - Re: JBossWS dysfunctional? Can't get DocumentLiteral with Co

2004-10-26 Thread tdiesler
You should not use the axis tools with ws4ee, use JWSDP-1.4 wscompile instead. It 
generates the ws4ee specific jaxrpc-mapping.xml file, which Axis' java2wsdl does not.

The mapping file is where the java - wsdl mapping is defined. 

It seems you are not deploying with a valid mapping file. Have you read the JBossWS 
wiki?

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

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


---
This SF.net email is sponsored by: IT Product Guide on ITManagersJournal
Use IT products in your business? Tell us what you think of them. Give us
Your Opinions, Get Free ThinkGeek Gift Certificates! Click to find out more
http://productguide.itmanagersjournal.com/guidepromo.tmpl
___
JBoss-Development mailing list
[EMAIL PROTECTED]
https://lists.sourceforge.net/lists/listinfo/jboss-development


[JBoss-dev] [Benchmarking] - Re: Help about SPECjAppServer2002 and jboss.

2004-10-26 Thread terryxian
I just copied jdbc drivers to specj/lib.  Now ClassNotFound didnt come out anymore. 
But a new errors appears:

004-10-26 07:09:34,658 ERROR [org.jboss.ejb.txtimer.DatabasePersistencePolicy] 
Starting failed jboss.ejb:persistencePolicy=
database,service=EJBTimerService
java.sql.SQLException: ORA-00902: invalid datatype

at oracle.jdbc.dbaccess.DBError.throwSqlException(DBError.java:134)
at oracle.jdbc.oci8.OCIDBAccess.check_error(OCIDBAccess.java:2337)
..

l have modified *db.properties as follows:

dbURL = jdbc:oracle:[EMAIL PROTECTED]:1521:spec
dbDriver = oracle.jdbc.driver.OracleDriver
jdbcVersion = 2

And jboss40-oracle-ds.xml is changed as follows:
  
connection-urljdbc:oracle:thin:@localhost:1521:spec/connection-url
driver-classoracle.jdbc.driver.OracleDriver/driver-class
user-namespec/user-name
spec
(The database's SID is spec, username and passwd are both spec)
How to solve the problem?
Thank you very much!

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

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


---
This SF.net email is sponsored by: IT Product Guide on ITManagersJournal
Use IT products in your business? Tell us what you think of them. Give us
Your Opinions, Get Free ThinkGeek Gift Certificates! Click to find out more
http://productguide.itmanagersjournal.com/guidepromo.tmpl
___
JBoss-Development mailing list
[EMAIL PROTECTED]
https://lists.sourceforge.net/lists/listinfo/jboss-development


[JBoss-dev] [JBossWS] - Re: NullpointerException in Axis

2004-10-26 Thread robisz
Excuse me for reposting the question but I haven't got any 
answer yet.
Is document/literal-wrapped supported by J2EE 1.4 or not?
In doc/lit style could my SEI methods have more than one arguments?

I think the answer is yes, but it doesn't work in JBoss...

Does anybody know whats the truth about it?

Thx

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

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


---
This SF.net email is sponsored by: IT Product Guide on ITManagersJournal
Use IT products in your business? Tell us what you think of them. Give us
Your Opinions, Get Free ThinkGeek Gift Certificates! Click to find out more
http://productguide.itmanagersjournal.com/guidepromo.tmpl
___
JBoss-Development mailing list
[EMAIL PROTECTED]
https://lists.sourceforge.net/lists/listinfo/jboss-development


[JBoss-dev] [JBossWS] - Re: NullpointerException in Axis

2004-10-26 Thread tdiesler
 Is document/literal-wrapped supported by J2EE 1.4 or not? 

It is not covered by J2EE spec, JBossWS does not support it.

 In doc/lit style could my SEI methods have more than one arguments?

This is poorly supported in Axis, which JBossWS still uses internally. In jboss-4.0.1 
there will probably be better support for it. Until then, you should use wrapper 
objects for multiple parameters.

The jboss-4.0.1 release is scheduled for next week.



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

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


---
This SF.net email is sponsored by: IT Product Guide on ITManagersJournal
Use IT products in your business? Tell us what you think of them. Give us
Your Opinions, Get Free ThinkGeek Gift Certificates! Click to find out more
http://productguide.itmanagersjournal.com/guidepromo.tmpl
___
JBoss-Development mailing list
[EMAIL PROTECTED]
https://lists.sourceforge.net/lists/listinfo/jboss-development


[JBoss-dev] [JBossCache] - FIFOPolicy

2004-10-26 Thread kvistgaard
I have implemented a simple FIFO eviction policy based on the LRU implementation and 
it seems to work OK. However the implementation could be simplified a great deal if 
the LRU classes were made more friendly for extension.

I've used the same configuration as the LRU implementation, but for FIFO an attribute 
named 'timeToLive' may be more appropriate than 'timeToIdleSeconds'. The advantage of 
having the same configuration for both policies is obvisously that the policies can 
easily be swapped.

I'd be hapy to supply a patch with the FIFOPolicy and the required changes to the LRU 
classes if there's any interest.


Regards and keep up with the excellent work!

Morten


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

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


---
This SF.net email is sponsored by: IT Product Guide on ITManagersJournal
Use IT products in your business? Tell us what you think of them. Give us
Your Opinions, Get Free ThinkGeek Gift Certificates! Click to find out more
http://productguide.itmanagersjournal.com/guidepromo.tmpl
___
JBoss-Development mailing list
[EMAIL PROTECTED]
https://lists.sourceforge.net/lists/listinfo/jboss-development


[JBoss-dev] [JBossWS] - The requested resource (/jboss-net/servlet/AxisServlet) is

2004-10-26 Thread thoste
As far as I understand it I can check if all necessary WebService components are up 
and accessible by typing into the browser the following URL:

http://localhost:8080/jboss-net/servlet/AxisServlet

This should work even if I did not deploy a real webservice.

However when I tried to call this URL I got (from JBoss 3.2.5)
the following response page:

HTTP Status 404 - /jboss-net/servlet/AxisServlet
type Status report
message /jboss-net/servlet/AxisServlet
description The requested resource (/jboss-net/servlet/AxisServlet) is not available.

Why? 

This happens when I deploy a hellow orld webservice too.
JBoss runs fine for JSPs and EJBs.
I observed that axis.jar is located in the all subdirectory.
In the past I deployed jars and wars for JSPs  and EJBs into
the default subdirectory.

Do I have to pass a parameter to JBoss during the start in order to enable the 
Webservice feature inside?

Thomas



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

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


---
This SF.net email is sponsored by: IT Product Guide on ITManagersJournal
Use IT products in your business? Tell us what you think of them. Give us
Your Opinions, Get Free ThinkGeek Gift Certificates! Click to find out more
http://productguide.itmanagersjournal.com/guidepromo.tmpl
___
JBoss-Development mailing list
[EMAIL PROTECTED]
https://lists.sourceforge.net/lists/listinfo/jboss-development


[JBoss-dev] [JBossCache] - Re: FIFOPolicy

2004-10-26 Thread bela
Hi Morton,

why don't you contact Ben Wang and send him your changes, so we can integrate this 
with JBossCache.
Thanks for your contribution !

Bela

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

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


---
This SF.net email is sponsored by: IT Product Guide on ITManagersJournal
Use IT products in your business? Tell us what you think of them. Give us
Your Opinions, Get Free ThinkGeek Gift Certificates! Click to find out more
http://productguide.itmanagersjournal.com/guidepromo.tmpl
___
JBoss-Development mailing list
[EMAIL PROTECTED]
https://lists.sourceforge.net/lists/listinfo/jboss-development


[JBoss-dev] [Deployers on JBoss (Deployers/JBoss)] - ERROR [MainDeployer] could not create deployment

2004-10-26 Thread craig1980
Hi all; i'm using JBoss 3.2.5, wfmOpen 1.2 (open source WfMS), JBuilder 2005; i have 
created a my web app and its related .war file, when i deploy it i have this error:

anonymous wrote : C:\j2sdk1.4.2_05\bin\javaw -classpath 
C:\jboss-3.2.5\bin\run.jar;C:\Borland\JBuilder2005\jdk1.4\lib\tools.jar  
-Djava.io.tmpdir=C:/jboss-3.2.5/server/default/tmp  
-Djava.endorsed.dirs=C:/wfmopen-1.2/lib/wfdemo/endorsed org.jboss.Main  -c default
  | 14:49:35,490 INFO  [Server] Starting JBoss (MX MicroKernel)...
  | 14:49:35,500 INFO  [Server] Release ID: JBoss [WonderLand] 3.2.5 (build: 
CVSTag=JBoss_3_2_5 date=200406251954)
  | 14:49:35,500 INFO  [Server] Home Dir: C:\jboss-3.2.5
  | 14:49:35,500 INFO  [Server] Home URL: file:/C:/jboss-3.2.5/
  | 14:49:35,500 INFO  [Server] Library URL: file:/C:/jboss-3.2.5/lib/
  | 14:49:35,510 INFO  [Server] Patch URL: null
  | 14:49:35,510 INFO  [Server] Server Name: default
  | 14:49:35,510 INFO  [Server] Server Home Dir: C:\jboss-3.2.5\server\default
  | 14:49:35,540 INFO  [Server] Server Home URL: file:/C:/jboss-3.2.5/server/default/
  | 14:49:35,540 INFO  [Server] Server Data Dir: C:\jboss-3.2.5\server\default\data
  | 14:49:35,540 INFO  [Server] Server Temp Dir: C:\jboss-3.2.5\server\default\tmp
  | 14:49:35,540 INFO  [Server] Server Config URL: 
file:/C:/jboss-3.2.5/server/default/conf/
  | 14:49:35,540 INFO  [Server] Server Library URL: 
file:/C:/jboss-3.2.5/server/default/lib/
  | 14:49:35,540 INFO  [Server] Root Deployment Filename: jboss-service.xml
  | 14:49:35,540 INFO  [Server] Starting General Purpose Architecture (GPA)...
  | 14:49:35,861 INFO  [ServerInfo] Java version: 1.4.2_05,Sun Microsystems Inc.
  | 14:49:35,861 INFO  [ServerInfo] Java VM: Java HotSpot(TM) Client VM 
1.4.2_05-b04,Sun Microsystems Inc.
  | 14:49:35,861 INFO  [ServerInfo] OS-System: Windows XP 5.1,x86
  | 14:49:36,562 INFO  [Server] Core system initialized
  | 14:49:39,306 INFO  [Log4jService$URLWatchTimerTask] Configuring from URL: 
resource:log4j.xml
  | 14:49:39,766 INFO  [WebService] Using RMI server codebase: 
http://PORT-IMMEDIATA:8083/
  | 14:49:39,916 INFO  [NamingService] Started jnpPort=1099, rmiPort=1098, backlog=50, 
bindAddress=/0.0.0.0, Client SocketFactory=null, Server [EMAIL PROTECTED]
  | 14:49:45,094 INFO  [RARMetaData] Loading JBoss Resource Adapter for JDBC 2 XA 
drivers
  | 14:49:45,104 INFO  [RARMetaData] Required license terms present. See deployment 
descriptor.
  | 14:49:45,955 INFO  [STDOUT] server.properties not found, using command line or 
default properties
  | 14:49:45,965 INFO  [STDOUT] Opening database: 
C:\jboss-3.2.5\server\default\data\hypersonic\default
  | 14:49:45,965 INFO  [STDOUT] HSQLDB server 1.7.1 is running
  | 14:49:45,965 INFO  [STDOUT] Use SHUTDOWN to close normally. Use [Ctrl]+[C] to 
abort abruptly
  | 14:49:46,516 INFO  [STDOUT] Tue Oct 26 14:49:46 CEST 2004 Listening for 
connections ...
  | 14:49:48,198 INFO  [Embedded] Catalina naming disabled
  | 14:49:48,809 INFO  [Http11Protocol] Initializing Coyote HTTP/1.1 on 
http-0.0.0.0-8080
  | 14:49:48,849 INFO  [Catalina] Initialization processed in 571 ms
  | 14:49:48,849 INFO  [StandardService] Starting service jboss.web
  | 14:49:48,869 INFO  [StandardEngine] Starting Servlet Engine: Apache Tomcat/5.0.26
  | 14:49:48,879 INFO  [StandardHost] XML validation disabled
  | 14:49:48,919 INFO  [Catalina] Server startup in 70 ms
  | 14:49:49,020 WARN  [DeploymentInfo] Only the root deployment can set the loader 
repository, ingoring config=null
  | 14:49:49,060 INFO  [TomcatDeployer] deploy, ctxPath=/invoker, 
warUrl=file:/C:/jboss-3.2.5/server/default/deploy/http-invoker.sar/invoker.war/
  | 14:49:50,722 WARN  [DeploymentInfo] Only the root deployment can set the loader 
repository, ingoring config=null
  | 14:49:50,732 INFO  [TomcatDeployer] deploy, ctxPath=, 
warUrl=file:/C:/jboss-3.2.5/server/default/deploy/jbossweb-tomcat50.sar/ROOT.war/
  | 14:49:50,952 WARN  [DeploymentInfo] Only the root deployment can set the loader 
repository, ingoring config=null
  | 14:49:50,972 INFO  [TomcatDeployer] deploy, ctxPath=/jbossmq-httpil, 
warUrl=file:/C:/jboss-3.2.5/server/default/deploy/jms/jbossmq-httpil.sar/jbossmq-httpil.war/
  | 14:49:51,173 INFO  [JmsXA] Bound connection factory for resource adapter for 
ConnectionManager 'jboss.jca:service=TxCM,name=JmsXA to JNDI name 'java:/JmsXA'
  | 14:49:51,183 INFO  [OracleDS] Bound connection factory for resource adapter for 
ConnectionManager 'jboss.jca:service=LocalTxCM,name=OracleDS to JNDI name 
'java:/OracleDS'
  | 14:49:51,203 INFO  [DefaultDS] Bound connection factory for resource adapter for 
ConnectionManager 'jboss.jca:service=LocalTxCM,name=DefaultDS to JNDI name 
'java:/DefaultDS'
  | 14:49:51,723 INFO  [A] Bound to JNDI name: queue/A
  | 14:49:51,733 INFO  [B] Bound to JNDI name: queue/B
  | 14:49:51,733 INFO  [C] Bound to JNDI name: queue/C
  | 14:49:51,743 INFO  [D] Bound to JNDI name: queue/D
  | 14:49:51,743 INFO  [ex] Bound to JNDI name: 

[JBoss-dev] [Benchmarking] - Re: Help about SPECjAppServer2002 and jboss.

2004-10-26 Thread loubyansky
This is EJB timer service issue that should be looked at. You can ignore it. It does 
not affect the benchmark.
Or you can open the ejb-deployer.xml and configure the timer service with noop 
persistence policy (follow the comments in the deployer.xml).

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

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


---
This SF.net email is sponsored by: IT Product Guide on ITManagersJournal
Use IT products in your business? Tell us what you think of them. Give us
Your Opinions, Get Free ThinkGeek Gift Certificates! Click to find out more
http://productguide.itmanagersjournal.com/guidepromo.tmpl
___
JBoss-Development mailing list
[EMAIL PROTECTED]
https://lists.sourceforge.net/lists/listinfo/jboss-development


[JBoss-dev] [Benchmarking] - Re: Help about SPECjAppServer2002 and jboss.

2004-10-26 Thread terryxian
Sorry, a typo at my last post

l have modified *db.properties as follows:

dbURL = jdbc:oracle:[EMAIL PROTECTED]:1521:spec

should be 
dbURL = jdbc:oracle:thin:@localhost:1521:spec

The problem is still unsolved. I searched many related literature by google and found 
it seems a problem of jboss itself. You can refer to the following link:
http://sourceforge.net/tracker/index.php?func=detailaid=1029232group_id=22866atid=376685

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

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


---
This SF.net email is sponsored by: IT Product Guide on ITManagersJournal
Use IT products in your business? Tell us what you think of them. Give us
Your Opinions, Get Free ThinkGeek Gift Certificates! Click to find out more
http://productguide.itmanagersjournal.com/guidepromo.tmpl
___
JBoss-Development mailing list
[EMAIL PROTECTED]
https://lists.sourceforge.net/lists/listinfo/jboss-development


[JBoss-dev] [Deployers on JBoss (Deployers/JBoss)] - Re: java.lang.NoClassDefFoundError where to put classes ???

2004-10-26 Thread 760613
Well I must have missed something I tried again as 
putting it in the application.xml, in a module tag and it worked (very-very strange).

 module 
   java apps-client.jar/ java 
/ module 

I must have missed something earlier, close the tag or something.


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

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


---
This SF.net email is sponsored by: IT Product Guide on ITManagersJournal
Use IT products in your business? Tell us what you think of them. Give us
Your Opinions, Get Free ThinkGeek Gift Certificates! Click to find out more
http://productguide.itmanagersjournal.com/guidepromo.tmpl
___
JBoss-Development mailing list
[EMAIL PROTECTED]
https://lists.sourceforge.net/lists/listinfo/jboss-development


[JBoss-dev] [JBossWS] - Re:

2004-10-26 Thread tdiesler
Thomas, you are in the wrong forum. Here we discuss J2EE copatiple WS with JBossWS.

Try: http://localhost:8080/jboss-net

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

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


---
This SF.net email is sponsored by: IT Product Guide on ITManagersJournal
Use IT products in your business? Tell us what you think of them. Give us
Your Opinions, Get Free ThinkGeek Gift Certificates! Click to find out more
http://productguide.itmanagersjournal.com/guidepromo.tmpl
___
JBoss-Development mailing list
[EMAIL PROTECTED]
https://lists.sourceforge.net/lists/listinfo/jboss-development


[JBoss-dev] [Benchmarking] - Re: Help about SPECjAppServer2002 and jboss.

2004-10-26 Thread terryxian
Wow, the ear beans are close to be  deployed. But they are still waiting a deployer.
The follows are the relevant error messages:

2004-10-26 08:26:37,179 ERROR [org.jboss.deployment.scanner.URLDeploymentScanner] 
Incomplete Deployment listing:Packages waiting for a deployer:
[EMAIL PROTECTED] { 
url=file:/usr/java/jboss/server/specj/tmp/deploy/tmp54040SPECjAppServer.ear-contents/util.jar
 }
  deployer: null   
  
  status: Starting
  state: START_SUBDEPLOYMENTS  
   
 watch: 
file:/usr/java/jboss/server/specj/tmp/deploy/tmp54040SPECjAppServer.ear-contents/util.jar
  altDD: null  
 lastDeployed: 1098797195060
  lastModified: 1098797194000  
   mbeans:

Can I say it is already successfully deployed.

But when I ran driver.sh under SPECjAppServer, I got  errors in the jboss side:

ObjectName: jboss.j2ee:jndiName=POEnt,service=EJB
 state: FAILED
 I Depend On:
 Depends On Me: org.jboss.deployment.DeploymentException: Failed to obtain 
type-mapping metadata from the metadata library MBean: 
jboss.jdbc:datasource=DefaultDS,service=metadata is not registered.; - nested 
throwable: (javax.management.InstanceNotFoundException: 
jboss.jdbc:datasource=DefaultDS,service=metadata is not registered.)

How to solve these problems?   Thanks 



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

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


---
This SF.net email is sponsored by: IT Product Guide on ITManagersJournal
Use IT products in your business? Tell us what you think of them. Give us
Your Opinions, Get Free ThinkGeek Gift Certificates! Click to find out more
http://productguide.itmanagersjournal.com/guidepromo.tmpl
___
JBoss-Development mailing list
[EMAIL PROTECTED]
https://lists.sourceforge.net/lists/listinfo/jboss-development


[JBoss-dev] [JBoss Media (EMB)] - Problem with CVS

2004-10-26 Thread rcbeuker
I have some problems while getting the media contents from CVS. According to a mail 
(from Scott Stark) the media module name is jboss-head. However, when I browse the CVS 
Tree I cannot find the jboss-head module. Indeed, there is a module called 
jboss-media. Do I have to use this one? When I try this (I try to access CVS services 
from behind a firewall) with TortoiseCVS CVSROOT:

anonymous wrote : :pserver:[EMAIL PROTECTED]:80/cvsroot/jboss/jboss-media

The server keeps asking for a password:

anonymous wrote : In C:\Documents and Settings\Roland\Desktop: 
C:\TortoiseCVS\cvs.exe -q checkout -P Desktop
  | CVSROOT=:pserver:[EMAIL PROTECTED]:80/cvsroot/jboss/jboss-media
  | 
  | cvs checkout: Empty password used - try 'cvs login' with a real password
  | 
  | cvs [checkout aborted]: authorization failed: server cvs-pserver.sf.net rejected 
access to /cvsroot/jboss/jboss-media for user anonymous
  | 
  | Error, CVS operation failed

What do I have to change?

Roland Beuker


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

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


---
This SF.net email is sponsored by: IT Product Guide on ITManagersJournal
Use IT products in your business? Tell us what you think of them. Give us
Your Opinions, Get Free ThinkGeek Gift Certificates! Click to find out more
http://productguide.itmanagersjournal.com/guidepromo.tmpl
___
JBoss-Development mailing list
[EMAIL PROTECTED]
https://lists.sourceforge.net/lists/listinfo/jboss-development


[JBoss-dev] [Benchmarking] - Re: Help about SPECjAppServer2002 and jboss.

2004-10-26 Thread loubyansky
Under what name do you deploy the datasource for specj?

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

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


---
This SF.net email is sponsored by: IT Product Guide on ITManagersJournal
Use IT products in your business? Tell us what you think of them. Give us
Your Opinions, Get Free ThinkGeek Gift Certificates! Click to find out more
http://productguide.itmanagersjournal.com/guidepromo.tmpl
___
JBoss-Development mailing list
[EMAIL PROTECTED]
https://lists.sourceforge.net/lists/listinfo/jboss-development


[JBoss-dev] [Benchmarking] - Re: Help about SPECjAppServer2002 and jboss.

2004-10-26 Thread terryxian
Let me explain more detailed.
After I ran:
$ANT_HOME/bin/ant -Dappserver=jboss40 driver
Then execute  driver.sh under the directory SPECjAppServer2002/bin , I got the IO 
error:
   java.io.IOException: Server returned HTTP response code: 500 for URL: 
http://localhost:8080/Supplier/DeliveryServlet?cmd=switchlog
at 
sun.net.www.protocol.http.HttpURLConnection.getInputStream(HttpURLConnection.java:800)

Then I observed the jboss server. There are some error outputs, like:   
2004-10-26 08:28:41,532 ERROR [org.jboss.web.localhost.Engine] 
StandardWrapperValve[Delivery]: Allocate exception for servlet Delivery
javax.servlet.ServletException: Could not dereference object
at 
org.spec.jappserver.supplier.web.SupplierDomainServlet.init(SupplierDomainServlet.java:132)


Root exception is javax.naming.NameNotFoundException: ReceiverSes not bound..

Any suggestions??? Thanks



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

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


---
This SF.net email is sponsored by: IT Product Guide on ITManagersJournal
Use IT products in your business? Tell us what you think of them. Give us
Your Opinions, Get Free ThinkGeek Gift Certificates! Click to find out more
http://productguide.itmanagersjournal.com/guidepromo.tmpl
___
JBoss-Development mailing list
[EMAIL PROTECTED]
https://lists.sourceforge.net/lists/listinfo/jboss-development


[JBoss-dev] [Benchmarking] - Re: Help about SPECjAppServer2002 and jboss.

2004-10-26 Thread terryxian
loubyansky wrote : Under what name do you deploy the datasource for specj?

I dont know? I guess should be DefaultDS because it was given by default in 
SPECjAppServer/config/jboss40-oracle-ds.xml.

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

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


---
This SF.net email is sponsored by: IT Product Guide on ITManagersJournal
Use IT products in your business? Tell us what you think of them. Give us
Your Opinions, Get Free ThinkGeek Gift Certificates! Click to find out more
http://productguide.itmanagersjournal.com/guidepromo.tmpl
___
JBoss-Development mailing list
[EMAIL PROTECTED]
https://lists.sourceforge.net/lists/listinfo/jboss-development


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

2004-10-26 Thread qa

View results here -> http://cruisecontrol.jboss.com/cc/buildresults/jboss-head?log=log20041026082521Lbuild.346
BUILD COMPLETE-build.346Date of build:10/26/2004 08:25:21Time to build:81 minutes 29 secondsLast changed:10/26/2004 06:03:58Last log entry:fixed [ 1044569 ] CMP beans always looks for the DefaultDS




   Unit Tests: (1984)   Total Errors and Failures: (40)testWarXmlOverridesorg.jboss.test.classloader.test.ScopingUnitTestCasetestServletSessionLoadBalancingorg.jboss.test.cluster.test.WebSessionTestCasetestEjbInterceptionorg.jboss.test.hibernate.test.HibernateEjbInterceptorUnitTestCasetestOIL2MutliSessionOneConnectionorg.jboss.test.jbossmq.perf.OIL2InvocationLayerStressTestCaseunknownorg.jboss.test.jbossmq.test.LargeMessageUnitTestCaseunknownorg.jboss.test.jbossmq.test.OILConnectionUnitTestCasetestMCFDefaultValuesorg.jboss.test.jca.test.DeploymentUnitTestCasetestCreateSubcontextorg.jboss.test.naming.test.PooledInvokerUnitTestCasetestLookupFailuresorg.jboss.test.naming.test.PooledInvokerUnitTestCasetestHaParitionNameorg.jboss.test.naming.test.SimpleUnitTestCasetestDiscoveryPortorg.jboss.test.naming.test.SimpleUnitTestCasetestOldProxyorg.jboss.test.pooled.test.BeanStressTestCasetestHttpRedirectorg.jboss.test.web.test.ssl.SSLUnitTestCasetestHttpsorg.jboss.test.web.test.ssl.SSLUnitTestCasetestEvictionorg.jboss.test.cache.test.eviction.ReplicatedLRUPolicyUnitTestCasetestEvictionReplicationorg.jboss.test.cache.test.eviction.ReplicatedLRUPolicyUnitTestCasetestThreadedAccess_SimpleLockorg.jboss.test.cache.test.generic.IdentityLockUnitTestCasetestConcurrentBookingorg.jboss.test.cache.test.local.TxConcurrentBankUnitTestCasetestStateTransferorg.jboss.test.cache.test.replicated.AsyncUnitTestCasetestSyncReplorg.jboss.test.cache.test.replicated.AsyncUnitTestCasetestSyncReplorg.jboss.test.cache.test.replicated.SyncTxUnitTestCasetestASyncReplorg.jboss.test.cache.test.replicated.SyncTxUnitTestCasetestPutorg.jboss.test.cache.test.replicated.SyncTxUnitTestCasetestPutTxorg.jboss.test.cache.test.replicated.SyncTxUnitTestCasetestStateReplicationorg.jboss.test.cluster.test.DRMTestCasetestServletSessionFailoverorg.jboss.test.cluster.test.WebSessionTestCasetestCounterSimpleNotificationorg.jboss.test.jbossmx.compliance.monitor.BasicTestCasetestCounterDifferenceNotificationorg.jboss.test.jbossmx.compliance.monitor.BasicTestCasetestGaugeSimpleBothNotificationorg.jboss.test.jbossmx.compliance.monitor.BasicTestCasetestGaugeSimpleHighNotificationorg.jboss.test.jbossmx.compliance.monitor.BasicTestCasetestGaugeSimpleLowNotificationorg.jboss.test.jbossmx.compliance.monitor.BasicTestCasetestStringBothNotificationorg.jboss.test.jbossmx.compliance.monitor.BasicTestCasetestStringMatchNotificationorg.jboss.test.jbossmx.compliance.monitor.BasicTestCasetestStringDifferNotificationorg.jboss.test.jbossmx.compliance.monitor.BasicTestCasetestNameChangesorg.jboss.test.naming.test.SimpleUnitTestCasetestUserInRoleServletorg.jboss.test.securitymgr.test.WebIntegrationUnitTestCasetestFormAuthSingleSignOnorg.jboss.test.web.test.ClusteredSingleSignOnUnitTestCasetestFormAuthSubjectorg.jboss.test.web.test.FormAuthUnitTestCasetestFormAuthSingleSignOnorg.jboss.test.web.test.SingleSignOnUnitTestCasetestUserInRoleServletorg.jboss.test.web.test.WebIntegrationUnitTestCase
Modifications since last build:(6)1.44modifiedloubyanskyserver/src/main/org/jboss/ejb/plugins/cmp/jdbc/metadata/JDBCEntityMetaData.javafixed [ 1044569 ] CMP beans always looks for the DefaultDS1.27modifiedloubyanskyserver/src/main/org/jboss/ejb/plugins/cmp/jdbc/metadata/JDBCRelationMetaData.javafixed [ 1044569 ] CMP beans always looks for the DefaultDS1.51modifiedloubyanskyserver/src/main/org/jboss/ejb/plugins/cmp/jdbc/JDBCStartCommand.javafixed [ 1044569 ] CMP beans always looks for the DefaultDS1.27modifiedloubyanskyserver/src/main/org/jboss/ejb/plugins/cmp/jdbc/JDBCCommandFactory.javafixed [ 1044569 ] CMP beans always looks for the DefaultDS1.37modifiedloubyanskyserver/src/main/org/jboss/ejb/plugins/cmp/jdbc/JDBCLoadEntityCommand.javafixed [ 1044569 ] CMP beans always looks for the DefaultDS1.32modifiedloubyanskyserver/src/main/org/jboss/ejb/plugins/cmp/jdbc/JDBCLoadRelationCommand.javafixed [ 1044569 ] CMP beans always looks for the DefaultDS



[JBoss-dev] [XDoclet on JBoss (XDoclet/JBoss)] - Re: Xdoclet Error

2004-10-26 Thread pablojavierpy
same error here. Any ideas?

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

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


---
This SF.net email is sponsored by: IT Product Guide on ITManagersJournal
Use IT products in your business? Tell us what you think of them. Give us
Your Opinions, Get Free ThinkGeek Gift Certificates! Click to find out more
http://productguide.itmanagersjournal.com/guidepromo.tmpl
___
JBoss-Development mailing list
[EMAIL PROTECTED]
https://lists.sourceforge.net/lists/listinfo/jboss-development


[JBoss-dev] [JBoss IDE (dev)] - Re: JBossIDE 1.4 and JBossIDE/AOP 1.0.1 Released

2004-10-26 Thread marshall
Hey everyone.. the Update Site is acting really sparatic due to Sourceforge server 
problems. If you see any errors while trying to download from the Update Site, just 
try again and Eclipse will resume from where it left off. Thanks!

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

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


---
This SF.net email is sponsored by: IT Product Guide on ITManagersJournal
Use IT products in your business? Tell us what you think of them. Give us
Your Opinions, Get Free ThinkGeek Gift Certificates! Click to find out more
http://productguide.itmanagersjournal.com/guidepromo.tmpl
___
JBoss-Development mailing list
[EMAIL PROTECTED]
https://lists.sourceforge.net/lists/listinfo/jboss-development


[JBoss-dev] [JBossCache] - Re: FIFOPolicy

2004-10-26 Thread bwang00
Morton,

Yes, please send it to [EMAIL PROTECTED] I realized the naming is not good and have 
been thinking whether I should rename it or not. Only thing is that it has been out 
for a while so I am not sure whether this will disrupt upgrade or not.

Thanks,

-Ben

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

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


---
This SF.net email is sponsored by: IT Product Guide on ITManagersJournal
Use IT products in your business? Tell us what you think of them. Give us
Your Opinions, Get Free ThinkGeek Gift Certificates! Click to find out more
http://productguide.itmanagersjournal.com/guidepromo.tmpl
___
JBoss-Development mailing list
[EMAIL PROTECTED]
https://lists.sourceforge.net/lists/listinfo/jboss-development


[JBoss-dev] [JBossWS] - Re: Difference between JBoss.NET and JBossWS

2004-10-26 Thread michael.daleiden
tdiesler wrote : Do you have time to read the wiki ;-)
  | 
  | http://www.jboss.org/wiki/Wiki.jsp?page=JBoss.NET
  | 
  | The binaries for JBoss.Net are distributed under 
${jboss.home}/docs/examples/jboss.net 
  | 
  | 

Thomas - first, thank you for your assistance.  Second, you added the note about the 
location of the binaries TODAY, so there is no way I would have known this YESTERDAY.  
Yesterday, the Wiki did not say where to get the 4.0 binary versions (except the 
reference to using the Ant build scripts).  As I mentioned, I did not have the ability 
at present to download and build the 4.0 source tree, so I did not have any way of 
building these versions.  

I appreciate your update to the Wiki with this new information about the location of 
the binaries.  Thanks again.

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

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


---
This SF.net email is sponsored by: IT Product Guide on ITManagersJournal
Use IT products in your business? Tell us what you think of them. Give us
Your Opinions, Get Free ThinkGeek Gift Certificates! Click to find out more
http://productguide.itmanagersjournal.com/guidepromo.tmpl
___
JBoss-Development mailing list
[EMAIL PROTECTED]
https://lists.sourceforge.net/lists/listinfo/jboss-development


[JBoss-dev] [JBossCache] - jboss cache

2004-10-26 Thread rupesh_1234
i m new to jBoss cache i m using the TreeCacheAop class and method put which take the 
node name and map name ,, how do the jBoss cache organize the cache inernelly 
EXAMPLE
node =/a/b
map = {(key1 value) (key2 value) }
will job boss create a key1 and key2  inside the node and put the value or the full 
map will be placed AS A VALUE OF THE NODE 

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

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


---
This SF.net email is sponsored by: IT Product Guide on ITManagersJournal
Use IT products in your business? Tell us what you think of them. Give us
Your Opinions, Get Free ThinkGeek Gift Certificates! Click to find out more
http://productguide.itmanagersjournal.com/guidepromo.tmpl
___
JBoss-Development mailing list
[EMAIL PROTECTED]
https://lists.sourceforge.net/lists/listinfo/jboss-development


[JBoss-dev] [JBossWS] - facing the nullPointer-Port error using application client

2004-10-26 Thread aagmon
hi 
i dont mean to repost this exception , i think that here the situation is a bit 
different :

application client using rpc/lit service throwing this exception:
(service is working  fine with a servlet client -with almost  same code)

 [java] 2004-10-26 17:41:41,962 ERROR org.jboss.webservice.client.PortProxy[main] - 
Port error
  |  [java] java.lang.NullPointerException
  |  [java] at java.util.Hashtable.put(Unknown Source)
  |  [java] at 
com.sun.org.apache.xerces.internal.jaxp.SAXParserImpl.setProperty(Unknown Source)
  |  [java] at 
org.apache.axis.encoding.DeserializationContextImpl.parse(DeserializationContextImpl.java:262)
  |  [java] at org.apache.axis.MessagePart.getAsSOAPEnvelope(MessagePart.java:655)
  |  [java] at org.apache.axis.Message.getSOAPEnvelope(Message.java:432)
  |  [java] at org.apache.axis.Message.getContentType(Message.java:498)
  |  [java] at 
org.apache.axis.transport.http.HTTPSender.writeToSocket(HTTPSender.java:387)

now its a simple service method using only one argument - a custom type made of 2 
strings .. here is the client and the wsdl 

client



System.out.println(looking...);
  | 
  | InitialContext ctx = getContext();
  | 
  | System.out.println(got context looking up service);
  | 
  | javax.xml.rpc.Service service = (javax.xml.rpc.Service)
  | 
ctx.lookup(java:comp/env/service/CustomerEchoService);
  | 
  | System.out.println(getting port);
  | 
  | repeaterEndpoint endpoint = (repeaterEndpoint)
  | service.getPort(repeaterEndpoint.class);
  | 
  | System.out.println(got port);
  | 
  | Customer c = new Customer();
  | c.setName(john);
  | c.setLast(smith);
  | 
  | System.out.println(calling service);
  | 
  | Customer a  = 
  | endpoint.echoCustomer(c);

client output

[java] looking...
  |  [java] got context looking up service
  |  [java] getting port
  |  [java] got port
  |  [java] calling service
  |  [java] 2004-10-26 17:41:41,962 ERROR 
org.jboss.webservice.client.PortProxy[main] - Port error
  |  [java] java.lang.NullPointerException
  |  [java] at java.util.Hashtable.put(Unknown Source)
  |  [java] at 
com.sun.org.apache.xerces.internal.jaxp.SAXParserImpl.setProperty(Unknown Source)
  |  [java] at 
org.apache.axis.encoding.DeserializationContextImpl.parse(DeserializationContextImpl.java:262)
  |  [java] at org.apache.axis.MessagePart.getAsSOAPEnvelope(MessagePart.java:655)
  |  [java] at org.apache.axis.Message.getSOAPEnvelope(Message.java:432)
  |  [java] at org.apache.axis.Message.getContentType(Message.java:498)
  |  [java] at 
org.apache.axis.transport.http.HTTPSender.writeToSocket(HTTPSender.java:387)
  |  [java] at 
org.apache.axis.transport.http.HTTPSender.invoke(HTTPSender.java:127)
  |  [java] at 
org.apache.axis.strategies.InvocationStrategy.visit(InvocationStrategy.java:73)
  |  [java] at org.apache.axis.SimpleChain.doVisiting(SimpleChain.java:162)
  |  [java] at org.apache.axis.SimpleChain.invoke(SimpleChain.java:125)
  |  [java] at 
org.jboss.webservice.client.ClientEngine.invoke(ClientEngine.java:126)
  |  [java] at org.apache.axis.client.Call.invokeEngine(Call.java:3039)
  |  [java] at org.apache.axis.client.Call.invoke(Call.java:3024)
  |  [java] at org.apache.axis.client.Call.invoke(Call.java:2619)
  |  [java] at org.apache.axis.client.Call.invoke(Call.java:2524)
  |  [java] at org.apache.axis.client.Call.invokeInternal(Call.java:1976)
  |  [java] at org.apache.axis.client.Call.invoke(Call.java:1917)
  |  [java] at org.jboss.webservice.client.CallImpl.invoke(CallImpl.java:175)
  |  [java] at 
org.apache.axis.client.AxisClientProxy.invoke(AxisClientProxy.java:251)
  |  [java] at $Proxy2.echoCustomer(Unknown Source)
  |  [java] at sun.reflect.NativeMethodAccessorImpl.invoke0(Native Method)
  |  [java] at sun.reflect.NativeMethodAccessorImpl.invoke(Unknown Source)
  |  [java] at sun.reflect.DelegatingMethodAccessorImpl.invoke(Unknown Source)
  |  [java] at java.lang.reflect.Method.invoke(Unknown Source) 


WSDL

?xml version=1.0 encoding=UTF-8?
  | 
  | definitions name=CustomerEchoService 
targetNamespace=http://com.alon.beans/service; 
xmlns:tns=http://com.alon.beans/service; xmlns=http://schemas.xmlsoap.org/wsdl/; 
xmlns:xsd=http://www.w3.org/2001/XMLSchema; 
xmlns:ns2=http://com.alon.beans/service/types; 
xmlns:soap=http://schemas.xmlsoap.org/wsdl/soap/;
  |   types
  | schema targetNamespace=http://com.alon.beans/service/types; 

[JBoss-dev] [JMX on JBoss (JBoss/JMX)] - Annotated MBeans and SAR Deployer expansion

2004-10-26 Thread Bill Burke
I want to expand the SAR Deployer to accept annotated classes. 

The way it would work would be as follows.  


  | @MBean(domain.name:service=something)
  | public class MyClass implements MyClassMBean {...}
  | 

The SAR Deployer would browse the archive for all @MBean tagged classes
and create an MBean instance for that class and deploy it under the annotation name.  
Javassist and the JBoss AOP AnnotationCompiler will allow us to write JDk 1.4 
compatible code.


  | /** @@MBean(domain.name:service=something) */
  | public class MyClass implements MyClassMBean {...}
  | 

This allows for very simple creation of service MBeans.

Bill



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

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


---
This SF.net email is sponsored by: IT Product Guide on ITManagersJournal
Use IT products in your business? Tell us what you think of them. Give us
Your Opinions, Get Free ThinkGeek Gift Certificates! Click to find out more
http://productguide.itmanagersjournal.com/guidepromo.tmpl
___
JBoss-Development mailing list
[EMAIL PROTECTED]
https://lists.sourceforge.net/lists/listinfo/jboss-development


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

2004-10-26 Thread qa

View results here -> http://cruisecontrol.jboss.com/cc/buildresults/jboss-4.0?log=log20041026104105Lbuild.97
BUILD COMPLETE-build.97Date of build:10/26/2004 10:41:05Time to build:74 minutes 24 secondsLast changed:10/26/2004 08:44:30Last log entry:Add user exception tests




   Unit Tests: (1975)   Total Errors and Failures: (27)testAllTx_RWLockorg.jboss.test.cache.stress.EvictionLocalStressTestCasetestWarXmlOverridesorg.jboss.test.classloader.test.ScopingUnitTestCasetestStateReplicationorg.jboss.test.cluster.test.DistributedStateTestCasetestServletSessionLoadBalancingorg.jboss.test.cluster.test.WebSessionTestCaseunknownorg.jboss.test.jbossmq.test.LargeMessageUnitTestCaseunknownorg.jboss.test.jbossmq.test.OILConnectionUnitTestCasetestMCFDefaultValuesorg.jboss.test.jca.test.DeploymentUnitTestCasetestHaParitionNameorg.jboss.test.naming.test.SimpleUnitTestCasetestDiscoveryPortorg.jboss.test.naming.test.SimpleUnitTestCasetestEvictionorg.jboss.test.cache.test.eviction.ReplicatedLRUPolicyUnitTestCasetestEvictionReplicationorg.jboss.test.cache.test.eviction.ReplicatedLRUPolicyUnitTestCasetestStateTransferorg.jboss.test.cache.test.replicated.AsyncUnitTestCasetestSyncReplorg.jboss.test.cache.test.replicated.AsyncUnitTestCasetestSyncReplorg.jboss.test.cache.test.replicated.SyncTxUnitTestCasetestASyncReplorg.jboss.test.cache.test.replicated.SyncTxUnitTestCasetestPutorg.jboss.test.cache.test.replicated.SyncTxUnitTestCasetestPutTxorg.jboss.test.cache.test.replicated.SyncTxUnitTestCasetestStateReplicationorg.jboss.test.cluster.test.DRMTestCasetestCounterSimpleNotificationorg.jboss.test.jbossmx.compliance.monitor.BasicTestCasetestCounterDifferenceNotificationorg.jboss.test.jbossmx.compliance.monitor.BasicTestCasetestGaugeSimpleBothNotificationorg.jboss.test.jbossmx.compliance.monitor.BasicTestCasetestGaugeSimpleHighNotificationorg.jboss.test.jbossmx.compliance.monitor.BasicTestCasetestGaugeSimpleLowNotificationorg.jboss.test.jbossmx.compliance.monitor.BasicTestCasetestStringBothNotificationorg.jboss.test.jbossmx.compliance.monitor.BasicTestCasetestStringMatchNotificationorg.jboss.test.jbossmx.compliance.monitor.BasicTestCasetestStringDifferNotificationorg.jboss.test.jbossmx.compliance.monitor.BasicTestCasetestNameChangesorg.jboss.test.naming.test.SimpleUnitTestCase
Modifications since last build:(1)1.406.2.7modifiedtdieslertestsuite/build.xmlAdd user exception tests



[JBoss-dev] [ jboss-Bugs-1047373 ] PropertyNotFoundException on runtime HAR deployment

2004-10-26 Thread SourceForge.net
Bugs item #1047373, was opened at 2004-10-14 16:45
Message generated for change (Comment added) made by steveebersole
You can respond by visiting: 
https://sourceforge.net/tracker/?func=detailatid=376685aid=1047373group_id=22866

Category: Hibernate
Group: v4.0
Status: Open
Resolution: None
Priority: 5
Submitted By: Tor-Einar Skog (treinar)
Assigned to: Steve Ebersole (steveebersole)
Summary: PropertyNotFoundException on runtime HAR deployment

Initial Comment:
OS: Linux 2.4.22-36mdkenterprise (i386)
JVM: 1.4.2_06-b03

I have a HAR archive, with one class: Pesticide.class
and its hibernate mapping file. Pesticide class has to
properties: id and name (with getter/setter methods). A
META-INF/hibernate-service.xml is also provided.

When deploying a HAR archive when JBoss runs, the
deployment fails. The following Exception is thrown:
net.sf.hibernate.PropertyNotFoundException: Could not
find a setter for property name in class
no.planteforsk.pvmdb.persistent.Pesticide

However, when JBoss is restarted, the HAR deploys fine. 

The Exception is thrown in
net.sf.hibernate.property.BasicPropertyAccessor, in the
method getSetter. The cause of the exception is that no
match between set method (setName) and property (name)
is found in method setterMethod.

I inserted a few debug outputs in
BasicPropertyAccessor, and it turns out that when the
HAR is deployed at runtime, the method setName in
Pesticide is wrongly assumed to take no parameters,
(methods[i].getParameterTypes().length returns 0). When
jboss is restarted, and the deployment takes place on
the same HAR file, setName is assumed to take 1
parameter, which of course is correct.

I'm not sure if this is a Java error or a JBoss error,
or even a Hibernate error, but maybe you do. It does
concern JBoss, however.

--

Comment By: Steve Ebersole (steveebersole)
Date: 2004-10-26 11:04

Message:
Logged In: YES 
user_id=525033

Unable to reproduce this issue running JDK 1.4.2_04 on a 
Windows XP box.  Have you tried running the bundle test 
case on your system?  It is 
\testsuite\src\main\org\jboss\test\hibernate\test\HibernateEjb
InterceptorUnitTestCase.java  See if that one works for you 
(it uses the hot deploy scenario).

--

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


---
This SF.net email is sponsored by: IT Product Guide on ITManagersJournal
Use IT products in your business? Tell us what you think of them. Give us
Your Opinions, Get Free ThinkGeek Gift Certificates! Click to find out more
http://productguide.itmanagersjournal.com/guidepromo.tmpl
___
JBoss-Development mailing list
[EMAIL PROTECTED]
https://lists.sourceforge.net/lists/listinfo/jboss-development


[JBoss-dev] [JBossCache] - Re: jboss cache

2004-10-26 Thread bwang00
If the fqn is /a/b, and say you have a map, then the mapping is something like

/a/b/map/1 (key1, value)
 /a/b/map/2 (key2, value)

In addition, aop will deflate your object graph recursively if value is declared 
advisable.

I am currently doing an enhancement of aop in post 1.1 source. I will update the 
documentation as well.

Cheers,

-Ben

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

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


---
This SF.net email is sponsored by: IT Product Guide on ITManagersJournal
Use IT products in your business? Tell us what you think of them. Give us
Your Opinions, Get Free ThinkGeek Gift Certificates! Click to find out more
http://productguide.itmanagersjournal.com/guidepromo.tmpl
___
JBoss-Development mailing list
[EMAIL PROTECTED]
https://lists.sourceforge.net/lists/listinfo/jboss-development


[JBoss-dev] [JBossCache] - Re: jboss cache

2004-10-26 Thread rupesh_1234
i thought it will create a key and value pair in this manner inside jBoss caching
/a/b key1 value1
/a/b key2 value 2
wher a and b are the node key1 and key2 are the key from map and value 1 and valu2 is 
the value from the map 
as i though it will read the map and create key and value pair in side the node b 



as per of ur reply its saying that it will create 
 a node map which contain the key callled key1 and key2 with values value1 and value2 .
so the jBoss willbe 
/a/b/map key1 value1
/a/b/map key2 value2

method used is
public void put(java.lang.String fqn,
java.util.Map data)


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

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


---
This SF.net email is sponsored by: IT Product Guide on ITManagersJournal
Use IT products in your business? Tell us what you think of them. Give us
Your Opinions, Get Free ThinkGeek Gift Certificates! Click to find out more
http://productguide.itmanagersjournal.com/guidepromo.tmpl
___
JBoss-Development mailing list
[EMAIL PROTECTED]
https://lists.sourceforge.net/lists/listinfo/jboss-development


[JBoss-dev] [JMX on JBoss (JBoss/JMX)] - Re: Annotated MBeans and SAR Deployer expansion

2004-10-26 Thread [EMAIL PROTECTED]
This needs to integrate into the virtual file system notion we have been talking about 
adding to the new deployment assmbly line/chain concept. We don't want to have very 
deployer that can obtain metadata from annotations to have to be walking over every 
class in a deployment to extract this.

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

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


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


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

2004-10-26 Thread qa

View results here -> http://cruisecontrol.jboss.com/cc/buildresults/jboss-4.0?log=log20041026122746Lbuild.98
BUILD COMPLETE-build.98Date of build:10/26/2004 12:27:46Time to build:101 minutes 10 secondsLast changed:10/26/2004 11:26:58Last log entry:jboss-jdbc-metadata.sar does not exist any more




   Unit Tests: (1975)   Total Errors and Failures: (27)testAllTx_RWLockorg.jboss.test.cache.stress.EvictionLocalStressTestCasetestWarXmlOverridesorg.jboss.test.classloader.test.ScopingUnitTestCasetestServletSessionLoadBalancingorg.jboss.test.cluster.test.WebSessionTestCaseunknownorg.jboss.test.jbossmq.test.LargeMessageUnitTestCaseunknownorg.jboss.test.jbossmq.test.OILConnectionUnitTestCasetestMCFDefaultValuesorg.jboss.test.jca.test.DeploymentUnitTestCasetestHaParitionNameorg.jboss.test.naming.test.SimpleUnitTestCasetestDiscoveryPortorg.jboss.test.naming.test.SimpleUnitTestCasetestEvictionorg.jboss.test.cache.test.eviction.ReplicatedLRUPolicyUnitTestCasetestEvictionReplicationorg.jboss.test.cache.test.eviction.ReplicatedLRUPolicyUnitTestCasetestStateTransferorg.jboss.test.cache.test.replicated.AsyncUnitTestCasetestSyncReplorg.jboss.test.cache.test.replicated.AsyncUnitTestCasetestSyncReplorg.jboss.test.cache.test.replicated.SyncTxUnitTestCasetestASyncReplorg.jboss.test.cache.test.replicated.SyncTxUnitTestCasetestPutorg.jboss.test.cache.test.replicated.SyncTxUnitTestCasetestPutTxorg.jboss.test.cache.test.replicated.SyncTxUnitTestCasetestStateReplicationorg.jboss.test.cluster.test.DRMTestCasetestServletSessionFailoverorg.jboss.test.cluster.test.WebSessionTestCasetestCounterSimpleNotificationorg.jboss.test.jbossmx.compliance.monitor.BasicTestCasetestCounterDifferenceNotificationorg.jboss.test.jbossmx.compliance.monitor.BasicTestCasetestGaugeSimpleBothNotificationorg.jboss.test.jbossmx.compliance.monitor.BasicTestCasetestGaugeSimpleHighNotificationorg.jboss.test.jbossmx.compliance.monitor.BasicTestCasetestGaugeSimpleLowNotificationorg.jboss.test.jbossmx.compliance.monitor.BasicTestCasetestStringBothNotificationorg.jboss.test.jbossmx.compliance.monitor.BasicTestCasetestStringMatchNotificationorg.jboss.test.jbossmx.compliance.monitor.BasicTestCasetestStringDifferNotificationorg.jboss.test.jbossmx.compliance.monitor.BasicTestCasetestNameChangesorg.jboss.test.naming.test.SimpleUnitTestCase
Modifications since last build:(10)1.355.2.8modifiedloubyanskybuild/build.xmljboss-jdbc-metadata.sar does not exist any more1.1.2.1deletedloubyanskyconnector/src/resources/jdbc-metadata/META-INF/jboss-service.xmlremoved service.xml for jdbc metadata mbeans1.117.2.3modifiedloubyanskyserver/src/etc/conf/default/jboss-service.xmladded type-mapping metadata registry mbean1.173.2.3modifiedloubyanskyserver/build.xmlgenerate MBean interfaces for jdbc metadata MBeans1.1.2.1modifiedloubyanskyserver/src/main/org/jboss/ejb/plugins/cmp/jdbc/metadata/DataSourceMetaData.javamoved metadata/type-mapping stuff to cmp1.1.2.1modifiedloubyanskyserver/src/main/org/jboss/ejb/plugins/cmp/jdbc/metadata/MetaDataLibrary.javamoved metadata/type-mapping stuff to cmp1.67.2.2modifiedloubyanskyconnector/build.xmlremoved jboss-jdbc-metadata.sar1.22.2.2modifiedloubyanskyconnector/src/resources/stylesheets/ConnectionFactoryTemplate.xslmoved metadata/type-mapping stuff to cmp1.1.2.1deletedloubyanskyconnector/src/main/org/jboss/resource/adapter/jdbc/metadata/DataSourceMetaData.javamoved metadata/type-mapping stuff to cmp1.1.2.1deletedloubyanskyconnector/src/main/org/jboss/resource/adapter/jdbc/metadata/MetaDataLibrary.javamoved metadata/type-mapping stuff to cmp



[JBoss-dev] [ jboss-Patches-1054792 ] Hibernate MBean should provide a default cache provider

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

Category: JBossServer
Group: v4.0
Status: Open
Resolution: None
Priority: 5
Submitted By: Heiko W.Rupp (pilhuhn)
Assigned to: Nobody/Anonymous (nobody)
Summary: Hibernate MBean should provide a default cache provider

Initial Comment:
If no cacheProvideClass is given, the deploy of the
hibernate MBean fails.

I'd propose to set a default, that can be overridden by
the user.

If the following is ok,then I'd commit it.

Index: Hibernate.java
===
RCS file:
/cvsroot/jboss/hibernate/src/main/org/jboss/hibernate/jmx/Hibernate.java,v
retrieving revision 1.3.2.1
diff -u -r1.3.2.1 Hibernate.java
--- Hibernate.java  20 Sep 2004 05:44:34 -  1.3.2.1
+++ Hibernate.java  26 Oct 2004 19:08:24 -
@@ -61,6 +61,9 @@
 
private boolean dirty = false;
private SessionFactory sessionFactory;
+   
+   private static final String defaultCacheProviderClass
+   = net.sf.hibernate.cache.HashtableCacheProvider;
 
/**
 * @jmx.managed-attribute
@@ -516,7 +519,10 @@
   setUnlessNull(props, Environment.DATASOURCE,
datasourceName);
   setUnlessNull(props, Environment.DIALECT, dialect);
   setUnlessNull(props,
Environment.SESSION_FACTORY_NAME, sessionFactoryName);
-  setUnlessNull(props, Environment.CACHE_PROVIDER,
cacheProviderClass);
+  if (cacheProviderClass != null)
+   setUnlessNull(props,
Environment.CACHE_PROVIDER, cacheProviderClass);
+  else
+   setUnlessNull(props,
Environment.CACHE_PROVIDER, defaultCacheProviderClass);
   setUnlessNull(props,
Environment.CACHE_REGION_PREFIX, cacheRegionPrefix);
   setUnlessNull(props, Environment.HBM2DDL_AUTO,
hbm2ddlAuto);
   setUnlessNull(props, Environment.DEFAULT_SCHEMA,
defaultSchema);


--

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


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


[JBoss-dev] [JBoss IDE (dev)] - how to use jbossIDE to compile jsp

2004-10-26 Thread jocular
I installed the jbosside1.4. it's good editor. while I don't konw how to complie a 
jsp. Has that been implemented in version 1.4?

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

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


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


[JBoss-dev] [ jboss-Bugs-1054894 ] AbstractWebDeployer doesn't add WebRoleRefPermission to JACC

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

Category: JBossSX
Group: v4.0
Status: Open
Resolution: None
Priority: 5
Submitted By: Stephen Kinser (skinser)
Assigned to: Nobody/Anonymous (nobody)
Summary: AbstractWebDeployer doesn't add WebRoleRefPermission to JACC

Initial Comment:
The JACC 1.0 specification in section 3.1.3.2 states
that for each security-role-ref that appears in the
web.xml deployment descriptor a corresponding
WebRoleRefPermission must be added to the appropriate role.

The attached example has a servlet with a
security-role-ref element as part of one of the
servlets. The attached log contains entries for the
JBossPolicyProvider and these entries indicate that no
WebRoleRefPermission objects were added. The
AbstractWebDeployer doesn't add WebRoleRefPermission to
the JACC PolicyProvider, but it does add
WebResourcePermission and WebUserDataPermission objects
appropriately.

The provided webapp.zip contains the webapp.ear file
along with modifications to JBoss deployment
descriptors. The zip also contains the log files. To
duplicate the issue, take a fresh install of JBoss
4.0.0 and unzip the webapp.zip file, then run JBoss'
default server. Look at the log and see that no
WebRoleRefPermission objects were added to the JACC
policy provider.

--

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


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


[JBoss-dev] [ jboss-Bugs-1054894 ] AbstractWebDeployer doesn't add WebRoleRefPermission to JACC

2004-10-26 Thread SourceForge.net
Bugs item #1054894, was opened at 2004-10-26 16:08
Message generated for change (Settings changed) made by skinser
You can respond by visiting: 
https://sourceforge.net/tracker/?func=detailatid=376685aid=1054894group_id=22866

Category: JBossWeb
Group: v4.0
Status: Open
Resolution: None
Priority: 5
Submitted By: Stephen Kinser (skinser)
Assigned to: Nobody/Anonymous (nobody)
Summary: AbstractWebDeployer doesn't add WebRoleRefPermission to JACC

Initial Comment:
The JACC 1.0 specification in section 3.1.3.2 states
that for each security-role-ref that appears in the
web.xml deployment descriptor a corresponding
WebRoleRefPermission must be added to the appropriate role.

The attached example has a servlet with a
security-role-ref element as part of one of the
servlets. The attached log contains entries for the
JBossPolicyProvider and these entries indicate that no
WebRoleRefPermission objects were added. The
AbstractWebDeployer doesn't add WebRoleRefPermission to
the JACC PolicyProvider, but it does add
WebResourcePermission and WebUserDataPermission objects
appropriately.

The provided webapp.zip contains the webapp.ear file
along with modifications to JBoss deployment
descriptors. The zip also contains the log files. To
duplicate the issue, take a fresh install of JBoss
4.0.0 and unzip the webapp.zip file, then run JBoss'
default server. Look at the log and see that no
WebRoleRefPermission objects were added to the JACC
policy provider.

--

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


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


[JBoss-dev] [ jboss-Bugs-1054897 ] JACC incorrect when checking authorization for WebResourcePe

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

Category: JBossSX
Group: v4.0
Status: Open
Resolution: None
Priority: 5
Submitted By: Stephen Kinser (skinser)
Assigned to: Nobody/Anonymous (nobody)
Summary: JACC incorrect when checking authorization for WebResourcePe

Initial Comment:
During deployment When a WebResourcePermission or a
WebUserDataPermission is constructed by
the AbstractWebDeployer for a security-constraint that
doesn't specify a http-method element, 
the httpMethods instance variable will be empty. JBoss
does this correctly and conforms to 
section 3.1.3.1 of the JACC 1.0 specification.

The defect occurs when the JaccAuthorizationRealm's
hasResourcePermission consults the policy for the
authorization decision. 

For example, when a user sends a HTTP Get Request to a
resource, the hasResourcePermission correctly
constructs a new WebResourcePermission object with the
actions set to GET. The JaccAuthorizationRealm then
passes this object to the policy for the authorization
decision. The policy matches the target
WebResourcePermission with a WebResourcePermission
inside of the ContextPolicy, but the implies method of
the WebResourcePermission checks that GET is included
in its httpMethods and returns false since httpMethods
is empty. The WebResourcePermission class improperly
handles an empty httpMethods. The proper way is to
check for an empty httpMethods before checking that all
of the httpMethods in the desired WebResourcePermission
are contained in the granted WebResourcePermission.

The defect in the WebResourcePermission implies method
is also in the implies method of the
WebUserDataPermission class.

An alternative to modifying the implies methods would
be to modify the AbstractWebDeployer class to
explicitly populate the httpMethods in the permission
objects with all of the http methods.

To duplicate, take a fresh install of JBoss 4.0.0,
install the tomcat50-service.jar patch, unzip the
webapp.zip file, and run JBoss default server. Open 
http://localhost:8080/webapp/index.jsp and authenticate
as admin with a password of test (see user.properties
file in zip). You should be granted access according to
web.xml, but will be denied access due to this defect.
See the log for more confirmation.

--

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


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


[JBoss-dev] [JBoss IDE (dev)] - XDoclet and generic types syntax in jdk1.5

2004-10-26 Thread gweatherall
I am attempting to use the version of XDoclet that comes with version JBoss IDE 1.4.0, 
and I am running into problems when processing classes that use the generic types 
syntax for jdk 1.5 (java 5, what ever).  The errors are like:

[hibernatedoclet] Error parsing File 
C:\eclipse\workspace\spring\src\reveal\bindata\BinnedDataProvider.java:Encountered  
at line 13, column 26.
[hibernatedoclet] Was expecting one of:
[hibernatedoclet]  ...
[hibernatedoclet] [ ...
[hibernatedoclet] . ...

The corresponding line of source is:

public Collection getBinSeries();

I've checked the configuration i'm using for the XDoclet tag, and cannot see any 
options for support jdk 1.5 syntax.  Any suggestions or ideas, or any definitive 
statements that this is just impossible?

Thanks.

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

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


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


[JBoss-dev] [JBoss IDE (dev)] - Re: XDoclet and generic types syntax in jdk1.5

2004-10-26 Thread gweatherall
ok, what you cannot see in the example line of code that I pasted is the generics 
syntax beside the Collection.  It should read...

 public Collection(left angle bracket)BinSeries(right angle bracket)  getBinSeries();

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

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


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


[JBoss-dev] [JBoss IDE (dev)] - Re: XDoclet and generic types syntax in jdk1.5

2004-10-26 Thread gweatherall
with a little more searching I have found out that this is a XDoclet issue.  If you 
(like me) want it fixed you can vote for it at:

http://opensource.atlassian.com/projects/xdoclet/browse/XDT-984

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

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


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


[JBoss-dev] [JBoss IDE (dev)] - JBoss IDE 1.4 does not use XDoclet 1.2.2 ???

2004-10-26 Thread manojpn
I just installed JBoss IDE 1.4 and it still seems to be using XDoclet 1.2.1 
jar files ? XDoclet 1.2.1 does not support EJB 2.1 and Sevlet 2.4 specs. 
XDdoclet 1.2.2 has been released. Any plans for upgrade ? 

BTW the JBoss 1.4 IDE upgrade looks great. Thanks!



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

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


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


[JBoss-dev] [ jboss-Bugs-1042176 ] JBoss.net doesn't work with jboss-3.2.6RC2 and jboss-4.0.0

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

Category: JBossServer
Group: v3.2
Status: Closed
Resolution: None
Priority: 5
Submitted By: pepite (pepite_21)
Assigned to: Thomas Diesler (tdiesler)
Summary: JBoss.net doesn't work with jboss-3.2.6RC2 and jboss-4.0.0

Initial Comment:
Making a request to a web service results on the
following stack trace. This seems to be a thread
problem as from time to time the stack trace disappear.
I included a small client to query the version of axis
(a Version web service provided with JBoss.net (and
axis)). This simple call to the getVersion webservice give:

13:53:58,455 ERROR [Engine]
StandardWrapperValve[JBossAxisServlet]:
Servlet.service() for servlet JBossAxisServlet threw
exception
java.lang.NullPointerException
at
org.jboss.net.axis.Deployment.oldGetService(Deployment.java:255)
at
org.jboss.net.axis.Deployment.getService(Deployment.java:275)
at
org.apache.axis.configuration.FileProvider.getService(FileProvider.java:290)
at
org.apache.axis.AxisEngine.getService(AxisEngine.java:302)
at
org.apache.axis.transport.http.AxisServlet.doPost(AxisServlet.java:900)
at
javax.servlet.http.HttpServlet.service(HttpServlet.java:717)
at
org.apache.axis.transport.http.AxisServletBase.service(AxisServletBase.java:372)
at
javax.servlet.http.HttpServlet.service(HttpServlet.java:810)
at
org.apache.catalina.core.ApplicationFilterChain.internalDoFilter(ApplicationFilterChain.java:237)
at
org.apache.catalina.core.ApplicationFilterChain.doFilter(ApplicationFilterChain.java:157)
at
org.jboss.web.tomcat.filters.ReplyHeaderFilter.doFilter(ReplyHeaderFilter.java:75)
at
org.apache.catalina.core.ApplicationFilterChain.internalDoFilter(ApplicationFilterChain.java:186)
at
org.apache.catalina.core.ApplicationFilterChain.doFilter(ApplicationFilterChain.java:157)
at
org.apache.catalina.core.StandardWrapperValve.invoke(StandardWrapperValve.java:214)
at
org.apache.catalina.core.StandardValveContext.invokeNext(StandardValveContext.java:104)
at
org.apache.catalina.core.StandardPipeline.invoke(StandardPipeline.java:520)
at
org.apache.catalina.core.StandardContextValve.invokeInternal(StandardContextValve.java:198)
at
org.apache.catalina.core.StandardContextValve.invoke(StandardContextValve.java:152)
at
org.apache.catalina.core.StandardValveContext.invokeNext(StandardValveContext.java:104)
at
org.jboss.web.tomcat.security.CustomPrincipalValve.invoke(CustomPrincipalValve.java:66)
at
org.apache.catalina.core.StandardValveContext.invokeNext(StandardValveContext.java:102)
at
org.jboss.web.tomcat.security.SecurityAssociationValve.invoke(SecurityAssociationValve.java:158)
at
org.apache.catalina.core.StandardValveContext.invokeNext(StandardValveContext.java:102)
at
org.apache.catalina.authenticator.AuthenticatorBase.invoke(AuthenticatorBase.java:540)
at
org.apache.catalina.core.StandardValveContext.invokeNext(StandardValveContext.java:102)
at
org.apache.catalina.core.StandardPipeline.invoke(StandardPipeline.java:520)
at
org.apache.catalina.core.StandardHostValve.invoke(StandardHostValve.java:137)
at
org.apache.catalina.core.StandardValveContext.invokeNext(StandardValveContext.java:104)
at
org.apache.catalina.valves.ErrorReportValve.invoke(ErrorReportValve.java:118)
at
org.apache.catalina.core.StandardValveContext.invokeNext(StandardValveContext.java:102)
at
org.apache.catalina.core.StandardPipeline.invoke(StandardPipeline.java:520)
at
org.apache.catalina.core.StandardEngineValve.invoke(StandardEngineValve.java:109)
at
org.apache.catalina.core.StandardValveContext.invokeNext(StandardValveContext.java:104)
at
org.apache.catalina.core.StandardPipeline.invoke(StandardPipeline.java:520)
at
org.apache.catalina.core.ContainerBase.invoke(ContainerBase.java:929)
at
org.apache.coyote.tomcat5.CoyoteAdapter.service(CoyoteAdapter.java:160)
at
org.apache.coyote.http11.Http11Processor.process(Http11Processor.java:799)
at
org.apache.coyote.http11.Http11Protocol$Http11ConnectionHandler.processConnection(Http11Protocol.java:705)
at
org.apache.tomcat.util.net.TcpWorkerThread.runIt(PoolTcpEndpoint.java:577)
at
org.apache.tomcat.util.threads.ThreadPool$ControlRunnable.run(ThreadPool.java:683)
at java.lang.Thread.run(Thread.java:534)


--

Comment By: Thomas Diesler (tdiesler)
Date: 2004-10-27 01:32

Message:
Logged In: YES 
user_id=423364

Prevent NPE when current message ctx is not set.
Fixed in Branch_3_2, Branch_4_0

--

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


---
This SF.Net email is sponsored by:
Sybase ASE Linux Express Edition - download now for FREE
LinuxWorld Reader's Choice Award Winner for 

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

2004-10-26 Thread qa

View results here -> http://cruisecontrol.jboss.com/cc/buildresults/jboss-4.0?log=log20041026212649Lbuild.99
BUILD COMPLETE-build.99Date of build:10/26/2004 21:26:49Time to build:75 minutes 49 secondsLast changed:10/26/2004 19:29:50Last log entry:modified hibernate targets to build a .deployer archive




   Unit Tests: (1975)   Total Errors and Failures: (20)testAllTx_RWLockorg.jboss.test.cache.stress.EvictionLocalStressTestCasetestWarXmlOverridesorg.jboss.test.classloader.test.ScopingUnitTestCasetestServletSessionLoadBalancingorg.jboss.test.cluster.test.WebSessionTestCaseunknownorg.jboss.test.jbossmq.test.LargeMessageUnitTestCaseunknownorg.jboss.test.jbossmq.test.OILConnectionUnitTestCasetestMCFDefaultValuesorg.jboss.test.jca.test.DeploymentUnitTestCasetestHaParitionNameorg.jboss.test.naming.test.SimpleUnitTestCasetestDiscoveryPortorg.jboss.test.naming.test.SimpleUnitTestCasetestEvictionorg.jboss.test.cache.test.eviction.ReplicatedLRUPolicyUnitTestCasetestEvictionReplicationorg.jboss.test.cache.test.eviction.ReplicatedLRUPolicyUnitTestCasetestStateTransferorg.jboss.test.cache.test.replicated.AsyncUnitTestCasetestSyncReplorg.jboss.test.cache.test.replicated.AsyncUnitTestCasetestSyncReplorg.jboss.test.cache.test.replicated.SyncTxUnitTestCasetestASyncReplorg.jboss.test.cache.test.replicated.SyncTxUnitTestCasetestPutorg.jboss.test.cache.test.replicated.SyncTxUnitTestCasetestPutTxorg.jboss.test.cache.test.replicated.SyncTxUnitTestCasetestStateReplicationorg.jboss.test.cluster.test.DRMTestCasetestNameChangesorg.jboss.test.naming.test.SimpleUnitTestCasetestMDBRunAsorg.jboss.test.security.test.EJBSpecUnitTestCasetestMDBTimerorg.jboss.test.timer.test.BasicTimerUnitTestCase
Modifications since last build:(31)1.355.2.9modifiedsteveebersolebuild/build.xmlmodified hibernate targets to build a .deployer archive1.2.2.2modifiedsteveebersolehibernate/build.xmlmodified jars target to build a .deployer archive1.3.2.3modifiedsteveebersolehibernate/src/main/org/jboss/hibernate/jmx/Hibernate.javainitial add for the functionality to use deployed TreeCache as 2nd level cache1.28.2.2modifiedanddjmx/src/main/org/jboss/mx/modelmbean/XMBean.javalet standard mbeans handle notifications themselves1.40.2.2modifiedtdieslerwebservice/src/main/org/jboss/webservice/deployment/ServiceDescription.javaUse debug when guessing javaType from QName1.7.2.3modifiedtdieslerserver/src/main/org/jboss/webservice/metadata/jaxrpcmapping/JavaWsdlMapping.javaFind javaType for anonymous QName of form {URI}localPart.This supports simple anonymous types as used by the SForce service1.3.2.2modifiedsteveebersolehibernate/src/main/org/jboss/hibernate/jmx/Hibernate.javaadded the new MinimalPutsEnabled attribute1.2.2.1modifiedsteveebersolehibernate/build.batinitial add to be able to build hibernate module independent of overall build1.1.2.1modifiedsteveebersolehibernate/build.shinitial add to be able to build hibernate module independent of overall build1.2.2.1modifiedsteveebersolehibernate/build.xmlmodified to build intg as a bundled service archive1.1.2.1modifiedsteveebersolehibernate/src/resources/jboss-service.xmlrenamed to hibernate-deployer-service.xml to jboss-service.xml as part of bundling as a service archive1.2.2.1deletedsteveebersolehibernate/src/resources/hibernate-deployer-service.xmlrenamed to hibernate-deployer-service.xml to jboss-service.xml as part of bundling as a service archive1.6.2.2modifiedtdieslerwebservice/src/main/org/jboss/webservice/encoding/ser/MetaDataTypeDesc.javaFix: NPE when bean property cannot be found1.8.2.4modifiedtdieslerwebservice/src/main/org/jboss/webservice/deployment/TypeMappingDescription.javaFix: Does not generate type meta data if bean has a single property1.1.1.1.4.2modifiedtdieslerjaxrpc/src/main/org/apache/axis/utils/BeanUtils.javaSupport fault message propagation.Support multiple argument defered bean construction.1.2.2.3modifiedtdieslerjaxrpc/src/main/org/apache/axis/providers/java/RPCInvocation.javaSupport fault message propagation.Support multiple argument defered bean construction.1.1.1.1.4.2modifiedtdieslerjaxrpc/src/main/org/apache/axis/message/RPCParam.javaSupport fault message propagation.Support multiple argument defered bean construction.1.1.1.1.4.1modifiedtdieslerjaxrpc/src/main/org/apache/axis/message/SOAPFaultImpl.javaSupport fault message propagation.Support multiple argument defered bean construction.1.1.1.1.4.2modifiedtdieslerjaxrpc/src/main/org/apache/axis/encoding/ser/BeanDeserializer.javaSupport fault message propagation.Support multiple argument defered bean construction.1.1.1.1.4.2modifiedtdieslerjaxrpc/src/main/org/apache/axis/encoding/ser/BeanPropertyTarget.javaSupport fault message propagation.Support multiple argument defered bean construction.1.1.1.1.4.3modifiedtdieslerjaxrpc/src/main/org/apache/axis/description/ServiceDesc.javaSupport fault message 

[JBoss-dev] [Benchmarking] - service=metadata is not registered

2004-10-26 Thread terryxian
I am using SPECjAppServer2002 to test some tests on jboss4.0.zip. The database I use 
is oracle 9i.
I have  downloaded related specj toolkit and followed the instructions.  After I ran  
the following command under $JBOSS_HOME/bin
   run.sh  -c specj 

I got the following errors:

.
2004-10-26 21:32:38,004 INFO  [org.jboss.ejb.EjbModule] Deploying ReceiverSes
2004-10-26 21:32:38,014 INFO  [org.jboss.ejb.EjbModule] Deploying SupplierAuditSes
2004-10-26 21:32:39,293 ERROR [org.jboss.ejb.EntityContainer] Starting failed 
jboss.j2ee:jndiName=SequenceEnt,service=EJB
org.jboss.deployment.DeploymentException: Failed to obtain type-mapping metadata from 
the metadata library MBean: jboss.jdbc:datasource=DefaultDS,service=metadata is not 
registered.; - nested throwable: (javax.management.InstanceNotFoundException: 
jboss.jdbc:datasource=DefaultDS,service=metadata is not registered.)
at 
org.jboss.ejb.plugins.cmp.jdbc.metadata.JDBCEntityMetaData.obtainTypeMappingFromLibrary(JDBCEntityMetaData.java:1482)


I didnt find out the metadata  service mentioned in specj/conf/jboss-service.xml, 
deploy/ejb-deployer.xml, ear-deployer.xml
Any solution to this issue? Thanks in advance.


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

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


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


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

2004-10-26 Thread qa

View results here -> http://cruisecontrol.jboss.com/cc/buildresults/jboss-3.2?log=log20041026225102Lbuild.150
BUILD COMPLETE-build.150Date of build:10/26/2004 22:51:02Time to build:68 minutes 20 secondsLast changed:10/26/2004 21:33:00Last log entry:Fix: 1042176




   Unit Tests: (1894)   Total Errors and Failures: (41)testWarXmlOverridesorg.jboss.test.classloader.test.ScopingUnitTestCasetestServletSessionLoadBalancingorg.jboss.test.cluster.test.WebSessionTestCaseunknownorg.jboss.test.jbossmq.test.LargeMessageUnitTestCaseunknownorg.jboss.test.jbossmq.test.OILConnectionUnitTestCasetestQueueMessageOrderorg.jboss.test.jbossmq.test.OILJBossMQUnitTestCasetestRequestReplyQueueorg.jboss.test.jbossmq.test.OILJBossMQUnitTestCasetestTemporaryQueueDeleteorg.jboss.test.jbossmq.test.OILJBossMQUnitTestCasetestTemporaryTopicDeleteorg.jboss.test.jbossmq.test.OILJBossMQUnitTestCasetestInvalidDestinationQueueSendorg.jboss.test.jbossmq.test.OILJBossMQUnitTestCasetestInvalidDestinationQueueBrowseorg.jboss.test.jbossmq.test.OILJBossMQUnitTestCasetestInvalidDestinationTopicPublishorg.jboss.test.jbossmq.test.OILJBossMQUnitTestCasetestErrorsTopicSubscribeorg.jboss.test.jbossmq.test.OILJBossMQUnitTestCasetestCreateQueueorg.jboss.test.jbossmq.test.OILJBossMQUnitTestCasetestMessageListenerorg.jboss.test.jbossmq.test.OILJBossMQUnitTestCasetestApplicationServerStufforg.jboss.test.jbossmq.test.OILJBossMQUnitTestCasetestTopicsorg.jboss.test.jbossmq.test.OILJBossMQUnitTestCasetestTopicNoLocalorg.jboss.test.jbossmq.test.OILJBossMQUnitTestCasetestTopicNoLocalBounceorg.jboss.test.jbossmq.test.OILJBossMQUnitTestCasetestTopicSelectorChangeorg.jboss.test.jbossmq.test.OILJBossMQUnitTestCasetestTopicSelectorNullOrEmptyorg.jboss.test.jbossmq.test.OILJBossMQUnitTestCasetestSendReceiveOutdatedorg.jboss.test.jbossmq.test.OILJBossMQUnitTestCasetestSendListenOutdatedorg.jboss.test.jbossmq.test.OILJBossMQUnitTestCasetestFederatedorg.jboss.test.jbossnet.external.ExternalUnitTestCasetestFederatedorg.jboss.test.jbossnet.external.RedeployUnitTestCasetestAuthenticationorg.jboss.test.jbossnet.security.SecurityUnitTestCasetestAuthorizationorg.jboss.test.jbossnet.security.SecurityUnitTestCasetestSecureHttpInvokerorg.jboss.test.naming.test.SecurityUnitTestCasetestHttpReadonlyContextLookuporg.jboss.test.naming.test.SecurityUnitTestCasetestHaParitionNameorg.jboss.test.naming.test.SimpleUnitTestCasetestDiscoveryPortorg.jboss.test.naming.test.SimpleUnitTestCasetestEvictionorg.jboss.test.cache.test.eviction.ReplicatedLRUPolicyUnitTestCasetestEvictionReplicationorg.jboss.test.cache.test.eviction.ReplicatedLRUPolicyUnitTestCasetestThreadedAccess_SimpleLockorg.jboss.test.cache.test.generic.IdentityLockUnitTestCasetestStateTransferorg.jboss.test.cache.test.replicated.AsyncUnitTestCasetestSyncReplorg.jboss.test.cache.test.replicated.AsyncUnitTestCasetestSyncReplorg.jboss.test.cache.test.replicated.SyncTxUnitTestCasetestASyncReplorg.jboss.test.cache.test.replicated.SyncTxUnitTestCasetestPutorg.jboss.test.cache.test.replicated.SyncTxUnitTestCasetestPutTxorg.jboss.test.cache.test.replicated.SyncTxUnitTestCasetestStateReplicationorg.jboss.test.cluster.test.DRMTestCasetestNameChangesorg.jboss.test.naming.test.SimpleUnitTestCase
Modifications since last build:(3)1.4.2.6modifiedtdieslerjboss.net/src/main/org/jboss/net/axis/Deployment.javaFix: 10421761.1.2.4modifiedloubyanskyserver/src/main/org/jboss/ejb/plugins/lock/SimpleReadWriteEJBLock.java'recycle' read lock reliever if we failed to register transaction synchronization.1.1.2.3modifiedloubyanskyserver/src/main/org/jboss/ejb/plugins/lock/SimpleReadWriteEJBLock.javano change in logic, just reformated and removed unused imports.



[JBoss-dev] [Benchmarking] - Re: service=metadata is not registered

2004-10-26 Thread terryxian
I have fixed the problem. It is all because run.sh invoked jboss32-oracle-ds.xml 
instead of jboss40-oracle-ds.xml.  

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

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


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


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

2004-10-26 Thread qa

View results here -> http://cruisecontrol.jboss.com/cc/buildresults/jboss-4.0?log=log20041027001517Lbuild.100
BUILD COMPLETE-build.100Date of build:10/27/2004 00:15:17Time to build:76 minutes 22 secondsLast changed:10/26/2004 21:38:02Last log entry:Fix: 1042176




   Unit Tests: (1975)   Total Errors and Failures: (20)testAllTx_RWLockorg.jboss.test.cache.stress.EvictionLocalStressTestCasetestAllTx_RWLockorg.jboss.test.cache.stress.LocalStressTestCasetestWarXmlOverridesorg.jboss.test.classloader.test.ScopingUnitTestCasetestServletSessionLoadBalancingorg.jboss.test.cluster.test.WebSessionTestCaseunknownorg.jboss.test.jbossmq.test.LargeMessageUnitTestCaseunknownorg.jboss.test.jbossmq.test.OILConnectionUnitTestCasetestMCFDefaultValuesorg.jboss.test.jca.test.DeploymentUnitTestCasetestHaParitionNameorg.jboss.test.naming.test.SimpleUnitTestCasetestDiscoveryPortorg.jboss.test.naming.test.SimpleUnitTestCasetestEvictionorg.jboss.test.cache.test.eviction.ReplicatedLRUPolicyUnitTestCasetestEvictionReplicationorg.jboss.test.cache.test.eviction.ReplicatedLRUPolicyUnitTestCasetestThreadedAccess_RWLockorg.jboss.test.cache.test.generic.IdentityLockUnitTestCasetestThreadedAccess_SimpleLockorg.jboss.test.cache.test.generic.IdentityLockUnitTestCasetestStateTransferorg.jboss.test.cache.test.replicated.AsyncUnitTestCasetestSyncReplorg.jboss.test.cache.test.replicated.AsyncUnitTestCasetestSyncReplorg.jboss.test.cache.test.replicated.SyncTxUnitTestCasetestASyncReplorg.jboss.test.cache.test.replicated.SyncTxUnitTestCasetestPutorg.jboss.test.cache.test.replicated.SyncTxUnitTestCasetestPutTxorg.jboss.test.cache.test.replicated.SyncTxUnitTestCasetestNameChangesorg.jboss.test.naming.test.SimpleUnitTestCase
Modifications since last build:(1)1.16.2.1modifiedtdieslerjboss.net/src/main/org/jboss/net/axis/Deployment.javaFix: 1042176