[JBoss-user] [Beginners Corner] - java.lang.RuntimeException: Cannot create MBeanServer

2004-12-03 Thread monsterk
ive got this error when ive tried to start the jboss4.0.0

help me

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

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


---
SF email is sponsored by - The IT Product Guide
Read honest  candid reviews on hundreds of IT Products from real users.
Discover which products truly live up to the hype. Start reading now.
http://productguide.itmanagersjournal.com/
___
JBoss-user mailing list
[EMAIL PROTECTED]
https://lists.sourceforge.net/lists/listinfo/jboss-user


[JBoss-user] [Beginners Corner] - Re: java.lang.RuntimeException: Cannot create MBeanServer

2004-12-03 Thread monsterk
i changed the sdk and works tanx dude

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

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


---
SF email is sponsored by - The IT Product Guide
Read honest  candid reviews on hundreds of IT Products from real users.
Discover which products truly live up to the hype. Start reading now. 
http://productguide.itmanagersjournal.com/
___
JBoss-user mailing list
[EMAIL PROTECTED]
https://lists.sourceforge.net/lists/listinfo/jboss-user


[JBoss-user] [Messaging, JMS JBossMQ] - javax.naming.CommunicationException: Receive timed out.

2004-12-02 Thread monsterk
I everybody im trying to implementing a simple send receive example and when 
i try to start the sender i got this error on jboss

C:\SADSXPJAVA\JMS\binjava -classpath 
.;c:\jboss-3.2.1\client\jbossall-client.jar MessageSender

javax.naming.CommunicationException: Receive timed out.  Root exception is java.
net.SocketTimeoutException: Receive timed out
at java.net.PlainDatagramSocketImpl.receive(Native Method)
at java.net.DatagramSocket.receive(DatagramSocket.java:671)
at org.jnp.interfaces.NamingContext.discoverServer(NamingContext.java:10
38)
at org.jnp.interfaces.NamingContext.checkRef(NamingContext.java:1127)
at org.jnp.interfaces.NamingContext.lookup(NamingContext.java:478)
at org.jnp.interfaces.NamingContext.lookup(NamingContext.java:471)
at javax.naming.InitialContext.lookup(InitialContext.java:347)
at MessageSender.(MessageSender.java:25)
at MessageSender.main(MessageSender.java:9)


please help me


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

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


---
SF email is sponsored by - The IT Product Guide
Read honest  candid reviews on hundreds of IT Products from real users.
Discover which products truly live up to the hype. Start reading now.
http://productguide.itmanagersjournal.com/
___
JBoss-user mailing list
[EMAIL PROTECTED]
https://lists.sourceforge.net/lists/listinfo/jboss-user


[JBoss-user] [Beginners Corner] - Re: org.jboss.util.NestedSQLException:

2004-12-01 Thread monsterk
?xml version=1.0 encoding=UTF-8?
!-- The Hypersonic embedded database JCA connection factory config
$Id: hsqldb-ds.xml,v 1.1.2.11 2003/09/28 12:31:36 starksm Exp $ --


   local-tx-datasource
  !-- The jndi name of the DataSource, it is prefixed with java:/ --
  !-- Datasources are not available outside the virtual machine --
  jndi-nameDefaultDS/jndi-name
  !-- for tcp connection, allowing other processes to use the hsqldb
  database. This requires the org.jboss.jdbc.HypersonicDatabase mbean.--
  connection-urljdbc:hsqldb:hsql://localhost:1701/connection-url
  !-- for totally in-memory db, not saved when jboss stops. 
  The org.jboss.jdbc.HypersonicDatabase mbean is unnecessary--
  connection-urljdbc:hsqldb:./connection-url
  !-- for in-process db with file store, saved when jboss stops. The
  org.jboss.jdbc.HypersonicDatabase is unnecessary
--
  connection-urljdbc:hsqldb:${jboss.server.data.dir}/hypersonic/localDB
  /connection-url
  !-- The driver class --
  driver-classorg.hsqldb.jdbcDriver/driver-class
  !-- The login and password --
  user-namesa/user-name
  
  !--example of how to specify class that determines if exception means 
connection should be destroyed--
  
!--exception-sorter-class-nameorg.jboss.resource.adapter.jdbc.vendor.DummyExceptionSorter/exception-sorter-class-name--
  !-- this will be run before a managed connection is removed from the 
pool for use by a client--
  !--check-valid-connection-sqlselect * from 
something/check-valid-connection-sql --
  !-- The minimum connections in a pool/sub-pool. Pools are lazily 
constructed on first use --
  min-pool-size5/min-pool-size
  !-- The maximum connections in a pool/sub-pool --
  max-pool-size20/max-pool-size
  !-- The time before an unused connection is destroyed --
  !-- NOTE: This is the check period. It will be destroyed somewhere 
between 1x and 2x this timeout after last use --
  !-- TEMPORARY FIX! - Disable idle connection removal, HSQLDB has a 
problem with not reaping threads on closed connections --
  idle-timeout-minutes0/idle-timeout-minutes
  !-- sql to call when connection is created
new-connection-sqlsome arbitrary sql/new-connection-sql
  --
  !-- sql to call on an existing pooled connection when it is obtained 
from pool 
 check-valid-connection-sqlsome arbitrary 
sql/check-valid-connection-sql
  --
  !-- example of how to specify a class that determines a connection is 
valid before it is handed out from the pool
 
valid-connection-checker-class-nameorg.jboss.resource.adapter.jdbc.vendor.DummyValidConnectionChecker/valid-connection-checker-class-name
  --
  !-- Whether to check all statements are closed when the connection is 
returned to the pool,
   this is a debugging feature that should be turned off in production
  track-statementstrue/track-statements --
  !-- Use the getConnection(user, pw) for logins
application-managed-security/
  --
  !-- Use the security domain defined in conf/login-config.xml --
  security-domainHsqlDbRealm/security-domain
  !-- Use the security domain defined in conf/login-config.xml or the
   getConnection(user, pw) for logins. The security domain takes 
precedence.

security-domain-and-applicationHsqlDbRealm/security-domain-and-application
  --
  !-- Add this depends tag if you are using the tcp connection url--
  jboss:service=Hypersonic
 
   /local-tx-datasource
   !-- This mbean should be used only when using tcp connections. Uncomment
   when the tcp based connection-url is used.  --
   
 1701
 true
 default
 false
 true
   


this is my xml
and my jboss version is 3.2.3

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

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


---
SF email is sponsored by - The IT Product Guide
Read honest  candid reviews on hundreds of IT Products from real users.
Discover which products truly live up to the hype. Start reading now. 
http://productguide.itmanagersjournal.com/
___
JBoss-user mailing list
[EMAIL PROTECTED]
https://lists.sourceforge.net/lists/listinfo/jboss-user


[JBoss-user] [Persistence CMP/JBoss] - org.jboss.util.NestedSQLException: You are trying to use a c

2004-11-30 Thread monsterk
everything started when i had to use hte hypersonic, and i had to edit the 
hsqldb-ds.xml to uncomment the lines from MBEAn and the the hypersonic service 
appear on the agent view at jmx-console, but the problem is when i try to use a 
entity bean cmp i got an error:

org.jboss.util.NestedSQLException: You are trying to use a connection factory 
that has been shut down: ManagedConnectionFactory is null.; - nested throwable: 
(javax.resource.ResourceException: You are trying to use a connection factory 
that has been shut down: ManagedConnectionFactory is null.)

please somebody help me to solve this problem

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

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


---
SF email is sponsored by - The IT Product Guide
Read honest  candid reviews on hundreds of IT Products from real users.
Discover which products truly live up to the hype. Start reading now. 
http://productguide.itmanagersjournal.com/
___
JBoss-user mailing list
[EMAIL PROTECTED]
https://lists.sourceforge.net/lists/listinfo/jboss-user


[JBoss-user] [Installation Configuration] - org.jboss.util.NestedSQLException: You are trying to use a c

2004-11-30 Thread monsterk
everything started when i had to use hte hypersonic, and i had to edit the 
hsqldb-ds.xml to uncomment the lines from MBEAn and the the hypersonic service 
appear on the agent view at jmx-console, but the problem is when i try to use a 
entity bean cmp i got an error: 

org.jboss.util.NestedSQLException: You are trying to use a connection factory 
that has been shut down: ManagedConnectionFactory is null.; - nested throwable: 
(javax.resource.ResourceException: You are trying to use a connection factory 
that has been shut down: ManagedConnectionFactory is null.) 

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

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


---
SF email is sponsored by - The IT Product Guide
Read honest  candid reviews on hundreds of IT Products from real users.
Discover which products truly live up to the hype. Start reading now. 
http://productguide.itmanagersjournal.com/
___
JBoss-user mailing list
[EMAIL PROTECTED]
https://lists.sourceforge.net/lists/listinfo/jboss-user


[JBoss-user] [Beginners Corner] - org.jboss.util.NestedSQLException:

2004-11-30 Thread monsterk
everything started when i had to use hte hypersonic, and i had to edit the 
hsqldb-ds.xml to uncomment the lines from MBEAn and the the hypersonic service 
appear on the agent view at jmx-console, but the problem is when i try to use a 
entity bean cmp i got an error: 

org.jboss.util.NestedSQLException: You are trying to use a connection factory 
that has been shut down: ManagedConnectionFactory is null.; - nested throwable: 
(javax.resource.ResourceException: You are trying to use a connection factory 
that has been shut down: ManagedConnectionFactory is null.) 

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

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


---
SF email is sponsored by - The IT Product Guide
Read honest  candid reviews on hundreds of IT Products from real users.
Discover which products truly live up to the hype. Start reading now. 
http://productguide.itmanagersjournal.com/
___
JBoss-user mailing list
[EMAIL PROTECTED]
https://lists.sourceforge.net/lists/listinfo/jboss-user