damn enter key Here's another post for the blog. cough cough Kurt cough ;)
A quick how-to for adding new properties entries into Juddi, from a best practices perspective. Step 1) Add your property to the actual property files I simply did a file search for juddiv3.properties and only modified the ones that were under version control. As of 3.1.4, the require files are at juddi-core-openjpa\src\test\resources juddiv3-war/src/main/webapp/WEB-INF/classes juddiv3-samples/src/main/webapp/WEB-INF/classes Simply add a new line towards the bottom with whatever you need. Step 2) Edit the interface class at trunk\juddi-core\src\main\java\org\apache\juddi\config\Property.java Add your property name as a constant string public final static String MY_NEW_PROPERTY ="juddi.myproperty"; Step 3) Use it using the Apache Commons Configuration API. Example: AppConfig.getConfiguration().getInt(Property.MY_NEW_PROPERTY); Be sure to change it to the correct data type. Step 4) Make new Issue in the issue tracker. Then make a svn patch, attach it and finally, convince someone that it's important enough to be added to the baseline.
