Madhu Garimilla [https://community.jboss.org/people/madhu.garimilla] created 
the discussion

"Re: How to add a resource-adapter programatically?"

To view the discussion, visit: https://community.jboss.org/message/825280#825280

--------------------------------------------------------------
Hi Ramesh, I tried the following 2 approaches.

*Approach 1:*
With jboss 7.1.1 and teiid 8.1 , I tried to add a file data source using the 
below code and it resulted in an exception which i mentioned in my earlier 
post, attached the log(jboss_711_Teiid_81.log). 

Admin admin = 
AdminFactory.getInstance().createAdmin("localhost",9999,"admin","admin".toCharArray());
final Properties p = new Properties();
p.setProperty("class-name","org.teiid.resource.adapter.file.FileManagedConnectionFactory");
p.setProperty("pool-name", "marketdata-file");
p.setProperty("max-pool-size", "4");
p.setProperty("enabled", "true");
p.setProperty("use-java-context", "true");
p.setProperty("ParentDirectory", "../data/");
p.setProperty("AllowParentPaths", "true");
admin.createDataSource("java:/marketdata-file","teiid-connector-file.rar",p);

*Approach 2:*
With jboss-eap-6.1 and teiid 8.4,I tried to add a file data source using the 
below code and it resulted in an exception in my test case, attached the log 
(jboss_eap_61_Teiid_81.log)

Admin admin = 
AdminFactory.getInstance().createAdmin("localhost",9999,"admin","admin".toCharArray());
final Properties p = new Properties();
p.setProperty("class-name","org.teiid.resource.adapter.file.FileManagedConnectionFactory");
p.setProperty("pool-name", "marketdata-file");
p.setProperty("max-pool-size", "4");
p.setProperty("enabled", "true");
p.setProperty("use-java-context", "true");
p.setProperty("ParentDirectory", "../data/");
p.setProperty("AllowParentPaths", "true");
admin.createDataSource("java:/marketdata-file", "file", p);
--------------------------------------------------------------

Reply to this message by going to Community
[https://community.jboss.org/message/825280#825280]

Start a new discussion in JNDI and Naming at Community
[https://community.jboss.org/choose-container!input.jspa?contentType=1&containerType=14&container=2083]

_______________________________________________
jboss-user mailing list
jboss-user@lists.jboss.org
https://lists.jboss.org/mailman/listinfo/jboss-user

Reply via email to