public void findServicesByClassification() throws ConfigurationException {
JAXRConnectionFactory jaxrConnectionFactory = new JAXRConnectionFactory();
Connection connection = jaxrConnectionFactory.getConnection();
try {
// Get registry service and business query manager
RegistryService rs = connection.getRegistryService();
BusinessQueryManager bqm = rs.getBusinessQueryManager();
BusinessLifeCycleManager blm = rs.getBusinessLifeCycleManager();
ClassificationScheme classificationScheme = bqm.findClassificationSchemeByName(null, "uddi-org:general_keywords");
Classification classification = blm.createClassification(classificationScheme,
"Test transformation service", "transformation");
Collection<Classification> classifications = new ArrayList<Classification>();
classifications.add(classification);