Hi all,

I am referring to FAQ "Setting Database Connection" here: https://cwiki.apache.org/CAY/setting-database-connection.html

Firstly, in 3.1 the SharedConfiguration no longer exists, so we have to use the ServerRuntime instead:

    ServerRuntime runtime = ...;
    DataDomain domain = runtime.getDataDomain();
    DataNode node = domain.getNode("DB1");
    node.setDataSource(dataSource);

However, this setting does not have the desired effect. When the connection to the database is established, still the original definition from the config file is taken.

I have traced down this problem and found that the DataNode has a DbAdapter, which has its own DataSource object. This gets set in the ServerRuntime.getDataDomain() call above.

The only way I found around this is by explicitly creating a new adapter with my data source:

    node.setAdapter(new AutoAdapter(dataSource));

However, the AutoAdapter default constructor is deprecated, and I could not find an easy way to use the recommended method with a DbAdapterFactory.

Any ideas?

Thanks for any hint.

Wernke




--
- - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - -
MOIS Helpdesk at ESA/ESOC - B106
internal phone: "MOIS Helpdsk" or 62066
email: [email protected] , [email protected]
- - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - -
Wernke zur Borg
Software Engineer, Rhea System S.A.,
MOIS Support Team, European Space Operations Centre
Robert Bosch Str 5, 64293 Darmstadt, Germany
Tel: +49-6151-90-2344 Fax: +49-6151-90-2908

Reply via email to