[JBoss-user] [EJB/JBoss] - Re:

2005-06-27 Thread pchandra
No all session beans but only some.

And I found that in the -ejb-jar.xml files these are specified as stateful 
whereas I had been given to understand that there were no stateful EJBs.
When I checked the stacktrace I repeatedly saw a method call 
CreateStatefulSessionContainer(). That's what prompted me to check if some 
were stateful.
And I did indeed find some to be stateful.
So the problem is solved.




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

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


---
SF.Net email is sponsored by: Discover Easy Linux Migration Strategies
from IBM. Find simple to follow Roadmaps, straightforward articles,
informative Webcasts and more! Get everything you need to get up to
speed, fast. http://ads.osdn.com/?ad_id=7477alloc_id=16492op=click
___
JBoss-user mailing list
JBoss-user@lists.sourceforge.net
https://lists.sourceforge.net/lists/listinfo/jboss-user


[JBoss-user] [Persistence CMP/JBoss] - delay-updates-until-end-of-tx (BEA) and sync-on-commit-only

2005-06-27 Thread pchandra
I have 49 entity EJBs all having in their respective *-weblogic-ejb-jar.xml 
file the attribute:

delay-updates-until-end-of-tx
 set as in 
delay-updates-until-end-of-txfalse/delay-updates-until-end-of-tx

It looks like in JBoss 4.0.1 the equivalent is the attribute sync-on-commit-only
I find in the Standard CMP EntityBean configuration of standardjboss.xml:
-
container-configuration
  container-nameStandard BMP EntityBean/container-name
  call-loggingfalse/call-logging
  
invoker-proxy-binding-nameentity-rmi-invoker/invoker-proxy-binding-name
  sync-on-commit-onlyfalse/sync-on-commit-only
  insert-after-ejb-post-createfalse/insert-after-ejb-post-create

---

Am I right?


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

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


---
SF.Net email is sponsored by: Discover Easy Linux Migration Strategies
from IBM. Find simple to follow Roadmaps, straightforward articles,
informative Webcasts and more! Get everything you need to get up to
speed, fast. http://ads.osdn.com/?ad_id=7477alloc_id=16492op=click
___
JBoss-user mailing list
JBoss-user@lists.sourceforge.net
https://lists.sourceforge.net/lists/listinfo/jboss-user


[JBoss-user] [EJB/JBoss] - Missing/invalid instance-cache error with Stateless Sessio

2005-06-24 Thread pchandra
Hello!
I have the following -jboss.xml for all of my stateless session EJBs.
Trying to deploy on JBoss 4.0.1SP1 gives 
org.jboss.deployment.DeploymentException: 
Missing or invalid Instance Cache (in jboss.xml or standardjboss.xml); - nested 
throwable: (java.lang.ClassNotFoundException: No ClassLoaders found for: )
...
error message.

But I find in the standardjboss.xml that the element has empty value:
instance-cache/instance-cache

What gives? 
Thanks.

?xml version=1.0 encoding=UTF-8?
!DOCTYPE jboss PUBLIC -//JBoss//DTD JBOSS 4.0//EN 
http://www.jboss.org/j2ee/dtd/jboss_4_0.dtd;


enterprise-beans

ejb-nameAccountInquiryHome/ejb-name
jndi-nameAccountInquiryHome/jndi-name
configuration-nameAccountInquiryHomeConfig/configuration-name

/enterprise-beans
container-configurations
container-configuration extends=Standard Stateless SessionBean
container-nameAccountInquiryHomeConfig/container-name
container-pool-conf
100
true
6
/container-pool-conf
container-cache-conf
cache-policyorg.jboss.ejb.plugins.LRUEnterpriseContextCachePolicy/cache-policy
cache-policy-conf
min-capacity1/min-capacity
max-capacity100/max-capacity
max-bean-age10/max-bean-age
/cache-policy-conf
/container-cache-conf
/container-configuration
/container-configurations




standardjboss.xml excerpt:

container-configuration
container-nameStandard Stateless SessionBean/container-name
call-loggingfalse/call-logging
invoker-proxy-binding-namestateless-rmi-invoker/invoker-proxy-binding-name
container-interceptors
org.jboss.ejb.plugins.ProxyFactoryFinderInterceptor
org.jboss.ejb.plugins.LogInterceptor
org.jboss.ejb.plugins.SecurityInterceptor
!-- CMT --
org.jboss.ejb.plugins.TxInterceptorCMT
org.jboss.ejb.plugins.CallValidationInterceptor
org.jboss.ejb.plugins.MetricsInterceptor
org.jboss.webservice.server.ServiceEndpointInterceptor
org.jboss.ejb.plugins.StatelessSessionInstanceInterceptor
!-- BMT --
org.jboss.ejb.plugins.StatelessSessionInstanceInterceptor
org.jboss.ejb.plugins.TxInterceptorBMT
org.jboss.ejb.plugins.CallValidationInterceptor
org.jboss.ejb.plugins.MetricsInterceptor
org.jboss.webservice.server.ServiceEndpointInterceptor
org.jboss.resource.connectionmanager.CachedConnectionInterceptor
/container-interceptors
instance-poolorg.jboss.ejb.plugins.StatelessSessionInstancePool/instance-pool
instance-cache/instance-cache
persistence-manager/persistence-manager
container-pool-conf
100
/container-pool-conf
/container-configuration 

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

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


---
SF.Net email is sponsored by: Discover Easy Linux Migration Strategies
from IBM. Find simple to follow Roadmaps, straightforward articles,
informative Webcasts and more! Get everything you need to get up to
speed, fast. http://ads.osdn.com/?ad_id=7477alloc_id=16492op=click
___
JBoss-user mailing list
JBoss-user@lists.sourceforge.net
https://lists.sourceforge.net/lists/listinfo/jboss-user


[JBoss-user] [Persistence CMP/JBoss] - Re: CMR accross individually deployed ejb jars in the same J

2005-05-17 Thread pchandra
Hi I am also facing the exact same problem when trying to modify the dukesBank 
tutorial to simulate my real-life application's situation before committing to 
the multi-jar deployment.

Looks like nobody has responded?

I am saddened that almost every tutorial seems to think of single jar 
deployment only. I have 95 EJBs to be ported to JBoss.

Thanks
Chandra

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

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


---
This SF.Net email is sponsored by Oracle Space Sweepstakes
Want to be the first software developer in space?
Enter now for the Oracle Space Sweepstakes!
http://ads.osdn.com/?ad_id=7412alloc_id=16344op=click
___
JBoss-user mailing list
JBoss-user@lists.sourceforge.net
https://lists.sourceforge.net/lists/listinfo/jboss-user


[JBoss-user] [JBoss Getting Started Documentation] - Re: Error: can't find data source: java:/DefaultDS

2005-05-10 Thread pchandra
I was just about to start posting exactly the same problem and found you guys 
discussing it.
I will try your suggestion. 


Thanks
Chandra

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

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


---
This SF.Net email is sponsored by Oracle Space Sweepstakes
Want to be the first software developer in space?
Enter now for the Oracle Space Sweepstakes!
http://ads.osdn.com/?ad_id=7393alloc_id=16281op=click
___
JBoss-user mailing list
JBoss-user@lists.sourceforge.net
https://lists.sourceforge.net/lists/listinfo/jboss-user


[JBoss-user] [JBoss Getting Started Documentation] - Re: Error: can't find data source: java:/DefaultDS

2005-05-10 Thread pchandra
Just deleting the localDB phrase does it.
Startsup fine.

Thanks guys
Chandra

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

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


---
This SF.Net email is sponsored by Oracle Space Sweepstakes
Want to be the first software developer in space?
Enter now for the Oracle Space Sweepstakes!
http://ads.osdn.com/?ad_id=7393alloc_id=16281op=click
___
JBoss-user mailing list
JBoss-user@lists.sourceforge.net
https://lists.sourceforge.net/lists/listinfo/jboss-user


[JBoss-user] [JBoss Getting Started Documentation] - Re: Getting Started Guide - release 3

2005-05-10 Thread pchandra
[EMAIL PROTECTED] wrote : Yes, the tutorial works.  Use the the latest 
version at docs.jboss.org with the update 4 of the Sun J2EE tutorial.  
Everything works.  I've installed and run the examples dozens of times. 
  | 
  | 

Norman
As you can see in another thread, the tutorial does not work due to some wrong 
hsql-db.xml. I spent hours together until I found that thread where someone 
said the localDB=... phrase needs to be removed.

Chandra

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

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


---
This SF.Net email is sponsored by Oracle Space Sweepstakes
Want to be the first software developer in space?
Enter now for the Oracle Space Sweepstakes!
http://ads.osdn.com/?ad_id=7393alloc_id=16281op=click
___
JBoss-user mailing list
JBoss-user@lists.sourceforge.net
https://lists.sourceforge.net/lists/listinfo/jboss-user