You are viewing a plain text version of this content. The canonical link for it is here.
Posted to java-dev@axis.apache.org by sa...@apache.org on 2007/03/26 18:53:50 UTC

svn commit: r522571 - in /webservices/axis2/trunk/java/modules/webapp: ListServiceGroup.jsp globalModules.jsp

Author: sandakith
Date: Mon Mar 26 09:53:49 2007
New Revision: 522571

URL: http://svn.apache.org/viewvc?view=rev&rev=522571
Log:
fix the brocken service group listing and global modules display in JSPs

Modified:
    webservices/axis2/trunk/java/modules/webapp/ListServiceGroup.jsp
    webservices/axis2/trunk/java/modules/webapp/globalModules.jsp

Modified: webservices/axis2/trunk/java/modules/webapp/ListServiceGroup.jsp
URL: http://svn.apache.org/viewvc/webservices/axis2/trunk/java/modules/webapp/ListServiceGroup.jsp?view=diff&rev=522571&r1=522570&r2=522571
==============================================================================
--- webservices/axis2/trunk/java/modules/webapp/ListServiceGroup.jsp (original)
+++ webservices/axis2/trunk/java/modules/webapp/ListServiceGroup.jsp Mon Mar 26 09:53:49 2007
@@ -54,9 +54,9 @@
 <I>Engaged modules</I><ul>
     <%
         for (int i = 0; i < modules.size(); i++) {
-            QName modulDesc = (QName) modules.get(i);
+            String modulDesc = (String) modules.get(i);
     %>
-    <li><%=modulDesc.getLocalPart()%></li>
+    <li><%=modulDesc%></li>
     <%
         }
     %></ul><%

Modified: webservices/axis2/trunk/java/modules/webapp/globalModules.jsp
URL: http://svn.apache.org/viewvc/webservices/axis2/trunk/java/modules/webapp/globalModules.jsp?view=diff&rev=522571&r1=522570&r2=522571
==============================================================================
--- webservices/axis2/trunk/java/modules/webapp/globalModules.jsp (original)
+++ webservices/axis2/trunk/java/modules/webapp/globalModules.jsp Mon Mar 26 09:53:49 2007
@@ -32,8 +32,8 @@
          request.getSession().setAttribute(Constants.MODULE_MAP,null);
          if(moduleCol != null && moduleCol.size() > 0) {
              for (Iterator iterator = moduleCol.iterator(); iterator.hasNext();) {
-                 QName axisOperation = (QName) iterator.next();
-                 modulename = axisOperation.getLocalPart();
+                 String axisOperation = (String) iterator.next();
+                 modulename = axisOperation;
 		if (!wroteUL){
 			wroteUL = true;
 %>



---------------------------------------------------------------------
To unsubscribe, e-mail: axis-cvs-unsubscribe@ws.apache.org
For additional commands, e-mail: axis-cvs-help@ws.apache.org