Dear Wiki user,

You have subscribed to a wiki page or wiki category on "Juddi Wiki" for change 
notification.

The "Deploy_jUDDI_without_using_a_JNDI_DataSource" page has been changed by 
alexoree:
http://wiki.apache.org/juddi/Deploy_jUDDI_without_using_a_JNDI_DataSource

New page:
While we strongly recommend the DataSource support built into your application 
server it is possible to use an internal "jUDDI-managed" JDBC DataSource 
instead. This may come in handy if you're running jUDDI outside of a J2EE 
application server or servlet engine. 

To do this you'll need to set the juddi.useConnectionPool property in the 
juddi.properties file to "true" (don't include the quotation marks) and include 
several other properties for required to create the jUDDI-managed DataSource. 
These properties are show below with sample values for creating a jUDDI-managed 
DataSource to access a MySQL database named 'juddi' running on localhost:

   {{{

    #Required JDBC Driver properties
    juddi.useConnectionPool=true
    juddi.jdbcDriver=com.mysql.jdbc.Driver
    juddi.jdbcURL=jdbc:mysql://localhost/juddi
    juddi.jdbcUser=juddi
    juddi.jdbcPassword=juddi
    juddi.jdbcMaxActive=10
    juddi.jdbcMaxIdle=10
   }}}

---------------------------------------------------------------------
To unsubscribe, e-mail: [email protected]
For additional commands, e-mail: [email protected]

Reply via email to