[JBoss-user] [Beginners Corner] - Re: NoInitialContextException could not create deployment:

2004-11-19 Thread darranl
The jar that you need for the client is jbossall-client.jar

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

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


---
This SF.Net email is sponsored by: InterSystems CACHE
FREE OODBMS DOWNLOAD - A multidimensional database that combines
robust object and relational technologies, making it a perfect match
for Java, C++,COM, XML, ODBC and JDBC. www.intersystems.com/match8
___
JBoss-user mailing list
[EMAIL PROTECTED]
https://lists.sourceforge.net/lists/listinfo/jboss-user


[JBoss-user] [Messaging, JMS JBossMQ] - Re: HAJMS: SpyJMSException after fail-over of master node

2004-11-19 Thread ckmod
Hi,

I have found the cause and want to let you know: The queueConnectionFactory was 
invalid after a fail-over occured. When I get a new QueueConnectionFactory from 
the HA-JNDI-Tree every time it is working perfectly :-).

Claus

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

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


---
This SF.Net email is sponsored by: InterSystems CACHE
FREE OODBMS DOWNLOAD - A multidimensional database that combines
robust object and relational technologies, making it a perfect match
for Java, C++,COM, XML, ODBC and JDBC. www.intersystems.com/match8
___
JBoss-user mailing list
[EMAIL PROTECTED]
https://lists.sourceforge.net/lists/listinfo/jboss-user


[JBoss-user] [Security JAAS/JBoss] - which PKCS#1 version is jboss support?

2004-11-19 Thread edenshu
I have a question about that: which version is it, would jboss use any further 
security standard in Jboss Ap Server?
No matter jboss Application Server 3.2.x or  4.0, will any version of PCKS#1 be 
suggested to use?
Or~ some of them have been already use?
Any reply will be so appreciate!

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

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


---
This SF.Net email is sponsored by: InterSystems CACHE
FREE OODBMS DOWNLOAD - A multidimensional database that combines
robust object and relational technologies, making it a perfect match
for Java, C++,COM, XML, ODBC and JDBC. www.intersystems.com/match8
___
JBoss-user mailing list
[EMAIL PROTECTED]
https://lists.sourceforge.net/lists/listinfo/jboss-user


[JBoss-user] [Security JAAS/JBoss] - Re: which PKCS#1 version is jboss support?

2004-11-19 Thread edenshu
sorry~
I also want to know, where can get more information about this?
I can't find any thing about this in Jboss AP Server document.
I have try to find the PKCS#1 version (1.5 or 2.0) inside Jboss 3.2.x for a 
long time.
Hope someone can guide me to get such kind of information!
many thx!

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

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


---
This SF.Net email is sponsored by: InterSystems CACHE
FREE OODBMS DOWNLOAD - A multidimensional database that combines
robust object and relational technologies, making it a perfect match
for Java, C++,COM, XML, ODBC and JDBC. www.intersystems.com/match8
___
JBoss-user mailing list
[EMAIL PROTECTED]
https://lists.sourceforge.net/lists/listinfo/jboss-user


[JBoss-user] [Beginners Corner] - No appenders could be found for logger (org.jnp.interfaces.N

2004-11-19 Thread alexb_1593
Hi all,

I am trying to invoke an EJB session bean through RMI, using the following 
piece of code:



if (System.getSecurityManager() == null) 
{
System.setSecurityManager(new RMISecurityManager()
{
 public void checkConnect(String host, int port) {}
 public void checkConnect(String host, int port, Object context) {}
 public void checkPermission(Permission perm, Object context) {}
 public void checkPermission(Permission perm) {}
 });
 }

String registryAddr = jnp://+ip+:+port+/;
Hashtable rmiHash = new Hashtable();

rmiHash.put(java.naming.factory.initial,
org.jnp.interfaces.NamingContextFactory);

rmiHash.put(java.naming.provider.url,registryAddr);

rmiHash.put(java.naming.factory.url.pkgs,
org.jboss.naming:org.jnp.interfaces);

rmiHash.put(jnp.socketFactory,
org.jnp.interfaces.TimedSocketFactory);

rmiHash.put(jnp.timeout,0);
rmiHash.put(jnp.sotimeout,0);

InitialContext ic = new InitialContext(rmiHash);
return ic.lookup(jndiName);



When invoke this piece of code I get the following message:

No appenders could be found for logger (org.jnp.interfaces.NamingContext)

Thetre is no problem after that, the methods of the remote object are executing 
OK. I just would like to know why this message appears. I am developing a 
console that calls various objects through RMI and this message in question 
just tends to remain on top of the window when it appears and it is quite a 
nuisance.

Thanks, Alex

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

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


---
This SF.Net email is sponsored by: InterSystems CACHE
FREE OODBMS DOWNLOAD - A multidimensional database that combines
robust object and relational technologies, making it a perfect match
for Java, C++,COM, XML, ODBC and JDBC. www.intersystems.com/match8
___
JBoss-user mailing list
[EMAIL PROTECTED]
https://lists.sourceforge.net/lists/listinfo/jboss-user


[JBoss-user] [Beginners Corner] - Re: No appenders could be found for logger (org.jnp.interfac

2004-11-19 Thread alexb_1593
Correction: the full text of the message is:

No appenders could be found for logger (org.jnp.interfaces.NamingContext)

log4j:WARN Please initialize the log4j system properly.

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

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


---
This SF.Net email is sponsored by: InterSystems CACHE
FREE OODBMS DOWNLOAD - A multidimensional database that combines
robust object and relational technologies, making it a perfect match
for Java, C++,COM, XML, ODBC and JDBC. www.intersystems.com/match8
___
JBoss-user mailing list
[EMAIL PROTECTED]
https://lists.sourceforge.net/lists/listinfo/jboss-user


[JBoss-user] [Persistence CMP/JBoss] - Re: More than one datasource possible?

2004-11-19 Thread lefou
Thanks, I will try that.

Is it possible, to set different transaction levels for every data source?
The (old) Inprise specific DD looks like this (only ds-part):

inprise-specific
  | datasource
  | jndi-namejdbc/MTBDataSource/jndi-name
  | urljdbc:oracle:thin:@xx.xx.xx.xx:1521:memos/url
  | usernamexxx/username
  | passwordxxx/password
  | isolation-levelTRANSACTION_READ_COMMITTED/isolation-level
  | 
driver-class-nameoracle.jdbc.driver.OracleDriver/driver-class-name
  | /datasource
  | datasource
  | jndi-namejdbc/MTB1DataSource/jndi-name
  | urljdbc:oracle:thin:@xx.xx.xx.xx:1521:memos/url
  | usernamexxx/username
  | passwordxxx/password
  | isolation-levelTRANSACTION_SERIALIZABLE/isolation-level
  | 
driver-class-nameoracle.jdbc.driver.OracleDriver/driver-class-name
  | /datasource
  | datasource
  | jndi-namejdbc/MTBSecondSource/jndi-name
  | urljdbc:oracle:thin:@xx.xx.xx.xx:1521:memos/url
  | usernamexxx/username
  | passwordxxx/password
  | isolation-levelTRANSACTION_NONE/isolation-level
  | 
driver-class-nameoracle.jdbc.driver.OracleDriver/driver-class-name
  | /datasource
  | /datasource-definitions
  | /inprise-specific

You see, the different data soures are more a cosmetic way, to deal with the 
transaction/isolation level. Honestly, I don't know, how to set up the 
transaction level for a data soure in JBoss.

lefou

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

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


---
This SF.Net email is sponsored by: InterSystems CACHE
FREE OODBMS DOWNLOAD - A multidimensional database that combines
robust object and relational technologies, making it a perfect match
for Java, C++,COM, XML, ODBC and JDBC. www.intersystems.com/match8
___
JBoss-user mailing list
[EMAIL PROTECTED]
https://lists.sourceforge.net/lists/listinfo/jboss-user


[JBoss-user] [Installation Configuration] - Re: Problem connecting AS400

2004-11-19 Thread potdl
sorry did`nt have time to check your prob, but this code works on my as/400.

hope it helps

  |   ?xml version=1.0 encoding=UTF-8 ? 
  | - datasources
  | - local-tx-datasource
  |   jndi-nameas400/jndi-name 
  |   driver-classcom.ibm.as400.access.AS400JDBCDriver/driver-class 
  |   connection-urljdbc:as400://IP ADDRESS;block size=128;extended 
dynamic=true;package=JBOSS;package cache=true;package 
library=QGPL/connection-url 
  |   connection-property name=librariesLIB/connection-property 
  |   connection-property name=namingsql/connection-property 
  |   connection-property name=userUSER/connection-property 
  |   connection-property name=passwordPASSWORD/connection-property 
  |   connection-property name=accessall/connection-property 
  |   connection-property name=char.encodingUTF-8/connection-property 
  |   application-managed-security / 
  |   /local-tx-datasource
  |   /datasources
  | 

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

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


---
This SF.Net email is sponsored by: InterSystems CACHE
FREE OODBMS DOWNLOAD - A multidimensional database that combines
robust object and relational technologies, making it a perfect match
for Java, C++,COM, XML, ODBC and JDBC. www.intersystems.com/match8
___
JBoss-user mailing list
[EMAIL PROTECTED]
https://lists.sourceforge.net/lists/listinfo/jboss-user


[JBoss-user] [Installation Configuration] - Regd : Port Number

2004-11-19 Thread arvind_pv
Hi all,

i have created a two seperate instances of JBoss (EJB Deployment) and in one 
instance i have not changed any port numbers, but in other application i have 
changed the all port numbers of sample-binding.xml.
Even after changing it, I'm getting the error as Address is in use : JVMBind.

please help me in solving this problem

thanks 
arvind

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

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


---
This SF.Net email is sponsored by: InterSystems CACHE
FREE OODBMS DOWNLOAD - A multidimensional database that combines
robust object and relational technologies, making it a perfect match
for Java, C++,COM, XML, ODBC and JDBC. www.intersystems.com/match8
___
JBoss-user mailing list
[EMAIL PROTECTED]
https://lists.sourceforge.net/lists/listinfo/jboss-user


[JBoss-user] [Installation Configuration] - Re: Again the old question ;-) LocalTXCM

2004-11-19 Thread [EMAIL PROTECTED]
hi ltexier,

thanks a lot for your reply!

but I still don't have a solution and i can`t find any strange things in the 
logging files.

unfortunately, I don`t realy understand what this means:


  | MBEANS THAT ARE THE ROOT CAUSE OF THE PROBLEM:
  | ObjectName: jboss.jca:name=MySqlDS,service=LocalTxCM
  |  state: NOTYETINSTALLED
  |  I Depend On: 
  |  Depends On Me:  jboss.mq:service=StateManager
  | 

sorry  about my question, but i can`t help me any more by myself ;-(

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

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


---
This SF.Net email is sponsored by: InterSystems CACHE
FREE OODBMS DOWNLOAD - A multidimensional database that combines
robust object and relational technologies, making it a perfect match
for Java, C++,COM, XML, ODBC and JDBC. www.intersystems.com/match8
___
JBoss-user mailing list
[EMAIL PROTECTED]
https://lists.sourceforge.net/lists/listinfo/jboss-user


[JBoss-user] [Messaging, JMS JBossMQ] - JNDI service loses bindings

2004-11-19 Thread bene.net
we are using JBoss (build: CVSTag=JBoss_3_2_1 date=200305041533) on over 60 
servers at a customer site.
OS is Linux 2.4.19-4GB, Java VM 1.4.1_02-b06

After JBoss startup the JNDI tree contains the following bindings, whereas 
after a certain time the same JNDI tree does no longer contain them (listings 
received from jmx-console):
java namespace:
java:/XAConnectionFactory
java:/ConnectionFactory
java:/jaas/jbossmq

global namespace:
  +- OIL2XAConnectionFactory (class: org.jboss.mq.SpyXAConnectionFactory)
  +- HTTPXAConnectionFactory (class: org.jboss.mq.SpyXAConnectionFactory)
  +- ConnectionFactory (class: org.jboss.mq.SpyConnectionFactory)
  +- HTTPConnectionFactory (class: org.jboss.mq.SpyConnectionFactory)
  +- XAConnectionFactory (class: org.jboss.mq.SpyXAConnectionFactory)
  +- UserTransaction (class: org.jboss.tm.usertx.client.ClientUserTransaction)
  +- UILXAConnectionFactory (class: org.jboss.mq.SpyXAConnectionFactory)
  +- RMIXAConnectionFactory (class: org.jboss.mq.SpyXAConnectionFactory)
  +- UIL2XAConnectionFactory (class: org.jboss.mq.SpyXAConnectionFactory)
  +- topic (class: org.jnp.interfaces.NamingContext)
  |   +- testDurableTopic (class: org.jboss.mq.SpyTopic)
  |   +- testTopic (class: org.jboss.mq.SpyTopic)
  |   +- securedTopic (class: org.jboss.mq.SpyTopic)
  +- queue (class: org.jnp.interfaces.NamingContext)
  |   +- A (class: org.jboss.mq.SpyQueue)
  |   +- ReplicationQueue (class: org.jboss.mq.SpyQueue)
  |   +- testQueue (class: org.jboss.mq.SpyQueue)
  |   +- ex (class: org.jboss.mq.SpyQueue)
  |   +- DLQ (class: org.jboss.mq.SpyQueue)
  |   +- D (class: org.jboss.mq.SpyQueue)
  |   +- C (class: org.jboss.mq.SpyQueue)
  |   +- B (class: org.jboss.mq.SpyQueue)
  +- UIL2ConnectionFactory (class: org.jboss.mq.SpyConnectionFactory)
  +- UILConnectionFactory (class: org.jboss.mq.SpyConnectionFactory)
  +- RMIConnectionFactory (class: org.jboss.mq.SpyConnectionFactory)
  +- OIL2ConnectionFactory (class: org.jboss.mq.SpyConnectionFactory)

What event causes the JNDI service to lose the JMS related bindings?
The missing bindings causes a an exception (given below) which is repeated 
every 10 seconds, which causes my logfiles to grow very fast. This is the 
reason why I could not yet identify which event caused the loss of the bindings.

The following exception does not occur on JBoss startup! (thus this topic is 
not related to all the other 'XAConnectionFactory not bound' posts I found)


  | INFO; 2004-11-17 20:01:46,039; 
[org.jboss.system.ServiceMBeanSupport.destroy(ServiceMBeanSupport.java:265)]; 
Destroying
  |   INFO; 2004-11-17 20:01:46,043; 
[org.jboss.system.ServiceMBeanSupport.destroy(ServiceMBeanSupport.java:283)]; 
Destroyed
  |  DEBUG; 2004-11-17 20:01:46,047; 
[org.jboss.ejb.plugins.jms.JMSContainerInvoker.innerCreate(JMSContainerInvoker.java:383)];
 Initializing
  |  DEBUG; 2004-11-17 20:01:46,051; 
[org.jboss.ejb.plugins.jms.JMSContainerInvoker.getJMSProviderAdapter(JMSContainerInvoker.java:804)];
 Looking up provider adapter: java:/DefaultJMSProvider
  |  DEBUG; 2004-11-17 20:01:46,056; 
[org.jboss.ejb.plugins.jms.JMSContainerInvoker.innerCreate(JMSContainerInvoker.java:387)];
 Provider adapter: [EMAIL PROTECTED]
  |  TRACE; 2004-11-17 20:01:46,062; 
[org.jboss.system.ServiceMBeanSupport.init(ServiceMBeanSupport.java:70)]; 
Constructing
  |   INFO; 2004-11-17 20:01:46,066; 
[org.jboss.system.ServiceMBeanSupport.create(ServiceMBeanSupport.java:154)]; 
Creating
  |  DEBUG; 2004-11-17 20:01:46,070; 
[org.jboss.jms.jndi.JBossMQProvider.getInitialContext(JBossMQProvider.java:89)];
 no provider url; connecting to local JNDI
  |  DEBUG; 2004-11-17 20:01:46,094; 
[org.jboss.jms.jndi.JBossMQProvider.getInitialContext(JBossMQProvider.java:106)];
 created context: [EMAIL PROTECTED]
  |  ERROR; 2004-11-17 20:01:46,099; 
[org.jboss.system.ServiceMBeanSupport.create(ServiceMBeanSupport.java:163)]; 
Initialization failed
  |  javax.jms.JMSException: Error creating the dlq connection: 
XAConnectionFactory not bound
  | at 
org.jboss.ejb.plugins.jms.DLQHandler.createService(DLQHandler.java:152)
  | at 
org.jboss.system.ServiceMBeanSupport.create(ServiceMBeanSupport.java:158)
  | at 
org.jboss.ejb.plugins.jms.JMSContainerInvoker.innerCreate(JMSContainerInvoker.java:394)
  | at 
org.jboss.ejb.plugins.jms.JMSContainerInvoker.startService(JMSContainerInvoker.java:579)
  | at 
org.jboss.ejb.plugins.jms.JMSContainerInvoker$ExceptionListenerImpl.onException(JMSContainerInvoker.java:1079)
  | at 
org.jboss.ejb.plugins.jms.JMSContainerInvoker$1.run(JMSContainerInvoker.java:591)
  |  INFO; 2004-11-17 20:01:46,105; 
[org.jboss.ejb.plugins.jms.JMSContainerInvoker$ExceptionListenerImpl.onException(JMSContainerInvoker.java:1082)];
 Reconnected to JMS provider
  |   WARN; 2004-11-17 20:01:46,110; 
[org.jboss.ejb.plugins.jms.JMSContainerInvoker$ExceptionListenerImpl.onException(JMSContainerInvoker.java:1059)];
 JMS provider failure detected: 
  |  javax.jms.JMSException: 

[JBoss-user] [HTTPD, Servlets JSP] - How do I get the basedir of a web application at runtime?

2004-11-19 Thread fatbatman
Hello,

How do I get the basedir of a web application at runtime?

thanks in advance

James

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

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


---
This SF.Net email is sponsored by: InterSystems CACHE
FREE OODBMS DOWNLOAD - A multidimensional database that combines
robust object and relational technologies, making it a perfect match
for Java, C++,COM, XML, ODBC and JDBC. www.intersystems.com/match8
___
JBoss-user mailing list
[EMAIL PROTECTED]
https://lists.sourceforge.net/lists/listinfo/jboss-user


[JBoss-user] [HTTPD, Servlets JSP] - Re: Session passivation...

2004-11-19 Thread navert
Hi Gael,
i got the same problem with non seriarizable classes
any response?
thanks
navert

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

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


---
This SF.Net email is sponsored by: InterSystems CACHE
FREE OODBMS DOWNLOAD - A multidimensional database that combines
robust object and relational technologies, making it a perfect match
for Java, C++,COM, XML, ODBC and JDBC. www.intersystems.com/match8
___
JBoss-user mailing list
[EMAIL PROTECTED]
https://lists.sourceforge.net/lists/listinfo/jboss-user


[JBoss-user] [Installation Configuration] - A Plateform for JBoss

2004-11-19 Thread SecMid
We are looking for someone who tested JBoss performances under Windows and 
under Linux. 

We have a lot of applications on several Srv but we have to choose between 
Win2000 (or Win2003) and Linux.
This choice must be objective and we have to present some test results. 

So if you can help us you're welcome

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

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


---
This SF.Net email is sponsored by: InterSystems CACHE
FREE OODBMS DOWNLOAD - A multidimensional database that combines
robust object and relational technologies, making it a perfect match
for Java, C++,COM, XML, ODBC and JDBC. www.intersystems.com/match8
___
JBoss-user mailing list
[EMAIL PROTECTED]
https://lists.sourceforge.net/lists/listinfo/jboss-user


[JBoss-user] [HTTPD, Servlets JSP] - Re: How do I get the basedir of a web application at runtime

2004-11-19 Thread fatbatman
...from within a servlet

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

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


---
This SF.Net email is sponsored by: InterSystems CACHE
FREE OODBMS DOWNLOAD - A multidimensional database that combines
robust object and relational technologies, making it a perfect match
for Java, C++,COM, XML, ODBC and JDBC. www.intersystems.com/match8
___
JBoss-user mailing list
[EMAIL PROTECTED]
https://lists.sourceforge.net/lists/listinfo/jboss-user


[JBoss-user] [Beginners Corner] - Can't Deploy

2004-11-19 Thread stedo
hi,

I've just started working with JBoss, I followed the Fibo tutorial and I am 
stuck at deployment. Everything seems okay but I get the following error 
message:

15:17:19,024 WARN  [verifier] EJB spec violation: 
Bean   : Fibo
Section: 22.2
Warning: The bean provider must specify the fully-qualified name of the 
enterprise bean's remote home interface, if any, in the  element.
Info   : Class not found on 'tutorial.interfaces.FiboHome': No ClassLoaders 
found for: tutorial.interfaces.FiboHome

15:17:19,028 WARN  [verifier] EJB spec violation: 
Bean   : Fibo
Section: 22.2
Warning: The bean provider must specify the fully-qualified name of the 
enterprise bean's remote interface, if any, in the  element.
Info   : Class not found on 'tutorial.interfaces.Fibo': No ClassLoaders found 
for: tutorial.interfaces.Fibo

15:17:19,029 WARN  [verifier] EJB spec violation: 
Bean   : Fibo
Section: 7.10.1
Warning: The session bean must implement either a remote home and remote, or a 
local home and a local interface.

15:17:19,029 ERROR [MainDeployer] could not create deployment: 
file:/opt/jboss-3.2.6/server/default/tmp/deploy/tmp25199FiboApp.ear-contents/FiboEJB.jar
org.jboss.deployment.DeploymentException: Verification of Enterprise Beans 
failed, see above for error messages.
at org.jboss.ejb.EJBDeployer.create(EJBDeployer.java:517)
at org.jboss.deployment.MainDeployer.create(MainDeployer.java:783)
at org.jboss.deployment.MainDeployer.create(MainDeployer.java:775)
at org.jboss.deployment.MainDeployer.deploy(MainDeployer.java:640)
at org.jboss.deployment.MainDeployer.deploy(MainDeployer.java:604)
at sun.reflect.GeneratedMethodAccessor15.invoke(Unknown Source)
at 
sun.reflect.DelegatingMethodAccessorImpl.invoke(DelegatingMethodAccessorImpl.java:25)
at java.lang.reflect.Method.invoke(Method.java:324)
at 
org.jboss.mx.server.ReflectedDispatcher.dispatch(ReflectedDispatcher.java:60)
at org.jboss.mx.server.Invocation.dispatch(Invocation.java:62)
at org.jboss.mx.server.Invocation.dispatch(Invocation.java:54)
at org.jboss.mx.server.Invocation.invoke(Invocation.java:82)
at 
org.jboss.mx.server.AbstractMBeanInvoker.invoke(AbstractMBeanInvoker.java:197)
at org.jboss.mx.server.MBeanServerImpl.invoke(MBeanServerImpl.java:473)
at org.jboss.mx.util.MBeanProxyExt.invoke(MBeanProxyExt.java:176)
at $Proxy8.deploy(Unknown Source)
at 
org.jboss.deployment.scanner.URLDeploymentScanner.deploy(URLDeploymentScanner.java:304)
at 
org.jboss.deployment.scanner.URLDeploymentScanner.scan(URLDeploymentScanner.java:478)
at 
org.jboss.deployment.scanner.AbstractDeploymentScanner$ScannerThread.doScan(AbstractDeploymentScanner.java:201)
at 
org.jboss.deployment.scanner.AbstractDeploymentScanner$ScannerThread.loop(AbstractDeploymentScanner.java:212)
at 
org.jboss.deployment.scanner.AbstractDeploymentScanner$ScannerThread.run(AbstractDeploymentScanner.java:191)
15:17:19,032 ERROR [MainDeployer] could not create deployment: 
file:/opt/jboss-3.2.6/server/default/deploy/FiboApp.ear
org.jboss.deployment.DeploymentException: Verification of Enterprise Beans 
failed, see above for error messages.
at org.jboss.ejb.EJBDeployer.create(EJBDeployer.java:517)
at org.jboss.deployment.MainDeployer.create(MainDeployer.java:783)
at org.jboss.deployment.MainDeployer.create(MainDeployer.java:775)
at org.jboss.deployment.MainDeployer.deploy(MainDeployer.java:640)
at org.jboss.deployment.MainDeployer.deploy(MainDeployer.java:604)
at sun.reflect.GeneratedMethodAccessor15.invoke(Unknown Source)
at 
sun.reflect.DelegatingMethodAccessorImpl.invoke(DelegatingMethodAccessorImpl.java:25)
at java.lang.reflect.Method.invoke(Method.java:324)
at 
org.jboss.mx.server.ReflectedDispatcher.dispatch(ReflectedDispatcher.java:60)
at org.jboss.mx.server.Invocation.dispatch(Invocation.java:62)
at org.jboss.mx.server.Invocation.dispatch(Invocation.java:54)
at org.jboss.mx.server.Invocation.invoke(Invocation.java:82)
at 
org.jboss.mx.server.AbstractMBeanInvoker.invoke(AbstractMBeanInvoker.java:197)
at org.jboss.mx.server.MBeanServerImpl.invoke(MBeanServerImpl.java:473)
at org.jboss.mx.util.MBeanProxyExt.invoke(MBeanProxyExt.java:176)
at $Proxy8.deploy(Unknown Source)
at 
org.jboss.deployment.scanner.URLDeploymentScanner.deploy(URLDeploymentScanner.java:304)
at 
org.jboss.deployment.scanner.URLDeploymentScanner.scan(URLDeploymentScanner.java:478)
at 
org.jboss.deployment.scanner.AbstractDeploymentScanner$ScannerThread.doScan(AbstractDeploymentScanner.java:201)
at 
org.jboss.deployment.scanner.AbstractDeploymentScanner$ScannerThread.loop(AbstractDeploymentScanner.java:212)
at 

[JBoss-user] [Beginners Corner] - Re: Can't Deploy

2004-11-19 Thread darranl
Have you double checked that the class that can not be found is in the jar 
file?  

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

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


---
This SF.Net email is sponsored by: InterSystems CACHE
FREE OODBMS DOWNLOAD - A multidimensional database that combines
robust object and relational technologies, making it a perfect match
for Java, C++,COM, XML, ODBC and JDBC. www.intersystems.com/match8
___
JBoss-user mailing list
[EMAIL PROTECTED]
https://lists.sourceforge.net/lists/listinfo/jboss-user


[JBoss-user] [Advanced Documentation] - Docs for 4.0

2004-11-19 Thread ypfamily
Is someone going to finally reply to a post about where the docs for pay are 
for 4.0 version?

Sometimes I wonder if anyone is even paying attention to any of these posts...

Thanks,
Yaakov.

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

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


---
This SF.Net email is sponsored by: InterSystems CACHE
FREE OODBMS DOWNLOAD - A multidimensional database that combines
robust object and relational technologies, making it a perfect match
for Java, C++,COM, XML, ODBC and JDBC. www.intersystems.com/match8
___
JBoss-user mailing list
[EMAIL PROTECTED]
https://lists.sourceforge.net/lists/listinfo/jboss-user


[JBoss-user] [HTTPD, Servlets JSP] - quickly redeploy jsp files

2004-11-19 Thread mickgreen
I was looking for an easy way to increase my jsp development speed. The main 
problem being the redeployement of the entire EAR just to view the changes made 
to a single jsp file.

I think I found an acceptable way to speed up development by copying my jsp 
files from my development dir to the expanded jboss tmp dir. On reloading the 
jsp in the browser JBoss recompiles the JSP and the changes are visible. Hereby 
reducing the deployement of a JSP file from about 30 seconds to 5.



  | target name=deploy-jsp-jboss depends=-init description=Quickly 
deploy the current jsp files
  | taskdef resource=net/sf/antcontrib/antcontrib.properties
  | classpath
  | pathelement location=lib/ant-contrib.jar/
  | /classpath
  | /taskdef
  | foreach target=-copyjsp param=dir
  | path
  | dirset 
dir=${jboss.home}/server/default/tmp/deploy includes=*earname*depth 
max=0//dirset
  | /path
  | /foreach  
  | /target
  | 
  | target name=-copyjsp
  | copy todir=${dir}/webapp.war/WEB-INF/jspf
  | fileset dir=web/webapp/jspf/
  | /copy
  | /target
  | 

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

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


---
This SF.Net email is sponsored by: InterSystems CACHE
FREE OODBMS DOWNLOAD - A multidimensional database that combines
robust object and relational technologies, making it a perfect match
for Java, C++,COM, XML, ODBC and JDBC. www.intersystems.com/match8
___
JBoss-user mailing list
[EMAIL PROTECTED]
https://lists.sourceforge.net/lists/listinfo/jboss-user


[JBoss-user] [Clustering/JBoss] - JBoss Clustering Rocks! But How do I get the Partition Name

2004-11-19 Thread DashV
First I want to say that the for Pay documentation (the entire suite) is 
freakin awesome and many of the posts I see in the forums could easily be 
answered by ponying up the dough for the entire documentation suite.

In one day I was able to get a pretty good understanding of JBoss clustering 
and how it would impact my current components. Although our for pay docs were 
on 3.2 they applied to 4.0 rather well.

Although the Pay docs regarding clustering were pretty sparse on technical 
(i.e. Code type stuff, Especially JMS) I found the forums and wiki filled the 
slack quite well. Between the three I was able to port our entire 
Infrastructure (about 15 entity beans, 30 Stateless Session beans, and 10 JMX 
services) from a JBoss 3.2.3 Standalone configuration to JBoss 4.0 Utilizing 
clustering (by myself) in only two weeks. Not only is it ported but it all 
ACTUALLY WORKS!

The beauty is 99% of the changes were simple additions to the deployment 
descriptors (Excellent documentation for ejbs and entities)  Although you may 
want to add a comment about the entities Requiring Remote interfaces in order 
to be cluster aware... That threw me and the error message was very vague. The 
forums saved me on that one.
Other changes were updating our ant scripts to drop various wars and  jars into 
the appropriate clustering directories. We also hade a few Lookups in our 
service locators change slightly for HA. The biggest change was needing to 
deploy one of our services as an HA Singleton since it does alot of local 
caching. The Wiki and the forums saved my life.
the author of this post: 
http://www.jboss.org/index.html?module=bbop=viewtopict=55794
did an awesome job with his HASingleton how-to. I'd recommend posting his 
message verbatim on your wiki.

The best part is our Client code (which uses remote ejb calls and JMS) is 
oblivious to the fact that we are clustering at all! ZERO client side code 
changes were necessary!! (We just had to change ip and port information in 
our .properties file).

In short I think the JBoss team has done a fan-freakin-tastic job at 
implementing clustering. 

(see why I'm called DashV? VERBOSE).

I do have one question I haven't been able to find the answer to...

Is there a way in code (like say a JMX Service MBean) to figure out what 
partition the code is deployed into... Our infrastructure (which is build on 
top of JBoss) is required to register with an external monitoring service. And 
as it is currently implemented the monitoring service thinks every seperate 
JBoss instance is a different peice of infrastructure (We have an MBean service 
that generates a Unique id that is registered with the monitor.) I'd like to be 
able to give it the unique ID that we already generate and also the partition 
name so that we can enhance the monitoring component to be able to distinguish 
that other JBoss instances in fact represent the same infrastructure when they 
belong to the same Partition. Would there be any problems with grabbing the 
Partition name in my existing MBean service and using it in this way? Certainly 
the container for the MBean must know which partition the MBean belongs to...

Thanks in advance and thanks for all you've done already!

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

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


---
This SF.Net email is sponsored by: InterSystems CACHE
FREE OODBMS DOWNLOAD - A multidimensional database that combines
robust object and relational technologies, making it a perfect match
for Java, C++,COM, XML, ODBC and JDBC. www.intersystems.com/match8
___
JBoss-user mailing list
[EMAIL PROTECTED]
https://lists.sourceforge.net/lists/listinfo/jboss-user


[JBoss-user] [Persistence CMP/JBoss] - What IDE to use with JBOSS4.0

2004-11-19 Thread marre
Hi, 

I am posting into this forum since I assume that there will be the most 
experienced people around in development with JBOSS.

I used Lomboz J2EE with Eclipse, and ran into several bugs and handicaps.

What IDE are you preferably using with JBOSS4.0 ? (doesnt have to be an Eclipse 
plugin).

See you,

Jubin

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

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


---
This SF.Net email is sponsored by: InterSystems CACHE
FREE OODBMS DOWNLOAD - A multidimensional database that combines
robust object and relational technologies, making it a perfect match
for Java, C++,COM, XML, ODBC and JDBC. www.intersystems.com/match8
___
JBoss-user mailing list
[EMAIL PROTECTED]
https://lists.sourceforge.net/lists/listinfo/jboss-user


[JBoss-user] [Installation Configuration] - Re: Problem connecting AS400

2004-11-19 Thread tonic48
Thanx jflinchbaugh . Name of a datasource descriptors caused that problem.

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

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


---
This SF.Net email is sponsored by: InterSystems CACHE
FREE OODBMS DOWNLOAD - A multidimensional database that combines
robust object and relational technologies, making it a perfect match
for Java, C++,COM, XML, ODBC and JDBC. www.intersystems.com/match8
___
JBoss-user mailing list
[EMAIL PROTECTED]
https://lists.sourceforge.net/lists/listinfo/jboss-user


[JBoss-user] [Advanced Documentation] - Re: Docs for 4.0

2004-11-19 Thread nrichards
All the documentation will be posted to the documentation page 
(http://www.jboss.org/docs/index).  The 4.0 getting started guide is available 
now.  The admin guide should be posted sometime in december.


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

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


---
This SF.Net email is sponsored by: InterSystems CACHE
FREE OODBMS DOWNLOAD - A multidimensional database that combines
robust object and relational technologies, making it a perfect match
for Java, C++,COM, XML, ODBC and JDBC. www.intersystems.com/match8
___
JBoss-user mailing list
[EMAIL PROTECTED]
https://lists.sourceforge.net/lists/listinfo/jboss-user


[JBoss-user] [Messaging, JMS JBossMQ] - pool size for MDB

2004-11-19 Thread am_malu
Hi,

I have written MDB and my MDB can read all messages from queue for which it is 
registered. The problem is when I go to console, it shows minPoolSize as 1 and 
maxPoolSize as 15 which I guess is default value.

I tried to change to value -- which should be in jboss.xml. But somehow the 
console does not show new size.

I'm using Jboss 4.0

my jboss.xml

jboss.xml
enterprise-beans
message-driven
ejb-nameMailProcessorMDB/ejb-name
destination-jndi-namequeue/USPSScanFile/destination-jndi-name
/message-driven
/enterprise-beans
container-configuration
 container-nameStandard Message Driven Bean/container-name
 call-loggingfalse/call-logging
 
invoker-proxy-binding-namemessage-driven-bean/invoker-proxy-binding-name
 instance-cache/instance-cache
 persistence-manager/persistence-manager
 container-pool-conf
10
800
 /container-pool-conf
  /container-configuration
/jboss.xml


Thanks.
--Anand



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

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


---
This SF.Net email is sponsored by: InterSystems CACHE
FREE OODBMS DOWNLOAD - A multidimensional database that combines
robust object and relational technologies, making it a perfect match
for Java, C++,COM, XML, ODBC and JDBC. www.intersystems.com/match8
___
JBoss-user mailing list
[EMAIL PROTECTED]
https://lists.sourceforge.net/lists/listinfo/jboss-user


[JBoss-user] [Nukes User] - How to allow Add Downloads to a group Besides Admin???

2004-11-19 Thread mchinn
I want to allow my Moderator group that I created to Add files to the Downloads 
module. How in the permissions module do I set this up so the Add Download 
item appears when they go to the Downloads main area?

I tried the following permission strings to no avail:

module:downloads  - then chose ADD
module:downloads:main - then chose ADD
module:downloads:displayAddDownload - then chose ADD

???

matt


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

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


---
This SF.Net email is sponsored by: InterSystems CACHE
FREE OODBMS DOWNLOAD - A multidimensional database that combines
robust object and relational technologies, making it a perfect match
for Java, C++,COM, XML, ODBC and JDBC. www.intersystems.com/match8
___
JBoss-user mailing list
[EMAIL PROTECTED]
https://lists.sourceforge.net/lists/listinfo/jboss-user


[JBoss-user] [Nukes User] - Re: how do links work under manage html?

2004-11-19 Thread mchinn
Can you use this method or something similar to pull in external pages from an 
outside source not stored in the nukes db path? 

I'd like to be able to specify an index page in the center part of the page 
layout that is being maintained on another physical file server by someone 
else

Right now anytime you add an html link it leaves the nukes portal all 
together

Matt

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

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


---
This SF.Net email is sponsored by: InterSystems CACHE
FREE OODBMS DOWNLOAD - A multidimensional database that combines
robust object and relational technologies, making it a perfect match
for Java, C++,COM, XML, ODBC and JDBC. www.intersystems.com/match8
___
JBoss-user mailing list
[EMAIL PROTECTED]
https://lists.sourceforge.net/lists/listinfo/jboss-user


[JBoss-user] [Security JAAS/JBoss] - Re: DatabaseServerLoginModule - getUserPrincipal returns rol

2004-11-19 Thread [EMAIL PROTECTED]
You are returned the CallerPrincipal mapping that you installed. If you want to 
see the raw principal name remove the CallerPrinicpal group mapping.



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

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


---
This SF.Net email is sponsored by: InterSystems CACHE
FREE OODBMS DOWNLOAD - A multidimensional database that combines
robust object and relational technologies, making it a perfect match
for Java, C++,COM, XML, ODBC and JDBC. www.intersystems.com/match8
___
JBoss-user mailing list
[EMAIL PROTECTED]
https://lists.sourceforge.net/lists/listinfo/jboss-user


[JBoss-user] [Management, JMX/JBoss] - Re: About Securing JSR77 - J2EE Management

2004-11-19 Thread [EMAIL PROTECTED]
Its secured like any other ejb. Edit the ejb-management.jar ejb-jar.xml 
descriptor to secure the ejb and specify the security domain via a jboss.xml 
descriptor as described in the JAAS Howto:
http://www.jboss.org/index.html?module=bbop=viewtopict=46370


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

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


---
This SF.Net email is sponsored by: InterSystems CACHE
FREE OODBMS DOWNLOAD - A multidimensional database that combines
robust object and relational technologies, making it a perfect match
for Java, C++,COM, XML, ODBC and JDBC. www.intersystems.com/match8
___
JBoss-user mailing list
[EMAIL PROTECTED]
https://lists.sourceforge.net/lists/listinfo/jboss-user


[JBoss-user] [HTTPD, Servlets JSP] - Re: Fully Functional Tomcat

2004-11-19 Thread [EMAIL PROTECTED]
File a bug report on sourceforge with an example of what cleanup ops need to be 
done in terms of interacting with other j2ee components/resources.

http://sourceforge.net/tracker/?group_id=22866atid=376685



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

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


---
This SF.Net email is sponsored by: InterSystems CACHE
FREE OODBMS DOWNLOAD - A multidimensional database that combines
robust object and relational technologies, making it a perfect match
for Java, C++,COM, XML, ODBC and JDBC. www.intersystems.com/match8
___
JBoss-user mailing list
[EMAIL PROTECTED]
https://lists.sourceforge.net/lists/listinfo/jboss-user


[JBoss-user] [EJB/JBoss] - Re: Downloading classes from JBoss server

2004-11-19 Thread [EMAIL PROTECTED]
Turn on rmi debugging on the client to see what the rmi codebase is seen as. 
The jdk javadocs have a section on the rmi properties and debug levels.

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

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


---
This SF.Net email is sponsored by: InterSystems CACHE
FREE OODBMS DOWNLOAD - A multidimensional database that combines
robust object and relational technologies, making it a perfect match
for Java, C++,COM, XML, ODBC and JDBC. www.intersystems.com/match8
___
JBoss-user mailing list
[EMAIL PROTECTED]
https://lists.sourceforge.net/lists/listinfo/jboss-user


[JBoss-user] [Installation Configuration] - Re: using jdom1.0 with jboss 3.2.x

2004-11-19 Thread cvandyck
I would also like to do the exact same thing, but JBoss is loading the older 
version instead :(

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

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


---
This SF.Net email is sponsored by: InterSystems CACHE
FREE OODBMS DOWNLOAD - A multidimensional database that combines
robust object and relational technologies, making it a perfect match
for Java, C++,COM, XML, ODBC and JDBC. www.intersystems.com/match8
___
JBoss-user mailing list
[EMAIL PROTECTED]
https://lists.sourceforge.net/lists/listinfo/jboss-user


[JBoss-user] [J2EE Design Patterns] - stateless + dao vs ejb finder methods ?

2004-11-19 Thread t0mster
Hi All,

I have a J2EE 1.3 based application that uses entity beans extensively together 
with web services (axis) and struts for the web front end, all in Jboss 3.

Part of the application allows users to search using various different criteria 
which spans several entity beans, such as a username, the users company name 
etc.

I can implement the search using EJB-QL as part of the bean finder methods and 
traverse / navigate to related beans or as Id prefer todo, implement a 
stateless session bean with a DAO specifically for searching. Since the search 
goes across several entities its hard to say exactly which bean the search 
methods should be attributed too. 

This would allow me concentrate the bulk of my search methods in one place, 
avoid having to use ejb-ql with i am not readily familiar with and use LIKE 
statements (part of J2EE 1.4 but not 1.3 I think).

Is this stateless bean + search dao a much used pattern ? does using it make 
sense or should I stick to finder methods ?

Any feedback much appreciated..

Tom


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

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


---
This SF.Net email is sponsored by: InterSystems CACHE
FREE OODBMS DOWNLOAD - A multidimensional database that combines
robust object and relational technologies, making it a perfect match
for Java, C++,COM, XML, ODBC and JDBC. www.intersystems.com/match8
___
JBoss-user mailing list
[EMAIL PROTECTED]
https://lists.sourceforge.net/lists/listinfo/jboss-user


[JBoss-user] [JCA/JBoss] - I keep getting

2004-11-19 Thread martui
Hello! I searched all over the net and didn't find an answer to my question. 
Here is my problem: I created a datasource for a, let's say, unusual 
database... It's a db called Pervasive.SQL (V8). I also put an entry for this 
db (with the type mappings and stuff) in the standardjbosscmp-jdbc.xml. This 
wasn't easy, 'cause there's not enough documentation for this db. Well, when I 
tried it out with a few CMP Entities, it worked fine. But when I tried to 
migrate an existing project to this datasource I had some trouble (that wasn't 
there with PostgreSQL, the db I was using before). Here's what I get when I try 
to deploy the EJBs:

JBoss 4 wrote : 14:42:54,625 ERROR [EntityContainer] Starting failed 
jboss.j2ee:jndiName=Produto,service=EJB
  | java.lang.NullPointerException
  | at 
org.jboss.ejb.plugins.cmp.jdbc.JDBCTypeFactory.createTypeSimple(JDBCTypeFactory.java:492)
  | at 
org.jboss.ejb.plugins.cmp.jdbc.JDBCTypeFactory.getJDBCType(JDBCTypeFactory.java:457)
  | at 
org.jboss.ejb.plugins.cmp.jdbc.bridge.JDBCAbstractCMPFieldBridge.(JDBCAbstractCMPFieldBridge.java:83)
  | at 
org.jboss.ejb.plugins.cmp.jdbc.bridge.JDBCCMP2xFieldBridge.(JDBCCMP2xFieldBridge.java:56)
  | at 
org.jboss.ejb.plugins.cmp.jdbc.bridge.JDBCEntityBridge.createCMPField(JDBCEntityBridge.java:1112)
  | at 
org.jboss.ejb.plugins.cmp.jdbc.bridge.JDBCEntityBridge.loadCMPFields(JDBCEntityBridge.java:943)
  | at 
org.jboss.ejb.plugins.cmp.jdbc.bridge.JDBCEntityBridge.init(JDBCEntityBridge.java:148)
  | at 
org.jboss.ejb.plugins.cmp.jdbc.JDBCStoreManager.initStoreManager(JDBCStoreManager.java:420)
  | at 
org.jboss.ejb.plugins.cmp.jdbc.JDBCStoreManager.start(JDBCStoreManager.java:353)
  | at 
org.jboss.ejb.plugins.CMPPersistenceManager.start(CMPPersistenceManager.java:157)
  | at org.jboss.ejb.EntityContainer.startService(EntityContainer.java:340)
  | at 
org.jboss.system.ServiceMBeanSupport.jbossInternalStart(ServiceMBeanSupport.java:271)
  | at 
org.jboss.system.ServiceMBeanSupport.jbossInternalLifecycle(ServiceMBeanSupport.java:221)
  | at sun.reflect.GeneratedMethodAccessor2.invoke(Unknown Source)
  | at 
sun.reflect.DelegatingMethodAccessorImpl.invoke(DelegatingMethodAccessorImpl.java:25)
  | at java.lang.reflect.Method.invoke(Method.java:324)
  | at 
org.jboss.mx.interceptor.ReflectedDispatcher.invoke(ReflectedDispatcher.java:141)
  | at org.jboss.mx.server.Invocation.dispatch(Invocation.java:80)
  | at org.jboss.mx.server.Invocation.invoke(Invocation.java:72)
  | at 
org.jboss.mx.server.AbstractMBeanInvoker.invoke(AbstractMBeanInvoker.java:242)
  | at org.jboss.mx.server.MBeanServerImpl.invoke(MBeanServerImpl.java:642)
  | at 
org.jboss.system.ServiceController$ServiceProxy.invoke(ServiceController.java:891)
  | at $Proxy0.start(Unknown Source)
  | at org.jboss.system.ServiceController.start(ServiceController.java:416)
  | at sun.reflect.GeneratedMethodAccessor6.invoke(Unknown Source)
  | at 
sun.reflect.DelegatingMethodAccessorImpl.invoke(DelegatingMethodAccessorImpl.java:25)
  | at java.lang.reflect.Method.invoke(Method.java:324)
  | at 
org.jboss.mx.interceptor.ReflectedDispatcher.invoke(ReflectedDispatcher.java:141)
  | at org.jboss.mx.server.Invocation.dispatch(Invocation.java:80)
  | at org.jboss.mx.server.Invocation.invoke(Invocation.java:72)
  | at 
org.jboss.mx.server.AbstractMBeanInvoker.invoke(AbstractMBeanInvoker.java:242)
  | at org.jboss.mx.server.MBeanServerImpl.invoke(MBeanServerImpl.java:642)
  | at org.jboss.mx.util.MBeanProxyExt.invoke(MBeanProxyExt.java:176)
  | at $Proxy46.start(Unknown Source)
  | at org.jboss.ejb.EjbModule.startService(EjbModule.java:394)
  | at 
org.jboss.system.ServiceMBeanSupport.jbossInternalStart(ServiceMBeanSupport.java:271)
  | at 
org.jboss.system.ServiceMBeanSupport.jbossInternalLifecycle(ServiceMBeanSupport.java:221)
  | at sun.reflect.GeneratedMethodAccessor2.invoke(Unknown Source)
  | at 
sun.reflect.DelegatingMethodAccessorImpl.invoke(DelegatingMethodAccessorImpl.java:25)
  | at java.lang.reflect.Method.invoke(Method.java:324)
  | at 
org.jboss.mx.interceptor.ReflectedDispatcher.invoke(ReflectedDispatcher.java:141)
  | at org.jboss.mx.server.Invocation.dispatch(Invocation.java:80)
  | at org.jboss.mx.server.Invocation.invoke(Invocation.java:72)
  | at 
org.jboss.mx.server.AbstractMBeanInvoker.invoke(AbstractMBeanInvoker.java:242)
  | at org.jboss.mx.server.MBeanServerImpl.invoke(MBeanServerImpl.java:642)
  | at 
org.jboss.system.ServiceController$ServiceProxy.invoke(ServiceController.java:891)
  | at $Proxy0.start(Unknown Source)
  | at org.jboss.system.ServiceController.start(ServiceController.java:416)
  | at sun.reflect.GeneratedMethodAccessor6.invoke(Unknown Source)
  | at 
sun.reflect.DelegatingMethodAccessorImpl.invoke(DelegatingMethodAccessorImpl.java:25)
  | at 

[JBoss-user] [Messaging, JMS JBossMQ] - Re: JNDI service loses bindings

2004-11-19 Thread [EMAIL PROTECTED]
Only undeploying or stopping the OILServerILService would remove the bindings.

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

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


---
This SF.Net email is sponsored by: InterSystems CACHE
FREE OODBMS DOWNLOAD - A multidimensional database that combines
robust object and relational technologies, making it a perfect match
for Java, C++,COM, XML, ODBC and JDBC. www.intersystems.com/match8
___
JBoss-user mailing list
[EMAIL PROTECTED]
https://lists.sourceforge.net/lists/listinfo/jboss-user


[JBoss-user] [Installation Configuration] - Re: using jdom1.0 with jboss 3.2.x

2004-11-19 Thread [EMAIL PROTECTED]
jdom is used only for parsing xmbean descriptors. If the server starts with the 
newer jdom then there will be no problems.

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

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


---
This SF.Net email is sponsored by: InterSystems CACHE
FREE OODBMS DOWNLOAD - A multidimensional database that combines
robust object and relational technologies, making it a perfect match
for Java, C++,COM, XML, ODBC and JDBC. www.intersystems.com/match8
___
JBoss-user mailing list
[EMAIL PROTECTED]
https://lists.sourceforge.net/lists/listinfo/jboss-user


[JBoss-user] [Security JAAS/JBoss] - Re: which PKCS#1 version is jboss support?

2004-11-19 Thread [EMAIL PROTECTED]
All crypto features come from the jdk so support for pkcs depends on your jdk 
version.

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

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


---
This SF.Net email is sponsored by: InterSystems CACHE
FREE OODBMS DOWNLOAD - A multidimensional database that combines
robust object and relational technologies, making it a perfect match
for Java, C++,COM, XML, ODBC and JDBC. www.intersystems.com/match8
___
JBoss-user mailing list
[EMAIL PROTECTED]
https://lists.sourceforge.net/lists/listinfo/jboss-user


[JBoss-user] [JCA/JBoss] - Re: I keep getting

2004-11-19 Thread martui
Sorry... The Subject was too big and it was truncated, I guess... I keep 
getting was just a part of it... Sorry!

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

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


---
This SF.Net email is sponsored by: InterSystems CACHE
FREE OODBMS DOWNLOAD - A multidimensional database that combines
robust object and relational technologies, making it a perfect match
for Java, C++,COM, XML, ODBC and JDBC. www.intersystems.com/match8
___
JBoss-user mailing list
[EMAIL PROTECTED]
https://lists.sourceforge.net/lists/listinfo/jboss-user


[JBoss-user] [Beginners Corner] - Changes between JBoss 3.2.2 and 3.2.1

2004-11-19 Thread aeguzmanv
Hi... I developed an application using JBoss 3.2.1 and it works perfect... I 
want to update the version of to JBoss 3.2.2, because there is another 
application running with that version... 
Could Anybody tell me what's the difference between 3.2.2 and 3.2.1 ?? 
Do I have to change something on my source code ??
Could My app have any problem running with the new version ?? 
What's your advice ?? change to 3.2.2 or change both app to 3.2.6 or 4.0 ??

Thanks in advance,
Alejandro.-

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

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


---
This SF.Net email is sponsored by: InterSystems CACHE
FREE OODBMS DOWNLOAD - A multidimensional database that combines
robust object and relational technologies, making it a perfect match
for Java, C++,COM, XML, ODBC and JDBC. www.intersystems.com/match8
___
JBoss-user mailing list
[EMAIL PROTECTED]
https://lists.sourceforge.net/lists/listinfo/jboss-user


[JBoss-user] [Installation Configuration] - how isolate static method between two WARs??

2004-11-19 Thread marzon
Dears,

how can i isolate static methods when i have two instances of same application ?

Tks...

Marzon

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

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


---
This SF.Net email is sponsored by: InterSystems CACHE
FREE OODBMS DOWNLOAD - A multidimensional database that combines
robust object and relational technologies, making it a perfect match
for Java, C++,COM, XML, ODBC and JDBC. www.intersystems.com/match8
___
JBoss-user mailing list
[EMAIL PROTECTED]
https://lists.sourceforge.net/lists/listinfo/jboss-user


[JBoss-user] [Persistence CMP/JBoss] - type-mapping for Ingres r3 under JBoss4.0.0

2004-11-19 Thread bradleybeck
Does anyone have a working type-mapping for Ingre r3 running under JBoss4.0.0?

The existing Ingres type-mapping doesn't seem to work for me. I get the 
following error...




  | 11:52:04,020 INFO  [WrapperDataSourceService] Bound connection factory for 
resource adapter for ConnectionManager 
'jboss.jca:name=PortalDS,service=DataSourceBinding to JNDI name 'java:PortalDS'
  | 11:52:05,067 ERROR [EntityContainer] Starting failed 
jboss.j2ee:jndiName=PortletDefinitionEntityBeanLocal,service=EJB
  | java.lang.ArrayIndexOutOfBoundsException: 2
  | at 
org.jboss.ejb.plugins.cmp.jdbc.metadata.JDBCFunctionMappingMetaData.getFunctionSql(JDBCFunctionMappingMetaData.java:131)
  | at 
org.jboss.ejb.plugins.cmp.jdbc.JDBCStartCommand.getEntityCreateTableSQL(JDBCStartCommand.java:763)
  | at 
org.jboss.ejb.plugins.cmp.jdbc.JDBCStartCommand.execute(JDBCStartCommand.java:196)
  | at 
org.jboss.ejb.plugins.cmp.jdbc.JDBCStoreManager.startStoreManager(JDBCStoreManager.java:484)
  | at 
org.jboss.ejb.plugins.cmp.jdbc.JDBCStoreManager.start(JDBCStoreManager.java:381)
  | at 
org.jboss.ejb.plugins.CMPPersistenceManager.start(CMPPersistenceManager.java:157)
  | at org.jboss.ejb.EntityContainer.startService(EntityContainer.java:340)
  | at 
org.jboss.system.ServiceMBeanSupport.jbossInternalStart(ServiceMBeanSupport.java:271)
  | at 
org.jboss.system.ServiceMBeanSupport.jbossInternalLifecycle(ServiceMBeanSupport.java:221)
  | at sun.reflect.GeneratedMethodAccessor2.invoke(Unknown Source)
  | at 
sun.reflect.DelegatingMethodAccessorImpl.invoke(DelegatingMethodAccessorImpl.java:25)
  | at java.lang.reflect.Method.invoke(Method.java:324)
  | at 
org.jboss.mx.interceptor.ReflectedDispatcher.invoke(ReflectedDispatcher.java:141)
  | at org.jboss.mx.server.Invocation.dispatch(Invocation.java:80)
  | at org.jboss.mx.server.Invocation.invoke(Invocation.java:72)
  | at 
org.jboss.mx.server.AbstractMBeanInvoker.invoke(AbstractMBeanInvoker.java:242)
  | at org.jboss.mx.server.MBeanServerImpl.invoke(MBeanServerImpl.java:642)
  | at 
org.jboss.system.ServiceController$ServiceProxy.invoke(ServiceController.java:891)
  | at $Proxy0.start(Unknown Source)
  | at org.jboss.system.ServiceController.start(ServiceController.java:416)
  | at org.jboss.system.ServiceController.start(ServiceController.java:438)
  | at org.jboss.system.ServiceController.start(ServiceController.java:438)
  | at org.jboss.system.ServiceController.start(ServiceController.java:438)
  | at sun.reflect.GeneratedMethodAccessor6.invoke(Unknown Source)
  | at 
sun.reflect.DelegatingMethodAccessorImpl.invoke(DelegatingMethodAccessorImpl.java:25)
  | at java.lang.reflect.Method.invoke(Method.java:324)
  | at 
org.jboss.mx.interceptor.ReflectedDispatcher.invoke(ReflectedDispatcher.java:141)
  | at org.jboss.mx.server.Invocation.dispatch(Invocation.java:80)
  | at org.jboss.mx.server.Invocation.invoke(Invocation.java:72)
  | at 
org.jboss.mx.server.AbstractMBeanInvoker.invoke(AbstractMBeanInvoker.java:242)
  | at org.jboss.mx.server.MBeanServerImpl.invoke(MBeanServerImpl.java:642)
  | at org.jboss.mx.util.MBeanProxyExt.invoke(MBeanProxyExt.java:176)
  | at $Proxy4.start(Unknown Source)
  | at org.jboss.deployment.SARDeployer.start(SARDeployer.java:261)
  | at org.jboss.deployment.MainDeployer.start(MainDeployer.java:935)
  | at org.jboss.deployment.MainDeployer.deploy(MainDeployer.java:746)
  | at org.jboss.deployment.MainDeployer.deploy(MainDeployer.java:709)
  | at sun.reflect.GeneratedMethodAccessor36.invoke(Unknown Source)
  | at 
sun.reflect.DelegatingMethodAccessorImpl.invoke(DelegatingMethodAccessorImpl.java:25)
  | at java.lang.reflect.Method.invoke(Method.java:324)
  | at 
org.jboss.mx.interceptor.ReflectedDispatcher.invoke(ReflectedDispatcher.java:141)
  | at org.jboss.mx.server.Invocation.dispatch(Invocation.java:80)
  | at 
org.jboss.mx.interceptor.AbstractInterceptor.invoke(AbstractInterceptor.java:119)
  | at org.jboss.mx.server.Invocation.invoke(Invocation.java:74)
  | at 
org.jboss.mx.interceptor.ModelMBeanOperationInterceptor.invoke(ModelMBeanOperationInterceptor.java:131)
  | at org.jboss.mx.server.Invocation.invoke(Invocation.java:74)
  | at 
org.jboss.mx.server.AbstractMBeanInvoker.invoke(AbstractMBeanInvoker.java:242)
  | at org.jboss.mx.server.MBeanServerImpl.invoke(MBeanServerImpl.java:642)
  | at org.jboss.mx.util.MBeanProxyExt.invoke(MBeanProxyExt.java:176)
  | at $Proxy8.deploy(Unknown Source)
  | at 
org.jboss.deployment.scanner.URLDeploymentScanner.deploy(URLDeploymentScanner.java:305)
  | at 
org.jboss.deployment.scanner.URLDeploymentScanner.scan(URLDeploymentScanner.java:481)
  | at 
org.jboss.deployment.scanner.AbstractDeploymentScanner$ScannerThread.doScan(AbstractDeploymentScanner.java:204)
  | at 

[JBoss-user] [Messaging, JMS JBossMQ] - Re: JBossMQ Fire Forget

2004-11-19 Thread genman

Eventually, the JMS code should give up and throw some sort of 
java.net.SocketException .  This might take the O/S 3-5 minutes.  Does this not 
eventually happen?

Fire and forget does not mean complete asynchronous operation.  When you send 
a message, the operation will only return until the message is on the server 
(and persisted).  Fire and forget means once the message is enqueued, you do 
not have to wait until it is processed.

I'm not sure closing the firewalled ports in the middle of a socket connect is 
going to work.  I don't think the firewall cares one bit if you have a socket 
connection or not, it can still block the traffic.

You can get a stack trace and post it here.

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

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


---
This SF.Net email is sponsored by: InterSystems CACHE
FREE OODBMS DOWNLOAD - A multidimensional database that combines
robust object and relational technologies, making it a perfect match
for Java, C++,COM, XML, ODBC and JDBC. www.intersystems.com/match8
___
JBoss-user mailing list
[EMAIL PROTECTED]
https://lists.sourceforge.net/lists/listinfo/jboss-user


[JBoss-user] [Beginners Corner] - Re: Where is Getting Started for 4.0?

2004-11-19 Thread nrichards
All docs are free and are posted to 
http://www.jboss.org/docs/index.

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

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


---
This SF.Net email is sponsored by: InterSystems CACHE
FREE OODBMS DOWNLOAD - A multidimensional database that combines
robust object and relational technologies, making it a perfect match
for Java, C++,COM, XML, ODBC and JDBC. www.intersystems.com/match8
___
JBoss-user mailing list
[EMAIL PROTECTED]
https://lists.sourceforge.net/lists/listinfo/jboss-user


[JBoss-user] [Installation Configuration] - Re: using jdom1.0 with jboss 3.2.x

2004-11-19 Thread cvandyck
Thanks for the reply Scott.  I updated the jdom.jar in server/lib and the 
server booted fine.

I'm working with a webapp deployed inside of a .ear.  This webapp uses 
Cocoon/Avalon which has its own JDOM nested in a couple levels deep.  This JDOM 
version is rather old, and at runtime I'm getting method invocation errors 
because I believe it is trying to use the version of JDOM in server/lib.

I've seen a couple posts about using class loader repositories for different 
WARs and what have you.  If I wanted to isolate parts of a WAR and/or EAR to 
use different version of JDOM, is this the way to go?

Many thanks


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

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


---
This SF.Net email is sponsored by: InterSystems CACHE
FREE OODBMS DOWNLOAD - A multidimensional database that combines
robust object and relational technologies, making it a perfect match
for Java, C++,COM, XML, ODBC and JDBC. www.intersystems.com/match8
___
JBoss-user mailing list
[EMAIL PROTECTED]
https://lists.sourceforge.net/lists/listinfo/jboss-user


[JBoss-user] [Security JAAS/JBoss] - request.getUserPrincipal() returns org.jboss.security.Simple

2004-11-19 Thread rickkw
Hi,

I have a custom JAAS LoginModule, which returns my custom implementation 
Principal interface, say MyPrincipal.

I also have a servlet filter configured to my application.  Within my filter 
doFilter() method, when I call request.getUserPrinicipal(), it returns an 
object of class org.jboss.security.SimplePrincipal instead of MyPrincipal.

What would I need to do to get back the actual Principal object returned by my 
LoginModule?

Thanks,
--
Rick

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

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


---
This SF.Net email is sponsored by: InterSystems CACHE
FREE OODBMS DOWNLOAD - A multidimensional database that combines
robust object and relational technologies, making it a perfect match
for Java, C++,COM, XML, ODBC and JDBC. www.intersystems.com/match8
___
JBoss-user mailing list
[EMAIL PROTECTED]
https://lists.sourceforge.net/lists/listinfo/jboss-user


[JBoss-user] [EJB/JBoss] - Re: implement a wild card search

2004-11-19 Thread redBeard15
Look at the following forum:

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

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

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


---
This SF.Net email is sponsored by: InterSystems CACHE
FREE OODBMS DOWNLOAD - A multidimensional database that combines
robust object and relational technologies, making it a perfect match
for Java, C++,COM, XML, ODBC and JDBC. www.intersystems.com/match8
___
JBoss-user mailing list
[EMAIL PROTECTED]
https://lists.sourceforge.net/lists/listinfo/jboss-user


[JBoss-user] [Messaging, JMS JBossMQ] - Re: JBossMQ Fire Forget

2004-11-19 Thread mkprim
Yes after a few minutes my JMS onException method is callled.
But, shouldn't JMS be asychronous in the client side? I mean, shold we wait the 
message to arrive to the server, to resume the thread? I don't think this is 
good for anyone!
I don't want to think that I should create a separate thread to do a 
sender.send(message), or shoud I?
If you have an idea, please tell me!
Thanks a lot,
 Marcelo

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

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


---
This SF.Net email is sponsored by: InterSystems CACHE
FREE OODBMS DOWNLOAD - A multidimensional database that combines
robust object and relational technologies, making it a perfect match
for Java, C++,COM, XML, ODBC and JDBC. www.intersystems.com/match8
___
JBoss-user mailing list
[EMAIL PROTECTED]
https://lists.sourceforge.net/lists/listinfo/jboss-user


[JBoss-user] [JCA/JBoss] - createing a datasource through the webconsole

2004-11-19 Thread gogineni
Hi,

Is there a way to create a new datasource through the web console?
I seem to be able to view the datasource under JMX MBeans/jboss.jca but dont 
see a weay to add a new one.

Thanks
PRatima

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

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


---
This SF.Net email is sponsored by: InterSystems CACHE
FREE OODBMS DOWNLOAD - A multidimensional database that combines
robust object and relational technologies, making it a perfect match
for Java, C++,COM, XML, ODBC and JDBC. www.intersystems.com/match8
___
JBoss-user mailing list
[EMAIL PROTECTED]
https://lists.sourceforge.net/lists/listinfo/jboss-user


[JBoss-user] [Management, JMX/JBoss] - Wrapping POJOs as Mbeans

2004-11-19 Thread infectedrhythms
If I understand correctly...

I should be able to use my pojo as a service just by providing a 
jboss-service.xml file.

So something to the likes of...


  | ?xml version=1.0 encoding=UTF-8?
  | 
  | server
  | mbean code=package.Mypojo name=package:service=MyPojoService
  | attribute name=MessageHello World/attribute
  | 
  | /mbean
  | 
  | 
  | /server
  | 

Right?

If I wanted MyPojo to be started and stoped through the Jboss service events 
startService, stopService etc... Would I need to wrapy my pojo in an XMbean and 
define the operations?

Also when would I actually want to implement MyPojo using the ServiceMean and 
ServiceMbeanSupport interafce and class?

thanks

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

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


---
This SF.Net email is sponsored by: InterSystems CACHE
FREE OODBMS DOWNLOAD - A multidimensional database that combines
robust object and relational technologies, making it a perfect match
for Java, C++,COM, XML, ODBC and JDBC. www.intersystems.com/match8
___
JBoss-user mailing list
[EMAIL PROTECTED]
https://lists.sourceforge.net/lists/listinfo/jboss-user


[JBoss-user] [Nukes User] - Convert Postnuke to Nukes on JBoss

2004-11-19 Thread uwil0m
is there any software help aids or cheatsheets for converting from postnuke 
(php) to Nukes?

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

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


---
This SF.Net email is sponsored by: InterSystems CACHE
FREE OODBMS DOWNLOAD - A multidimensional database that combines
robust object and relational technologies, making it a perfect match
for Java, C++,COM, XML, ODBC and JDBC. www.intersystems.com/match8
___
JBoss-user mailing list
[EMAIL PROTECTED]
https://lists.sourceforge.net/lists/listinfo/jboss-user


[JBoss-user] [Management, JMX/JBoss] - Re: Wrapping POJOs as Mbeans

2004-11-19 Thread [EMAIL PROTECTED]
If you want to make your POJO appear as an MBean you *must* use an mbean + 
xmbean descriptor.

Extending ServiceMBeanSupport is useful if you want to do things like produce 
or consume notifications, invoke on other MBeans, etc., in general things that 
translate to your class having knowledge of JMX.

You can also do both, i.e extend ServiceMBeanSupport *and* use an mbean+xmbean 
descriptor

Using the xmbean descriptor allows you to:

add rich metadata descriptions
produce automatically AttributeChangeNotification on attribute updates
persist attribute changes
cache attribute values
add your own interceptors
...


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

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


---
This SF.Net email is sponsored by: InterSystems CACHE
FREE OODBMS DOWNLOAD - A multidimensional database that combines
robust object and relational technologies, making it a perfect match
for Java, C++,COM, XML, ODBC and JDBC. www.intersystems.com/match8
___
JBoss-user mailing list
[EMAIL PROTECTED]
https://lists.sourceforge.net/lists/listinfo/jboss-user


[JBoss-user] [Nukes User] - Re: Convert Postnuke to Nukes on JBoss

2004-11-19 Thread [EMAIL PROTECTED]
There is not. It is lot of work to convert something in PHP into something in 
Java.

The templates should easily be reused though.

If you are thinking about porting a module please let us know. At this stage it 
may be smarter to think about porting modules to JBoss Portal (aka Nukes2) as 
there is also some work to port a module from Nukes 1 to Nukes 2.


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

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


---
This SF.Net email is sponsored by: InterSystems CACHE
FREE OODBMS DOWNLOAD - A multidimensional database that combines
robust object and relational technologies, making it a perfect match
for Java, C++,COM, XML, ODBC and JDBC. www.intersystems.com/match8
___
JBoss-user mailing list
[EMAIL PROTECTED]
https://lists.sourceforge.net/lists/listinfo/jboss-user


[JBoss-user] [Beginners Corner] Problem Storing Stateful Session Bean in HttpSession on 3.2.6

2004-11-19 Thread Diane Cochran
Hello,

I seem to be having a problem that is more than likely due to my 
inexperience with J2EE and JBoss, and cannot seem to be able to find an answer. 
 I have a stateful session bean that I'd like to keep alive through a 
web-client session, but any of the methods I've tried to receive it have 
resulted in the object being retrieved the first time, but not on any 
subsequent tries.  I have tried storing the Remote Interface directly, as well 
as storing the Handle and converting it back.  The error I always seem to get 
is:



java.rmi.NoSuchObjectException: Could not activate; failed to restore state; 
CausedByException is:

C:\jboss-3.2.6\server\default\tmp\sessions\Cert-e1pqala4-1h\e1pqarqr-1l.ser 
(The system cannot find the file specified)

org.jboss.ejb.plugins.AbstractInstanceCache.get(AbstractInstanceCache.java:118)

org.jboss.ejb.plugins.StatefulSessionInstanceInterceptor.invoke(StatefulSessionInstanceInterceptor.java:205)

org.jboss.ejb.plugins.AbstractTxInterceptor.invokeNext(AbstractTxInterceptor.java:84)

org.jboss.ejb.plugins.TxInterceptorCMT.runWithTransactions(TxInterceptorCMT.java:315)
org.jboss.ejb.plugins.TxInterceptorCMT.invoke(TxInterceptorCMT.java:148)
org.jboss.ejb.plugins.LogInterceptor.invoke(LogInterceptor.java:191)

org.jboss.ejb.plugins.ProxyFactoryFinderInterceptor.invoke(ProxyFactoryFinderInterceptor.java:122)

org.jboss.ejb.StatefulSessionContainer.internalInvoke(StatefulSessionContainer.java:449)
org.jboss.ejb.Container.invoke(Container.java:709)
sun.reflect.GeneratedMethodAccessor100.invoke(Unknown Source)

sun.reflect.DelegatingMethodAccessorImpl.invoke(DelegatingMethodAccessorImpl.java:25)
java.lang.reflect.Method.invoke(Method.java:324)

org.jboss.mx.server.ReflectedDispatcher.dispatch(ReflectedDispatcher.java:60)
org.jboss.mx.server.Invocation.dispatch(Invocation.java:62)
org.jboss.mx.server.Invocation.dispatch(Invocation.java:54)
org.jboss.mx.server.Invocation.invoke(Invocation.java:82)

org.jboss.mx.server.AbstractMBeanInvoker.invoke(AbstractMBeanInvoker.java:197)
org.jboss.mx.server.MBeanServerImpl.invoke(MBeanServerImpl.java:473)
org.jboss.invocation.local.LocalInvoker.invoke(LocalInvoker.java:97)

org.jboss.invocation.InvokerInterceptor.invoke(InvokerInterceptor.java:90)

org.jboss.proxy.TransactionInterceptor.invoke(TransactionInterceptor.java:46)
org.jboss.proxy.SecurityInterceptor.invoke(SecurityInterceptor.java:55)

org.jboss.proxy.ejb.StatefulSessionInterceptor.invoke(StatefulSessionInterceptor.java:105)
org.jboss.proxy.ClientContainer.invoke(ClientContainer.java:85)
$Proxy397.getCertID(Unknown Source)
org.apache.jsp.users.overview_jsp._jspService(overview_jsp.java:115)
org.apache.jasper.runtime.HttpJspBase.service(HttpJspBase.java:94)
javax.servlet.http.HttpServlet.service(HttpServlet.java:810)

org.apache.jasper.servlet.JspServletWrapper.service(JspServletWrapper.java:324)
org.apache.jasper.servlet.JspServlet.serviceJspFile(JspServlet.java:292)
org.apache.jasper.servlet.JspServlet.service(JspServlet.java:236)
javax.servlet.http.HttpServlet.service(HttpServlet.java:810)

org.jboss.web.tomcat.filters.ReplyHeaderFilter.doFilter(ReplyHeaderFilter.java:75)


Does anyone have any ideas on what I'm doing wrong?  I can pass id's around and 
constantly create objects, but I'd like to be able to create the SSB once and 
use it across the website.

Diane Cochran


---
This SF.Net email is sponsored by: InterSystems CACHE
FREE OODBMS DOWNLOAD - A multidimensional database that combines
robust object and relational technologies, making it a perfect match
for Java, C++,COM, XML, ODBC and JDBC. www.intersystems.com/match8
___
JBoss-user mailing list
[EMAIL PROTECTED]
https://lists.sourceforge.net/lists/listinfo/jboss-user


[JBoss-user] [Security JAAS/JBoss] - Re: Custom handling with BASIC authentication

2004-11-19 Thread cglommen
?

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

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


---
This SF.Net email is sponsored by: InterSystems CACHE
FREE OODBMS DOWNLOAD - A multidimensional database that combines
robust object and relational technologies, making it a perfect match
for Java, C++,COM, XML, ODBC and JDBC. www.intersystems.com/match8
___
JBoss-user mailing list
[EMAIL PROTECTED]
https://lists.sourceforge.net/lists/listinfo/jboss-user


[JBoss-user] [Beginners Corner] - Return Collection of Objects BMP

2004-11-19 Thread olcman
Hi,

i am very new to J2EE. I got a problem with returning a Collection of objects.

I've read the following topic: 
http://www.jboss.org/index.html?module=bbop=viewtopict=38353

My problem is the same, but i have no Idea, how i solve this issue.

Can somebody give me a code sample?

Thx

Olcman

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

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


---
This SF.Net email is sponsored by: InterSystems CACHE
FREE OODBMS DOWNLOAD - A multidimensional database that combines
robust object and relational technologies, making it a perfect match
for Java, C++,COM, XML, ODBC and JDBC. www.intersystems.com/match8
___
JBoss-user mailing list
[EMAIL PROTECTED]
https://lists.sourceforge.net/lists/listinfo/jboss-user


[JBoss-user] [Management, JMX/JBoss] - Whats the point of notifications?

2004-11-19 Thread infectedrhythms
Or how can I use notifications?

Bassically I would like to track a specific occurance in my application say a 
thread count and when ever the thread count reaches a specific level send an 
e-mail. Or if a batch file failed to create send an e-mail.

How do I track this in my application? Do I have to check the count every time 
I increase the thread count? And if the thread count is greater then a 
threshhold send a notification? Same for lets say FileCreationException or what 
you have...

I find it overkill to have to create a Notification listener...

And then finally in my app...

long now = System.currentTimeMillis();
MyNotifications notifications = new MyNotifications(this, 
getNextNotificationSequenceNumber(), now, Thread count high);
sendNotification(notifications);

When I can just
log.warn(Thread count high) and create and configure an smtp appender.

Thanks


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

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


---
This SF.Net email is sponsored by: InterSystems CACHE
FREE OODBMS DOWNLOAD - A multidimensional database that combines
robust object and relational technologies, making it a perfect match
for Java, C++,COM, XML, ODBC and JDBC. www.intersystems.com/match8
___
JBoss-user mailing list
[EMAIL PROTECTED]
https://lists.sourceforge.net/lists/listinfo/jboss-user


[JBoss-user] [Messaging, JMS JBossMQ] - JBossMQ Fire Forget

2004-11-19 Thread mkprim
Hi, we' ve been using JBossMQ since JBoss 3.0.8, a long time ago.
We were testing JMS against a lot of bad conditions, like a 64 KB internet 
connection, many clients, long ping times, and many others.
However there's been a test case that is not working properly. If we have 
already established a client connection to a Queue in the server, and set up 
the firewall to block the JMS ports (ie 8093, 1099, 1098), and do a 
sender.send(msg), the thread blocks completely until we open the ports again. 
This does not comply with the 'Fire and Forget' you mention in the Wikis
Any idea if this is ok or there might be a solution?

Here's the client code:

  | ObjectMessage objMsg;
  | try {
  | objMsg = queueSession.createObjectMessage();
  | objMsg.setJMSReplyTo(tempQueue);
  | objMsg.setObject(sendEvent);
  | sender.send(objMsg, 
DeliveryMode.NON_PERSISTENT,sendEvent.getPriority(),msg_ttl);
  | } catch (JMSException e) {
  | e.printStackTrace();
  | throw new ConnectionException(e.getMessage());
  | }
  | 

The queueSession and the temporaryQueue are already created. This code executes 
every time I send a message to the server.

Any help will be appreciated.
Thanks a lot,
Marcelo.

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

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


---
This SF.Net email is sponsored by: InterSystems CACHE
FREE OODBMS DOWNLOAD - A multidimensional database that combines
robust object and relational technologies, making it a perfect match
for Java, C++,COM, XML, ODBC and JDBC. www.intersystems.com/match8
___
JBoss-user mailing list
[EMAIL PROTECTED]
https://lists.sourceforge.net/lists/listinfo/jboss-user


[JBoss-user] [Security JAAS/JBoss] - Re: windows NT authentication

2004-11-19 Thread tcherel
I did quite a few searches without a lot of success.
I am still wondering how to configure the NTLoginModule with JBoss.
Here some of my dilemma:

1) Should I configure the NTLogingModule both on my client (EJB client) and 
server?

2) Ideally, I'd like to configure it, for sure, on the client: the 
NTLoginModule picks up the detail of the current logged user and this can very 
nicely achieve single sign-on kind of capbilities (I authenticate once when 
login to my workstation, no need to login again). But how does this work with 
the JBoss client login module? To say it differently, how the subject retrived 
by the NTLoginModule automatically transfered to the JBoss server? Does the 
Client login module does that automatically and I just need to configure both 
modules for my clients?

3) Assuming that I manage to send to JBoss the subject created by the  
NTLoginModule, how should I configure JBoss to verify this subject? Certainly 
not with the NTLoginModule as it will just grap the identity information of the 
current user (the user under which JBoss is running). Let's say that I create 
my own NTLoginModule, the subject created on the client does not contain the 
user credentials I think. It has this cryptic NTNumericCredential, which I am 
not sure what it is. So how can I verify (re-authenticate) the user that was 
authenticated on the client?

4) Am I just fooling myself and the only option is the JBoss client login 
module to send user/password to the JBoss server and then a modified version of 
the NTLoginModule so user and password can be provided (which pretty much means 
writing my own NTLoginModule)?

Last option is that I completely miss-understood JAAS, the NTLoginModule and 
the JBoss security (which is possible). Do not hesitate to let me know if this 
is the case, and I will go back reading.

Thanks in advance for any help.

Thomas

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

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


---
This SF.Net email is sponsored by: InterSystems CACHE
FREE OODBMS DOWNLOAD - A multidimensional database that combines
robust object and relational technologies, making it a perfect match
for Java, C++,COM, XML, ODBC and JDBC. www.intersystems.com/match8
___
JBoss-user mailing list
[EMAIL PROTECTED]
https://lists.sourceforge.net/lists/listinfo/jboss-user


[JBoss-user] [Security JAAS/JBoss] - Re: request.getUserPrincipal() returns org.jboss.security.Si

2004-11-19 Thread [EMAIL PROTECTED]
http://www.jboss.org/wiki/Wiki.jsp?page=UsingCustomPrincpalsWith


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

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


---
This SF.Net email is sponsored by: InterSystems CACHE
FREE OODBMS DOWNLOAD - A multidimensional database that combines
robust object and relational technologies, making it a perfect match
for Java, C++,COM, XML, ODBC and JDBC. www.intersystems.com/match8
___
JBoss-user mailing list
[EMAIL PROTECTED]
https://lists.sourceforge.net/lists/listinfo/jboss-user


[JBoss-user] [Security JAAS/JBoss] - SecurityException in CallerIdentityLoginModule

2004-11-19 Thread rrhodes
For reference, I posted about this on the JCA forum here:
http://www.jboss.org/?module=bbop=viewtopict=56269

And bug report #1067726, here:
http://sourceforge.net/tracker/?group_id=22866atid=376685func=detailaid=1067726

Adrian Brock suggested I post my config and a trace log on this list.

I'm using jboss v3.2.6, and I'm using the SimpleServerLoginModule to login a 
web application.  I'm then using the CallerIdentityLoginModule to pass the same 
credentials on to a JCA connection.  The CallerIdentityLoginModule throws a 
SecurityException when it tries to get the login information from a web 
application to resuse with a JCA connection. 

The real exception is a ClassCastException, but the 
CallerIdentityLoginModule is catching it and rethrowing 
SecurityException on line 137.  The ClassCastException is here on line 122:

password = (char[]) o;// o is really a String


My web.xml has:
   security-role
  role-nameuser/role-name
   /security-role

   login-config
  auth-methodFORM/auth-method
  realm-nameMyecaddy Realm/realm-name
  form-login-config
 form-login-page/login.jsp/form-login-page
 form-error-page/login.jsp/form-error-page
  /form-login-config
   /login-config

   security-constraint
  web-resource-collection
 web-resource-namemyecaddy/web-resource-name
 url-pattern/protected/*/url-pattern
 http-methodGET/http-method
 http-methodPOST/http-method
  /web-resource-collection
  auth-constraint
 role-nameuser/role-name
  /auth-constraint

  user-data-constraint
 Encryption is not required for the application in general. 
 transport-guaranteeNONE/transport-guarantee
  /user-data-constraint
   /security-constraint

My jboss-web.xml has:
jboss-web
   security-domainjava:/jaas/myecaddyRealm/security-domain
/jboss-web


My *-ds.xml has:
  tx-connection-factory
 jndi-nameWebDAV-Connector/jndi-name
 xa-transaction/
 adapter-display-nameWebDAV-Connector/adapter-display-name
  config-property name=ConnectionURL 
type=java.lang.Stringhttp://localhost:8080/webdav/config-property
  config-property name=UserName 
type=java.lang.Stringroot/config-property
  config-property name=Password 
type=java.lang.Stringroot/config-property
  config-property name=Timeout 
type=java.lang.Integer10/config-property
 security-domainwebdavRealm/security-domain
  /tx-connection-factory



My login config has:
   application-policy name=myecaddyRealm
   
   login-module 
code=org.jboss.security.auth.spi.SimpleServerLoginModule
 flag=required /
  
   /application-policy

   application-policy name = webdavRealm
  
 login-module code = 
org.jboss.resource.security.CallerIdentityLoginModule flag = required
module-option name = userNameroot/module-option
module-option name = passwordroot/module-option
module-option name = 
managedConnectionFactoryNamejboss.jca:service=TxCM,name=WebDAV-Connector/module-option
 /login-module
  
   /application-policy


The trace log with the SecurityException:
2004-11-19 15:36:45,998 TRACE [org.jboss.security.plugins.JaasSecurityManager] 
Constructing
2004-11-19 15:36:45,998 DEBUG 
[org.jboss.security.plugins.JaasSecurityManagerService] Created [EMAIL 
PROTECTED]
2004-11-19 15:36:45,998 DEBUG 
[org.jboss.security.plugins.JaasSecurityManager.myecaddyRealm] CachePolicy set 
to: [EMAIL PROTECTED]
2004-11-19 15:36:45,998 DEBUG 
[org.jboss.security.plugins.JaasSecurityManagerService] setCachePolicy, [EMAIL 
PROTECTED]
2004-11-19 15:36:45,998 DEBUG 
[org.jboss.security.plugins.JaasSecurityManagerService] Added myecaddyRealm, 
[EMAIL PROTECTED] to map
2004-11-19 15:36:46,013 TRACE 
[org.jboss.security.auth.login.XMLLoginConfigImpl] Begin 
getAppConfigurationEntry(myecaddyRealm), size=6
2004-11-19 15:36:46,013 TRACE 
[org.jboss.security.auth.login.XMLLoginConfigImpl] End 
getAppConfigurationEntry(myecaddyRealm), authInfo=AppConfigurationEntry[]:
[0]
LoginModule Class: org.jboss.security.auth.spi.SimpleServerLoginModule
ControlFlag: LoginModuleControlFlag: required
Options:
2004-11-19 15:36:46,013 TRACE 
[org.jboss.security.auth.spi.SimpleServerLoginModule] initialize
2004-11-19 15:36:46,013 TRACE 
[org.jboss.security.auth.spi.SimpleServerLoginModule] login
2004-11-19 15:36:46,013 TRACE 
[org.jboss.security.auth.spi.SimpleServerLoginModule] User 'root' 
authenticated, loginOk=true
2004-11-19 15:36:46,013 TRACE 
[org.jboss.security.auth.spi.SimpleServerLoginModule] commit, loginOk=true
2004-11-19 15:36:46,029 TRACE 
[org.jboss.security.plugins.JaasSecurityManager.myecaddyRealm] updateCache, 
subject=Subject:
Principal: root
Principal: Roles(members:user,guest)

2004-11-19 15:36:52,841 TRACE 
[org.jboss.security.auth.login.XMLLoginConfigImpl] Begin 
getAppConfigurationEntry(webdavRealm), size=6
2004-11-19 15:36:52,841 TRACE 

[JBoss-user] [JCA/JBoss] - Do I want/need JCA?

2004-11-19 Thread chrisxsb
I'd like to create one or more pools of objects that will be available to my 
system in a way similar to how DataSources can be configured and used.

Basically, each pool will have some number of similar objects in it that may 
only be used by one thread at a time.  When I need to use one of these objects, 
I will call borrow() [or something similar] and when I am finished using the 
object, I will call return() [or something similar].

Additionally, I'd like to be able to able to configure these pools of these 
objects through XML files (in a manner similar to DataSources) so that I can 
set up the particulars of the environment.

I've read through documentation, and looked over some code for how jdbc and jms 
JCA adapters were implemented, but there doesn't seem to be a really good how 
to on the subject.  Before I spend a lot more time trying to figure it out, I 
wanted to make sure I was on the right track.

Does is sound like I should use JCA?  Any other suggestions for what I should 
be using?

Thanks in advance.

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

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


---
This SF.Net email is sponsored by: InterSystems CACHE
FREE OODBMS DOWNLOAD - A multidimensional database that combines
robust object and relational technologies, making it a perfect match
for Java, C++,COM, XML, ODBC and JDBC. www.intersystems.com/match8
___
JBoss-user mailing list
[EMAIL PROTECTED]
https://lists.sourceforge.net/lists/listinfo/jboss-user


[JBoss-user] [Security JAAS/JBoss] - Re: request.getUserPrincipal() returns org.jboss.security.Si

2004-11-19 Thread rickkw
Works like a charm!  Thanks!  Sorry I should have found it in the Wiki before 
asking that question.
--
Rick

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

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


---
This SF.Net email is sponsored by: InterSystems CACHE
FREE OODBMS DOWNLOAD - A multidimensional database that combines
robust object and relational technologies, making it a perfect match
for Java, C++,COM, XML, ODBC and JDBC. www.intersystems.com/match8
___
JBoss-user mailing list
[EMAIL PROTECTED]
https://lists.sourceforge.net/lists/listinfo/jboss-user


[JBoss-user] [Management, JMX/JBoss] - Re: Whats the point of notifications?

2004-11-19 Thread [EMAIL PROTECTED]
If you want to log messages and use an appender this is fine.

Notifications lets you decouple the producer from potential consumers and do 
things that don't necessary involve logging/writing/sending a more or less 
unstructured string message.

For example, when a module gets deployed (e.g. an .ear) a deployer will 
generate a notification and the jsr77 subsystem listens for that and creates a 
set of MBeans to model the deployed package.

In addition, there are standard monitor mbeans that can be configured to poll 
attributes on other mbean and produce notifications, should certain thresholds 
get crossed. So this is really a way to add management function on an existing 
system, assuming you have the data already (e.g. an MBean with a ThreadCount 
attribute)




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

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


---
This SF.Net email is sponsored by: InterSystems CACHE
FREE OODBMS DOWNLOAD - A multidimensional database that combines
robust object and relational technologies, making it a perfect match
for Java, C++,COM, XML, ODBC and JDBC. www.intersystems.com/match8
___
JBoss-user mailing list
[EMAIL PROTECTED]
https://lists.sourceforge.net/lists/listinfo/jboss-user


[JBoss-user] [Installation Configuration] - What happened to the ..\client\jnet.jar file in JBoss 4.0.x?

2004-11-19 Thread spoonman464
I have a stand-alone Java client that needs to be able to get an initial JNDI 
context.  It worked fine in JBoss 3.2.x but no longer works when I run it 
against a JBoss 4.0.x server.  The trouble is that at runtime, my client cannot 
get an initial context because of the NoClassDefNotFoundError which happens 
when trying to find javax.net.SocketFactory.

In JBoss 3.2.x, the \client folder had a file called jnet.jar which contained a 
class definition for javax.net.SocketFactory.  

In JBoss 4.0.x, the \client folder does NOT contain a jnet.jar file.  Also, I 
looked into ALL of the JARs in the \client folder and cannot find one that has 
a class definition for javax.net.SocketFactory.

Finally, when I try to use the version 3.2.x jnet.jar with the version 4.0.x 
client JARs, I get an error about not being the correct version.  So, I have to 
ask, What happened to the ..\client\jnet.jar file in JBoss 4.0.x?

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

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


---
This SF.Net email is sponsored by: InterSystems CACHE
FREE OODBMS DOWNLOAD - A multidimensional database that combines
robust object and relational technologies, making it a perfect match
for Java, C++,COM, XML, ODBC and JDBC. www.intersystems.com/match8
___
JBoss-user mailing list
[EMAIL PROTECTED]
https://lists.sourceforge.net/lists/listinfo/jboss-user


[JBoss-user] [Security JAAS/JBoss] - Re: SecurityException in CallerIdentityLoginModule

2004-11-19 Thread [EMAIL PROTECTED]
This has been fixed for 3.2.7+. You'll have to patch the 
CallerIdentityLoginModule to deal with non-char[] credentials for 3.2.6.

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

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


---
This SF.Net email is sponsored by: InterSystems CACHE
FREE OODBMS DOWNLOAD - A multidimensional database that combines
robust object and relational technologies, making it a perfect match
for Java, C++,COM, XML, ODBC and JDBC. www.intersystems.com/match8
___
JBoss-user mailing list
[EMAIL PROTECTED]
https://lists.sourceforge.net/lists/listinfo/jboss-user


[JBoss-user] [Installation Configuration] - Re: What happened to the ..\client\jnet.jar file in JBoss 4.

2004-11-19 Thread [EMAIL PROTECTED]
jboss-4.0.x requires a 1.4.x vm which bundles the javax.net.* and so the 
jnet.jar is not needed.

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

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


---
This SF.Net email is sponsored by: InterSystems CACHE
FREE OODBMS DOWNLOAD - A multidimensional database that combines
robust object and relational technologies, making it a perfect match
for Java, C++,COM, XML, ODBC and JDBC. www.intersystems.com/match8
___
JBoss-user mailing list
[EMAIL PROTECTED]
https://lists.sourceforge.net/lists/listinfo/jboss-user


[JBoss-user] [JCA/JBoss] - Re: Do I want/need JCA?

2004-11-19 Thread [EMAIL PROTECTED]
If you don't need integration with transactions, security or want to be able to 
use the thread pooling from jca 1.5 (for jboss-4.0.x) then jca may be overkill. 
Otherwise, this is the correct approach. Search for jca 1.5 example adaptor and 
you'll find code samples:

http://developers.sun.com/sw/building/codesamples/integration_jca.html
http://www2.theserverside.com/articles/article.tss?l=J2EE1_4


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

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


---
This SF.Net email is sponsored by: InterSystems CACHE
FREE OODBMS DOWNLOAD - A multidimensional database that combines
robust object and relational technologies, making it a perfect match
for Java, C++,COM, XML, ODBC and JDBC. www.intersystems.com/match8
___
JBoss-user mailing list
[EMAIL PROTECTED]
https://lists.sourceforge.net/lists/listinfo/jboss-user


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

2004-11-19 Thread [EMAIL PROTECTED]
Increase your isolation level.


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

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


---
This SF.Net email is sponsored by: InterSystems CACHE
FREE OODBMS DOWNLOAD - A multidimensional database that combines
robust object and relational technologies, making it a perfect match
for Java, C++,COM, XML, ODBC and JDBC. www.intersystems.com/match8
___
JBoss-user mailing list
[EMAIL PROTECTED]
https://lists.sourceforge.net/lists/listinfo/jboss-user


[JBoss-user] [Nukes User] - Re: Convert Postnuke to Nukes on JBoss

2004-11-19 Thread uwil0m
Thanks for the prompt reply

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

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


---
This SF.Net email is sponsored by: InterSystems CACHE
FREE OODBMS DOWNLOAD - A multidimensional database that combines
robust object and relational technologies, making it a perfect match
for Java, C++,COM, XML, ODBC and JDBC. www.intersystems.com/match8
___
JBoss-user mailing list
[EMAIL PROTECTED]
https://lists.sourceforge.net/lists/listinfo/jboss-user


[JBoss-user] [Installation Configuration] - Excellent! That's exactly the problem. Thank you.

2004-11-19 Thread spoonman464
It turns out that the client application is forced to use a 1.3.x JVM for some 
architectural reasons that I can't change.  So, we'll stick with JBoss 3.2.x 
until we grow out of our old JVM.

Thanks, Scott.  

Spoon

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

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


---
This SF.Net email is sponsored by: InterSystems CACHE
FREE OODBMS DOWNLOAD - A multidimensional database that combines
robust object and relational technologies, making it a perfect match
for Java, C++,COM, XML, ODBC and JDBC. www.intersystems.com/match8
___
JBoss-user mailing list
[EMAIL PROTECTED]
https://lists.sourceforge.net/lists/listinfo/jboss-user


[JBoss-user] [Messaging, JMS JBossMQ] - losing messages publishing to topics

2004-11-19 Thread cballew
We were doing some stress testing on some code that we're getting ready to 
deploy to production soon. Basically for brevity I've done my code home work 
and searches and read the wiki's, done the googles, etc. If I missed, my 
apologies because I tried my best and yes I looked to the jboss source to try 
to discover the issue. I am using the released 4.0.0 build. default 
configuration with the only variance being a switch using the doc/examples sql 
server stuff for hooking up to sql server and no change trying against hsql.

I have narrowed the issue to the client/publish part of the code. I have 
established that everything that makes it into jms_messages gets delivered to 
the onMessage on the other side and we've tested against both sql server and 
hsql and have used the jtds driver and also tried the ms sql jdbc driver. we 
have validated that that I get to the code after the actual publish without 
exception for each message slated to be delivered. The test senario had us 
trying 5k messages that compress before sending and sent as bytemessage for 
each instance of our publisher. I have 40 publishers sending to 40 topic with 
40 receivers. the counts have been in blocks 20K, 10K, 5K and a few runs of 
just 10 messages. I spread the spread of messages over the 40 at 5 per second 
randomly, but evenly spread so everyone of them gets hit ( of course not the 
case with the 10 :-) No matter what we do I either lose between 8 - 14 or go 
over by 2 to 4 messages. this I verfied by turning off the durable subscribers 
on several of the runs and without exception, we get everything that makes it 
to the jboss.mq store, I always see the shortages or overages in the store 
itself. I will post the code for the send on request and we definitely get to 
the end of the send code without an exception. we are auto ack on the publish. 
Only 1 durable subscriber to a topic. BTW, JBoss rocks and this is the only 
real issue I've had, but it's a biggie. I am persistent on the send and I have 
tried setting the delivery mode directly in the publish method and using the 
setDeliveryMode on the TopicPublisher. The call on the publish looks like the 
following:
tPub.publish(t,msg,DeliveryMode.PERSISTENT,4,0);
No exception appears in the logs, everything looks normal, but for some reason 
a few of the messages never make it or make it more than once. the number of 
times I get to the end of my publish code exactly matches the number sent, 
never more or less. All the code lives as jboss servicembeans and is hosted on 
the same instance of jboss.

thanks in advance for any aide.




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

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


---
This SF.Net email is sponsored by: InterSystems CACHE
FREE OODBMS DOWNLOAD - A multidimensional database that combines
robust object and relational technologies, making it a perfect match
for Java, C++,COM, XML, ODBC and JDBC. www.intersystems.com/match8
___
JBoss-user mailing list
[EMAIL PROTECTED]
https://lists.sourceforge.net/lists/listinfo/jboss-user


[JBoss-user] [Installation Configuration] - allowGlobalTxnModeOnly() throws exception in XAOracleDS

2004-11-19 Thread alt_amit
I am getting the following error on jboss4.0 rc1 and oracle 9.2.0.5.0 while 
running the cmproster example with XAConnection. Basically 
allowGlobalTxnModeOnly() finds transactionmode != 2 and throws exception (thru 
decompiled code of the driver class).
My oracle-xa-ds.xml is below:

  xa-datasource
jndi-nameXAOracleDS/jndi-name
track-connection-by-tx/
isSameRM-override-valuefalse/isSameRM-override-value
xa-datasource-classoracle.jdbc.xa.client.OracleXADataSource/xa-datasource
-class
xa-datasource-property name=URLjdbc:oracle:oci8:@orasvc1/xa-datasource-
property
xa-datasource-property name=Userjboss/xa-datasource-property
xa-datasource-property name=Passwordpassword/xa-datasource-property
!-- Uses the pingDatabase method to check a connection is still valid befor
e handing it out from the pool --
!--valid-connection-checker-class-nameorg.jboss.resource.adapter.jdbc.vend
or.OracleValidConnectionChecker/valid-connection-checker-class-name--
!-- Checks the Oracle error codes and messages for fatal errors --
exception-sorter-class-nameorg.jboss.resource.adapter.jdbc.vendor.OracleEx
ceptionSorter/exception-sorter-class-name
!-- Oracles XA datasource cannot reuse a connection outside a transaction o
nce enlisted in a global transaction and vice-versa --
no-tx-separate-pools/

  !-- corresponding type-mapping in the standardjbosscmp-jdbc.xml (optional
) --
  
 type-mappingOracle9i/type-mapping
  
  /xa-datasource

  
depends optional-attribute-name=TransactionManagerServicejboss:service=T
ransactionManager
  




The error is below:

2004-11-19 17:58:42,045 WARN  [org.jboss.tm.TransactionImpl] XAException: tx=Tra
nsactionImpl:XidImpl[FormatId=257, GlobalId=AMIT-DEV/15, BranchQual=, localId=15
] errorCode=XAER_RMERR^M
javax.transaction.xa.XAException^M
at oracle.jdbc.xa.OracleXAResource.allowGlobalTxnModeOnly(OracleXAResour
ce.java:1069)^M
at oracle.jdbc.xa.OracleXAResource.suspendStacked(OracleXAResource.java:
296)^M
at oracle.jdbc.xa.client.OracleXAResource.end(OracleXAResource.java:381)

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

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


---
This SF.Net email is sponsored by: InterSystems CACHE
FREE OODBMS DOWNLOAD - A multidimensional database that combines
robust object and relational technologies, making it a perfect match
for Java, C++,COM, XML, ODBC and JDBC. www.intersystems.com/match8
___
JBoss-user mailing list
[EMAIL PROTECTED]
https://lists.sourceforge.net/lists/listinfo/jboss-user


[JBoss-user] [Installation Configuration] - Running two instances

2004-11-19 Thread arvind_pv
Hi all,

I want to run two instances of JBoss at the same time on the same machine 
without any error.

thanks
arvind



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

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


---
This SF.Net email is sponsored by: InterSystems CACHE
FREE OODBMS DOWNLOAD - A multidimensional database that combines
robust object and relational technologies, making it a perfect match
for Java, C++,COM, XML, ODBC and JDBC. www.intersystems.com/match8
___
JBoss-user mailing list
[EMAIL PROTECTED]
https://lists.sourceforge.net/lists/listinfo/jboss-user


[JBoss-user] [JCA/JBoss] - Re: Do I want/need JCA?

2004-11-19 Thread chrisxsb
Thanks for the quick response.

I'm not sure if I'll need the threading support or the transactions, but it is 
conceivable that I might need the security in the not-too-distant future.

I've gone through the document on developers.sun.com, and it feels kinda like a 
square peg and a round hole.  The objects I wish to keep in the pool are not 
database connections so things like getRecordFactory() (which is required by 
the ConnectionFactory interface) will have Unsupported Operation exceptions 
thrown in their body.  Am I misunderstanding the purpose of JCA?

The things I'd like to get are:


  | * Pooled objects;
  | * Easy creation of other pools of objects, with slightly different 
configurations (still containing objects of same interface, though) via XML 
config files
  | 

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

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


---
This SF.Net email is sponsored by: InterSystems CACHE
FREE OODBMS DOWNLOAD - A multidimensional database that combines
robust object and relational technologies, making it a perfect match
for Java, C++,COM, XML, ODBC and JDBC. www.intersystems.com/match8
___
JBoss-user mailing list
[EMAIL PROTECTED]
https://lists.sourceforge.net/lists/listinfo/jboss-user


[JBoss-user] [EJB/JBoss] - Regd : deployment

2004-11-19 Thread arvind_pv
Hi all,

I need to deploy two applications at the same time in JBoss 4.0

can any one help me 

thanks
arvind

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

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


---
This SF.Net email is sponsored by: InterSystems CACHE
FREE OODBMS DOWNLOAD - A multidimensional database that combines
robust object and relational technologies, making it a perfect match
for Java, C++,COM, XML, ODBC and JDBC. www.intersystems.com/match8
___
JBoss-user mailing list
[EMAIL PROTECTED]
https://lists.sourceforge.net/lists/listinfo/jboss-user