Collection serviceCollection = services.values();
temp += "<h2>" + "Deployed services" + "</h2>";
for (Iterator it = serviceCollection.iterator(); it.hasNext();) {
Map operations;
Collection operationsList;
ServiceDescription axisService = (ServiceDescription) it.next();
operations = axisService.getOperations();
operationsList = operations.values();
temp += "<h3>" + axisService.getName().getLocalPart() + "</h3>";
if (operationsList.size() > 0) {
temp += "Available operations <ul>";
for (Iterator iterator1 = operationsList.iterator();
iterator1.hasNext();
) {