[JBoss-user] [Nukes User] - Re: nukes 1.1RC1 available

2004-06-03 Thread joehobson
I'm still using postgreSQL and was curious to see how the pure-CMP solutions are 
coming. I updated my whole nukes dev directory via CVS but was unable to build. Got 
this error...

BUILD FAILED
  | file:/home/jhobson/dev/eclipse/workspace/nukes/nukes/build.xml:128: Could not 
create task or type of type: ejbdoclet.
  | 
  | Ant could not find the task or a class this task relies upon.
  | 

Saw someone in a previous Nukes:Dev forum post with the same error and it looked like 
it was an Ant version issue. Did something get introduced lately that would require a 
newer version of Ant? Although i'm not immediately sure if i'm on 1.5 or 1.6, it 
didn't sound like it should matter. Then again, that post was from late March and I've 
updated fine since then. 

Any help on this one? Or is there just a new .jar file I need to find and get into my 
classpath?

thanks... .joe


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

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


---
This SF.Net email is sponsored by the new InstallShield X.
From Windows to Linux, servers to mobile, InstallShield X is the one
installation-authoring solution that does it all. Learn more and
evaluate today! http://www.installshield.com/Dev2Dev/0504
___
JBoss-user mailing list
[EMAIL PROTECTED]
https://lists.sourceforge.net/lists/listinfo/jboss-user


[JBoss-user] [Persistence CMP/JBoss] - Re: Mapping Entity Beans to Database Tables

2004-06-03 Thread loubyansky
So you are missing jbosscmp-jdbc.xml?

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

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


---
This SF.Net email is sponsored by the new InstallShield X.
From Windows to Linux, servers to mobile, InstallShield X is the one
installation-authoring solution that does it all. Learn more and
evaluate today! http://www.installshield.com/Dev2Dev/0504
___
JBoss-user mailing list
[EMAIL PROTECTED]
https://lists.sourceforge.net/lists/listinfo/jboss-user


[JBoss-user] [JCA/JBoss] - (Oracle XA) Can't access

2004-06-03 Thread rmontag
Hello, I'm not able to access the url
http://www.baldor.it/StartPage/documents/admin/59.html
with the description of Configuring Oracle Database for XA Support (I always got a 
connection timed out error). 

I wasn't also able to find an alternative side with google. Can anybody provide me an 
alternative url or the content of this page ?

Thanks in advance.
   Rainer 

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

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


---
This SF.Net email is sponsored by the new InstallShield X.
From Windows to Linux, servers to mobile, InstallShield X is the one
installation-authoring solution that does it all. Learn more and
evaluate today! http://www.installshield.com/Dev2Dev/0504
___
JBoss-user mailing list
[EMAIL PROTECTED]
https://lists.sourceforge.net/lists/listinfo/jboss-user


[JBoss-user] [Installation Configuration] - Re: Nested deployment

2004-06-03 Thread maha
We have the same Problem (with same nested Message) and as a final Conclusion this 
means we cannot use Hot Deploying!
We use JBoss 3.2.3 running the all Configuration and we can see also this Message: 
Caused by: java.lang.NoClassDefFoundError: org/jboss/net/axis/Deployment
But we found the jboss-net.jar is already there inside Dirctory jboss-net.sar 
(all\deploy)
Does anybody know whats going wrong?


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

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


---
This SF.Net email is sponsored by the new InstallShield X.
From Windows to Linux, servers to mobile, InstallShield X is the one
installation-authoring solution that does it all. Learn more and
evaluate today! http://www.installshield.com/Dev2Dev/0504
___
JBoss-user mailing list
[EMAIL PROTECTED]
https://lists.sourceforge.net/lists/listinfo/jboss-user


[JBoss-user] [Persistence CMP/JBoss] - Relationship (post-table-create)

2004-06-03 Thread Speedyg_21
Hi,

I am using JBoss 3.2.3 with MySQL 4.0.17 and encountering issues populating the 
database with default values with CMP beans.

The app. consists of a one-to-many relationship between the role bean and the user 
bean.

jbosscmp-jdbc.xml

  | ?xml version=1.0 encoding=UTF-8?
  | 
  | !DOCTYPE jbosscmp-jdbc PUBLIC -//JBoss//DTD JBOSSCMP-JDBC 3.2//EN 
http://www.jboss.org/j2ee/dtd/jbosscmp-jdbc_3_2.dtd;
  | 
  | jbosscmp-jdbc
  |defaults
  |   datasourcejava:/DefaultDS/datasource
  |   datasource-mappingmySQL/datasource-mapping
  |   create-tabletrue/create-table
  |   remove-tablefalse/remove-table
  |   pk-constrainttrue/pk-constraint
  |   preferred-relation-mappingrelation-table/preferred-relation-mapping
  |/defaults
  |enterprise-beans
  |   entity
  |  ejb-nameUser/ejb-name
  |  post-table-create
  |  sql-statementinsert into user (email, password) values ('[EMAIL 
PROTECTED]', 'test');/sql-statement
  |  /post-table-create
  |  table-nameUser/table-name
  |  cmp-field
  | field-nameemail/field-name
  | column-nameemail/column-name
  |  /cmp-field
  |  cmp-field
  | field-namepassword/field-name
  | column-namepassword/column-name
  |  /cmp-field
  |   /entity
  |   entity
  |  ejb-nameRole/ejb-name
  |  post-table-create
  |  sql-statementinsert into role (name) values 
('admin');/sql-statement
  |  /post-table-create
  |  table-nameRole/table-name
  |  cmp-field
  | field-namename/field-name
  | column-namename/column-name
  |  /cmp-field
  |   /entity
  |/enterprise-beans
  | 
  |relationships
  |ejb-relation
  |ejb-relation-nameUser-Role/ejb-relation-name
  |relation-table-mapping
  |table-nameuser_roles/table-name
  |create-tabletrue/create-table
  |remove-tablefalse/remove-table
  |post-table-create
  |sql-statementinsert into user_roles (user, role) values 
('[EMAIL PROTECTED]', 'admin');/sql-statement
  |/post-table-create
  |pk-constrainttrue/pk-constraint
  |/relation-table-mapping
  |/ejb-relation
  |/relationships
  | /jbosscmp-jdbc
  | 

Default value insertion works well for both beans but fails for the relation
I got an SQLException : Duplicate entry '[EMAIL PROTECTED]' for key 1

When I read the server.log file, I see that a wrong sql statement is chosen :

issuePostCreateSQL::sql: [insert into user (email, password) values ('[EMAIL 
PROTECTED]', 'test');] on table User
issuePostCreateSQL::sql: [insert into role (name, description) values ('admin', 
'Administrator');] on table Role
issuePostCreateSQL::sql: [insert into user (email, password) values ('[EMAIL 
PROTECTED]', 'test');] on table user_roles

Why does the server choose the sql statement defined for the User bean (insert into 
user (email, password) values ('[EMAIL PROTECTED]', 'test')) instead the statement 
defined for the relationship (insert into user_roles (user, role) values ('[EMAIL 
PROTECTED]', 'admin')) ?
In that situation, it's normal that I got this SQLException because the info has 
already been inserted in the user table.

Is there something wrong with my configuration files ?
How can I fix it ?

Thanks,
Olivier

Here are my descriptors and stack trace when I start the server for the first time

ejb-jar.xml

  | ?xml version=1.0 encoding=UTF-8?
  | 
  | !DOCTYPE ejb-jar PUBLIC '-//Sun Microsystems, Inc.//DTD Enterprise JavaBeans 
2.0//EN' 'http://java.sun.com/dtd/ejb-jar_2_0.dtd'
  | 
  | ejb-jar
  | 
  | enterprise-beans
  | entity
  | ejb-nameUser/ejb-name
  | 
local-homecom.polygone.security.auth.ejb.user.LocalUserHome/local-home
  | localcom.polygone.security.auth.ejb.user.LocalUser/local
  | ejb-classcom.polygone.security.auth.ejb.user.UserBean/ejb-class
  | persistence-typeContainer/persistence-type
  | prim-key-classjava.lang.String/prim-key-class
  | reentrantTrue/reentrant
  | cmp-version2.x/cmp-version
  | abstract-schema-nameUser/abstract-schema-name
  | cmp-fieldfield-nameemail/field-name/cmp-field
  | cmp-fieldfield-namepassword/field-name/cmp-field
  | primkey-fieldemail/primkey-field
  | query
  | descriptionmethod to find the authenticated users/description
  | query-method
  | method-namefindAll/method-name
  | method-params/
  | /query-method
  | result-type-mappingLocal/result-type-mapping
  | ejb-ql![CDATA[select object (user) from User user]]/ejb-ql
  | /query
  | 

[JBoss-user] [Installation Configuration] - Re: Raising JBoss ports on one particular ip-addess

2004-06-03 Thread mharnvi
I'm on Linux and even without jboss.bind.address set JBoss only binds one IP address. 
I want it to listen on all interfaces. Here is netstat -at:

tcp  0  0 127.0.0.1:10980.0.0.0:*LISTEN  21222/java

tcp  0  0 127.0.0.1:10990.0.0.0:*LISTEN  21222/java
  

Apache on the other hand looks like this:

tcp  0  0 0.0.0.0:80  0.0.0.0:* LISTEN  27147/httpd 

I tried setting jboss.bind.address to  in run.sh but nothing changed. 

Anyone?

 /Markus





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

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


---
This SF.Net email is sponsored by the new InstallShield X.
From Windows to Linux, servers to mobile, InstallShield X is the one
installation-authoring solution that does it all. Learn more and
evaluate today! http://www.installshield.com/Dev2Dev/0504
___
JBoss-user mailing list
[EMAIL PROTECTED]
https://lists.sourceforge.net/lists/listinfo/jboss-user


[JBoss-user] Dirty read with commit option B on JBoss 3.2.0

2004-06-03 Thread Maxim Mikhelman
I use JBoss 3.2.0 with container configuration Standard CMP 2.x
EntityBean (commit option B, pessimistic locking). All code run within
transactions, user or container (required).

I see next strange behavior:
1. JBoss starts first transaction that find some Entity Bean instance A,
use it with get and set methods and lock it within transaction.
2. Started second transaction that try to gain lock on the same object A
and waiting.
3. First transaction end it's actions and commit changed A property to
DB.
4. From this moment second transaction can continue to run , gains lock
on A, but when it try to call get property i see inconsistence and view
that actually read value that was before commit of first transaction -
dirty read.

What i do wrong and should change ?



---
This SF.Net email is sponsored by the new InstallShield X.
From Windows to Linux, servers to mobile, InstallShield X is the one
installation-authoring solution that does it all. Learn more and
evaluate today! http://www.installshield.com/Dev2Dev/0504
___
JBoss-user mailing list
[EMAIL PROTECTED]
https://lists.sourceforge.net/lists/listinfo/jboss-user


[JBoss-user] [Nukes User] - Re: German (other UNICODE chars) umlauts

2004-06-03 Thread innovate
ferdez wrote : Checking portuguese chars: 

  | 
  | These seem to work well

Just enter some chars into the text field, press preview, you will discover the 
following:

- The content in the preview and the text area are not the same. In the preview, you 
see the chars you just entered, but in the text area, the chars are not any longer the 
same. When you now press preview again, also the preview will show you other 
characters.

Regards,

Cyrill

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

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


---
This SF.Net email is sponsored by the new InstallShield X.
From Windows to Linux, servers to mobile, InstallShield X is the one
installation-authoring solution that does it all. Learn more and
evaluate today! http://www.installshield.com/Dev2Dev/0504
___
JBoss-user mailing list
[EMAIL PROTECTED]
https://lists.sourceforge.net/lists/listinfo/jboss-user


[JBoss-user] [Messaging, JMS JBossMQ] - JMS Security Configuration

2004-06-03 Thread sanjewad
Hi

I am using JBoss 3.2.3 and I have created a Queue called pendingServiceActionQueue.
PendingServiceActionListener(Which is a MDB) will listen to this queue and on Message 
I need to call up some EJB which has security enabled.

I have configure JBossMQ to deal with Database Security as shown below.

application-policy name = jbossmq
   
  login-module code = org.jboss.security.auth.spi.DatabaseServerLoginModule
 flag = required
 module-option name = unauthenticatedIdentityguest/module-option
 module-option name = dsJndiNamejava:/OracleDS/module-option
 module-option name = principalsQueryselect password from 
user_principal where user_name=?
/module-option
 module-option name = rolesQueryselect user_role, 'Roles' from 
user_principal_role where user_name=?
/module-option
  /login-module
   
/application-policy

my Queue configuration in jbossmq-destinations-service.xml is shown as


depends 
optional-attribute-name=DestinationManagerjboss.mq:service=DestinationManager
depends optional-attribute-name=SecurityManagerjboss.mq:service=SecurityManager
   
  



  

  

my JBoss.xml 

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

security-domainjava:/jaas/WrapperDatabaseDomain/security-domain
enterprise-beans
message-driven
ejb-namePendingServiceActionListener/ejb-name

destination-jndi-namequeue/pendingServiceActionQueue/destination-jndi-name
resource-ref
res-ref-nameUIL2ConnectionFactory/res-ref-name
jndi-nameUIL2ConnectionFactory/jndi-name
/resource-ref
/message-driven
/enterprise-beans


But when I deploy the MDB I get the following error.

Connection not authorized to subscribe to destination: pendingServiceActionQueue

please try to resolve this if you could.


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

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


---
This SF.Net email is sponsored by the new InstallShield X.
From Windows to Linux, servers to mobile, InstallShield X is the one
installation-authoring solution that does it all. Learn more and
evaluate today! http://www.installshield.com/Dev2Dev/0504
___
JBoss-user mailing list
[EMAIL PROTECTED]
https://lists.sourceforge.net/lists/listinfo/jboss-user


[JBoss-user] [Nukes User] - Re: nukes 1.1RC1 available

2004-06-03 Thread innovate
joehobson wrote : 
  | 
  | Any help on this one? Or is there just a new .jar file I need to find and get into 
my classpath?
  | 
  | thanks... .joe
  | 

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

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


---
This SF.Net email is sponsored by the new InstallShield X.
From Windows to Linux, servers to mobile, InstallShield X is the one
installation-authoring solution that does it all. Learn more and
evaluate today! http://www.installshield.com/Dev2Dev/0504
___
JBoss-user mailing list
[EMAIL PROTECTED]
https://lists.sourceforge.net/lists/listinfo/jboss-user


[JBoss-user] [Nukes User] - Re: Problems on Nukes1.1RC1

2004-06-03 Thread aurelie
Hi,
thanks for your help
I tested your solution but jboss blocks during the deploiement of nukes.last

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

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


---
This SF.Net email is sponsored by the new InstallShield X.
From Windows to Linux, servers to mobile, InstallShield X is the one
installation-authoring solution that does it all. Learn more and
evaluate today! http://www.installshield.com/Dev2Dev/0504
___
JBoss-user mailing list
[EMAIL PROTECTED]
https://lists.sourceforge.net/lists/listinfo/jboss-user


[JBoss-user] [Messaging, JMS JBossMQ] - Binding topic connection to JNDI

2004-06-03 Thread mylesJ
We are facing an awkward scenario when sending JMS messages from within an EJB. We 
want to be able to cache a topic connection and reuse it rather than create a new one 
each time an EJB publishes a message. The connection factory seems to create a new 
physical connection each time rather than reusing them which eats up loads of 
resources - thats why we want to cache the connection.

Obviously caching a connection in a static variable (the singleton pattern) is an 
obvious choice, but then this is subject to the vagaries of classloading by JBoss as 
to how many instances actually get created.

Therefore, I wonder whether it is feasible to create a topic connection and bind in to 
JNDI?

Are there any other options?

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

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


---
This SF.Net email is sponsored by the new InstallShield X.
From Windows to Linux, servers to mobile, InstallShield X is the one
installation-authoring solution that does it all. Learn more and
evaluate today! http://www.installshield.com/Dev2Dev/0504
___
JBoss-user mailing list
[EMAIL PROTECTED]
https://lists.sourceforge.net/lists/listinfo/jboss-user


[JBoss-user] [Messaging, JMS JBossMQ] - JMS Security Configuration

2004-06-03 Thread sanjewad
Hi

I am using JBoss 3.2.3 and I have created a Queue called pendingServiceActionQueue.
PendingServiceActionListener(Which is a MDB) will listen to this queue and on Message 
I need to call up some EJB which has security enabled.

I have configure JBossMQ to deal with Database Security as shown below.

application-policy name = jbossmq
   
  login-module code = org.jboss.security.auth.spi.DatabaseServerLoginModule
 flag = required
 module-option name = unauthenticatedIdentityguest/module-option
 module-option name = dsJndiNamejava:/OracleDS/module-option
 module-option name = principalsQueryselect password from 
user_principal where user_name=?
/module-option
 module-option name = rolesQueryselect user_role, 'Roles' from 
user_principal_role where user_name=?
/module-option
  /login-module
   
/application-policy

my Queue configuration in jbossmq-destinations-service.xml is shown as


depends 
optional-attribute-name=DestinationManagerjboss.mq:service=DestinationManager
depends optional-attribute-name=SecurityManagerjboss.mq:service=SecurityManager
   
  



  

  

my JBoss.xml 

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

security-domainjava:/jaas/WrapperDatabaseDomain/security-domain
enterprise-beans
message-driven
ejb-namePendingServiceActionListener/ejb-name

destination-jndi-namequeue/pendingServiceActionQueue/destination-jndi-name
resource-ref
res-ref-nameUIL2ConnectionFactory/res-ref-name
jndi-nameUIL2ConnectionFactory/jndi-name
/resource-ref
/message-driven
/enterprise-beans


But when I deploy the MDB I get the following error.

Connection not authorized to subscribe to destination: pendingServiceActionQueue

please try to resolve this if you could.


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

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


---
This SF.Net email is sponsored by the new InstallShield X.
From Windows to Linux, servers to mobile, InstallShield X is the one
installation-authoring solution that does it all. Learn more and
evaluate today! http://www.installshield.com/Dev2Dev/0504
___
JBoss-user mailing list
[EMAIL PROTECTED]
https://lists.sourceforge.net/lists/listinfo/jboss-user


[JBoss-user] [Nukes User] - Re: nukes 1.1RC1 available

2004-06-03 Thread innovate
Hello,

Have some troubles with the forum :-)

Just do a fresh checkout of nukes and you will get rid of this error. In my case, that 
helped.

I am running postreSQL 7.4.x, and I get errors because of a syntax error in auto 
increment of rows.


Regards,

Cyrill

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

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


---
This SF.Net email is sponsored by the new InstallShield X.
From Windows to Linux, servers to mobile, InstallShield X is the one
installation-authoring solution that does it all. Learn more and
evaluate today! http://www.installshield.com/Dev2Dev/0504
___
JBoss-user mailing list
[EMAIL PROTECTED]
https://lists.sourceforge.net/lists/listinfo/jboss-user


[JBoss-user] [Nukes User] - Re: German (other UNICODE chars) umlauts

2004-06-03 Thread innovate
I just have done some research. I am using MySQL and J/Connect 3 which does 
automatically switch (from plain ascii) the encoding depending on the chars. If I look 
up the chars in the Database through webmin (WebAccess), I see the German umlauts. So 
they get stored just right in the database. But while traversing back to the browser, 
there is a problem. Where to search for the problem?

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

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


---
This SF.Net email is sponsored by the new InstallShield X.
From Windows to Linux, servers to mobile, InstallShield X is the one
installation-authoring solution that does it all. Learn more and
evaluate today! http://www.installshield.com/Dev2Dev/0504
___
JBoss-user mailing list
[EMAIL PROTECTED]
https://lists.sourceforge.net/lists/listinfo/jboss-user


[JBoss-user] [Clustering/JBoss] - Re: HARMI Exception

2004-06-03 Thread robby_us
Hi All, 
Kindly let me know the cause and solution for the issue, as this is happening quite 
frequently, which is leading to lot server restarts. 

Regards 
Robby 


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

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


---
This SF.Net email is sponsored by the new InstallShield X.
From Windows to Linux, servers to mobile, InstallShield X is the one
installation-authoring solution that does it all. Learn more and
evaluate today! http://www.installshield.com/Dev2Dev/0504
___
JBoss-user mailing list
[EMAIL PROTECTED]
https://lists.sourceforge.net/lists/listinfo/jboss-user


RE: [JBoss-user] Dirty read with commit option B on JBoss 3.2.0

2004-06-03 Thread Alexey Loubyansky
Did the second transaction found the instance with on-find read-ahead? 

 -Original Message-
 From: [EMAIL PROTECTED] 
 [mailto:[EMAIL PROTECTED] On Behalf Of 
 Maxim Mikhelman
 Sent: Thursday, June 03, 2004 11:08 AM
 To: [EMAIL PROTECTED]
 Subject: [JBoss-user] Dirty read with commit option B on JBoss 3.2.0
 
 I use JBoss 3.2.0 with container configuration Standard CMP 
 2.x EntityBean (commit option B, pessimistic locking). All 
 code run within transactions, user or container (required).
 
 I see next strange behavior:
 1. JBoss starts first transaction that find some Entity Bean 
 instance A, use it with get and set methods and lock it 
 within transaction.
 2. Started second transaction that try to gain lock on the 
 same object A and waiting.
 3. First transaction end it's actions and commit changed A 
 property to DB.
 4. From this moment second transaction can continue to run , 
 gains lock on A, but when it try to call get property i see 
 inconsistence and view that actually read value that was 
 before commit of first transaction - dirty read.
 
 What i do wrong and should change ?



---
This SF.Net email is sponsored by the new InstallShield X.
From Windows to Linux, servers to mobile, InstallShield X is the one
installation-authoring solution that does it all. Learn more and
evaluate today! http://www.installshield.com/Dev2Dev/0504
___
JBoss-user mailing list
[EMAIL PROTECTED]
https://lists.sourceforge.net/lists/listinfo/jboss-user


[JBoss-user] [Security JAAS/JBoss] - Authentication autoritation exception

2004-06-03 Thread lalala
Hi!

I'm so desperate with jboss  jaas.
The login method throws me this exception :

javax.security.auth.login.LoginException: javax.naming.NameNotFoundException: MyAplDS 
not bound
at 
org.jboss.security.auth.spi.DatabaseServerLoginModule.getUsersPassword(DatabaseServerLoginModule.java:110)
at 
org.jboss.security.auth.spi.UsernamePasswordLoginModule.login(UsernamePasswordLoginModule.java:150)
at sun.reflect.NativeMethodAccessorImpl.invoke0(Native Method)
at 
sun.reflect.NativeMethodAccessorImpl.invoke(NativeMethodAccessorImpl.java:39)
at 
sun.reflect.DelegatingMethodAccessorImpl.invoke(DelegatingMethodAccessorImpl.java:25)
at java.lang.reflect.Method.invoke(Method.java:324)
at javax.security.auth.login.LoginContext.invoke(LoginContext.java:675)
at javax.security.auth.login.LoginContext.access$000(LoginContext.java:129)
at javax.security.auth.login.LoginContext$4.run(LoginContext.java:610)
at java.security.AccessController.doPrivileged(Native Method)
at javax.security.auth.login.LoginContext.invokeModule(LoginContext.java:607)
at javax.security.auth.login.LoginContext.login(LoginContext.java:534)

in my login-config.xml I have this:


application-policy name = MyAplDbRealm
   
  login-module code = 
org.jboss.resource.security.ConfiguredIdentityLoginModule flag = required
 module-option name = principaluser/module-option
 module-option name = userNameuser/module-option
 module-option name = passwordpass/module-option
 module-option name = 
managedConnectionFactoryNamejboss.jca:service=LocalTxCM,name=MyAplDS/module-option
  /login-module
   
/application-policy  

   application-policy name=application
  
 login-module code=org.jboss.security.auth.spi.DatabaseServerLoginModule 
flag=required
module-option 
name=managedConnectionFactoryNamejboss.jca:service=LocalTxCM,name=MyAplDS/module-option
 
module-option name=dsJndiNamejava:/MyAplDS/module-option  
module-option name=principalsQueryselect password from ludatuser where 
username=?/module-option
module-option name=rolesQueryselect role, rolegroup from ludatroles 
where username=?/module-option
 /login-module
  
   /application-policy

but it seems that my jboss doesn't read this, it reads the .java.login.config that i 
have in %userhome%, this archive contains: 

application {
org.jboss.security.auth.spi.DatabaseServerLoginModule required debug=true
dsJndiName=java:/MyAplDS 
principalsQuery=select password from ludatuser where username=?
rolesQuery=select role, rolegroup from ludatroles where username=?
unauthenticatedIdentity=nobody 
;
};

If I remove this file, the login process throws an exception: 

java.lang.SecurityException: Unable to locate a login configuration
at com.sun.security.auth.login.ConfigFile.(ConfigFile.java:97)
at sun.reflect.NativeConstructorAccessorImpl.newInstance0(Native Method)
? lines deleted
at javax.security.auth.login.LoginContext$1.run(LoginContext.java:170)
at java.security.AccessController.doPrivileged(Native Method)
at javax.security.auth.login.LoginContext.init(LoginContext.java:167)
at javax.security.auth.login.LoginContext.(LoginContext.java:393)
at weblogic.security.internal.ServerAuthenticate.main(ServerAuthenticate)

Anyone can help me???

Thanks

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

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


---
This SF.Net email is sponsored by the new InstallShield X.
From Windows to Linux, servers to mobile, InstallShield X is the one
installation-authoring solution that does it all. Learn more and
evaluate today! http://www.installshield.com/Dev2Dev/0504
___
JBoss-user mailing list
[EMAIL PROTECTED]
https://lists.sourceforge.net/lists/listinfo/jboss-user


[JBoss-user] [Nukes User] - Re: user error

2004-06-03 Thread madlion
Do you using Linux?

I have something similar with my Fedora Core 2 distro.

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

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


---
This SF.Net email is sponsored by the new InstallShield X.
From Windows to Linux, servers to mobile, InstallShield X is the one
installation-authoring solution that does it all. Learn more and
evaluate today! http://www.installshield.com/Dev2Dev/0504
___
JBoss-user mailing list
[EMAIL PROTECTED]
https://lists.sourceforge.net/lists/listinfo/jboss-user


[JBoss-user] [Beginners Corner] - is it possible to use unix sockets instead of tcp sockets wh

2004-06-03 Thread boubou2
I have read that mod_jk2 can not dialog with jetty using unix sockets (only tcp 
sockets). Is it also true for the integrated tomcat in jboss. Normaly you can use unix 
socket between tomcat and mod_jk2 (using jk2.properties to declare where the UNIX 
domain socket is located). Where should i declare the location of the unix domain 
socket in jboss-tomcat if possible?

I have another question
What should I use : tomcat or jetty? (fastest/stable?).

Thanks

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

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


---
This SF.Net email is sponsored by the new InstallShield X.
From Windows to Linux, servers to mobile, InstallShield X is the one
installation-authoring solution that does it all. Learn more and
evaluate today! http://www.installshield.com/Dev2Dev/0504
___
JBoss-user mailing list
[EMAIL PROTECTED]
https://lists.sourceforge.net/lists/listinfo/jboss-user


[JBoss-user] [Messaging, JMS JBossMQ] - MDB accessing security credentials

2004-06-03 Thread sanjewad
Hi
I am using JBo22 3.2.3 and inside my MDB there are other EJBs with security 
authenticated.
My question is how Do I pass the user credentials to those EJBs running inside the MDB 
from client side.
I am using a queue for this example.
I tried with JBossMQ Database Configuration but it fails.


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

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


---
This SF.Net email is sponsored by the new InstallShield X.
From Windows to Linux, servers to mobile, InstallShield X is the one
installation-authoring solution that does it all. Learn more and
evaluate today! http://www.installshield.com/Dev2Dev/0504
___
JBoss-user mailing list
[EMAIL PROTECTED]
https://lists.sourceforge.net/lists/listinfo/jboss-user


[JBoss-user] [Installation Configuration] - is it possible to use unix sockets between mod_jk2 and jboss

2004-06-03 Thread boubou2
I have read that mod_jk2 can not dialog with jetty using unix sockets (only tcp 
sockets). Is it also true for the integrated tomcat in jboss. Normaly you can use unix 
socket between tomcat and mod_jk2 (using jk2.properties to declare where the UNIX 
domain socket is located). Where should i declare the location of the unix domain 
socket in jboss-tomcat if possible? 

I have another question 
What should I use : tomcat or jetty? (fastest/stable?). 

Thanks

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

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


---
This SF.Net email is sponsored by the new InstallShield X.
From Windows to Linux, servers to mobile, InstallShield X is the one
installation-authoring solution that does it all. Learn more and
evaluate today! http://www.installshield.com/Dev2Dev/0504
___
JBoss-user mailing list
[EMAIL PROTECTED]
https://lists.sourceforge.net/lists/listinfo/jboss-user


[JBoss-user] [Security JAAS/JBoss] - SSO for 2 applications (EAR)

2004-06-03 Thread tobi04
jboss 3.2.3
java 1.4.1
windows

Hi,

I want to use SSO for 2 EAR applications which include separate web-apps.

I have 2 EAR applications each with a web-app (web-app_1 and web-app_2) which is 
secured by the form-based security of J2EE (j_security_check). Both use the 
security-domainjava:/jaas/other/security-domain of Jboss.

If I log on to the web-app_1 and then try to start web-app_2 in the same browser I 
have to log on again. Thats no SSO, any ideas?


Thanks,
Tobi


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

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


---
This SF.Net email is sponsored by the new InstallShield X.
From Windows to Linux, servers to mobile, InstallShield X is the one
installation-authoring solution that does it all. Learn more and
evaluate today! http://www.installshield.com/Dev2Dev/0504
___
JBoss-user mailing list
[EMAIL PROTECTED]
https://lists.sourceforge.net/lists/listinfo/jboss-user


[JBoss-user] [Security JAAS/JBoss] - Re: Authentication autoritation exception

2004-06-03 Thread lalala
Problem solved! Thanks!

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

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


---
This SF.Net email is sponsored by the new InstallShield X.
From Windows to Linux, servers to mobile, InstallShield X is the one
installation-authoring solution that does it all. Learn more and
evaluate today! http://www.installshield.com/Dev2Dev/0504
___
JBoss-user mailing list
[EMAIL PROTECTED]
https://lists.sourceforge.net/lists/listinfo/jboss-user


[JBoss-user] [Beginners Corner] - Confused - please help, we don't want to give up on JBoss

2004-06-03 Thread BarneyK
Hi,
I am trying to get a CORBA client to talk to an EJB within JBoss but am failing 
miserably. 

I have changed my invoker binding in JBoss so that the EJB can communicate over IIOP 
rather than the default setting and I can connect to JBoss using the Corba Naming 
Service. The client even gets back the IOR of the EJB but when the helper stub tries 
to cast it to the relevant object it fails with a BAD_PARAM exception.

My main confusion lies with the fact that I have read that I need to create CORBA 
wrappers in order for the EJB to work, but I have also read other articles that claim 
CORBA to EJB is possible without any mention of these wrapper classes. 

Also if I create wrapper classes that talk to the CORBA client why do I need to set 
the EJB invoker binding to IIOP as it will just talk to the wrapper locally using RMI.

Please help, we want to use JBoss for this application but time is running out and we 
may have to jump ship.

Cheers,

Barney 

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

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


---
This SF.Net email is sponsored by the new InstallShield X.
From Windows to Linux, servers to mobile, InstallShield X is the one
installation-authoring solution that does it all. Learn more and
evaluate today! http://www.installshield.com/Dev2Dev/0504
___
JBoss-user mailing list
[EMAIL PROTECTED]
https://lists.sourceforge.net/lists/listinfo/jboss-user


[JBoss-user] [Messaging, JMS JBossMQ] - Re: Binding topic connection to JNDI

2004-06-03 Thread [EMAIL PROTECTED]
The JMS Resource Adapter (it provides pooling).
See the FAQ

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

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


---
This SF.Net email is sponsored by the new InstallShield X.
From Windows to Linux, servers to mobile, InstallShield X is the one
installation-authoring solution that does it all. Learn more and
evaluate today! http://www.installshield.com/Dev2Dev/0504
___
JBoss-user mailing list
[EMAIL PROTECTED]
https://lists.sourceforge.net/lists/listinfo/jboss-user


RE: [JBoss-user] Dirty read with commit option B on JBoss 3.2.0

2004-06-03 Thread Maxim Mikhelman
Hi, thanx for response.

On you question : No. I use default JBoss preferences for entity beans
without on-find or on-load strategies.

Actually i have 2 entity beans with CMR relation 1 to 1, 
for example entity A has entity B in relation.
First transaction find A and modified it's CMR B. On commit in DB log i
see that all committed right and B changed. Second transactions use
findByPK for find A and get from A entity B entity. Here i get B with
old values. 
More strange that in DB log and by debugger i see that ejbLoad() for
entity B called after first transaction committed, BUT container return
for me old values for B, like if some cashing was enabled...

Regards, 

On Thu, 2004-06-03 at 12:09, Alexey Loubyansky wrote:
 Did the second transaction found the instance with on-find read-ahead? 
 
  -Original Message-
  From: [EMAIL PROTECTED] 
  [mailto:[EMAIL PROTECTED] On Behalf Of 
  Maxim Mikhelman
  Sent: Thursday, June 03, 2004 11:08 AM
  To: [EMAIL PROTECTED]
  Subject: [JBoss-user] Dirty read with commit option B on JBoss 3.2.0
  
  I use JBoss 3.2.0 with container configuration Standard CMP 
  2.x EntityBean (commit option B, pessimistic locking). All 
  code run within transactions, user or container (required).
  
  I see next strange behavior:
  1. JBoss starts first transaction that find some Entity Bean 
  instance A, use it with get and set methods and lock it 
  within transaction.
  2. Started second transaction that try to gain lock on the 
  same object A and waiting.
  3. First transaction end it's actions and commit changed A 
  property to DB.
  4. From this moment second transaction can continue to run , 
  gains lock on A, but when it try to call get property i see 
  inconsistence and view that actually read value that was 
  before commit of first transaction - dirty read.
  
  What i do wrong and should change ?
 
 
 
 ---
 This SF.Net email is sponsored by the new InstallShield X.
 From Windows to Linux, servers to mobile, InstallShield X is the one
 installation-authoring solution that does it all. Learn more and
 evaluate today! http://www.installshield.com/Dev2Dev/0504
 ___
 JBoss-user mailing list
 [EMAIL PROTECTED]
 https://lists.sourceforge.net/lists/listinfo/jboss-user
 




---
This SF.Net email is sponsored by the new InstallShield X.
From Windows to Linux, servers to mobile, InstallShield X is the one
installation-authoring solution that does it all. Learn more and
evaluate today! http://www.installshield.com/Dev2Dev/0504
___
JBoss-user mailing list
[EMAIL PROTECTED]
https://lists.sourceforge.net/lists/listinfo/jboss-user


[JBoss-user] [Messaging, JMS JBossMQ] - Re: SQL exception with large number of JMS messages

2004-06-03 Thread [EMAIL PROTECTED]
The first message is in the FAQ (but looks irrelevent?)

The error says the db connection is broken. In fact, the part you posted is where
it is trying to close the connection because it encountered a problem.

P.S. As I've said many times, you don't need an XA connection for JBossMQ persistence,
there is only ever one branch to the JBossMQ internal transaction.
If you want JMS XA, use the JMS Resource Adapter (FAQ again).



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

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


---
This SF.Net email is sponsored by the new InstallShield X.
From Windows to Linux, servers to mobile, InstallShield X is the one
installation-authoring solution that does it all. Learn more and
evaluate today! http://www.installshield.com/Dev2Dev/0504
___
JBoss-user mailing list
[EMAIL PROTECTED]
https://lists.sourceforge.net/lists/listinfo/jboss-user


[JBoss-user] [Messaging, JMS JBossMQ] - Re: Getting the username and password from a ConnectionToken

2004-06-03 Thread [EMAIL PROTECTED]
I already told you how to do this in a previous post.

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

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


---
This SF.Net email is sponsored by the new InstallShield X.
From Windows to Linux, servers to mobile, InstallShield X is the one
installation-authoring solution that does it all. Learn more and
evaluate today! http://www.installshield.com/Dev2Dev/0504
___
JBoss-user mailing list
[EMAIL PROTECTED]
https://lists.sourceforge.net/lists/listinfo/jboss-user


RE: [JBoss-user] Dirty read with commit option B on JBoss 3.2.0

2004-06-03 Thread Alexey Loubyansky
You need to post the deployment descriptors, logs with SQL statements
and relevant details. Please, try our forums.

Thanks.

alex

 -Original Message-
 From: [EMAIL PROTECTED] 
 [mailto:[EMAIL PROTECTED] On Behalf Of 
 Maxim Mikhelman
 Sent: Thursday, June 03, 2004 2:15 PM
 To: JBoss List
 Subject: RE: [JBoss-user] Dirty read with commit option B on 
 JBoss 3.2.0
 
 Hi, thanx for response.
 
 On you question : No. I use default JBoss preferences for 
 entity beans without on-find or on-load strategies.
 
 Actually i have 2 entity beans with CMR relation 1 to 1, for 
 example entity A has entity B in relation.
 First transaction find A and modified it's CMR B. On commit 
 in DB log i see that all committed right and B changed. 
 Second transactions use findByPK for find A and get from A 
 entity B entity. Here i get B with old values. 
 More strange that in DB log and by debugger i see that 
 ejbLoad() for entity B called after first transaction 
 committed, BUT container return for me old values for B, like 
 if some cashing was enabled...
 
 Regards, 



---
This SF.Net email is sponsored by the new InstallShield X.
From Windows to Linux, servers to mobile, InstallShield X is the one
installation-authoring solution that does it all. Learn more and
evaluate today! http://www.installshield.com/Dev2Dev/0504
___
JBoss-user mailing list
[EMAIL PROTECTED]
https://lists.sourceforge.net/lists/listinfo/jboss-user


[JBoss-user] [Security JAAS/JBoss] - Re: Authentication autoritation exception

2004-06-03 Thread darranl
Do you feel like sharing your solution?

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

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


---
This SF.Net email is sponsored by the new InstallShield X.
From Windows to Linux, servers to mobile, InstallShield X is the one
installation-authoring solution that does it all. Learn more and
evaluate today! http://www.installshield.com/Dev2Dev/0504
___
JBoss-user mailing list
[EMAIL PROTECTED]
https://lists.sourceforge.net/lists/listinfo/jboss-user


[JBoss-user] [Management, JMX/JBoss] - Questions about standard MBean Example

2004-06-03 Thread maroni
I have deployed the very simple standard MBean example of the JBoss Administration and 
Development Book (3.2.3) which binds a HashMap into JNDI, and then I played with it 
around, but I got some problems. So here are my questions:

1. The HashMap was successfully bound into JNDI, and I can see my service on the JMX 
console. Then I wrote a client which does a lookup on the HashMap, as follows:
map = (HashMap) getContext().lookup(inmemory/maps/MapTest2);

Seems to be okay, because I dont get any NamingException. But how can I use the 
HashMap then? How can I access the content now? When I want to use the map, I get a 
NullPointerException. Why is it null??

2. I would like to call functions on my mbean, from a client or another mbean. Do I 
have to use an adapter for that, or can I access the mbean directly via JNDI?? How can 
I give my mbean a JNDI name?

3. In the mbeans start() method I tried to create a serial connection to a PLC. But  
when I deploy the SAR file, the usage of the classes for the serial communication 
causes a NoClassDefFoundError Exception. But I added the javax.comm package to my 
Eclipse project, and when I put the same serial port access code into my client 
application (within the same project), it works and I dont get any exception. So why 
cant my mbean find these classes? Do I have to add something to the descriptor file??

I would really like to use my mbean...




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

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


---
This SF.Net email is sponsored by the new InstallShield X.
From Windows to Linux, servers to mobile, InstallShield X is the one
installation-authoring solution that does it all. Learn more and
evaluate today! http://www.installshield.com/Dev2Dev/0504
___
JBoss-user mailing list
[EMAIL PROTECTED]
https://lists.sourceforge.net/lists/listinfo/jboss-user


[JBoss-user] [Management, JMX/JBoss] - Re: note on instrumenting a NotificationBroadcaster as an XM

2004-06-03 Thread YSidelnikov
Could you please provide more details ?
I have class :
public class Log implements NotificationBroadcaster
...
public void sendNotification(Notification notification)throws MBeanException
{
notifier.sendNotification(notification);
logger.info(sendNotification());  
}
...
public MBeanNotificationInfo[] getNotificationInfo()
{
return (new MBeanNotificationInfo[] {
notificationInfo
});
}
and xml:
 !-- Notifications --
 
Log messages
javax.management.Notification
notification-typeLog/notification-type 
 
but I can't see any notifications via for example MC4J.
Thank you.



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

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


---
This SF.Net email is sponsored by the new InstallShield X.
From Windows to Linux, servers to mobile, InstallShield X is the one
installation-authoring solution that does it all. Learn more and
evaluate today! http://www.installshield.com/Dev2Dev/0504
___
JBoss-user mailing list
[EMAIL PROTECTED]
https://lists.sourceforge.net/lists/listinfo/jboss-user


[JBoss-user] [The Lizzard's corner] - Posts missing?

2004-06-03 Thread cvandyck
Hey Guys

I made a couple of posts yesterday and now they are gone (also from my watched topics 
page).. Was there some forums pruning yesterday or today?



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

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


---
This SF.Net email is sponsored by the new InstallShield X.
From Windows to Linux, servers to mobile, InstallShield X is the one
installation-authoring solution that does it all. Learn more and
evaluate today! http://www.installshield.com/Dev2Dev/0504
___
JBoss-user mailing list
[EMAIL PROTECTED]
https://lists.sourceforge.net/lists/listinfo/jboss-user


[JBoss-user] [The Lizzard's corner] - Re: Posts missing?

2004-06-03 Thread [EMAIL PROTECTED]
I think Roy is moving boxes. Don't have any more details about that.


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

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


---
This SF.Net email is sponsored by the new InstallShield X.
From Windows to Linux, servers to mobile, InstallShield X is the one
installation-authoring solution that does it all. Learn more and
evaluate today! http://www.installshield.com/Dev2Dev/0504
___
JBoss-user mailing list
[EMAIL PROTECTED]
https://lists.sourceforge.net/lists/listinfo/jboss-user


[JBoss-user] [The Lizzard's corner] - Re: Posts missing?

2004-06-03 Thread cvandyck
Thanks Juha

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

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


---
This SF.Net email is sponsored by the new InstallShield X.
From Windows to Linux, servers to mobile, InstallShield X is the one
installation-authoring solution that does it all. Learn more and
evaluate today! http://www.installshield.com/Dev2Dev/0504
___
JBoss-user mailing list
[EMAIL PROTECTED]
https://lists.sourceforge.net/lists/listinfo/jboss-user


[JBoss-user] [Security JAAS/JBoss] - Re: Authentication autoritation exception

2004-06-03 Thread lalala
The auth.conf in client, I had a reference to:
 org.jboss.security.auth.spi.DatabaseServerLoginModule with jndiName and strings for 
obtain principal and roles. This is not possible, because the server is the only 
indicate to do this. 

My problem now, is that a principal called root not have authentication...  and throws 
this exception when after the login I want to access an ejb: 

java.rmi.ServerException: RemoteException occurred in server thread; nested exception 
is: 
java.rmi.ServerException: EJBException:; nested exception is: 
javax.ejb.EJBException: checkSecurityAssociation; CausedByException is:
Authentication exception, principal=root
at sun.rmi.server.UnicastServerRef.dispatch(UnicastServerRef.java:292)
at sun.rmi.transport.Transport$1.run(Transport.java:148)
at java.security.AccessController.doPrivileged(Native Method)
at sun.rmi.transport.Transport.serviceCall(Transport.java:144)
at sun.rmi.transport.tcp.TCPTransport.handleMessages(TCPTransport.java:460)
at 
sun.rmi.transport.tcp.TCPTransport$ConnectionHandler.run(TCPTransport.java:701)
at java.lang.Thread.run(Thread.java:536)


Anyone help me???

Thanks!!

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

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


---
This SF.Net email is sponsored by the new InstallShield X.
From Windows to Linux, servers to mobile, InstallShield X is the one
installation-authoring solution that does it all. Learn more and
evaluate today! http://www.installshield.com/Dev2Dev/0504
___
JBoss-user mailing list
[EMAIL PROTECTED]
https://lists.sourceforge.net/lists/listinfo/jboss-user


[JBoss-user] [Beginners Corner] - Re: EJB name not bound after some time of inactvity

2004-06-03 Thread [EMAIL PROTECTED]
Need more details...


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

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


---
This SF.Net email is sponsored by the new InstallShield X.
From Windows to Linux, servers to mobile, InstallShield X is the one
installation-authoring solution that does it all. Learn more and
evaluate today! http://www.installshield.com/Dev2Dev/0504
___
JBoss-user mailing list
[EMAIL PROTECTED]
https://lists.sourceforge.net/lists/listinfo/jboss-user


[JBoss-user] [Beginners Corner] - class not found

2004-06-03 Thread jandebo
Hi all,

I am new to Jboss. I try to access a postgresql db through a stateless session bean. 
However the doesn't get deployed in JBoss. It gives the following error message when I 
try to deploy.

I think it has to do something with my datasource, because I managed to deploy an 
oridinary HelloWorld session bean. 

Bean   : DatabaseApiEJB
Section: 22.2
Warning: The Bean Provider must specify the fully-qualified name of the Java class 
that implements the enterprise bean's business methods in the ejb-class element.
Info   : Class not found on 'vub.starlab.ds.ontobase.ejb.DatabaseApiEJB': Unexpected 
error during load of: vub.starlab.ds.ontobase.ejb.DatabaseApiEJB, 
msg=vub/starlab/ds/ontobase/ejb/DatabaseApiEJB (Bad magic number)

13:42:42,698 ERROR [MainDeployer] could not create deployment: 
file:/usr/share/jboss-3.2.3/server/default/deploy/ontobaseapi.jar
org.jboss.deployment.DeploymentException: Verification of Enterprise Beans failed, see 
above for error messages.
at org.jboss.ejb.EJBDeployer.create(EJBDeployer.java:491)
at org.jboss.deployment.MainDeployer.create(MainDeployer.java:786)
at org.jboss.deployment.MainDeployer.deploy(MainDeployer.java:641)
at org.jboss.deployment.MainDeployer.deploy(MainDeployer.java:605)
at sun.reflect.GeneratedMethodAccessor18.invoke(Unknown Source)
at 
sun.reflect.DelegatingMethodAccessorImpl.invoke(DelegatingMethodAccessorImpl.java:25)
at java.lang.reflect.Method.invoke(Method.java:324)
at 
org.jboss.mx.capability.ReflectedMBeanDispatcher.invoke(ReflectedMBeanDispatcher.java:284)
at org.jboss.mx.server.MBeanServerImpl.invoke(MBeanServerImpl.java:546)
at org.jboss.mx.util.MBeanProxyExt.invoke(MBeanProxyExt.java:177)
at $Proxy6.deploy(Unknown Source)
at 
org.jboss.deployment.scanner.URLDeploymentScanner.deploy(URLDeploymentScanner.java:302)
at 
org.jboss.deployment.scanner.URLDeploymentScanner.scan(URLDeploymentScanner.java:476)
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)

**
In the META-INF of my ontobaseapi.jar I have the ejb-jar.xml and jboss.xml. 

excerpt from ejb-jar.xml :(not complete)
ejb-jar
 enterprise-beans

  
  ejb-nameDatabaseApiEJB/ejb-name
  vub.starlab.ds.ontobase.ejb.DatabaseApiEJBHomeRemote
  vub.starlab.ds.ontobase.ejb.DatabaseApiEJBRemote
  ejb-classvub.starlab.ds.ontobase.ejb.DatabaseApiEJB/ejb-class
  session-typeStateless/session-type
  transaction-typeContainer/transaction-type
  security-identityuse-caller-identity//security-identity
  resource-ref
DataSource for the lexon database
res-ref-namejdbc/ontobaseDB/res-ref-name
res-typejavax.sql.DataSource/res-type
res-authContainer/res-auth
  /resource-ref

 /enterprise-beans

excerpt from jboss.xml:


   enterprise-beans
  
 ejb-nameDatabaseApiEJB/ejb-name
 jndi-nameDatabaseApiEJBHomeRemote/jndi-name
 resource-ref
res-ref-namejdbc/ontobaseDB/res-ref-name
jndi-namejava:/LexonbaseDS/jndi-name
 /resource-ref
  
   /enterprise-beans


My postgresql datasource is in the deploy directory:



   local-tx-datasource

  jndi-nameLexonbaseDS/jndi-name
  connection-urljdbc:postgresql://134.184.65.6/lexonbase/connection-url
  driver-classorg.postgresql.Driver/driver-class
  user-namejan/user-name
  3jrk!
  min-pool-size5/min-pool-size
  max-pool-size20/max-pool-size

/local-tx-datasource



I also put the  postgres-jdbc2-service.xml in the jms directory, under the deploy 
directory and I have put changed standardjbosscmp-jdbc.xml where necessary.

Please help me, I cannot find the error myself! I am really getting desparate!! -(

Any hepl is welcome, thx in advance!!

Jan

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

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


---
This SF.Net email is sponsored by the new InstallShield X.
From Windows to Linux, servers to mobile, InstallShield X is the one
installation-authoring solution that does it all. Learn more and
evaluate today! http://www.installshield.com/Dev2Dev/0504
___
JBoss-user mailing list
[EMAIL PROTECTED]
https://lists.sourceforge.net/lists/listinfo/jboss-user


[JBoss-user] [Nukes User] - Re: nukes 1.1RC1 available

2004-06-03 Thread jae77
you need to do a fresh checkout b/c the xdoclet libraries are now obtained from a 
different location.

pls check out against the tag so you can test the release candidate. 



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

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


---
This SF.Net email is sponsored by the new InstallShield X.
From Windows to Linux, servers to mobile, InstallShield X is the one
installation-authoring solution that does it all. Learn more and
evaluate today! http://www.installshield.com/Dev2Dev/0504
___
JBoss-user mailing list
[EMAIL PROTECTED]
https://lists.sourceforge.net/lists/listinfo/jboss-user


[JBoss-user] [Beginners Corner] - applet used library not found

2004-06-03 Thread jmc
Hello,

I want to deploy an applet.
I have a jsp file and jar for applet
I put the both in war file, push in deploy.
This applet use an external library .jar this lib is in default/lib

When I try to load my applet I have a error message class not found, this class is in 
library file.

deployement of my applet seems correct, the context is create and applet start loading.

How I must do if i want my applet find the library in /lib.

when I put my library in .war file that work correctly, but I use this lib for all my 
applets, etc.

thx for your help 
JMC

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

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


---
This SF.Net email is sponsored by the new InstallShield X.
From Windows to Linux, servers to mobile, InstallShield X is the one
installation-authoring solution that does it all. Learn more and
evaluate today! http://www.installshield.com/Dev2Dev/0504
___
JBoss-user mailing list
[EMAIL PROTECTED]
https://lists.sourceforge.net/lists/listinfo/jboss-user


[JBoss-user] [Beginners Corner] - Re: bind error while trying tusc tutorial

2004-06-03 Thread [EMAIL PROTECTED]
Go to your jmx-console, find the JNDIView MBean, and invoke its 'list' operation. 
Scroll down to the 'Global' section and you'll find all the names accessible to a 
client. If StoreAccessBean is not listed there, it cannot be found.

Then go through your ejb-jar.xml and jboss.xml and find what is the actual name you're 
bind your bean under. This name will also be shown in your 'Global' JNDI name tree. 
Use that name for the lookup instead.


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

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


---
This SF.Net email is sponsored by the new InstallShield X.
From Windows to Linux, servers to mobile, InstallShield X is the one
installation-authoring solution that does it all. Learn more and
evaluate today! http://www.installshield.com/Dev2Dev/0504
___
JBoss-user mailing list
[EMAIL PROTECTED]
https://lists.sourceforge.net/lists/listinfo/jboss-user


[JBoss-user] [Beginners Corner] - Re: class not found

2004-06-03 Thread [EMAIL PROTECTED]
Bad magic number generally indicates a corrupt class definition. Where did the 
ontobaseapi.jar come from?


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

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


---
This SF.Net email is sponsored by the new InstallShield X.
From Windows to Linux, servers to mobile, InstallShield X is the one
installation-authoring solution that does it all. Learn more and
evaluate today! http://www.installshield.com/Dev2Dev/0504
___
JBoss-user mailing list
[EMAIL PROTECTED]
https://lists.sourceforge.net/lists/listinfo/jboss-user


[JBoss-user] [Nukes User] - Re: Problems on Nukes1.1RC1

2004-06-03 Thread jae77
hrm - the instructions above are actually incorrect. 

remove the nukes.last directory you created and either update from cvs against the 
tag, or pull the updated zip file - all the correct changes are in there. 

the nukes.last directory should actually be created inside the nukes directory 
(/server/default/nukes) and not directly under /server/default.


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

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


---
This SF.Net email is sponsored by the new InstallShield X.
From Windows to Linux, servers to mobile, InstallShield X is the one
installation-authoring solution that does it all. Learn more and
evaluate today! http://www.installshield.com/Dev2Dev/0504
___
JBoss-user mailing list
[EMAIL PROTECTED]
https://lists.sourceforge.net/lists/listinfo/jboss-user


[JBoss-user] [HTTPD, Servlets JSP] - problem to provide external library via /lib for used in an

2004-06-03 Thread jmc
Hello, 

I want to deploy an applet. 
I have a jsp file and jar for applet 
I put the both in war file, push in deploy. 
This applet use an external library .jar this lib is in default/lib 

When I try to load my applet I have a error message class not found, this class is in 
library file. 

deployement of my applet seems correct, the context is create and applet start 
loading. 

How I must do if i want my applet find the library in /lib. 

when I put my library in .war file that work correctly, but I use this lib for all my 
applets, etc. 

thx for your help 
JMC

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

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


---
This SF.Net email is sponsored by the new InstallShield X.
From Windows to Linux, servers to mobile, InstallShield X is the one
installation-authoring solution that does it all. Learn more and
evaluate today! http://www.installshield.com/Dev2Dev/0504
___
JBoss-user mailing list
[EMAIL PROTECTED]
https://lists.sourceforge.net/lists/listinfo/jboss-user


[JBoss-user] [Nukes User] - Re: German (other UNICODE chars) umlauts

2004-06-03 Thread jae77
right now nukes is rendering the charset as ISO-8859-1 and needs to be updated to 
render as UTF-8 (do umlats get rendered under ISO-8859-1?).

try forcing your browser to use UTF-8 instead and see if that helps the rendering 
problem until the charset can be updated in the code.

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

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


---
This SF.Net email is sponsored by the new InstallShield X.
From Windows to Linux, servers to mobile, InstallShield X is the one
installation-authoring solution that does it all. Learn more and
evaluate today! http://www.installshield.com/Dev2Dev/0504
___
JBoss-user mailing list
[EMAIL PROTECTED]
https://lists.sourceforge.net/lists/listinfo/jboss-user


[JBoss-user] [Nukes User] - Re: nukes 1.1RC1 available

2004-06-03 Thread jae77
(what happenned to all the other posts in this thread from yesterday?)

all the issues posted about yesterday in this thread (NPE in news and error w/ watches 
in forums) have been fixed. update against the cvs tag or re-fetch the precompiled 
mysql binaries. 



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

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


---
This SF.Net email is sponsored by the new InstallShield X.
From Windows to Linux, servers to mobile, InstallShield X is the one
installation-authoring solution that does it all. Learn more and
evaluate today! http://www.installshield.com/Dev2Dev/0504
___
JBoss-user mailing list
[EMAIL PROTECTED]
https://lists.sourceforge.net/lists/listinfo/jboss-user


[JBoss-user] [Beginners Corner] - Re: class not found

2004-06-03 Thread jandebo
the ontobaseapi.jar is the jar file I want to deploy. I can send the source to you if 
you want?

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

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


---
This SF.Net email is sponsored by the new InstallShield X.
From Windows to Linux, servers to mobile, InstallShield X is the one
installation-authoring solution that does it all. Learn more and
evaluate today! http://www.installshield.com/Dev2Dev/0504
___
JBoss-user mailing list
[EMAIL PROTECTED]
https://lists.sourceforge.net/lists/listinfo/jboss-user


[JBoss-user] [Nukes User] - Re: Problems on Nukes1.1RC1

2004-06-03 Thread aurelie
Is the updated zip file adress is:
http://www.scriptkitty.org/nukes-1.1.0-mysql-RC1.zip 

if not where i can find it?

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

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


---
This SF.Net email is sponsored by the new InstallShield X.
From Windows to Linux, servers to mobile, InstallShield X is the one
installation-authoring solution that does it all. Learn more and
evaluate today! http://www.installshield.com/Dev2Dev/0504
___
JBoss-user mailing list
[EMAIL PROTECTED]
https://lists.sourceforge.net/lists/listinfo/jboss-user


[JBoss-user] [EJB/JBoss] - can't connect to Bean in other EAR

2004-06-03 Thread maniarkm
Hi,

I have a been in another EAR that has a webpage JSP client that connects to it.

If I copy the Bean files and webpage JSP client to another package I cannot access it 
as I get the below error. 

javax.ejb.EJBException: Invalid invocation, check your deployment packaging, 
method=public abstract com.upstreamsystems.
mip.clubs.ClubManager com.upstreamsystems.mip.clubs.ClubManagerHome.create() throws 
java.rmi.RemoteException,javax.ejb.CreateException
at 
org.jboss.ejb.StatelessSessionContainer$ContainerInterceptor.invokeHome(StatelessSessionContainer.java:597)
 ...

The only difference in the EAR files is that I removed from the client EAR the info 
from the ejb-jar.xml and the jboss.xml so as not to implement the bean there. Is this 
correct?

I am using a different classloader for each EAR if this is of any significance.

I am using basic code to call from in the EAR and from the other EAR

Class clubMgrHomeClass = com.upstreamsystems.mip.clubs.ClubManagerHome.class;

// Create env.
   Hashtable env = new Hashtable();
   env.put(java.naming.factory.initial,
  org.jnp.interfaces.NamingContextFactory);
   env.put(java.naming.factory.url.pkgs,
  org.jboss.naming:org.jnp.interfaces);
   env.put(java.naming.provider.url,
  localhost);

InitialContext jndiCtx=new InitialContext(env);
String clubMgrJndiName = com/upstreamsystems/mip/clubs/ClubManager;
try {
   ClubManagerHome clubMgrHome = (ClubManagerHome) 
PortableRemoteObject.narrow(jndiCtx.lookup(clubMgrJndiName), clubMgrHomeClass);
   ClubManager clubMgr = clubMgrHome.create();
}
...

Anyone have any ideas why I cannot call the EJB from the other EAR?

Cheers,

Mark

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

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


---
This SF.Net email is sponsored by the new InstallShield X.
From Windows to Linux, servers to mobile, InstallShield X is the one
installation-authoring solution that does it all. Learn more and
evaluate today! http://www.installshield.com/Dev2Dev/0504
___
JBoss-user mailing list
[EMAIL PROTECTED]
https://lists.sourceforge.net/lists/listinfo/jboss-user


[JBoss-user] [Messaging, JMS JBossMQ] - Re: Binding topic connection to JNDI

2004-06-03 Thread mylesJ
Thanks, sounds just the ticket. The FAQ entry is about accessing a remote connection 
pool, is there any differences in configuration if the EJBs that are accessing it 
local to the pool? Can one of those configuration changes be ditched?

Thanks,

Myles

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

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


---
This SF.Net email is sponsored by the new InstallShield X.
From Windows to Linux, servers to mobile, InstallShield X is the one
installation-authoring solution that does it all. Learn more and
evaluate today! http://www.installshield.com/Dev2Dev/0504
___
JBoss-user mailing list
[EMAIL PROTECTED]
https://lists.sourceforge.net/lists/listinfo/jboss-user


[JBoss-user] [Messaging, JMS JBossMQ] - Re: Binding topic connection to JNDI

2004-06-03 Thread [EMAIL PROTECTED]
local is the default configuration.

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

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


---
This SF.Net email is sponsored by the new InstallShield X.
From Windows to Linux, servers to mobile, InstallShield X is the one
installation-authoring solution that does it all. Learn more and
evaluate today! http://www.installshield.com/Dev2Dev/0504
___
JBoss-user mailing list
[EMAIL PROTECTED]
https://lists.sourceforge.net/lists/listinfo/jboss-user


[JBoss-user] [Nukes User] - Re: Problems on Nukes1.1RC1

2004-06-03 Thread jae77
that's correct. 

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

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


---
This SF.Net email is sponsored by the new InstallShield X.
From Windows to Linux, servers to mobile, InstallShield X is the one
installation-authoring solution that does it all. Learn more and
evaluate today! http://www.installshield.com/Dev2Dev/0504
___
JBoss-user mailing list
[EMAIL PROTECTED]
https://lists.sourceforge.net/lists/listinfo/jboss-user


[JBoss-user] [Messaging, JMS JBossMQ] - JMS fails under heavy load

2004-06-03 Thread kide
org.jboss.mq.SpyJMSException: Cannot authenticate user; - nested throwable: 
(java.net.ConnectException: Connection refused: connect)
at org.jboss.mq.Connection.authenticate(Connection.java:883)
at org.jboss.mq.Connection.(Connection.java:238)
at org.jboss.mq.Connection.(Connection.java:315)
at org.jboss.mq.SpyConnection.(SpyConnection.java:60)
at 
org.jboss.mq.SpyConnectionFactory.createQueueConnection(SpyConnectionFactory.java:116)



OSWindows2000 Server

any ideas ?

thanks

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

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


---
This SF.Net email is sponsored by the new InstallShield X.
From Windows to Linux, servers to mobile, InstallShield X is the one
installation-authoring solution that does it all. Learn more and
evaluate today! http://www.installshield.com/Dev2Dev/0504
___
JBoss-user mailing list
[EMAIL PROTECTED]
https://lists.sourceforge.net/lists/listinfo/jboss-user


[JBoss-user] [EJB/JBoss] - Re: can't connect to Bean in other EAR

2004-06-03 Thread jae77
if i understand what you're asking, you're saying that you have two ears (using 
seperate class loaders through a loader repository) and you wish for EAR1 to 
communicate w/ an ejb in EAR2.

if this is correct, then you want to read this:

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

if this isn't what you were looing for, could you pls give a clearer explination of 
what you would like to accomplish.


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

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


---
This SF.Net email is sponsored by the new InstallShield X.
From Windows to Linux, servers to mobile, InstallShield X is the one
installation-authoring solution that does it all. Learn more and
evaluate today! http://www.installshield.com/Dev2Dev/0504
___
JBoss-user mailing list
[EMAIL PROTECTED]
https://lists.sourceforge.net/lists/listinfo/jboss-user


[JBoss-user] [Messaging, JMS JBossMQ] - Re: JMS fails under heavy load

2004-06-03 Thread kide
failed to mentione we are on  Jboss 3.2.2 

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

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


---
This SF.Net email is sponsored by the new InstallShield X.
From Windows to Linux, servers to mobile, InstallShield X is the one
installation-authoring solution that does it all. Learn more and
evaluate today! http://www.installshield.com/Dev2Dev/0504
___
JBoss-user mailing list
[EMAIL PROTECTED]
https://lists.sourceforge.net/lists/listinfo/jboss-user


[JBoss-user] [Messaging, JMS JBossMQ] - Re: Error creating the dlq connection: XAConnectionFactory n

2004-06-03 Thread UdayDattani
I was having the same problem. I had deleted the hsqldb-ds.xml file from my 
deploy folder. I just learnt that this file which configures access to the hypersonic 
database is used by jboss to keep jms related data.

Just add the hsqldb-ds.xml file to your deploy folder and try reinstalling your 
application. This sholud work

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

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


---
This SF.Net email is sponsored by the new InstallShield X.
From Windows to Linux, servers to mobile, InstallShield X is the one
installation-authoring solution that does it all. Learn more and
evaluate today! http://www.installshield.com/Dev2Dev/0504
___
JBoss-user mailing list
[EMAIL PROTECTED]
https://lists.sourceforge.net/lists/listinfo/jboss-user


[JBoss-user] [EJB/JBoss] - Re: can't connect to Bean in other EAR

2004-06-03 Thread maniarkm
Hi,

To clarify:

I have a EJB in EAR A and the same EJB in EAR B but I have removed initialisation 
information from EAR B so that it does not construct the EJB also. I initialise and 
access the EJB in EAR A with a client within EAR A. However, I cannot access this EJB 
in EAR A with a client inside EAR B even though I have the class files.

Is this clearer?

Cheers,

Mark

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

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


---
This SF.Net email is sponsored by the new InstallShield X.
From Windows to Linux, servers to mobile, InstallShield X is the one
installation-authoring solution that does it all. Learn more and
evaluate today! http://www.installshield.com/Dev2Dev/0504
___
JBoss-user mailing list
[EMAIL PROTECTED]
https://lists.sourceforge.net/lists/listinfo/jboss-user


[JBoss-user] [EJB/JBoss] - Re: can't connect to Bean in other EAR

2004-06-03 Thread jae77
are the ears scoped? you mentioned in your first post that they are using seperate 
class loaders. 

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

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


---
This SF.Net email is sponsored by the new InstallShield X.
From Windows to Linux, servers to mobile, InstallShield X is the one
installation-authoring solution that does it all. Learn more and
evaluate today! http://www.installshield.com/Dev2Dev/0504
___
JBoss-user mailing list
[EMAIL PROTECTED]
https://lists.sourceforge.net/lists/listinfo/jboss-user


[JBoss-user] [Messaging, JMS JBossMQ] - Re: JMS fails under heavy load

2004-06-03 Thread [EMAIL PROTECTED]
FAQ - use search

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

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


---
This SF.Net email is sponsored by the new InstallShield X.
From Windows to Linux, servers to mobile, InstallShield X is the one
installation-authoring solution that does it all. Learn more and
evaluate today! http://www.installshield.com/Dev2Dev/0504
___
JBoss-user mailing list
[EMAIL PROTECTED]
https://lists.sourceforge.net/lists/listinfo/jboss-user


[JBoss-user] [EJB/JBoss] - Re: can't connect to Bean in other EAR

2004-06-03 Thread maniarkm
hi,

what do you mean by scoped?

Mark

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

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


---
This SF.Net email is sponsored by the new InstallShield X.
From Windows to Linux, servers to mobile, InstallShield X is the one
installation-authoring solution that does it all. Learn more and
evaluate today! http://www.installshield.com/Dev2Dev/0504
___
JBoss-user mailing list
[EMAIL PROTECTED]
https://lists.sourceforge.net/lists/listinfo/jboss-user


[JBoss-user] [HTTPD, Servlets JSP] - document root, Host-tag

2004-06-03 Thread brasse
Hello!

I am trying to move a site that has been run using tomcat4 and make it run using 
jboss-3.2.3. The site has a (very) basic layout as follows:

webapps/ROOT/foo.jsp

In my old server.xml I had set the appBase attribute in the Host tag to webapps. And 
when I pointed my server to localhost/foo.jsp it would work fine.

When using jboss I have put the ROOT directory in jboss/server/default/deploy. Now 
when I try to do the same thing with jboss I get an error. The jboss tell me:
15:03:15,851 INFO  [Engine] StandardHost[localhost]: MAPPING configuration error for 
request URI /foo.jsp

Why is this. Obviously there is something that I have missed! Is there someting I have 
to set in my configuration files in order to make this happen?

Thanks in advance!

Regards,
Mattias



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

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


---
This SF.Net email is sponsored by the new InstallShield X.
From Windows to Linux, servers to mobile, InstallShield X is the one
installation-authoring solution that does it all. Learn more and
evaluate today! http://www.installshield.com/Dev2Dev/0504
___
JBoss-user mailing list
[EMAIL PROTECTED]
https://lists.sourceforge.net/lists/listinfo/jboss-user


[JBoss-user] [Nukes User] - Re: Problems on Nukes1.1RC1

2004-06-03 Thread aurelie
sorry, but i didn't still succeded with the deploiement
I made what you say :
I put nuke.last directory in nuke directory 
but the deploiement stay blocked at nuke.last

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

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


---
This SF.Net email is sponsored by the new InstallShield X.
From Windows to Linux, servers to mobile, InstallShield X is the one
installation-authoring solution that does it all. Learn more and
evaluate today! http://www.installshield.com/Dev2Dev/0504
___
JBoss-user mailing list
[EMAIL PROTECTED]
https://lists.sourceforge.net/lists/listinfo/jboss-user


[JBoss-user] [EJB/JBoss] - Re: can't connect to Bean in other EAR

2004-06-03 Thread jae77
did you specify a loader-repository inside the jboss.xml file that is packaged inside 
the ear? that's the only way you could have both ears using seperate class loaders. 

i'd still recommend reading the wiki page and adjusting your packaging as described, 
you'll be better off in the long run. 

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

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


---
This SF.Net email is sponsored by the new InstallShield X.
From Windows to Linux, servers to mobile, InstallShield X is the one
installation-authoring solution that does it all. Learn more and
evaluate today! http://www.installshield.com/Dev2Dev/0504
___
JBoss-user mailing list
[EMAIL PROTECTED]
https://lists.sourceforge.net/lists/listinfo/jboss-user


[JBoss-user] [Messaging, JMS JBossMQ] - Re: Messages only delivered after server restart.

2004-06-03 Thread tdevos
Yes I know. Also the problem isn`t occuring continuously.

However I didn`t manage to solve it using HTTP. Testing with JBoss 3.2.4 RC using UIL2 
didn`t have the problem until now.

Thanks for your support,

Tim De Vos

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

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


---
This SF.Net email is sponsored by the new InstallShield X.
From Windows to Linux, servers to mobile, InstallShield X is the one
installation-authoring solution that does it all. Learn more and
evaluate today! http://www.installshield.com/Dev2Dev/0504
___
JBoss-user mailing list
[EMAIL PROTECTED]
https://lists.sourceforge.net/lists/listinfo/jboss-user


[JBoss-user] [EJB/JBoss] - Re: can't connect to Bean in other EAR

2004-06-03 Thread maniarkm
Hi Jae,

I understand what you are saying, but this is not convenient to have my EJB classes in 
the JBoss lib because of the redeployment issue.

I would like to find a way without having to resort to this.

Cheers,

Mark

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

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


---
This SF.Net email is sponsored by the new InstallShield X.
From Windows to Linux, servers to mobile, InstallShield X is the one
installation-authoring solution that does it all. Learn more and
evaluate today! http://www.installshield.com/Dev2Dev/0504
___
JBoss-user mailing list
[EMAIL PROTECTED]
https://lists.sourceforge.net/lists/listinfo/jboss-user


[JBoss-user] [O'Reilly JBoss 3.0 Workbook] - Re: remote clients

2004-06-03 Thread dm
Thank you for your help.  I got the client to run remotely by installing 
jbossall-client.jar on the client machine and adding it to the classpath.  The only 
other thing I needed to do was to change jndi.properties from localhost to the remote 
machine name.  Ex04_1 is a very simple java client - no swing or awt.  I will look at 
Vamp HQ site also.  It looks like a good reference site.

Since I got the client working by manually installing the client on the remote 
machine, it was a good learning experience, but not very satisfying as a soluton.  The 
problem to fix is to get the Cabin EJB to deploy if is not deployed when I run the 
client.  If you run ant run.client_41a on the local machine, it has a dependency on 
the deployment of the necessary EJBs.  To get my client to work using the manual 
process, I had to go to the server machine and copy the titan.jar (jar that contains 
the Cabin EJBs) into the deploy directory to deploy the Cabin EJBs so that the JNDI 
lookup would work.  My question is, How do you deploy the necessary EJBs remotely if 
they aren't already?  Perhaps this isn't something clients should be allowed to do.  
Unfortunately, that's how it works in the example.

Conclusion: I learned how things work, which is the point of running the tutorial.  I 
wouldn't want to actually install clients this way, especially if they were more than 
this trivial case.

Doug

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

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



---
This SF.Net email is sponsored by the new InstallShield X.
From Windows to Linux, servers to mobile, InstallShield X is the one
installation-authoring solution that does it all. Learn more and
evaluate today! http://www.installshield.com/Dev2Dev/0504
___
JBoss-user mailing list
[EMAIL PROTECTED]
https://lists.sourceforge.net/lists/listinfo/jboss-user


[JBoss-user] [Security JAAS/JBoss] - Configuring a non trusted datasource

2004-06-03 Thread jeeads
I am trying to connect to a non-trusted datasource.  I have created a 
com.synapps.jmx.jaas.srp.MetaDataIdentityLoginModule login module to load the username 
and password dependent on the auth type of the given datasource.  This module was 
created using org.jboss.resource.security.CallerIdentityLoginModule as a modle.  All 
the information about the remote datasource is found in my MetaData database including 
auth type.  The deployment descriptors, configuration xml and error log are attached.  
When I start JBoss 3.2.3 the entity beans deploy correctly but when 
org.jboss.ejb.plugins.EntityInstancePool starts a connection to the datasource for the 
beans fails.  I expect the failures since no one is logged in at the time.  How should 
I configure this non-trusted connection so that a connection is attemted only if 
someone is logged in and only if there is not a connection in the connection pool?  I 
have all of the documentation and I can't find this information.

META_INF entity bean jar

jboss.xml

  ?xml version=1.0 encoding=UTF-8?
  !DOCTYPE jboss PUBLIC -//JBoss//DTD JBOSS 3.0//EN 
http://www.jboss.org/j2ee/dtd/jboss_3_0.dtd;
  jboss
  
security-domainjava:/jaas/MSSQLServer2000SequencherSecurityRealm/security-domain  
  unauthenticated-principalAnonymous/unauthenticated-principal  
  enterprise-beans


jbosscmp-jdbc.xml

  ?xml version=1.0 encoding=UTF-8?
  !DOCTYPE jbosscmp-jdbc PUBLIC -//JBoss//DTD JBOSSCMP-JDBC 3.2//EN 
http://www.jboss.org/j2ee/dtd/jbosscmp-jdbc_3_2.dtd;
  jbosscmp-jdbc
  defaults
  datasourcejava:/MSSQLServer2000Sequencher
  datasource-mappingMS SQLSERVER2000/datasource-mapping  
  create-tablefalse/create-table  
  remove-tablefalse/remove-table  
  read-onlyfalse/read-only  
  read-time-out300/read-time-out  
  row-lockingfalse/row-locking  
  pk-constrainttrue/pk-constraint  
  fk-constraintfalse/fk-constraint  
  preferred-relation-mappingforeign-key/preferred-relation-mapping  

  read-ahead
  strategyon-load
  page-size1000/page-size  
  eager-load-group*/eager-load-group  
/read-ahead  
  list-cache-max1000/list-cache-max  


Server configuration files

login-config.xml

  application-policy name=MSSQLServer2000SequencherSecurityRealm
 authentication
login-module code=com.synapps.jmx.jaas.srp.MetaDataIdentityLoginModule 
flag=required
   module-option 
name=dsJndiNamejava:/MSSQLServer2000MetaData/module-option  
   module-option 
name=dsNameMSSQLServer2000Sequencher/module-option  
   module-option name=connTypeQuerySELECT ConnAuthType FROM DataStore 
WHERE Name=?/module-option  
   module-option name=defaultUserPasswdQuerySELECT 
DataStore.DefaultConnUser, Password.password FROM DataStore,Password WHERE 
DataStore.Name=? AND Password.ID = DataStore.DefaultConnPWID/module-option  
   module-option name=userUserPasswdQuerySELECT 
User_DataStore.UserConnUserID, Password.password, FROM DataStore,User_DataStore, 
Password WHERE DataStore.Name=? AND Password.ID = User_DataStore.UserConnPWID AND 
User_DataStore.DataStoreID = DataStore.ID and User_DataStore.UserID=?/module-option  
   module-option name=activityLoggingINSERT INTO ActivityLog 
VALUES(?,?,?,?,?,?,?,?,?,?)/module-option  
   module-option name=password-stackinguseFirstPass/module-option  
  /login-module  
   
/application-policy  

sequencher-mssql-ds.xml

  ?xml version=1.0 encoding=UTF-8?

  !-- = --
  !--   --
  !--  JBoss Server Configuration   --
  !--   --
  !-- = --

  !-- $Id: sequencher-mssql-ds.xml,v 1.1 2004/05/18 18:500:16 mike Exp $ --

!-- ==--
!-- New ConnectionManager setup for Microsoft SQL Server 2000  driver --
!-- You may download the latest Microsoft JDBC driver from *Microsoft*--
!-- 
http://msdn.microsoft.com/downloads/default.asp?url=/downloads/sample.asp?url=/MSDN-FILES/027/001/779/msdncompositedoc.xmlframe=true
 --
!-- = --

  datasources

local-tx-datasource
  jndi-nameMSSQLServer2000Sequencher/jndi-name  
  
connection-urljdbc:microsoft:sqlserver://synapps-6:1433;DatabaseName=Sequencher;SelectMethod=cursor/connection-url
  
  

[JBoss-user] [Beginners Corner] - no META-INF/application.xml found

2004-06-03 Thread lipe
Hello, good morning.

Im trying to deploy an ear file in jboss 3.2.3 and I keep getting the 
following exception:
org.jboss.deployment.DeploymentException: No META-INF/application.xml found

Here is my directory structure inside the ear file:
META-INF
  | |---application.xml
  | myjar.jar
  | mywebapp.war

And inside the application.xml
?xml version=1.0 encoding=UTF-8?
  | !DOCTYPE application PUBLIC -//Sun Microsystems, Inc.//DTD J2EE Application
  | 1.3//EN http://java.sun.com/dtd/application_1_3.dtd;
  | application
  | display-nameHello Ear File/display-name
  | module
  | ejbmyjar.jar/ejb
  | /module
  | module
  | web
  | web-urimywebapp.war/web-uri
  | context-root/webapp/context-root
  | /web
  | /module
  | /application

What am I doing wrong?

Thanks a lot :D

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

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


---
This SF.Net email is sponsored by the new InstallShield X.
From Windows to Linux, servers to mobile, InstallShield X is the one
installation-authoring solution that does it all. Learn more and
evaluate today! http://www.installshield.com/Dev2Dev/0504
___
JBoss-user mailing list
[EMAIL PROTECTED]
https://lists.sourceforge.net/lists/listinfo/jboss-user


[JBoss-user] [Nukes User] - Re: Problems on Nukes1.1RC1

2004-06-03 Thread jae77
i'm not sure why it would hang - i can't replicate this on my machine. 

do you get any kind of error messages, etc earlier in the deployment? what version of 
jboss are you using? 


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

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


---
This SF.Net email is sponsored by the new InstallShield X.
From Windows to Linux, servers to mobile, InstallShield X is the one
installation-authoring solution that does it all. Learn more and
evaluate today! http://www.installshield.com/Dev2Dev/0504
___
JBoss-user mailing list
[EMAIL PROTECTED]
https://lists.sourceforge.net/lists/listinfo/jboss-user


[JBoss-user] [Installation Configuration] - Hotspot

2004-06-03 Thread gchazalon
Hi,

I have discovered a weird behavior and now I have a workaround.
I use Axis 1.1 deployed on JBoss 3.2.3 to build some webservices.
It happened that one of my webservices caused the JBoss server to simply stop without 
notice when testing it.
The only information I could get was the log from my unit test (see the sample below), 
and nothing useful from the JBoss log (even in DEBUG) since it stops abruptly.


  | --
  | 03 juin 2004 16:43:16,800 DEBUG [ArchiveSubmissionTest] - setUp() called...
  | 03 juin 2004 16:43:16,800 DEBUG [ArchiveSubmissionTest] - filename : 
D:\repository\Archivage\conf\test\xml\verifiedDoc-example.zip
  | 03 juin 2004 16:43:17,481 DEBUG [ArchiveSubmissionTest] - default call timeout : 
null
  | 03 juin 2004 16:43:17,481 DEBUG [ArchiveSubmissionTest] - timeout now set to : null
  | 03 juin 2004 16:43:17,481 DEBUG [ArchiveSubmissionTest] - MessageContext timeout : 
30
  | 03 juin 2004 16:43:25,723 ERROR [ArchiveSubmissionTest] - Exception caught while 
calling http://localhost:8080/axis/services/DepotDesSoumissionsService
  | AxisFault
  |  faultCode: {http://schemas.xmlsoap.org/soap/envelope/}Server.userException
  |  faultSubcode: 
  |  faultString: java.net.SocketException: Connection reset
  |  faultActor: 
  |  faultNode: 
  |  faultDetail: 
  | {http://xml.apache.org/axis/}stackTrace: java.net.SocketException: Connection 
reset
  | at java.net.SocketInputStream.read(SocketInputStream.java:168)
  | at java.io.BufferedInputStream.fill(BufferedInputStream.java:183)
  | at java.io.BufferedInputStream.read(BufferedInputStream.java:201)
  | at 
org.apache.axis.transport.http.HTTPSender.readHeadersFromSocket(HTTPSender.java:506)
  | at org.apache.axis.transport.http.HTTPSender.invoke(HTTPSender.java:127)
  | at 
org.apache.axis.strategies.InvocationStrategy.visit(InvocationStrategy.java:71)
  | at org.apache.axis.SimpleChain.doVisiting(SimpleChain.java:150)
  | at org.apache.axis.SimpleChain.invoke(SimpleChain.java:120)
  | at org.apache.axis.client.AxisClient.invoke(AxisClient.java:180)
  | at org.apache.axis.client.Call.invokeEngine(Call.java:2564)
  | at org.apache.axis.client.Call.invoke(Call.java:2553)
  | at org.apache.axis.client.Call.invoke(Call.java:2248)
  | at org.apache.axis.client.Call.invoke(Call.java:2171)
  | at org.apache.axis.client.Call.invoke(Call.java:1691)
  | at 
adonis2.adp.archivage.depot.test.ArchiveSubmissionTest.testSubmit(ArchiveSubmissionTest.java:122)
  | at sun.reflect.NativeMethodAccessorImpl.invoke0(Native Method)
  | at 
sun.reflect.NativeMethodAccessorImpl.invoke(NativeMethodAccessorImpl.java:39)
  | at 
sun.reflect.DelegatingMethodAccessorImpl.invoke(DelegatingMethodAccessorImpl.java:25)
  | at java.lang.reflect.Method.invoke(Method.java:324)
  | at junit.framework.TestCase.runTest(TestCase.java:154)
  | at junit.framework.TestCase.runBare(TestCase.java:127)
  | at junit.framework.TestResult$1.protect(TestResult.java:106)
  | at junit.framework.TestResult.runProtected(TestResult.java:124)
  | at junit.framework.TestResult.run(TestResult.java:109)
  | at junit.framework.TestCase.run(TestCase.java:118)
  | at junit.framework.TestSuite.runTest(TestSuite.java:208)
  | at junit.framework.TestSuite.run(TestSuite.java:203)
  | at 
org.eclipse.jdt.internal.junit.runner.RemoteTestRunner.runTests(RemoteTestRunner.java:392)
  | at 
org.eclipse.jdt.internal.junit.runner.RemoteTestRunner.run(RemoteTestRunner.java:276)
  | at 
org.eclipse.jdt.internal.junit.runner.RemoteTestRunner.main(RemoteTestRunner.java:167)
  | 
  | 
  | java.net.SocketException: Connection reset
  | at org.apache.axis.AxisFault.makeFault(AxisFault.java:129)
  | at org.apache.axis.transport.http.HTTPSender.invoke(HTTPSender.java:131)
  | at 
org.apache.axis.strategies.InvocationStrategy.visit(InvocationStrategy.java:71)
  | at org.apache.axis.SimpleChain.doVisiting(SimpleChain.java:150)
  | at org.apache.axis.SimpleChain.invoke(SimpleChain.java:120)
  | at org.apache.axis.client.AxisClient.invoke(AxisClient.java:180)
  | at org.apache.axis.client.Call.invokeEngine(Call.java:2564)
  | at org.apache.axis.client.Call.invoke(Call.java:2553)
  | at org.apache.axis.client.Call.invoke(Call.java:2248)
  | at org.apache.axis.client.Call.invoke(Call.java:2171)
  | at org.apache.axis.client.Call.invoke(Call.java:1691)
  | at 
adonis2.adp.archivage.depot.test.ArchiveSubmissionTest.testSubmit(ArchiveSubmissionTest.java:122)
  | at sun.reflect.NativeMethodAccessorImpl.invoke0(Native Method)
  | at 
sun.reflect.NativeMethodAccessorImpl.invoke(NativeMethodAccessorImpl.java:39)
  | at 
sun.reflect.DelegatingMethodAccessorImpl.invoke(DelegatingMethodAccessorImpl.java:25)
  | at java.lang.reflect.Method.invoke(Method.java:324)
  | at 

[JBoss-user] [JCA/JBoss] - Re: ClassCastException retrieving DataSource on JNDI lookup

2004-06-03 Thread gouvea
We use jboss-app.xml in META-INF folder of EAR file to
restrict classes to be loaded only by the application's 
ClassLoader.

Like this:

jboss-app
  | loader-repositorymypackage:loader=myapp.ear/loader-repository
  | /jboss-app

It works fine in Jboss 3.0.x. But we had a ClassCastException problem on 
looking up the configured DataSource from JNDI context.

We had the problem when trying to cast the reference within a Delegate's method
placed in a JAR on WEB-INF/lib directory of the web application and also
within a Session Bean in the EJB container.


After a few debugging tests, we came up with the fact that ClassLoaders
for javax.sql.DataSource.class were different for the reference coming from 
JNDI context and that which was collocated to the Delegate or Session Bean. 


Debugging output looked like this:

javax.sql.DataSource.class.getClassLoader(): 
[EMAIL PROTECTED] 
url=file:/C:/jboss3.2.3/server/default/tmp/deploy/tmp40857myapp.ear 
,addedOrder=37}

ds.getClass().getClassLoader(): 
[EMAIL PROTECTED] 

url=file:/C:/jboss3.2.3/server/default/tmp/deploy/tmp40781jboss-service.xml 
,addedOrder=2}


We deleted loader-repository element from META-INF/jboss-app.xml so the lookup and 
casting both
succeeded.

But we need the jboss-app.xml configuration in order to isolate legacy applications
we developed and deployed on the same app server with different versions of the
same class.


Is there anything we can do? Is it a bug or an expected behaviour of JBoss ClassLoader
architeture?


Thanks,
Eduardo Gouvea.

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

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


---
This SF.Net email is sponsored by the new InstallShield X.
From Windows to Linux, servers to mobile, InstallShield X is the one
installation-authoring solution that does it all. Learn more and
evaluate today! http://www.installshield.com/Dev2Dev/0504
___
JBoss-user mailing list
[EMAIL PROTECTED]
https://lists.sourceforge.net/lists/listinfo/jboss-user


[JBoss-user] [JCA/JBoss] - Re: ClassCastException retrieving DataSource on JNDI lookup

2004-06-03 Thread [EMAIL PROTECTED]
It is expected, why do you need javax.sql in your deployment?

If you really do want isolation, you would have to copy the entire infrastructure
(jboss rar, jdbc driver) into the ear, otherwise you will get all sorts of class 
confusion.

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

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


---
This SF.Net email is sponsored by the new InstallShield X.
From Windows to Linux, servers to mobile, InstallShield X is the one
installation-authoring solution that does it all. Learn more and
evaluate today! http://www.installshield.com/Dev2Dev/0504
___
JBoss-user mailing list
[EMAIL PROTECTED]
https://lists.sourceforge.net/lists/listinfo/jboss-user


[JBoss-user] [Nukes User] - Re: Problems on Nukes1.1RC1

2004-06-03 Thread aurelie
This is the end of my log :

2004-06-03 17:10:20,166 DEBUG [class 
org.jboss.nukes.common.template.TemplateBuilder.188] Added constructor on template 
org.jboss.nukes.common.template.Generated188
2004-06-03 17:10:20,166 DEBUG [class 
org.jboss.nukes.common.template.TemplateBuilder.188] Created render method on template 
org.jboss.nukes.common.template.Generated188 with body public void 
render(org.jboss.nukes.common.template.Context ctx, java.io.Writer writer)
{
   org.jboss.nukes.common.template.Context ctx_ = $1;
   String s_1 = null;
   $2.write(
\n);
   for (java.util.Iterator it_templateUrlList = 
ctx_.childIterator(templateUrlList);it_templateUrlList.hasNext();)
   {
  org.jboss.nukes.common.template.Context ctx_templateUrlList = 
(org.jboss.nukes.common.template.Context)it_templateUrlList.next();
  String s_2 = null;
  $2.write(
\n);
  s_2 = (java.lang.String)ctx_templateUrlList.get(TEXT_URL_NUMBER);
  if (s_2 != null)
  {
 $2.write(s_2);
  }
  else if (log.isDebugEnabled())
  {
 log.debug(field TEXT_URL_NUMBER is null);
  }
  $2.write(.nbsp;a class=\pn-normal\ href=\index.html?module=kingpinop=);
  s_2 = (java.lang.String)ctx_templateUrlList.get(TEXT_OP);
  if (s_2 != null)
  {
 $2.write(s_2);
  }
  else if (log.isDebugEnabled())
  {
 log.debug(field TEXT_OP is null);
  }
  $2.write(amp;authid=);
  s_2 = (java.lang.String)ctx_.get(AUTHID);
  if (s_2 != null)
  {
 $2.write(s_2);
  }
  else if (log.isDebugEnabled())
  {
 log.debug(field AUTHID is null);
  }
  $2.write(\ title=\);
  s_2 = (java.lang.String)ctx_templateUrlList.get(TEXT_URL_COMMENTS);
  if (s_2 != null)
  {
 $2.write(s_2);
  }
  else if (log.isDebugEnabled())
  {
 log.debug(field TEXT_URL_COMMENTS is null);
  }
  $2.write(\);
  s_2 = (java.lang.String)ctx_templateUrlList.get(TEXT_URL_NAME);
  if (s_2 != null)
  {
 $2.write(s_2);
  }
  else if (log.isDebugEnabled())
  {
 log.debug(field TEXT_URL_NAME is null);
  }
  $2.write(
\n);
   }
   $2.write(
\n);
}

2004-06-03 17:10:20,166 INFO  
[org.jboss.nukes.addons.modules.downloads.blocks.NewDownloadsBlock] Started
2004-06-03 17:10:20,229 INFO  
[org.jboss.nukes.addons.modules.downloads.blocks.Top10Block] Starting
2004-06-03 17:10:20,291 DEBUG [class 
org.jboss.nukes.common.template.TemplateBuilder.189] Added constructor on template 
org.jboss.nukes.common.template.Generated189
2004-06-03 17:10:20,291 DEBUG [class 
org.jboss.nukes.common.template.TemplateBuilder.189] Created render method on template 
org.jboss.nukes.common.template.Generated189 with body public void 
render(org.jboss.nukes.common.template.Context ctx, java.io.Writer writer)
{
   org.jboss.nukes.common.template.Context ctx_ = $1;
   String s_1 = null;
   $2.write(
\n);
   for (java.util.Iterator it_templateUrlList = 
ctx_.childIterator(templateUrlList);it_templateUrlList.hasNext();)
   {
  org.jboss.nukes.common.template.Context ctx_templateUrlList = 
(org.jboss.nukes.common.template.Context)it_templateUrlList.next();
  String s_2 = null;
  $2.write(
\n);
  s_2 = (java.lang.String)ctx_templateUrlList.get(TEXT_URL_NUMBER);
  if (s_2 != null)
  {
 $2.write(s_2);
  }
  else if (log.isDebugEnabled())
  {
 log.debug(field TEXT_URL_NUMBER is null);
  }
  $2.write(.nbsp;a class=\pn-normal\ href=\index.html?module=kingpinop=);
  s_2 = (java.lang.String)ctx_templateUrlList.get(TEXT_OP);
  if (s_2 != null)
  {
 $2.write(s_2);
  }
  else if (log.isDebugEnabled())
  {
 log.debug(field TEXT_OP is null);
  }
  $2.write(amp;authid=);
  s_2 = (java.lang.String)ctx_.get(AUTHID);
  if (s_2 != null)
  {
 $2.write(s_2);
  }
  else if (log.isDebugEnabled())
  {
 log.debug(field AUTHID is null);
  }
  $2.write(\ title=\);
  s_2 = (java.lang.String)ctx_templateUrlList.get(TEXT_URL_COMMENTS);
  if (s_2 != null)
  {
 $2.write(s_2);
  }
  else if (log.isDebugEnabled())
  {
 log.debug(field TEXT_URL_COMMENTS is null);
  }
  $2.write(\);
  s_2 = (java.lang.String)ctx_templateUrlList.get(TEXT_URL_NAME);
  if (s_2 != null)
  {
 $2.write(s_2);
  }
  else if (log.isDebugEnabled())
  {
 log.debug(field TEXT_URL_NAME is null);
  }
  $2.write(
\n);
   }
   $2.write(
\n);
}

2004-06-03 17:10:20,291 INFO  
[org.jboss.nukes.addons.modules.downloads.blocks.Top10Block] Started
2004-06-03 17:10:20,307 INFO  [org.jboss.deployment.MainDeployer] Deployed package: 
file:/C:/java/jboss-3.2.3-Nukes/server/default/nukes/nukes.last/

After that, Jboss don't do anything.
I haven't any error messages earlier in the deploiement.
My version of jboss is 3.2.3

View the original post 

[JBoss-user] [Nukes User] - Re: Problems on Nukes1.1RC1

2004-06-03 Thread jae77
that looks correct to me - the last message states that everything was deployed 
succesfully.

what happens when you try to access http://localhost:8080/nukes/?

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

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


---
This SF.Net email is sponsored by the new InstallShield X.
From Windows to Linux, servers to mobile, InstallShield X is the one
installation-authoring solution that does it all. Learn more and
evaluate today! http://www.installshield.com/Dev2Dev/0504
___
JBoss-user mailing list
[EMAIL PROTECTED]
https://lists.sourceforge.net/lists/listinfo/jboss-user


[JBoss-user] [Nukes User] - Re: Problems on Nukes1.1RC1

2004-06-03 Thread aurelie
The deploiement is not finish :
2004-06-03 17:10:20,307 INFO [org.jboss.deployment.MainDeployer] Deployed package: 
file:/C:/java/jboss-3.2.3-Nukes/server/default/nukes/nukes.last/ 

it stay here
When i access to http... i have got an error maessage :
State http 500-No context  is configured to treat this request 


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

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


---
This SF.Net email is sponsored by the new InstallShield X.
From Windows to Linux, servers to mobile, InstallShield X is the one
installation-authoring solution that does it all. Learn more and
evaluate today! http://www.installshield.com/Dev2Dev/0504
___
JBoss-user mailing list
[EMAIL PROTECTED]
https://lists.sourceforge.net/lists/listinfo/jboss-user


[JBoss-user] [JBoss.NET SOAP] - SOAP Monitor

2004-06-03 Thread mzint
Hi there,

I'm struggling a bit with getting the SOAP Monitor to work (JBoss.Net - AXIS). 

The applet starts up fine, but what do I have to configure to actually see the SOAP 
message that is being exchanged ?? Do I have to include anything in the web-service 
deployment descriptor to get that to work or do I have to configure something for that 
??

I'm accessing EJB's running in JBoss (localhost:8080) via a command line call through 
a .NET client.

Thanks a lot
matt

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

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


---
This SF.Net email is sponsored by the new InstallShield X.
From Windows to Linux, servers to mobile, InstallShield X is the one
installation-authoring solution that does it all. Learn more and
evaluate today! http://www.installshield.com/Dev2Dev/0504
___
JBoss-user mailing list
[EMAIL PROTECTED]
https://lists.sourceforge.net/lists/listinfo/jboss-user


[JBoss-user] [Installation Configuration] - Re: Hotspot

2004-06-03 Thread [EMAIL PROTECTED]
Nearly all crashes of the Sun vms are related to HotSpot bugs. Introducing native code 
opens up the possibility of bugs crashing the process. The vm crashing is always a vm 
bug. There is nothing any java code can do short of loading native code that can crash 
the vm. There are numerous bug reports on HotSpot crashes, see the java.sun.com 
database. File another one with Sun.

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

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


---
This SF.Net email is sponsored by the new InstallShield X.
From Windows to Linux, servers to mobile, InstallShield X is the one
installation-authoring solution that does it all. Learn more and
evaluate today! http://www.installshield.com/Dev2Dev/0504
___
JBoss-user mailing list
[EMAIL PROTECTED]
https://lists.sourceforge.net/lists/listinfo/jboss-user


[JBoss-user] [EJB/JBoss] - Re: can't connect to Bean in other EAR

2004-06-03 Thread jae77
you don't have to deploy the classes into the 'lib' directory. everything can be 
deployed into the 'deploy' directory.

the only time you can't hot-deploy in this situation is if the ejb interface changes. 
if all you do is change business logic inside the ejb, then you can hot deploy the ear 
w/o issue. if you change the interfaces, then you need to restart the server in order 
for the changes to be picked up. 

what you should end up having is the following:

- a jar w/ all the ejb interfaces in addition to any additional classes that interface 
needs to operate (ie, if one of your methods returns an object of class type Foo, then 
Foo.class needs to be packaged in the same jar as the ejb interfaces).

- EAR1 w/ all necessary classes it needs to operate minus those contained in the jar

- EAR2 w/ all the necessary classes minus those included in the jar.

provided the ejb interface does not change (or any of the other classes contained 
inside the jar) you can hot deploy EAR1 and/or EAR2 w/o problem. if the classes inside 
the jar do change, then you need the server restart. 

i highly recommend spending the 10 bux (if you haven't done so already) and getting 
the jboss admin book. chapter 2 talks all about this (see the classloader section).

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

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


---
This SF.Net email is sponsored by the new InstallShield X.
From Windows to Linux, servers to mobile, InstallShield X is the one
installation-authoring solution that does it all. Learn more and
evaluate today! http://www.installshield.com/Dev2Dev/0504
___
JBoss-user mailing list
[EMAIL PROTECTED]
https://lists.sourceforge.net/lists/listinfo/jboss-user


[JBoss-user] [The Lizzard's corner] - Need Jboss 2.4.10 release notes ASAP - missing from Sourcefo

2004-06-03 Thread luxmatic
Sourceforge does not have release/change notes for this release.  I *really* need 
them.   Who can provide these?



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

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


---
This SF.Net email is sponsored by the new InstallShield X.
From Windows to Linux, servers to mobile, InstallShield X is the one
installation-authoring solution that does it all. Learn more and
evaluate today! http://www.installshield.com/Dev2Dev/0504
___
JBoss-user mailing list
[EMAIL PROTECTED]
https://lists.sourceforge.net/lists/listinfo/jboss-user


[JBoss-user] [Nukes User] - Re: Problems on Nukes1.1RC1

2004-06-03 Thread jae77
i'm not sure why you are having these problems. 

what happens if you try to just deploy the nukes core w/o any of the other additional 
modules? does the site come up?

remove all the files from the nukes directory, and make sure that you don't have any 
other ears deployed in the deploy directory othen then the nukes.ear.

if that works and the site comes up, then copy all the -service.xml files for the core 
into the nukes directory and make sure the side blocks appear (this would be all 
-service.xml files except mostpopulardownalds-block-service.xml, 
newdownloads-block-service.xml and top10downloads-block-service.xml).

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

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


---
This SF.Net email is sponsored by the new InstallShield X.
From Windows to Linux, servers to mobile, InstallShield X is the one
installation-authoring solution that does it all. Learn more and
evaluate today! http://www.installshield.com/Dev2Dev/0504
___
JBoss-user mailing list
[EMAIL PROTECTED]
https://lists.sourceforge.net/lists/listinfo/jboss-user


[JBoss-user] [Nukes User] - Re: German (other UNICODE chars) umlauts

2004-06-03 Thread innovate
Umlauts also gets rendered in ISO8859-1.
I have worked for the last 5 years with Apple's WebObjects. You defined the encoding 
while rendering the html and versa, second you defined the encoding to the data back 
end (DB). That was it. No problems. I am new to J2EE. I am good in Servlet programming 
and have some experience with JSP - no problem there with umlauts!. But the real J2EE 
thing like EJB's and all other technologies are new to me. So I am a little bit lost 
where to search for the critical code snippets. Should I search in the EJB code, in 
some code of JBoss or only in the Nukes code base?

But in my opinion, if text renders in a text field differently than the same text in 
the preview, that's strange. I assume, there is no db interaction for the preview. So 
text is only sent to the module and the module send back the text to the text field 
and the preview section - but with different encodings!

If I get some hints where to start, it would be helpful.

Regards,

Cyrill

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

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


---
This SF.Net email is sponsored by the new InstallShield X.
From Windows to Linux, servers to mobile, InstallShield X is the one
installation-authoring solution that does it all. Learn more and
evaluate today! http://www.installshield.com/Dev2Dev/0504
___
JBoss-user mailing list
[EMAIL PROTECTED]
https://lists.sourceforge.net/lists/listinfo/jboss-user


[JBoss-user] [Nukes User] - nukes 1.1RC1 issues

2004-06-03 Thread cuoz
I thought I'd start a new thread for the lastest CVS RC1 issues.

Linux/Postgresql/Fresh install built from today's CVS tagged revision.

Created a user account.
Logged in.
Attempted to create a new download to the default (main) area.
Received Category does not exist
Note:  it works if I login as admin and create an area off of 'main' and use that.
Logs:
--
12:26:30,232 ERROR [downloads] [EMAIL PROTECTED]
javax.ejb.ObjectNotFoundException: No such entity!
at 
org.jboss.ejb.plugins.cmp.jdbc.JDBCFindEntityCommand.execute(JDBCFindEntityCommand.java:52)
at 
org.jboss.ejb.plugins.cmp.jdbc.JDBCStoreManager.findEntity(JDBCStoreManager.java:571)
at 
org.jboss.ejb.plugins.CMPPersistenceManager.findEntity(CMPPersistenceManager.java:299)
at 
org.jboss.resource.connectionmanager.CachedConnectionInterceptor.findEntity(CachedConnectionInterceptor.java:300)
at org.jboss.ejb.EntityContainer.findLocal(EntityContainer.java:637)
at sun.reflect.GeneratedMethodAccessor116.invoke(Unknown Source)
at 
sun.reflect.DelegatingMethodAccessorImpl.invoke(DelegatingMethodAccessorImpl.java:25)
at java.lang.reflect.Method.invoke(Method.java:324)
at 
org.jboss.ejb.EntityContainer$ContainerInterceptor.invokeHome(EntityContainer.java:1043)
at 
org.jboss.ejb.plugins.AbstractInterceptor.invokeHome(AbstractInterceptor.java:88)
at 
org.jboss.ejb.plugins.EntitySynchronizationInterceptor.invokeHome(EntitySynchronizationInterceptor.java:197)
at 
org.jboss.resource.connectionmanager.CachedConnectionInterceptor.invokeHome(CachedConnectionInterceptor.java:214)
at 
org.jboss.ejb.plugins.AbstractInterceptor.invokeHome(AbstractInterceptor.java:88)
at 
org.jboss.ejb.plugins.EntityInstanceInterceptor.invokeHome(EntityInstanceInterceptor.java:89)
at 
org.jboss.ejb.plugins.EntityLockInterceptor.invokeHome(EntityLockInterceptor.java:61)
at 
org.jboss.ejb.plugins.EntityCreationInterceptor.invokeHome(EntityCreationInterceptor.java:28)
at 
org.jboss.ejb.plugins.AbstractTxInterceptor.invokeNext(AbstractTxInterceptor.java:88)
at 
org.jboss.ejb.plugins.TxInterceptorCMT.runWithTransactions(TxInterceptorCMT.java:267)
at org.jboss.ejb.plugins.TxInterceptorCMT.invokeHome(TxInterceptorCMT.java:98)
at 
org.jboss.ejb.plugins.SecurityInterceptor.invokeHome(SecurityInterceptor.java:92)
at org.jboss.ejb.plugins.LogInterceptor.invokeHome(LogInterceptor.java:120)
at 
org.jboss.ejb.plugins.ProxyFactoryFinderInterceptor.invokeHome(ProxyFactoryFinderInterceptor.java:93)
at org.jboss.ejb.EntityContainer.internalInvokeHome(EntityContainer.java:483)
at org.jboss.ejb.Container.invoke(Container.java:720)
at 
org.jboss.ejb.plugins.local.BaseLocalProxyFactory.invokeHome(BaseLocalProxyFactory.java:293)
at org.jboss.ejb.plugins.local.LocalHomeProxy.invoke(LocalHomeProxy.java:110)
at $Proxy236.findByPrimaryKey(Unknown Source)
at 
org.jboss.nukes.addons.modules.downloads.DownloadsModule.addDownload(DownloadsModule.java:767)
at sun.reflect.NativeMethodAccessorImpl.invoke0(Native Method)
at 
sun.reflect.NativeMethodAccessorImpl.invoke(NativeMethodAccessorImpl.java:39)
at 
sun.reflect.DelegatingMethodAccessorImpl.invoke(DelegatingMethodAccessorImpl.java:25)
at java.lang.reflect.Method.invoke(Method.java:324)
at org.jboss.nukes.module.ModuleSupport.operation(ModuleSupport.java:117)
at org.jboss.nukes.module.ModuleSupport.process(ModuleSupport.java:91)
at sun.reflect.GeneratedMethodAccessor121.invoke(Unknown Source)
at 
sun.reflect.DelegatingMethodAccessorImpl.invoke(DelegatingMethodAccessorImpl.java:25)
at java.lang.reflect.Method.invoke(Method.java:324)
at 
org.jboss.mx.capability.ReflectedMBeanDispatcher.invoke(ReflectedMBeanDispatcher.java:284)
at 
org.jboss.mx.interceptor.ObjectReferenceInterceptor.invoke(ObjectReferenceInterceptor.java:59)
at 
org.jboss.mx.interceptor.MBeanAttributeInterceptor.invoke(MBeanAttributeInterceptor.java:43)
at 
org.jboss.mx.interceptor.PersistenceInterceptor2.invoke(PersistenceInterceptor2.java:93)
at org.jboss.nukes.mx.LifeCycleInterceptor.invoke(LifeCycleInterceptor.java:93)
at org.jboss.mx.server.MBeanInvoker.invoke(MBeanInvoker.java:76)
at org.jboss.mx.server.MBeanServerImpl.invoke(MBeanServerImpl.java:546)
at org.jboss.nukes.core.Main$LastNext.process(Main.java:557)
at org.jboss.nukes.core.modules.html.HtmlModule$1.process(HtmlModule.java:258)
at org.jboss.nukes.core.Main$HandlerNext.process(Main.java:508)
at org.jboss.nukes.core.modules.core.CoreModule$3.process(CoreModule.java:404)
at org.jboss.nukes.core.Main$HandlerNext.process(Main.java:508)
at 

[JBoss-user] [Nukes User] - Re: nukes 1.1RC1 issues

2004-06-03 Thread cuoz
As a follow-up, my download submission never showed up for the admin to approve.

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

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



---
This SF.Net email is sponsored by the new InstallShield X.
From Windows to Linux, servers to mobile, InstallShield X is the one
installation-authoring solution that does it all. Learn more and
evaluate today! http://www.installshield.com/Dev2Dev/0504
___
JBoss-user mailing list
[EMAIL PROTECTED]
https://lists.sourceforge.net/lists/listinfo/jboss-user


[JBoss-user] [Nukes User] - Re: nukes 1.1RC1 issues

2004-06-03 Thread cuoz
Linux/Postgres

Trying to post a comment to a news article:

12:49:03,582 ERROR [CommentEJB] Could not create entity
java.sql.SQLException: ERROR:  ExecInsert: Fail to add null value in not null 
attribute story_id
 
at org.postgresql.core.QueryExecutor.execute(QueryExecutor.java:131)
at 
org.postgresql.jdbc1.AbstractJdbc1Connection.ExecSQL(AbstractJdbc1Connection.java:505)
at 
org.postgresql.jdbc1.AbstractJdbc1Statement.execute(AbstractJdbc1Statement.java:320)
at 
org.postgresql.jdbc2.AbstractJdbc2Statement.execute(AbstractJdbc2Statement.java:48)
at 
org.postgresql.jdbc1.AbstractJdbc1Statement.executeUpdate(AbstractJdbc1Statement.java:197)
at 
org.jboss.resource.adapter.jdbc.WrappedPreparedStatement.executeUpdate(WrappedPreparedStatement.java:324)
at 
org.jboss.ejb.plugins.cmp.jdbc.keygen.JDBCPostgreSQLCreateCommand.executeInsert(JDBCPostgreSQLCreateCommand.java:59)
at 
org.jboss.ejb.plugins.cmp.jdbc.JDBCAbstractCreateCommand.performInsert(JDBCAbstractCreateCommand.java:287)
at 
org.jboss.ejb.plugins.cmp.jdbc.JDBCAbstractCreateCommand.execute(JDBCAbstractCreateCommand.java:138)
at 
org.jboss.ejb.plugins.cmp.jdbc.JDBCStoreManager.createEntity(JDBCStoreManager.java:554)
at 
org.jboss.ejb.plugins.CMPPersistenceManager.createEntity(CMPPersistenceManager.java:208)
at 
org.jboss.resource.connectionmanager.CachedConnectionInterceptor.createEntity(CachedConnectionInterceptor.java:269)
at org.jboss.ejb.EntityContainer.createLocalHome(EntityContainer.java:581)
at sun.reflect.GeneratedMethodAccessor171.invoke(Unknown Source)
at 
sun.reflect.DelegatingMethodAccessorImpl.invoke(DelegatingMethodAccessorImpl.java:25)
at java.lang.reflect.Method.invoke(Method.java:324)
at 
org.jboss.ejb.EntityContainer$ContainerInterceptor.invokeHome(EntityContainer.java:1043)
at 
org.jboss.ejb.plugins.AbstractInterceptor.invokeHome(AbstractInterceptor.java:88)
at 
org.jboss.ejb.plugins.EntitySynchronizationInterceptor.invokeHome(EntitySynchronizationInterceptor.java:197)
at 
org.jboss.resource.connectionmanager.CachedConnectionInterceptor.invokeHome(CachedConnectionInterceptor.java:214)
at 
org.jboss.ejb.plugins.AbstractInterceptor.invokeHome(AbstractInterceptor.java:88)
at 
org.jboss.ejb.plugins.EntityInstanceInterceptor.invokeHome(EntityInstanceInterceptor.java:89)
at 
org.jboss.ejb.plugins.EntityLockInterceptor.invokeHome(EntityLockInterceptor.java:61)
at 
org.jboss.ejb.plugins.EntityCreationInterceptor.invokeHome(EntityCreationInterceptor.java:28)
at 
org.jboss.ejb.plugins.AbstractTxInterceptor.invokeNext(AbstractTxInterceptor.java:88)
at 
org.jboss.ejb.plugins.TxInterceptorCMT.runWithTransactions(TxInterceptorCMT.java:267)
at org.jboss.ejb.plugins.TxInterceptorCMT.invokeHome(TxInterceptorCMT.java:98)
at 
org.jboss.ejb.plugins.SecurityInterceptor.invokeHome(SecurityInterceptor.java:92)
at org.jboss.ejb.plugins.LogInterceptor.invokeHome(LogInterceptor.java:120)
at 
org.jboss.ejb.plugins.ProxyFactoryFinderInterceptor.invokeHome(ProxyFactoryFinderInterceptor.java:93)
at org.jboss.ejb.EntityContainer.internalInvokeHome(EntityContainer.java:483)
at org.jboss.ejb.Container.invoke(Container.java:720)
at 
org.jboss.ejb.plugins.local.BaseLocalProxyFactory.invokeHome(BaseLocalProxyFactory.java:293)
at org.jboss.ejb.plugins.local.LocalHomeProxy.invoke(LocalHomeProxy.java:110)
at $Proxy256.create(Unknown Source)
at 
org.jboss.nukes.addons.modules.news.utils.NewsDAO.createComment(NewsDAO.java:113)
at 
org.jboss.nukes.addons.modules.news.NewsModule.commentshandlecomment(NewsModule.java:210)

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

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



---
This SF.Net email is sponsored by the new InstallShield X.
From Windows to Linux, servers to mobile, InstallShield X is the one
installation-authoring solution that does it all. Learn more and
evaluate today! http://www.installshield.com/Dev2Dev/0504
___
JBoss-user mailing list
[EMAIL PROTECTED]
https://lists.sourceforge.net/lists/listinfo/jboss-user


[JBoss-user] [Installation Configuration] - how to deploy expanded .ear files

2004-06-03 Thread ian beer
Can anyone please tell me how to deploy an expanded ear or war structure to jboss.

Thankyou in advance

Ian

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

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


---
This SF.Net email is sponsored by the new InstallShield X.
From Windows to Linux, servers to mobile, InstallShield X is the one
installation-authoring solution that does it all. Learn more and
evaluate today! http://www.installshield.com/Dev2Dev/0504
___
JBoss-user mailing list
[EMAIL PROTECTED]
https://lists.sourceforge.net/lists/listinfo/jboss-user


[JBoss-user] [Nukes User] - Re: nukes 1.1RC1 issues

2004-06-03 Thread cuoz
Scratch the issue about the news article not showing up for approval.  I was not 
looking at the correct area of the news admin page.  Sorry.

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

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



---
This SF.Net email is sponsored by the new InstallShield X.
From Windows to Linux, servers to mobile, InstallShield X is the one
installation-authoring solution that does it all. Learn more and
evaluate today! http://www.installshield.com/Dev2Dev/0504
___
JBoss-user mailing list
[EMAIL PROTECTED]
https://lists.sourceforge.net/lists/listinfo/jboss-user


[JBoss-user] [JCA/JBoss] - JBoss 4DR4 issue with jaas

2004-06-03 Thread voxa2001
hi. i try porting an application from jboss 3.2.1 to 4.0.0 DR4. it works so far - only 
the jaas module fails with a crazy failure. 

when i do login, the principal and role are permuted. 

that means in the userPrincipal Parameter in the request object is in jboss 4 the role 
name, not the principal name after the authentication.

where can i find more information about the jaas module from jboss 4.0.0? what has 
changed?

here is my login-config part, which is working in jboss 3.2.1:

application-policy name = xavoportal
  |authentication
  |   login-module code = 
de.xavo.jboss.security.auth.spi.XavoDatabaseServerLoginModule flag = required
  |  module-option name = 
dsJndiNamejava:XavoportalDataSource/module-option
  |  module-option name = principalsQueryselect PASSWORD from LOGIN 
where upper(LOGIN_NAME)=upper(?)/module-option
  |  module-option name = rolesQueryselect a.Role, a.ROLEGROUP 
from(select USER_GROUP.GROUP_ROLE Role, 'Roles' RoleGroup, LOGIN_NAME from USER_GROUP, 
LOGIN,LOGIN_USER_GROUP where LOGIN.login_id = LOGIN_USER_GROUP.login_id and 
user_group.user_group_id = LOGIN_USER_GROUP.user_group_id union select 
USER_GROUP.GROUP_ROLE Role, 'CallerPrincipal' RoleGroup , LOGIN_NAME from USER_GROUP, 
LOGIN,LOGIN_USER_GROUP where LOGIN.login_id = LOGIN_USER_GROUP.login_id and 
user_group.user_group_id = LOGIN_USER_GROUP.user_group_id ) a where 
upper(LOGIN_NAME)=upper(?)/module-option
  |   /login-module
  |/authentication
  | /application-policy
  | 

any ideas?

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

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


---
This SF.Net email is sponsored by the new InstallShield X.
From Windows to Linux, servers to mobile, InstallShield X is the one
installation-authoring solution that does it all. Learn more and
evaluate today! http://www.installshield.com/Dev2Dev/0504
___
JBoss-user mailing list
[EMAIL PROTECTED]
https://lists.sourceforge.net/lists/listinfo/jboss-user


[JBoss-user] [Nukes User] - Re: Text is cut off at far right end

2004-06-03 Thread aalmero
just play around with the right param for style and not removing the div coz it will 
not look nice with other borwsers. 
div style=margin: 1em 3em

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

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


---
This SF.Net email is sponsored by the new InstallShield X.
From Windows to Linux, servers to mobile, InstallShield X is the one
installation-authoring solution that does it all. Learn more and
evaluate today! http://www.installshield.com/Dev2Dev/0504
___
JBoss-user mailing list
[EMAIL PROTECTED]
https://lists.sourceforge.net/lists/listinfo/jboss-user


[JBoss-user] [Persistence CMP/JBoss] - JBossDO (jbossdosample problems)

2004-06-03 Thread etadinshrdlu
I have installed JBoss-4.0.0DR4 from the central jboss page to test the jbossdosample. 
It seems that this version does not contain JBossDO libraries and services, is that 
right ?

Thanks.

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

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


---
This SF.Net email is sponsored by the new InstallShield X.
From Windows to Linux, servers to mobile, InstallShield X is the one
installation-authoring solution that does it all. Learn more and
evaluate today! http://www.installshield.com/Dev2Dev/0504
___
JBoss-user mailing list
[EMAIL PROTECTED]
https://lists.sourceforge.net/lists/listinfo/jboss-user


[JBoss-user] [Messaging, JMS JBossMQ] - Re: Getting the username and password from a ConnectionToken

2004-06-03 Thread [EMAIL PROTECTED]
Look at the code for the security interceptor.

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

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


---
This SF.Net email is sponsored by the new InstallShield X.
From Windows to Linux, servers to mobile, InstallShield X is the one
installation-authoring solution that does it all. Learn more and
evaluate today! http://www.installshield.com/Dev2Dev/0504
___
JBoss-user mailing list
[EMAIL PROTECTED]
https://lists.sourceforge.net/lists/listinfo/jboss-user


[JBoss-user] [Persistence CMP/JBoss] - Re: Exception: CMR field value is already loaded

2004-06-03 Thread cvandyck
I've just started getting this bug too.

javax.ejb.EJBException: CMR field value is already loaded
at 
org.jboss.ejb.plugins.cmp.jdbc.bridge.JDBCCMRFieldBridge$FieldState.loadRelations(JDBCCMRFieldBridge.java:1722
at 
org.jboss.ejb.plugins.cmp.jdbc.bridge.JDBCCMRFieldBridge.load(JDBCCMRFieldBridge.java:1263)
at 
org.jboss.ejb.plugins.cmp.jdbc.bridge.JDBCCMRFieldBridge.load(JDBCCMRFieldBridge.java:1252)
at 
org.jboss.ejb.plugins.cmp.jdbc.bridge.JDBCCMRFieldBridge.getInstanceValue(JDBCCMRFieldBridge.java:633)
at 
org.jboss.ejb.plugins.cmp.jdbc.bridge.JDBCCMRFieldBridge.getValue(JDBCCMRFieldBridge.java:589)
at 
org.jboss.ejb.plugins.cmp.bridge.EntityBridgeInvocationHandler.invoke(EntityBridgeInvocationHandler.java:119)
at org.jboss.proxy.compiler.Runtime.invoke(Runtime.java:59)


It's only reproducible, though, under heavy load.  The relationship is a 1-many CMR, 
and read-only and transactional context doesn't seem to affect it.

I can reproduce it by spawning five different simultaneous requests to the same SLSB 
method that (eventually) invokes the CMR.

JBoss will throw this exception, though, usually just on one of the threads.  The 
other threads execute successfully.  Further low-load invocations of the SLSB method 
do not produce this problem ever.

Any ideas?

I'm using JBoss 3.2.3.

Thank you.
Collin



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

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


---
This SF.Net email is sponsored by the new InstallShield X.
From Windows to Linux, servers to mobile, InstallShield X is the one
installation-authoring solution that does it all. Learn more and
evaluate today! http://www.installshield.com/Dev2Dev/0504
___
JBoss-user mailing list
[EMAIL PROTECTED]
https://lists.sourceforge.net/lists/listinfo/jboss-user


[JBoss-user] [Messaging, JMS JBossMQ] - Re: SQL exception with large number of JMS messages

2004-06-03 Thread FBoss
The reason we switched to use XA with JMS is because we want the transaction of 
sending of JMS message to join with caller's transaction so they commit together as 
the message bean that does the post payment processing needs some data from the 
payment EJB commited to the database.  

I'll look at JMS Resource Adapter more and see if that helps.

thanks.



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

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


---
This SF.Net email is sponsored by the new InstallShield X.
From Windows to Linux, servers to mobile, InstallShield X is the one
installation-authoring solution that does it all. Learn more and
evaluate today! http://www.installshield.com/Dev2Dev/0504
___
JBoss-user mailing list
[EMAIL PROTECTED]
https://lists.sourceforge.net/lists/listinfo/jboss-user


[JBoss-user] [Nukes User] - Re: user error

2004-06-03 Thread sjaaksken
I'm using mysql 4.0.18
the installation is maybe a month old so it should have no issues. Anyway I'm using 
Apache 2 on windows.

And I'm not a mysql coder, nor do I know the settings for the nukes user I have to 
enter. Isn't this the place to get a little feedback?

There are two records in the mysql.user table:

'admin'
'user'
but even when it's empty I get that error?

Weird problem anyway, never had any problems running a sql script before.

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

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


---
This SF.Net email is sponsored by the new InstallShield X.
From Windows to Linux, servers to mobile, InstallShield X is the one
installation-authoring solution that does it all. Learn more and
evaluate today! http://www.installshield.com/Dev2Dev/0504
___
JBoss-user mailing list
[EMAIL PROTECTED]
https://lists.sourceforge.net/lists/listinfo/jboss-user


[JBoss-user] [Installation Configuration] - Re: how to deploy expanded .ear files

2004-06-03 Thread jae77
just unzip the ear/war into the deploy directory. make sure the directory name ends 
in either .ear or .war (depending on what you are deploying).

ie: my.ear or my.war

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

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


---
This SF.Net email is sponsored by the new InstallShield X.
From Windows to Linux, servers to mobile, InstallShield X is the one
installation-authoring solution that does it all. Learn more and
evaluate today! http://www.installshield.com/Dev2Dev/0504
___
JBoss-user mailing list
[EMAIL PROTECTED]
https://lists.sourceforge.net/lists/listinfo/jboss-user


[JBoss-user] [Beginners Corner] - Re: bind error while trying tusc tutorial

2004-06-03 Thread buka
I had similar problem while trying to go through the tutorial. Here is the solution 
that I found.

When you start jboss 3.2.1 from the command line it will start default server. When 
you run from eclipse/lomboz it will start all server. So when you deploy inside 
eclipse/lomboz you deploy to all server.

To fix it, correct jboss321all.server file (the one that you got from TUSC site 
located in plugins folder).

Correct deployment paths to server/default/deploy
and -c default

Redeploy and try your client.

Hope it helps,
Buka.

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

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


---
This SF.Net email is sponsored by the new InstallShield X.
From Windows to Linux, servers to mobile, InstallShield X is the one
installation-authoring solution that does it all. Learn more and
evaluate today! http://www.installshield.com/Dev2Dev/0504
___
JBoss-user mailing list
[EMAIL PROTECTED]
https://lists.sourceforge.net/lists/listinfo/jboss-user


[JBoss-user] [Beginners Corner] - Re: Hypersonic Database Access Problems...

2004-06-03 Thread buka
I had similar problem. Here is the solution that I found.

When you start jboss 3.2.1 from the command line it will start default server. So, 
you run hypersonic inside default server. 

When you run from eclipse/lomboz it will start all server. Hypersonic inside all 
server doesn't have your tables. Therefore table not found error.

To fix it, correct jboss321all.server file (the one that you got from TUSC site 
located in plugins folder).

Correct deployment paths to server/default/deploy
and -c default

Redeploy and try your client.

Hope it helps,
Buka.

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

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


---
This SF.Net email is sponsored by the new InstallShield X.
From Windows to Linux, servers to mobile, InstallShield X is the one
installation-authoring solution that does it all. Learn more and
evaluate today! http://www.installshield.com/Dev2Dev/0504
___
JBoss-user mailing list
[EMAIL PROTECTED]
https://lists.sourceforge.net/lists/listinfo/jboss-user


[JBoss-user] [Installation Configuration] - Jboss-3.2.3 is the

2004-06-03 Thread tgilley42
In JBoss-3.2.3 is it possible to change the location of the work directory?

The work directory is currently  
${JBOSS_ROOT}/server/'serverinstance'/work/'serverinstance'/localhost. 

I am interested in knowing if I can remove the second serverinstance, and simply 
have the work directory be ${JBOSS_ROOT}/server/'serverinstance'/work/localhost.

The reason I am interested in doing this is so I can tar up pre-compiled JSPs and 
deploy them under the work directory independent of the instance name.  ( since 
dev,test, prd all on different boxes will have the same tar deployed but have 
different 'severinstance' names, etc.)

Thanks!



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

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


---
This SF.Net email is sponsored by the new InstallShield X.
From Windows to Linux, servers to mobile, InstallShield X is the one
installation-authoring solution that does it all. Learn more and
evaluate today! http://www.installshield.com/Dev2Dev/0504
___
JBoss-user mailing list
[EMAIL PROTECTED]
https://lists.sourceforge.net/lists/listinfo/jboss-user


[JBoss-user] [Messaging, JMS JBossMQ] - Re: Invalid Column Type

2004-06-03 Thread dnanto
Ok, I figured it out.  In the 

depends 
optional-attribute-name=ConnectionManagerjboss.jca:service=LocalTxCM,name=OracleDS 

tag, I needed to change the OracleDS to the JNDI bind name of my new Data Source:

depends 
optional-attribute-name=ConnectionManagerjboss.jca:service=LocalTxCM,name=MyNewDataSource

Once I did this, it appears to create the JMS table just fine, as well as write JMS 
messages to it.
 

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

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


---
This SF.Net email is sponsored by the new InstallShield X.
From Windows to Linux, servers to mobile, InstallShield X is the one
installation-authoring solution that does it all. Learn more and
evaluate today! http://www.installshield.com/Dev2Dev/0504
___
JBoss-user mailing list
[EMAIL PROTECTED]
https://lists.sourceforge.net/lists/listinfo/jboss-user


[JBoss-user] [Messaging, JMS JBossMQ] - Re: Error creating the dlq connection: XAConnectionFactory n

2004-06-03 Thread bblackmoor
I have a similar problem, using Apache2, JBoss+Tomcat 3.2.3, PoistgreSQL 7.4.2, and 
Liferay 2.1.0. I have searched high and low, and have not yet found a solution. 
However, here are the things I have tried. Maybe one will work for you.

## Check hsqldb-ds.xml:
Apparently JBoss needs to use a database to store EJB persistence data, and out of the 
box it uses Hypersonic for this. So if you want to use Hypersonic, hsqldb-ds.xml needs 
to be in your deploy directory. This seems to be the standard answer when someone 
has this problem (but rather than answer, someone will usually make a snotty 
suggestion that you go do a search).

Result: I had (and still have) hsqldb-ds.xml in my deploy directory, but I still get 
this error.

## Change the JDBC settings:
I am using Postgres for all database-related tasks on my JBoss server. If the error is 
related somehow to Hypersonic, even though the error message does not actually mention 
Hypersonic, then perhaps changing JBoss to use PostgreSQL would fix the exception. So 
I changed these files:

jboss/server/dev/conf/standardjaws.xml
- changed type-mapping to PostgreSQL
jboss/server/dev/conf/standardjbosscmp-jdbc.xml
- changed datasource-mapping to PostgreSQL

Result: Liferay still appears to run correctly (so at least I didn't break anything), 
but I still have the same exception.

## Set RecursiveSearch to True:
Again, one of the standard answers. In conf/jboss-server.xml change the 'attribute 
name=RecursiveSearch' scanner to True, like so (angle brackets changed to 
parentheses so the forum will display it):

(attribute name=RecursiveSearch)True(/attribute)

Result: It was already True. No change.

## Enable TRACE logging:
I then tried enabling TRACE debugging for JMS by adding this to log4j.xml (angle 
brackets replaced with parentheses so this forum won't eat them):

(category name=org.jboss.jms)
(priority value=TRACE class=org.jboss.logging.XLevel /)
(/category)

Result: This gave me a couple of additional lines in the log, but other than that I do 
not see any improvement. Below are the log entries, including the new 
JBossMQProvider entries. THis was the last thing I tried. I am currently stumped. 
Any information anyone can provide (real information, not just a snotty go do a 
search comment), would be greatly appreciated.

2004-06-03 15:33:12,135 INFO [org.jboss.ejb.plugins.jms.JMSContainerInvoker]
Trying to reconnect to JMS provider
2004-06-03 15:33:19,892 DEBUG [org.jboss.jms.jndi.JBossMQProvider] no provider
url; connecting to local JNDI
2004-06-03 15:33:19,893 DEBUG [org.jboss.jms.jndi.JBossMQProvider] created
context: [EMAIL PROTECTED]
2004-06-03 15:33:19,893 ERROR [org.jboss.ejb.plugins.jms.DLQHandler]
Initialization failed
javax.jms.JMSException: Error creating the dlq connection: XAConnectionFactory
not bound
at
org.jboss.ejb.plugins.jms.DLQHandler.createService(DLQHandler.java:169)
at
org.jboss.system.ServiceMBeanSupport.create(ServiceMBeanSupport.java:158)
at
org.jboss.ejb.plugins.jms.JMSContainerInvoker.innerCreate(JMSContainerInvoker.java:458)
at
org.jboss.ejb.plugins.jms.JMSContainerInvoker.startService(JMSContainerInvoker.java:674)
at
org.jboss.ejb.plugins.jms.JMSContainerInvoker$ExceptionListenerImpl.onException(JMSContainerInvoker.java:1173)
at
org.jboss.ejb.plugins.jms.JMSContainerInvoker$1.run(JMSContainerInvoker.java:686)
2004-06-03 15:33:19,893 INFO [org.jboss.ejb.plugins.jms.JMSContainerInvoker]
Reconnected to JMS provider
2004-06-03 15:33:19,893 WARN [org.jboss.ejb.plugins.jms.JMSContainerInvoker]
JMS provider failure detected:
javax.jms.JMSException: Error creating the dlq connection: XAConnectionFactory
not bound
at
org.jboss.ejb.plugins.jms.DLQHandler.createService(DLQHandler.java:169)
at
org.jboss.system.ServiceMBeanSupport.create(ServiceMBeanSupport.java:158)
at
org.jboss.ejb.plugins.jms.JMSContainerInvoker.innerCreate(JMSContainerInvoker.java:458)
at
org.jboss.ejb.plugins.jms.JMSContainerInvoker.startService(JMSContainerInvoker.java:674)
at
org.jboss.ejb.plugins.jms.JMSContainerInvoker$ExceptionListenerImpl.onException(JMSContainerInvoker.java:1173)
at
org.jboss.ejb.plugins.jms.JMSContainerInvoker$1.run(JMSContainerInvoker.java:686)
2004-06-03 15:33:19,894 INFO [org.jboss.ejb.plugins.jms.JMSContainerInvoker]
Trying to reconnect to JMS provider
2004-06-03 15:33:22,136 DEBUG [org.jboss.jms.jndi.JBossMQProvider] no provider
url; connecting to local JNDI
2004-06-03 15:33:22,136 DEBUG [org.jboss.jms.jndi.JBossMQProvider] created
context: [EMAIL PROTECTED]
2004-06-03 15:33:22,137 ERROR [org.jboss.ejb.plugins.jms.DLQHandler]
Initialization failed
javax.jms.JMSException: Error creating the dlq connection: XAConnectionFactory
not bound
at
org.jboss.ejb.plugins.jms.DLQHandler.createService(DLQHandler.java:169)

at
org.jboss.system.ServiceMBeanSupport.create(ServiceMBeanSupport.java:158)
at
org.jboss.ejb.plugins.jms.JMSContainerInvoker.innerCreate(JMSContainerInvoker.java:458)
at

  1   2   >