[JBoss-user] [Clustering/JBoss] - JBoss clustering doesn't work in WAN environment

2005-09-23 Thread sboddula
Hi

JBoss clustering uses Jgroups communication (multicast) for Clustering 
technology . Although multicast is  enabled across all routers and firewalls , 
JBoss clustering doesn't work in the same network ( with different subnets )  . 
Why  JBoss cluster will behave like this ?  

Jboss clustering (4.0.2) did not work in a WAN environment . I just want to 
know , what are the limitations with JBoss clustering ?

Thanks  Regards,
Shashi Kanth


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

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


---
SF.Net email is sponsored by:
Tame your development challenges with Apache's Geronimo App Server. Download
it for free - -and be entered to win a 42 plasma tv or your very own
Sony(tm)PSP.  Click here to play: http://sourceforge.net/geronimo.php
___
JBoss-user mailing list
JBoss-user@lists.sourceforge.net
https://lists.sourceforge.net/lists/listinfo/jboss-user


[JBoss-user] [Installation, Configuration Deployment] - Concurrent sessions in JBoss 4.0.2

2005-09-23 Thread sboddula
Hi

I just want to know , is there any tool to find out number of concurrent 
sessions handled by JBoss server ?

And also , is there any document which will describe the difference between 
JBoss and other application server ? 


Thanks  Regards,
Shashi Kanth

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

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


---
SF.Net email is sponsored by:
Tame your development challenges with Apache's Geronimo App Server. Download
it for free - -and be entered to win a 42 plasma tv or your very own
Sony(tm)PSP.  Click here to play: http://sourceforge.net/geronimo.php
___
JBoss-user mailing list
JBoss-user@lists.sourceforge.net
https://lists.sourceforge.net/lists/listinfo/jboss-user


[JBoss-user] [Clustering/JBoss] - Clustering Dukes bank using Jboss-4.0.3RC2

2005-08-25 Thread sboddula
Hi,

I successfully deployed Dukes bank on Jboss-4.0.3RC2 . Now , i want to cluster 
this Dukes bank on 2 machines . I am following the Dukes bank clustering 
instructions specified in the jbossj2ee-clustering14.zip (readme.txt) file .  I 
am facing the problem at 5th step . After the cluster files are installed , 
when i am re-deploying Dukes bank , at the first step itself i am facing 
problems . 

When i run the command   #ant -f  jboss-build.xml compile , i am getting the 
following error .

compile:
[javac] Compiling 8 source files to 
/tmp/jboss-4.0.3RC2/j2eetutorial14/examples/bank/build
[javac] 
/tmp/jboss-4.0.3RC2/j2eetutorial14/examples/bank/src/com/sun/ebank/ejb/account/AccountBean.java:37:
 cannot resolve symbol
[javac] symbol  : class MissingPrimaryKeyException
[javac] location: package exception
[javac] import com.sun.ebank.ejb.exception.MissingPrimaryKeyException;
[javac]^
[javac] 
/tmp/jboss-4.0.3RC2/j2eetutorial14/examples/bank/src/com/sun/ebank/ejb/account/AccountBean.java:40:
 cannot resolve symbol
[javac] symbol  : class DBHelper
[javac] location: package util
[javac] import com.sun.ebank.util.DBHelper;
[javac]   ^
[javac] 
/tmp/jboss-4.0.3RC2/j2eetutorial14/examples/bank/src/com/sun/ebank/ejb/account/AccountBean.java:125:
 cannot resolve symbol
[javac] symbol  : class MissingPrimaryKeyException
[javac] location: class com.sun.ebank.ejb.account.AccountBean
[javac] throws CreateException, MissingPrimaryKeyException {
[javac] ^
[javac] 
/tmp/jboss-4.0.3RC2/j2eetutorial14/examples/bank/src/com/sun/ebank/ejb/account/AccountControllerBean.java:38:
 cannot resolve symbol
[javac] symbol  : class CustomerHome
[javac] location: package customer
[javac] import com.sun.ebank.ejb.customer.CustomerHome;
[javac]   ^
[javac] 
/tmp/jboss-4.0.3RC2/j2eetutorial14/examples/bank/src/com/sun/ebank/ejb/account/AccountControllerBean.java:39:
 cannot resolve symbol
[javac] symbol  : class Customer
[javac] location: package customer
[javac] import com.sun.ebank.ejb.customer.Customer;
[javac]   ^
[javac] 
/tmp/jboss-4.0.3RC2/j2eetutorial14/examples/bank/src/com/sun/ebank/ejb/account/AccountControllerBean.java:40:
 cannot resolve symbol
[javac] symbol  : class MissingPrimaryKeyException
[javac] location: package exception
[javac] import com.sun.ebank.ejb.exception.MissingPrimaryKeyException;
[javac]^
[javac] 
/tmp/jboss-4.0.3RC2/j2eetutorial14/examples/bank/src/com/sun/ebank/ejb/account/AccountControllerBean.java:50:
 cannot resolve symbol
[javac] symbol  : class DBHelper
[javac] location: package util
[javac] import com.sun.ebank.util.DBHelper;
[javac]   ^
[javac] 
/tmp/jboss-4.0.3RC2/j2eetutorial14/examples/bank/src/com/sun/ebank/ejb/account/AccountControllerBean.java:58:
 cannot resolve symbol
[javac] symbol  : class AccountHome
[javac] location: class com.sun.ebank.ejb.account.AccountControllerBean
[javac] private AccountHome accountHome;
[javac] ^
[javac] 
/tmp/jboss-4.0.3RC2/j2eetutorial14/examples/bank/src/com/sun/ebank/ejb/account/AccountControllerBean.java:59:
 cannot resolve symbol
[javac] symbol  : class Account
[javac] location: class com.sun.ebank.ejb.account.AccountControllerBean
[javac] private Account account;
[javac] ^
[javac] 
/tmp/jboss-4.0.3RC2/j2eetutorial14/examples/bank/src/com/sun/ebank/ejb/customer/CustomerBean.java:36:
 cannot resolve symbol
[javac] symbol  : class MissingPrimaryKeyException
[javac] location: package exception
[javac] import com.sun.ebank.ejb.exception.MissingPrimaryKeyException;
[javac]^
[javac] 
/tmp/jboss-4.0.3RC2/j2eetutorial14/examples/bank/src/com/sun/ebank/ejb/customer/CustomerBean.java:114:
 cannot resolve symbol
[javac] symbol  : class MissingPrimaryKeyException
[javac] location: class com.sun.ebank.ejb.customer.CustomerBean
[javac] throws CreateException, MissingPrimaryKeyException {
[javac] ^
[javac] 
/tmp/jboss-4.0.3RC2/j2eetutorial14/examples/bank/src/com/sun/ebank/ejb/customer/CustomerControllerBean.java:40:
 cannot resolve symbol
[javac] symbol  : class DBHelper
[javac] location: package util
[javac] import com.sun.ebank.util.DBHelper;
[javac]   ^
[javac] 
/tmp/jboss-4.0.3RC2/j2eetutorial14/examples/bank/src/com/sun/ebank/ejb/customer/CustomerControllerBean.java:48:
 cannot resolve symbol
[javac] symbol  : class CustomerHome
[javac] location: class com.sun.ebank.ejb.customer.CustomerControllerBean
[javac] private CustomerHome customerHome;

[JBoss-user] [JBoss Getting Started Documentation] - Duke bank on Jboss-4.0.2

2005-08-21 Thread sboddula
Hi,
When i am deploying JbossDukeBank.ear file , i am getting the following error . 
Please anybody tell me what is the cause for this problem.



17:32:22,299 INFO  [EARDeployer] Init J2EE application: 
file:/root/SuSE-Document 
ation/Jboss/Jboss-Working-4.0.2/jboss-4.0.2/server/all/deploy/JBossDukesBank.ear
17:32:22,620 WARN  [verifier] EJB spec violation:
Bean   : CustomerBean
Section: 12.2.2
Warning: The class must be defined as public and must not be abstract.
 
17:32:22,625 WARN  [verifier] EJB spec violation:
Bean   : CustomerBean
Section: 12.2.5
Warning: Every entity bean must define the ejbFindByPrimaryKey method.
 
17:32:22,627 WARN  [verifier] EJB spec violation:
Bean   : CustomerBean
Section: 22.2
Warning: The bean provider must specify the fully-qualified name of the 
enterpri se bean's local home interface, if any, in the local-home element.
Info   : Class not found on 'com.sun.ebank.ejb.customer.CustomerHome': No 
ClassL oaders found for: com.sun.ebank.ejb.customer.CustomerHome
 
17:32:22,672 WARN  [verifier] EJB spec violation:
Bean   : CustomerBean
Section: 22.2
Warning: The bean provider must specify the fully-qualified name of the 
enterpri se bean's local interface, if any, in the  element.
Info   : Class not found on 'com.sun.ebank.ejb.customer.Customer': No 
ClassLoade rs found for: com.sun.ebank.ejb.customer.Customer
 
17:32:22,672 WARN  [verifier] EJB spec violation:
Bean   : CustomerBean
Section: 12.2.1
Warning: The Bean Provider must provide a remote interface and a remote home 
int erface or a local interface and a local home interface for the bean.
 
17:32:22,674 WARN  [verifier] EJB spec violation:
Bean   : AccountBean
Section: 12.2.2
Warning: The class must be defined as public and must not be abstract.
 
17:32:22,678 WARN  [verifier] EJB spec violation:
Bean   : AccountBean
Section: 12.2.5
Warning: Every entity bean must define the ejbFindByPrimaryKey method.
 
17:32:22,681 WARN  [verifier] EJB spec violation:
Bean   : AccountBean
Section: 22.2
Warning: The bean provider must specify the fully-qualified name of the 
enterpri se bean's local home interface, if any, in the local-home element.
Info   : Class not found on 'com.sun.ebank.ejb.account.AccountHome': No 
ClassLoa ders found for: com.sun.ebank.ejb.account.AccountHome
 
17:32:22,682 WARN  [verifier] EJB spec violation:
Bean   : AccountBean
Section: 22.2
Warning: The bean provider must specify the fully-qualified name of the 
enterpri se bean's local interface, if any, in the  element.
Info   : Class not found on 'com.sun.ebank.ejb.account.Account': No 
ClassLoaders  found for: com.sun.ebank.ejb.account.Account
 
17:32:22,682 WARN  [verifier] EJB spec violation:
Bean   : AccountBean
Section: 12.2.1
Warning: The Bean Provider must provide a remote interface and a remote home 
int erface or a local interface and a local home interface for the bean.
 
17:32:22,684 WARN  [verifier] EJB spec violation:
Bean   : TxBean
Section: 12.2.2
Warning: The class must be defined as public and must not be abstract.
 
17:32:22,686 WARN  [verifier] EJB spec violation:
Bean   : TxBean
Section: 12.2.5
Warning: Every entity bean must define the ejbFindByPrimaryKey method.
 
17:32:22,688 WARN  [verifier] EJB spec violation:
Bean   : TxBean
Section: 22.2
Warning: The bean provider must specify the fully-qualified name of the 
enterpri se bean's local home interface, if any, in the local-home element.
Info   : Class not found on 'com.sun.ebank.ejb.tx.TxHome': No ClassLoaders 
found  for: com.sun.ebank.ejb.tx.TxHome
 
17:32:22,689 WARN  [verifier] EJB spec violation:
Bean   : TxBean
Section: 22.2
Warning: The bean provider must specify the fully-qualified name of the 
enterpri se bean's local interface, if any, in the  element.
Info   : Class not found on 'com.sun.ebank.ejb.tx.Tx': No ClassLoaders found 
for : com.sun.ebank.ejb.tx.Tx
 
17:32:22,689 WARN  [verifier] EJB spec violation:
Bean   : TxBean
Section: 12.2.1
Warning: The Bean Provider must provide a remote interface and a remote home 
int erface or a local interface and a local home interface for the bean.
 
17:32:22,732 ERROR [MainDeployer] could not create deployment: 
file:/root/SuSE-D 
ocumentation/Jboss/Jboss-Working-4.0.2/jboss-4.0.2/server/all/tmp/deploy/tmp1834
 5JBossDukesBank.ear-contents/bank-ejb.jar
org.jboss.deployment.DeploymentException: Verification of Enterprise Beans 
faile d, see above for error messages.
at org.jboss.ejb.EJBDeployer.create(EJBDeployer.java:553)
at org.jboss.deployment.MainDeployer.create(MainDeployer.java:918)
at org.jboss.deployment.MainDeployer.create(MainDeployer.java:910)
at org.jboss.deployment.MainDeployer.deploy(MainDeployer.java:774)
at org.jboss.deployment.MainDeployer.deploy(MainDeployer.java:738)
at sun.reflect.GeneratedMethodAccessor19.invoke(Unknown Source)
at 
sun.reflect.DelegatingMethodAccessorImpl.invoke(DelegatingMethodAcces 
sorImpl.java(Compiled Code))
at 

[JBoss-user] [JBoss Getting Started Documentation] - HSQLDB with Duke bank on Jboss-4.0.2

2005-08-21 Thread sboddula
Hi,

I just want to know is HSQLDB is by default coming with Duke bank application ? 
 . Because , i thought that we need to load HSQLDB separately . But , When i 
started HSQLDB separately , it is listening on the port number 9001 . But , if 
we look at the file hsqldb-ds.xml file , we will observe 1701 port number . 


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

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


---
SF.Net email is Sponsored by the Better Software Conference  EXPO
September 19-22, 2005 * San Francisco, CA * Development Lifecycle Practices
Agile  Plan-Driven Development * Managing Projects  Teams * Testing  QA
Security * Process Improvement  Measurement * http://www.sqe.com/bsce5sf
___
JBoss-user mailing list
JBoss-user@lists.sourceforge.net
https://lists.sourceforge.net/lists/listinfo/jboss-user


[JBoss-user] [JBoss Getting Started Documentation] - Re: dukebank with HSQL

2005-08-21 Thread sboddula
You will get this problem when you didn't modify the hsqldb-ds.xml file properly

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

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


---
SF.Net email is Sponsored by the Better Software Conference  EXPO
September 19-22, 2005 * San Francisco, CA * Development Lifecycle Practices
Agile  Plan-Driven Development * Managing Projects  Teams * Testing  QA
Security * Process Improvement  Measurement * http://www.sqe.com/bsce5sf
___
JBoss-user mailing list
JBoss-user@lists.sourceforge.net
https://lists.sourceforge.net/lists/listinfo/jboss-user


[JBoss-user] [JBoss Getting Started Documentation] - Re: JBoss 4.0.1sp1 JBossDukesBank EJB spec violation

2005-08-21 Thread sboddula
I am also facing same problem .  I am using Jboss-4.0.2, 
j2ee-1_4-doc-tutorial_5 , IBM Java 1.4.2 and ant-1.6 . Anybody help me on this .


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

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


---
SF.Net email is Sponsored by the Better Software Conference  EXPO
September 19-22, 2005 * San Francisco, CA * Development Lifecycle Practices
Agile  Plan-Driven Development * Managing Projects  Teams * Testing  QA
Security * Process Improvement  Measurement * http://www.sqe.com/bsce5sf
___
JBoss-user mailing list
[EMAIL PROTECTED]
https://lists.sourceforge.net/lists/listinfo/jboss-user


[JBoss-user] [JBoss Getting Started Documentation] - Re: Cannot deploy dukes bank application

2005-08-21 Thread sboddula
I am facing same issue . I am using  j2ee-1_4-doc-tutorial_5.zip , Jboss-4.0.2, 
IBM Java 1.4.2 .

Can anybody tell me how you solved this problem 

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

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


---
SF.Net email is Sponsored by the Better Software Conference  EXPO
September 19-22, 2005 * San Francisco, CA * Development Lifecycle Practices
Agile  Plan-Driven Development * Managing Projects  Teams * Testing  QA
Security * Process Improvement  Measurement * http://www.sqe.com/bsce5sf
___
JBoss-user mailing list
[EMAIL PROTECTED]
https://lists.sourceforge.net/lists/listinfo/jboss-user