webMethods 7.1.2 comes with Derby installed. This is the Embedded Database Pool (using Embedded Database Driver). You can access it using org.apache.derby.jdbc.EmbeddedDataSource as the DataSource class. You will need to provide a Database name. Create a Java service as follows:
try {
// configDB is the database name
java.sql.DriverManager.getConnection(“jdbc:derby:configDB;create=true”);
} catch(Exception e) {
throw new ServiceException(e);
}
After executing this service, the data base will be created, in the wMHome\IntegrationServer\db folder.
Remember that when you use the embedded driver, the db is like a jar file loaded in the jvm, so there is no network calls. But it is also not cluster safe.
I only use this for configuration purposes.
You can use an external Derby DB too.
Hope this was helpful.
#Integration-Server-and-ESB#Adapters-and-E-Standards#webMethods