Re: [JBoss-user] 103 Java Processes under JBOSS-3.2.1

2003-08-30 Thread Wolfgang Helbig
With Linux every Java thread is executed in a dedicated process. That is, JBoss
still runs in one VM executing many processes.

This is not the case with other operating systems, where OS threads
are used to implement Java threads rather than OS processes.

Regards,

Wolfgang



---
This sf.net email is sponsored by:ThinkGeek
Welcome to geek heaven.
http://thinkgeek.com/sf
___
JBoss-user mailing list
[EMAIL PROTECTED]
https://lists.sourceforge.net/lists/listinfo/jboss-user


RE: [JBoss-user] Core dumps in Jboss3.2.2.RC2 !

2003-08-19 Thread Wolfgang Helbig
Core dumps of a JVM always show a bug in either the JVM or in the
shared libraries/operating system - never in the java code.

So I'd suggest:
1. Upgrade to the latest jdk 1.4 version available for your platform.
(should be 1.4.2_xx, I guess)
2. Install the OS-patches as recommended by Sun
3. If JVM still dumps, file in a bug report at http://java.sun.com

4. let us know about the outcome.

regards,

Wolfgang Helbig



---
This SF.net email is sponsored by Dice.com.
Did you know that Dice has over 25,000 tech jobs available today? From
careers in IT to Engineering to Tech Sales, Dice has tech jobs from the
best hiring companies. http://www.dice.com/index.epl?rel_code=104
___
JBoss-user mailing list
[EMAIL PROTECTED]
https://lists.sourceforge.net/lists/listinfo/jboss-user


Re: [JBoss-user] Log4jService$URLWatchTimerTask causing problems on Unix

2003-08-14 Thread Wolfgang Helbig
What flavour of Unix is your's? This is not seen on Solaris 8/x386.
Check the modification time of your log4j.xml.
Does it change?
Do you have another one in your Unix installation?
A workaround might be to say appendtrue/append in
your file appender.

Hope one of the above hints work.

Wolfgang
I'm running JBoss 3.2.1 on Unix. When I start up JBoss with my configuration 
set, the Log4j Service URLWatcher keeps on refreshing every minute even though 
no body is editing the file. It happens periodically every minute. The result is 
it clears up all the log files and starts afresh. So i loose all my vital log 
messages. 
I'm wondering 
- why the Log4j Watcher is refreshing when the log4j.xml file has not been 
modified.
- how to configure it to refresh only when the file gets modified.

Interesting this is it only happens on Unix and not on Windows
To delve more in to it, I tried starting it on the default configuration Set, 
it happens in the default configuration set as well.

Any help is appreciated. Thank you.

Cheers,
Magesh



**
This email and its attachments are intended for the above 
named only and may be confidential.  If they have come to 
you in error, you must take no action based on them, nor 
must you copy or show them to anyone; please reply to this 
email and highlight the error.
Security Warning: Please note that this email has been 
created in the knowledge that the internet email is not a 
100% secure communications medium.  We advise that you 
understand and observe this lack of security when emailing us.
Viruses:  Although we have taken steps to ensure that this 
email and attachments are free from any virus, we advise 
that in keeping with good computing practice the recipient 
should ensure they are actually virus free.
If you have received this email in error please notify:
[EMAIL PROTECTED]
**



---
This SF.Net email sponsored by: Free pre-built ASP.NET sites including
Data Reports, E-commerce, Portals, and Forums are available now.
Download today and enter to win an XBOX or Visual Studio .NET.
http://aspnet.click-url.com/go/psa0013ave/direct;at.aspnet_072303_01/01
___
JBoss-user mailing list
[EMAIL PROTECTED]
https://lists.sourceforge.net/lists/listinfo/jboss-user



---
This SF.Net email sponsored by: Free pre-built ASP.NET sites including
Data Reports, E-commerce, Portals, and Forums are available now.
Download today and enter to win an XBOX or Visual Studio .NET.
http://aspnet.click-url.com/go/psa0013ave/direct;at.aspnet_072303_01/01
___
JBoss-user mailing list
[EMAIL PROTECTED]
https://lists.sourceforge.net/lists/listinfo/jboss-user


Re: [JBoss-user] No such method: OracleXADataSource.setjdbc(String)

2003-08-11 Thread Wolfgang Helbig
Works fine, thanks!

The problem, quite embarrassingly is that the xslt/code to build the deployment 
descriptor is intolerant of spaces. Therefore, the properties are not being 
seen correctly. You can see this if you look at the server.log:



---
This SF.Net email sponsored by: Free pre-built ASP.NET sites including
Data Reports, E-commerce, Portals, and Forums are available now.
Download today and enter to win an XBOX or Visual Studio .NET.
http://aspnet.click-url.com/go/psa0013ave/direct;at.aspnet_072303_01/01
___
JBoss-user mailing list
[EMAIL PROTECTED]
https://lists.sourceforge.net/lists/listinfo/jboss-user


Re: [JBoss-user] No such method: OracleXADataSource.setjdbc(String)

2003-08-03 Thread Wolfgang Helbig
An ugly workaround is to use a non-xa datasource, i.e. oracle-ds.xml
instead of oracle-xa-ds.xml.
Why ugly? Because now I have to specify the Database URL twice,
in the DS and in the XADS.
Does the DatabaseLoginModule support XA Datasources in JBoss3, as it did
in JBoss 2.4 ?

I need JBoss3.2.1 w/ tomcat to support the JAAS
DatabaseLoginModule with an underlying XA-Datasource. I
started by adding JAR, SAR and *.xml files to the
minimal configuration. During startup all works well,
(no ERRORS, and WARNINGS only regarding some tomcat
JAR file index). But when I try to login, I get this
in server.log:

2003-07-28 08:08:00,471 ERROR [org.jboss.security.auth.spi.DatabaseServerLogin
Module] Query failed

org.jboss.util.NestedSQLException: Could not find accessor on XADataSource: ;
- nested throwable: (java.lang.NoSuchMethodException: oracle.jdbc.xa.client.Or
acleXADataSource.setjdbc(java.lang.String)); - nested throwable: (org.jboss.re
source.JBossResourceException: Could not find accessor on XADataSource: ; - ne
sted throwable: (java.lang.NoSuchMethodException: oracle.jdbc.xa.client.Oracle
XADataSource.setjdbc(java.lang.String)))

In fact, javap -private reveals there is no such method 
setjdbc(String) in OracleXADataSource. So, I must have done something wrong.
I modified the oracle-xa-ds.xml file from examples/jca to make use of the thin
jdbc-driver instead of the oci8 driver. (We don't want to deploy oracle client 
software
on the jboss server.)

The application works for two years now with jboss 2.4, where we used the
minerva XA Wrapper instead of the oracle driver. But
the wrapper does not seem to have made it to jboss 3.2?

I'd really appreciate any help ...

TIA
Wolfgang

PS: my xa-ds file:

datasources
  xa-datasource
jndi-nameDataPool/jndi-name
track-connection-by-tx
 true
/track-connection-by-tx
isSameRM-override-value
  false
/isSameRM-override-value
xa-datasource-class
 oracle.jdbc.xa.client.OracleXADataSource
/xa-datasource-class
xa-datasource-property name=URL
  jdbc:oracle:thin:@localhost:1521:test
/xa-datasource-property
xa-datasource-property name=User
  user
/xa-datasource-property
xa-datasource-property name=Password
  x
/xa-datasource-property
exception-sorter-class-name
  org.jboss.resource.adapter.jdbc.vendor.OracleExceptionSorter
/exception-sorter-class-name
  /xa-datasource
  ...




---
This SF.Net email sponsored by: Free pre-built ASP.NET sites including
Data Reports, E-commerce, Portals, and Forums are available now.
Download today and enter to win an XBOX or Visual Studio .NET.
http://aspnet.click-url.com/go/psa0013ave/direct;at.aspnet_072303_01/01
___
JBoss-user mailing list
[EMAIL PROTECTED]
https://lists.sourceforge.net/lists/listinfo/jboss-user



---
This SF.Net email sponsored by: Free pre-built ASP.NET sites including
Data Reports, E-commerce, Portals, and Forums are available now.
Download today and enter to win an XBOX or Visual Studio .NET.
http://aspnet.click-url.com/go/psa0013ave/direct;at.aspnet_072303_01/01
___
JBoss-user mailing list
[EMAIL PROTECTED]
https://lists.sourceforge.net/lists/listinfo/jboss-user


Re: [JBoss-user] No such method: OracleXADataSource.setjdbc(String)

2003-08-03 Thread Wolfgang Helbig

This is not a DatabaseServerLoginModule issue. Show the full stack trace to
the exception to see what code is calling XADataSource.setjdbc.

-- 

Scott Stark
Chief Technology Officer
JBoss Group, LLC



Blame on me, please find the stack trace in the attachment.

Wolfgang Helbig wrote:

 An ugly workaround is to use a non-xa datasource, i.e. oracle-ds.xml
 instead of oracle-xa-ds.xml.
 Why ugly? Because now I have to specify the Database URL twice,
 in the DS and in the XADS.
 Does the DatabaseLoginModule support XA Datasources in JBoss3, as it did
 in JBoss 2.4 ?
 
 
I need JBoss3.2.1 w/ tomcat to support the JAAS
DatabaseLoginModule with an underlying XA-Datasource. I
started by adding JAR, SAR and *.xml files to the
minimal configuration. During startup all works well,
(no ERRORS, and WARNINGS only regarding some tomcat
JAR file index). But when I try to login, I get this
in server.log:

2003-07-28 08:08:00,471 ERROR 
[org.jboss.security.auth.spi.DatabaseServerLogin
Module] Query failed

org.jboss.util.NestedSQLException: Could not find accessor on XADataSource: ;
- nested throwable: (java.lang.NoSuchMethodException: 
oracle.jdbc.xa.client.Or
acleXADataSource.setjdbc(java.lang.String)); - nested throwable: 
(org.jboss.re
source.JBossResourceException: Could not find accessor on XADataSource: ; - 
ne
sted throwable: (java.lang.NoSuchMethodException: 
oracle.jdbc.xa.client.Oracle
XADataSource.setjdbc(java.lang.String)))

In fact, javap -private reveals there is no such method 
setjdbc(String) in OracleXADataSource. So, I must have done something wrong.
I modified the oracle-xa-ds.xml file from examples/jca to make use of the 
thin
jdbc-driver instead of the oci8 driver. (We don't want to deploy oracle 
client 
 
 software
 
on the jboss server.)

The application works for two years now with jboss 2.4, where we used the
minerva XA Wrapper instead of the oracle driver. But
the wrapper does not seem to have made it to jboss 3.2?

I'd really appreciate any help ...

TIA
Wolfgang

PS: my xa-ds file:

datasources
 xa-datasource
   jndi-nameDataPool/jndi-name
   track-connection-by-tx
true
   /track-connection-by-tx
   isSameRM-override-value
 false
   /isSameRM-override-value
   xa-datasource-class
oracle.jdbc.xa.client.OracleXADataSource
   /xa-datasource-class
   xa-datasource-property name=URL
 jdbc:oracle:thin:@localhost:1521:test
   /xa-datasource-property
   xa-datasource-property name=User
 user
   /xa-datasource-property
   xa-datasource-property name=Password
 x
   /xa-datasource-property
   exception-sorter-class-name
 org.jboss.resource.adapter.jdbc.vendor.OracleExceptionSorter
   /exception-sorter-class-name
 /xa-datasource
 ...





---
This SF.Net email sponsored by: Free pre-built ASP.NET sites including
Data Reports, E-commerce, Portals, and Forums are available now.
Download today and enter to win an XBOX or Visual Studio .NET.
http://aspnet.click-url.com/go/psa0013ave/direct;at.aspnet_072303_01/01
___
JBoss-user mailing list
[EMAIL PROTECTED]
https://lists.sourceforge.net/lists/listinfo/jboss-user
2003-08-03 22:38:07,248 ERROR [org.jboss.security.auth.spi.DatabaseServerLoginModule] 
Query failed
org.jboss.util.NestedSQLException: Could not find accessor on XADataSource: ; - nested 
throwable: (java.lang.NoSuchMethodException: 
oracle.jdbc.xa.client.OracleXADataSource.setjdbc(java.lang.String)); - nested 
throwable: (org.jboss.resource.JBossResourceException: Could not find accessor on 
XADataSource: ; - nested throwable: (java.lang.NoSuchMethodException: 
oracle.jdbc.xa.client.OracleXADataSource.setjdbc(java.lang.String)))
at 
org.jboss.resource.adapter.jdbc.WrapperDataSource.getConnection(WrapperDataSource.java:106)
at 
org.jboss.security.auth.spi.DatabaseServerLoginModule.getUsersPassword(DatabaseServerLoginModule.java:96)
at 
org.jboss.security.auth.spi.UsernamePasswordLoginModule.login(UsernamePasswordLoginModule.java:143)
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)
at 
org.jboss.security.plugins.JaasSecurityManager.defaultLogin

Re: [JBoss-user] No such method: OracleXADataSource.setjdbc(String)

2003-08-03 Thread Wolfgang Helbig

This indicates you have specified a property:
xa-datasource-property name=setjdbc
...
/xa-datasource-property

as the XAManagedConnectionFactory is just going through the datasource 
properties and applying them using the JavaBeans reflection pattern.
Post your complete *-ds.xml if that is that the case.

Here is my *-ds.xml file. Its only one file, name the sligthly modified
oracle-xa-ds.xml from the jca/examples directory. Furthermore, I post
my login-config.xml and ls -l from my lib respective deploy directory.
?xml version=1.0 encoding=UTF-8?

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

!-- $Id: oracle-xa-ds.xml,v 1.1.2.10 2003/04/25 16:58:57 igorfie Exp $ --

!-- = --
!-- ATTENTION:  DO NOT FORGET TO SET Pad=true IN transaction-service.xml  --
!-- = --

datasources
  xa-datasource
jndi-namePool1/jndi-name
track-connection-by-tx
 true
/track-connection-by-tx
isSameRM-override-value
  false
/isSameRM-override-value
xa-datasource-class
 oracle.jdbc.xa.client.OracleXADataSource 
/xa-datasource-class
xa-datasource-property name=URL
  jdbc:oracle:thin:@localhost:1521:test
/xa-datasource-property
xa-datasource-property name=User
  xx
/xa-datasource-property
xa-datasource-property name=Password
  xx
/xa-datasource-property
exception-sorter-class-name
  org.jboss.resource.adapter.jdbc.vendor.OracleExceptionSorter
/exception-sorter-class-name
  /xa-datasource

  xa-datasource
jndi-namePool2/jndi-name
track-connection-by-tx
  true
/track-connection-by-tx
isSameRM-override-value
  false
/isSameRM-override-value
xa-datasource-class
  oracle.jdbc.xa.client.OracleXADataSource
/xa-datasource-class
xa-datasource-property name=URL
  jdbc:oracle:thin:@localhost:1521:test
/xa-datasource-property
xa-datasource-property name=User
  y
/xa-datasource-property
xa-datasource-property name=Password
  y
/xa-datasource-property
exception-sorter-class-name
  org.jboss.resource.adapter.jdbc.vendor.OracleExceptionSorter
/exception-sorter-class-name
  /xa-datasource

/datasources
jboss-jca.sar
jboss-xa-jdbc.rar
jbossweb-tomcat.sar
jmx-console.war
jmx-rmi-adaptor.sar
oracle-xa-ds.xml
transaction-service.xml
total 232
-rwxr-xr-x   1 helbig   mail   97786 Jul  6 16:17 jboss-jca.sar
-rwxr-xr-x   1 helbig   mail   11751 Jul  6 00:18 jboss-xa-jdbc.rar
drwxr-xr-x   3 helbig   mail1024 Jun 30 01:58 jbossweb-tomcat.sar
drwxr-xr-x   5 helbig   mail 512 Jun 30 02:09 jmx-console.war
drwxr-xr-x   3 helbig   mail 512 Jul  5 12:07 jmx-rmi-adaptor.sar
-rwxr-xr-x   1 helbig   mail2249 Aug  4 01:47 oracle-xa-ds.xml
-rwxr-xr-x   1 helbig   mail1463 Jul  6 00:28 transaction-service.xml
ant.jar
classes12.zip
javax.servlet.jar
jboss-common-jdbc-wrapper.jar
jboss-j2ee.jar
jboss-management.jar
jboss-transaction.jar
jboss.jar
jbosssx.jar
jmx-adaptor-plugin.jar
jnet.jar
jnpserver.jar
jpl-pattern.jar
jpl-util.jar
log4j.jar
properties-plugin.jar
xalan.jar
total 10316
-rwxr-xr-x   1 helbig   mail  732490 Jul  5 11:53 ant.jar
-rw-r--r--   1 helbig   mail 1106771 Jul  5 18:46 classes12.zip
-rwxr-xr-x   1 helbig   mail   74530 Jul  5 11:45 javax.servlet.jar
-rwxr-xr-x   1 helbig   mail   25358 Jul  6 16:27 jboss-common-jdbc-wrapper.jar
-rwxr-xr-x   1 helbig   mail   70039 Jul  5 17:36 jboss-j2ee.jar
-rwxr-xr-x   1 helbig   mail  153266 Jul  5 16:45 jboss-management.jar
-rwxr-xr-x   1 helbig   mail   27548 Jul  5 16:45 jboss-transaction.jar
-rwxr-xr-x   1 helbig   mail 1292534 Jul  5 17:06 jboss.jar
-rwxr-xr-x   1 helbig   mail  204929 Jul 27 20:57 jbosssx.jar
-rwxr-xr-x   1 helbig   mail   90051 Jul  5 12:28 jmx-adaptor-plugin.jar
-rwxr-xr-x   1 helbig   mail5828 Jun 30 00:26 jnet.jar
-rwxr-xr-x   1 helbig   mail   32516 Jun 30 00:26 jnpserver.jar
-rwxr-xr-x   1 helbig   mail3293 Jul  6 10:46 jpl-pattern.jar
-rwxr-xr-x   1 helbig   mail   16756 Jul  6 10:53 jpl-util.jar
-rwxr-xr-x   1 helbig   mail  352668 Jun 30 00:26 log4j.jar
-rwxr-xr-x   1 helbig   mail8482 Jul 30 21:35 properties-plugin.jar
-rwxr-xr-x   1 helbig   mail  983377 Jul 27 22:16 xalan.jar


Re: [JBoss-user] jboss-web.xml?

2003-08-02 Thread Wolfgang Helbig
I guess, the purpose of the ejb-local- ref element is to link an EJB
referred to in the servlet code to an EJB defined elsewhere.
If the EJB is defined in the same EAR, you need to specify its JNDI name
using an ejb-link element in the web.xml file. This is according to
the J2EE 3.0 specs, which you might want to consult.

If the EJB is defined in some other EAR or WAR or EJB-JAR,
you need to specify its JNDI name using an ejb-ref element in
the jboss-web.xml file. This is according to the JBoss Admin and Development
book, which you might want to consult as well.

Both references work only if both the referred EJB and the referencing
component are deployed in one JVM (modulo clustering). So this serves
as an example of JNDI names referring to objects in one JVM. By the way,
this is true in JBoss conventions with all names starting with java:.




---
This SF.Net email sponsored by: Free pre-built ASP.NET sites including
Data Reports, E-commerce, Portals, and Forums are available now.
Download today and enter to win an XBOX or Visual Studio .NET.
http://aspnet.click-url.com/go/psa0013ave/direct;at.aspnet_072303_01/01
___
JBoss-user mailing list
[EMAIL PROTECTED]
https://lists.sourceforge.net/lists/listinfo/jboss-user


Re: [JBoss-user] Client Access to JBoss EJBs

2003-07-28 Thread Wolfgang Helbig
Did you specify the role Administrator in the assembly descriptor
of your bean? Something like this:
...
security-role
descriptionAdministrator/description
role-nameAdministrator/role-name
/security-role

method-permission
role-nameAdministrator/role-name
method
ejb-namebarEJB/ejb-name
method-name*/method-name
/method
...



Or if you want methods to be accessed w/o permissions, you need to
specify it like this:
...
method-permission
unchecked/
method
ejb-namefooEJB/ejb-name
method-name*/method-name
/method
/method-permission
...


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=testUser
at sun.rmi.server.UnicastServerRef.dispatch(UnicastServerRef.java:292)

It seems I havn't got the
server side configured correctly. I configured my Beans to use the 
java:/jaas/test Security-Domain
and configured a part in login-config.xml that looks like this:

application-policy name=test
authentication
login-module 
code=org.jboss.security.auth.spi.UsersRolesLoginModule flag=required
module-option 
name=unauthenticatedIdentityguest/module-option
/login-module
/authentication

I created the two files users.properties and roles.properties in the 
jboss/server/default/conf directory with th folowing content:

roles.properties:
testUser=everyone,Administrator
guest=everyone

users.properties:
testUser=testPassword

As far as I can understand it. Any user should be in the role everyone 
the user I used for login should aditionaly be in the role Administrator.
Do you see any errors here ?

Chris

Nicholas wrote:

E

I am going to take a guess and say that
Anmeldekonfiguration kann nicht gefunden means that
the auth.conf file could not be found.

What did you set your java.security.auth.login.config
system property to ? Are you sure the file can be
found there ?

//Nicholas
  





---
This SF.Net email sponsored by: Free pre-built ASP.NET sites including
Data Reports, E-commerce, Portals, and Forums are available now.
Download today and enter to win an XBOX or Visual Studio .NET.
http://aspnet.click-url.com/go/psa0013ave/direct;at.aspnet_072303_01/01
___
JBoss-user mailing list
[EMAIL PROTECTED]
https://lists.sourceforge.net/lists/listinfo/jboss-user



---
This SF.Net email sponsored by: Free pre-built ASP.NET sites including
Data Reports, E-commerce, Portals, and Forums are available now.
Download today and enter to win an XBOX or Visual Studio .NET.
http://aspnet.click-url.com/go/psa0013ave/direct;at.aspnet_072303_01/01
___
JBoss-user mailing list
[EMAIL PROTECTED]
https://lists.sourceforge.net/lists/listinfo/jboss-user


[JBoss-user] No such method: OracleXADataSource.setjdbc(String)

2003-07-28 Thread Wolfgang Helbig
I need JBoss3.2.1 w/ tomcat to support the JAAS
DatabaseLoginModule with an underlying XA-Datasource. I
started by adding JAR, SAR and *.xml files to the
minimal configuration. During startup all works well,
(no ERRORS, and WARNINGS only regarding some tomcat
JAR file index). But when I try to login, I get this
in server.log:

2003-07-28 08:08:00,471 ERROR [org.jboss.security.auth.spi.DatabaseServerLogin
Module] Query failed

org.jboss.util.NestedSQLException: Could not find accessor on XADataSource: ;
- nested throwable: (java.lang.NoSuchMethodException: oracle.jdbc.xa.client.Or
acleXADataSource.setjdbc(java.lang.String)); - nested throwable: (org.jboss.re
source.JBossResourceException: Could not find accessor on XADataSource: ; - ne
sted throwable: (java.lang.NoSuchMethodException: oracle.jdbc.xa.client.Oracle
XADataSource.setjdbc(java.lang.String)))

In fact, javap -private reveals there is no such method 
setjdbc(String) in OracleXADataSource. So, I must have done something wrong.
I modified the oracle-xa-ds.xml file from examples/jca to make use of the thin
jdbc-driver instead of the oci8 driver. (We don't want to deploy oracle client software
on the jboss server.)

The application works for two years now with jboss 2.4, where we used the
minerva XA Wrapper instead of the oracle driver. But
the wrapper does not seem to have made it to jboss 3.2?

I'd really appreciate any help ...

TIA
Wolfgang

PS: my xa-ds file:

datasources
  xa-datasource
jndi-nameDataPool/jndi-name
track-connection-by-tx
 true
/track-connection-by-tx
isSameRM-override-value
  false
/isSameRM-override-value
xa-datasource-class
 oracle.jdbc.xa.client.OracleXADataSource
/xa-datasource-class
xa-datasource-property name=URL
  jdbc:oracle:thin:@localhost:1521:test
/xa-datasource-property
xa-datasource-property name=User
  user
/xa-datasource-property
xa-datasource-property name=Password
  x
/xa-datasource-property
exception-sorter-class-name
  org.jboss.resource.adapter.jdbc.vendor.OracleExceptionSorter
/exception-sorter-class-name
  /xa-datasource
  ...




---
This SF.Net email sponsored by: Free pre-built ASP.NET sites including
Data Reports, E-commerce, Portals, and Forums are available now.
Download today and enter to win an XBOX or Visual Studio .NET.
http://aspnet.click-url.com/go/psa0013ave/direct;at.aspnet_072303_01/01
___
JBoss-user mailing list
[EMAIL PROTECTED]
https://lists.sourceforge.net/lists/listinfo/jboss-user


[JBoss-user] Re: Problem with a deployed WAR

2003-07-27 Thread Wolfgang Helbig
Use the jnlp-servlet.jar v1.2 which seems to fix the bug.



---
This SF.Net email sponsored by: Free pre-built ASP.NET sites including
Data Reports, E-commerce, Portals, and Forums are available now.
Download today and enter to win an XBOX or Visual Studio .NET.
http://aspnet.click-url.com/go/psa0013ave/direct;at.aspnet_072303_01/01
___
JBoss-user mailing list
[EMAIL PROTECTED]
https://lists.sourceforge.net/lists/listinfo/jboss-user


RE: [JBoss-user] Simple Quick Question - how to change JSPs on th e fly

2003-07-27 Thread Wolfgang Helbig

How can a war file be deployed in a exploded way .. 

just create a directory named foo.ear and in the deploy directory,
and unpack your EAR file in foo.ear.
Then unpack the WAR file in a directory named foo.war in foo.ear.



---
This SF.Net email sponsored by: Free pre-built ASP.NET sites including
Data Reports, E-commerce, Portals, and Forums are available now.
Download today and enter to win an XBOX or Visual Studio .NET.
http://aspnet.click-url.com/go/psa0013ave/direct;at.aspnet_072303_01/01
___
JBoss-user mailing list
[EMAIL PROTECTED]
https://lists.sourceforge.net/lists/listinfo/jboss-user