forked from wildfly/wildfly
-
Notifications
You must be signed in to change notification settings - Fork 0
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Add juddi.properties for registry configuration
- Loading branch information
1 parent
c54f7bb
commit c786c19
Showing
6 changed files
with
117 additions
and
34 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,54 @@ | ||
# jUDDI Registry Properties (used by RegistryServer) | ||
# see http://www.juddi.org for more information | ||
|
||
# The UDDI Operator Name | ||
juddi.operatorName = jUDDI.org | ||
|
||
# The maximum name size and maximum number | ||
# of name elements allows in several of the | ||
# FindXxxx and SaveXxxx UDDI functions. | ||
juddi.maxNameLength=255 | ||
juddi.maxNameElementsAllowed=5 | ||
juddi.maxBusinessEntitiesPerUser=25 | ||
juddi.maxBusinessServicesPerBusiness=20 | ||
juddi.maxBindingTemplatesPerService=10 | ||
juddi.maxTModelsPerUser=100 | ||
juddi.maxRowsLimit=10 | ||
|
||
# jUDDI Authentication module to use | ||
juddi.auth = org.apache.juddi.auth.DefaultAuthenticator | ||
|
||
# jUDDI DataStore module currently to use | ||
juddi.dataStore = org.apache.juddi.datastore.jdbc.JDBCDataStore | ||
|
||
|
||
# jUDDI UUIDGen implementation to use | ||
juddi.uuidgen = org.apache.juddi.uuidgen.DefaultUUIDGen | ||
|
||
# jUDDI Monitor implementation to use | ||
#juddi.monitor = org.apache.juddi.monitor.jdbc.JDBCMonitor | ||
|
||
# jUDDI Cryptor implementation to use | ||
juddi.cryptor = org.apache.juddi.cryptor.DefaultCryptor | ||
|
||
# jUDDI Validator to use | ||
juddi.validator=org.apache.juddi.validator.DefaultValidator | ||
|
||
# jUDDI DataSource to use | ||
juddi.dataSource=java:jboss/datasources/ExampleDS | ||
|
||
|
||
# jUDDI Proxy Properties (used by RegistryProxy) | ||
juddi.proxy.adminURL = http://localhost:8080/juddi/admin | ||
juddi.proxy.inquiryURL = http://localhost:8080/juddi/inquiry | ||
juddi.proxy.publishURL = http://localhost:8080/juddi/publish | ||
juddi.proxy.transportClass = org.apache.juddi.proxy.AxisTransport | ||
juddi.proxy.securityProvider = com.sun.net.ssl.internal.ssl.Provider | ||
juddi.proxy.protocolHandler = com.sun.net.ssl.internal.www.protocol | ||
|
||
# jUDDI HTTP Proxy Properties | ||
juddi.httpProxySet = true | ||
juddi.httpProxyHost = proxy.viens.net | ||
juddi.httpProxyPort = 8000 | ||
juddi.httpProxyUserName = sviens | ||
juddi.httpProxyPassword = password |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters