[JBoss-user] [JCA/JBoss] - Re: Propertes get not set on ManagedConnectionFactory

2004-11-18 Thread [EMAIL PROTECTED]
Fixed for 3.2.7

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

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


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


[JBoss-user] [JCA/JBoss] - Re: Propertes get not set on ManagedConnectionFactory

2004-11-16 Thread jgra
Hello

I'm currently using JBoss 3.2.6 and this problem still exist.
Any hint when it will be fixed?

Regards
Janusz

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

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


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


[JBoss-user] [JCA/JBoss] - Re: Propertes get not set on ManagedConnectionFactory

2004-09-20 Thread aonnen
Hello,

I've got the same problem with jboss-4.0.0RC1.

ra.xml :

 
resourceadapter-class
  net.java.bdbadapter.jca.BerkeleyDBResourceAdapter
/resourceadapter-class

outbound-resourceadapter
  connection-definition
managedconnectionfactory-class
net.java.bdbxmladapter.jca.BerkeleyDBXMLManagedConnectionFactory
/managedconnectionfactory-class

config-property
  The db environment home directory
  config-property-namedbEnvHome/config-property-name
  config-property-typejava.lang.String/config-property-type
/config-property

config-property
  
The db environment encryption password; the db environment is
encrypted via the Berkeley DB environment encryption mechanism if
and only if a non-empty encryption password is given.
  
  config-property-namedbEnvPassword/config-property-name
  config-property-typejava.lang.String/config-property-type
/config-property

connectionfactory-interface
  net.java.bdbxmladapter.BerkeleyDBXMLConnectionFactory
/connectionfactory-interface
connectionfactory-impl-class
  net.java.bdbxmladapter.jca.JCABerkeleyDBXMLConnectionFactory
/connectionfactory-impl-class

connection-interface
  net.java.bdbadapter.BerkeleyDBConnection
/connection-interface
connection-impl-class
  net.java.bdbadapter.jca.JCABerkeleyDBConnection
/connection-impl-class
  /connection-definition
  transaction-supportXATransaction/transaction-support
  authentication-mechanism
authentication-mechanism-type
  BasicPassword
/authentication-mechanism-type
credential-interface
  javax.resource.spi.security.PasswordCredential
/credential-interface
  /authentication-mechanism
  reauthentication-supporttrue/reauthentication-support
/outbound-resourceadapter

security-permission
  security-permission-spec
grant {
  permission java.lang.RuntimePermission getClassLoader;
};
  /security-permission-spec
/security-permission
  

setter/getter of dbEnvPassword and dbEnvHome exists in 
BerkeleyDBXMLManagedConnectionFactory. This exception is ever launched :

java.lang.IllegalArgumentException: The class 'class 
net.java.bdbxmladapter.jca.BerkeleyDBXMLManagedConnectionFactory' has no setter for 
config property 'dbEnvHome'
at 
org.jboss.resource.connectionmanager.RARDeployment.setManagedConnectionFactoryAttribute(RARDeployment.java:617)
at 
org.jboss.resource.connectionmanager.RARDeployment.setMcfProperties(RARDeployment.java:732)
at 
org.jboss.resource.connectionmanager.RARDeployment.startService(RARDeployment.java:566)
at 
org.jboss.system.ServiceMBeanSupport.jbossInternalStart(ServiceMBeanSupport.java:271)
at 
org.jboss.system.ServiceMBeanSupport.jbossInternalLifecycle(ServiceMBeanSupport.java:221)


any idea?

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

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


---
This SF.Net email is sponsored by: YOU BE THE JUDGE. Be one of 170
Project Admins to receive an Apple iPod Mini FREE for your judgement on
who ports your project to Linux PPC the best. Sponsored by IBM.
Deadline: Sept. 24. Go here: http://sf.net/ppc_contest.php
___
JBoss-user mailing list
[EMAIL PROTECTED]
https://lists.sourceforge.net/lists/listinfo/jboss-user


[JBoss-user] [JCA/JBoss] - Re: Propertes get not set on ManagedConnectionFactory

2004-09-20 Thread [EMAIL PROTECTED]
The problem is caused by your property names beginning with a lower case letter.
The -ds.xml deployer does not convert aProperty to setAProperty.

If you use AProperty rather than aProperty it will work.

Please report a bug at www.sf.net/projects/jboss to remind me to fix
the conversion of the first letter to upper case when accessing the setter
as per the JavaBean standard.

This problem also exists in jboss-3.2

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

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


---
This SF.Net email is sponsored by: YOU BE THE JUDGE. Be one of 170
Project Admins to receive an Apple iPod Mini FREE for your judgement on
who ports your project to Linux PPC the best. Sponsored by IBM.
Deadline: Sept. 24. Go here: http://sf.net/ppc_contest.php
___
JBoss-user mailing list
[EMAIL PROTECTED]
https://lists.sourceforge.net/lists/listinfo/jboss-user


[JBoss-user] [JCA/JBoss] - Re: Propertes get not set on ManagedConnectionFactory

2004-08-13 Thread sandeep_rajpathak
For the query on setResourceAdapter not getting called, the ManagedConnectionFactory 
implementation class should implement ResourceAdapterAssociation interface. Only then 
does the container call the setResourceAdapter method.

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

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


---
SF.Net email is sponsored by Shop4tech.com-Lowest price on Blank Media
100pk Sonic DVD-R 4x for only $29 -100pk Sonic DVD+R for only $33
Save 50% off Retail on Ink  Toner - Free Shipping and Free Gift.
http://www.shop4tech.com/z/Inkjet_Cartridges/9_108_r285
___
JBoss-user mailing list
[EMAIL PROTECTED]
https://lists.sourceforge.net/lists/listinfo/jboss-user


[JBoss-user] [JCA/JBoss] - Re: Propertes get not set on ManagedConnectionFactory

2004-08-13 Thread ralf.siedow
sandeep_rajpathak wrote : For the query on setResourceAdapter not getting called, 
the ManagedConnectionFactory implementation class should implement 
ResourceAdapterAssociation interface. Only then does the container call the 
setResourceAdapter method.
MyMCF implements the MCF-Iface as well as the ResourceAdapterAssociation.

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

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


---
SF.Net email is sponsored by Shop4tech.com-Lowest price on Blank Media
100pk Sonic DVD-R 4x for only $29 -100pk Sonic DVD+R for only $33
Save 50% off Retail on Ink  Toner - Free Shipping and Free Gift.
http://www.shop4tech.com/z/Inkjet_Cartridges/9_108_r285
___
JBoss-user mailing list
[EMAIL PROTECTED]
https://lists.sourceforge.net/lists/listinfo/jboss-user