You are viewing a plain text version of this content. The canonical link for it is here.
Posted to axis-cvs@ws.apache.org by de...@apache.org on 2005/12/20 05:53:48 UTC

svn commit: r357909 - in /webservices/axis2/trunk/java/modules/core/webapp: LeftFrame.jsp ListServiceGroup.jsp RemoveService.jsp SelectService.jsp ServiceParaEdit.jsp engagingtoaservice.jsp listGroupService.jsp listService.jsp listServices.jsp

Author: deepal
Date: Mon Dec 19 20:53:35 2005
New Revision: 357909

URL: http://svn.apache.org/viewcvs?rev=357909&view=rev
Log:
fixing typos and compile errors

Modified:
    webservices/axis2/trunk/java/modules/core/webapp/LeftFrame.jsp
    webservices/axis2/trunk/java/modules/core/webapp/ListServiceGroup.jsp
    webservices/axis2/trunk/java/modules/core/webapp/RemoveService.jsp
    webservices/axis2/trunk/java/modules/core/webapp/SelectService.jsp
    webservices/axis2/trunk/java/modules/core/webapp/ServiceParaEdit.jsp
    webservices/axis2/trunk/java/modules/core/webapp/engagingtoaservice.jsp
    webservices/axis2/trunk/java/modules/core/webapp/listGroupService.jsp
    webservices/axis2/trunk/java/modules/core/webapp/listService.jsp
    webservices/axis2/trunk/java/modules/core/webapp/listServices.jsp

Modified: webservices/axis2/trunk/java/modules/core/webapp/LeftFrame.jsp
URL: http://svn.apache.org/viewcvs/webservices/axis2/trunk/java/modules/core/webapp/LeftFrame.jsp?rev=357909&r1=357908&r2=357909&view=diff
==============================================================================
--- webservices/axis2/trunk/java/modules/core/webapp/LeftFrame.jsp (original)
+++ webservices/axis2/trunk/java/modules/core/webapp/LeftFrame.jsp Mon Dec 19 20:53:35 2005
@@ -154,7 +154,7 @@
            
        </td>
        <td>
-         <a href="removeService">Undeploy axisService</a>
+         <a href="removeService">Undeploy Service</a>
        </td>
     </tr>
     <tr>
@@ -175,7 +175,7 @@
        &nbsp;&nbsp;&nbsp;&nbsp;
        </td>
        <td>
-         <a href="listContexts">View Hierachy</a>
+         <a href="listContexts">View Hierarchy</a>
        </td>
     </tr>
 </table>

Modified: webservices/axis2/trunk/java/modules/core/webapp/ListServiceGroup.jsp
URL: http://svn.apache.org/viewcvs/webservices/axis2/trunk/java/modules/core/webapp/ListServiceGroup.jsp?rev=357909&r1=357908&r2=357909&view=diff
==============================================================================
--- webservices/axis2/trunk/java/modules/core/webapp/ListServiceGroup.jsp (original)
+++ webservices/axis2/trunk/java/modules/core/webapp/ListServiceGroup.jsp Mon Dec 19 20:53:35 2005
@@ -20,7 +20,7 @@
     <%
         while (axisServiceIter.hasNext()){
             AxisService axisService = (AxisService) axisServiceIter.next();
-            String serviceName = axisService.getName().getLocalPart();
+            String serviceName = axisService.getName();
     %>
     <li><font color="blue"><a href="listGroupService.jsp?serviceName=<%=serviceName%>">
         <%=serviceName%></a></font></li>

Modified: webservices/axis2/trunk/java/modules/core/webapp/RemoveService.jsp
URL: http://svn.apache.org/viewcvs/webservices/axis2/trunk/java/modules/core/webapp/RemoveService.jsp?rev=357909&r1=357908&r2=357909&view=diff
==============================================================================
--- webservices/axis2/trunk/java/modules/core/webapp/RemoveService.jsp (original)
+++ webservices/axis2/trunk/java/modules/core/webapp/RemoveService.jsp Mon Dec 19 20:53:35 2005
@@ -25,8 +25,8 @@
                        Collection col = services.values();
                        for (Iterator iterator = col.iterator(); iterator.hasNext();) {
                            AxisService axisServices = (AxisService) iterator.next();
-                   %> <option value="<%=axisServices.getName().getLocalPart()%>">
-                           <%=axisServices.getName().getLocalPart()%></option> <%
+                   %> <option value="<%=axisServices.getName()%>">
+                           <%=axisServices.getName()%></option> <%
                        }
                            %>
                   </td>

Modified: webservices/axis2/trunk/java/modules/core/webapp/SelectService.jsp
URL: http://svn.apache.org/viewcvs/webservices/axis2/trunk/java/modules/core/webapp/SelectService.jsp?rev=357909&r1=357908&r2=357909&view=diff
==============================================================================
--- webservices/axis2/trunk/java/modules/core/webapp/SelectService.jsp (original)
+++ webservices/axis2/trunk/java/modules/core/webapp/SelectService.jsp Mon Dec 19 20:53:35 2005
@@ -66,7 +66,7 @@
                 Collection serviceCol =  services.values();
                 for (Iterator iterator = serviceCol.iterator(); iterator.hasNext();) {
                     AxisService axisService = (AxisService)iterator.next();
-                    String serviceName = axisService.getName().getLocalPart();
+                    String serviceName = axisService.getName();
             %> <option  align="left" value="<%=serviceName%>"><%=serviceName%></option>
              <%
                 }

Modified: webservices/axis2/trunk/java/modules/core/webapp/ServiceParaEdit.jsp
URL: http://svn.apache.org/viewcvs/webservices/axis2/trunk/java/modules/core/webapp/ServiceParaEdit.jsp?rev=357909&r1=357908&r2=357909&view=diff
==============================================================================
--- webservices/axis2/trunk/java/modules/core/webapp/ServiceParaEdit.jsp (original)
+++ webservices/axis2/trunk/java/modules/core/webapp/ServiceParaEdit.jsp Mon Dec 19 20:53:35 2005
@@ -19,7 +19,7 @@
             <tr>
                  <td colspan="2" ><b>
            <%
-                 String servicName =  axisService.getName().getLocalPart();
+                 String servicName =  axisService.getName();
                  %>Service Parameters :: <%=servicName%>
                  </b></td>
              </tr>

Modified: webservices/axis2/trunk/java/modules/core/webapp/engagingtoaservice.jsp
URL: http://svn.apache.org/viewcvs/webservices/axis2/trunk/java/modules/core/webapp/engagingtoaservice.jsp?rev=357909&r1=357908&r2=357909&view=diff
==============================================================================
--- webservices/axis2/trunk/java/modules/core/webapp/engagingtoaservice.jsp (original)
+++ webservices/axis2/trunk/java/modules/core/webapp/engagingtoaservice.jsp Mon Dec 19 20:53:35 2005
@@ -53,7 +53,7 @@
                 Collection serviceCol =  services.values();
                 for (Iterator iterator = serviceCol.iterator(); iterator.hasNext();) {
                     AxisService axisService = (AxisService)iterator.next();
-                    String serviceName = axisService.getName().getLocalPart();
+                    String serviceName = axisService.getName();
             %> <option  align="left" value="<%=serviceName%>"><%=serviceName%></option>
              <%
                 }

Modified: webservices/axis2/trunk/java/modules/core/webapp/listGroupService.jsp
URL: http://svn.apache.org/viewcvs/webservices/axis2/trunk/java/modules/core/webapp/listGroupService.jsp?rev=357909&r1=357908&r2=357909&view=diff
==============================================================================
--- webservices/axis2/trunk/java/modules/core/webapp/listGroupService.jsp (original)
+++ webservices/axis2/trunk/java/modules/core/webapp/listGroupService.jsp Mon Dec 19 20:53:35 2005
@@ -26,7 +26,7 @@
                  serviceName = axisService.getName().getLocalPart();
      %><hr><h2><font color="blue"><a href="<%=prifix + axisService.getName().getLocalPart()%>?wsdl"><%=serviceName%></a></font></h2>
 <font color="blue">Service EPR : <font color="black"><%=prifix + axisService.getName().getLocalPart()%></font>
-    <h4>Service Description : <font color="black"><%=axisService.getAxisServiceName()%></h4>
+    <h4>Service Description : <font color="black"><%=axisService.getServiceDescription()%></h4>
     <%
         Collection engagdeModules = axisService.getEngagedModules();
         String moduleName = "";

Modified: webservices/axis2/trunk/java/modules/core/webapp/listService.jsp
URL: http://svn.apache.org/viewcvs/webservices/axis2/trunk/java/modules/core/webapp/listService.jsp?rev=357909&r1=357908&r2=357909&view=diff
==============================================================================
--- webservices/axis2/trunk/java/modules/core/webapp/listService.jsp (original)
+++ webservices/axis2/trunk/java/modules/core/webapp/listService.jsp Mon Dec 19 20:53:35 2005
@@ -54,10 +54,10 @@
                  AxisService axisService = (AxisService) iterator.next();
                  operations = axisService.getOperations();
                  operationsList = operations.values();
-                 serviceName = axisService.getName().getLocalPart();
-     %><h2><font color="blue"><a href="<%=prifix + axisService.getName().getLocalPart()%>?wsdl"><%=serviceName%></a></font></h2>
-     <font color="blue">Service EPR : <font color="black"><%=prifix + axisService.getName().getLocalPart()%></font>
-     <h4>Service Description : <font color="black"><%=axisService.getAxisServiceName()%></h4>
+                 serviceName = axisService.getName();
+     %><h2><font color="blue"><a href="<%=prifix + axisService.getName()%>?wsdl"><%=serviceName%></a></font></h2>
+     <font color="blue">Service EPR : <font color="black"><%=prifix + axisService.getName()%></font>
+     <h4>Service Description : <font color="black"><%=axisService.getServiceDescription()%></h4>
            <%
                  Collection engagdeModules = axisService.getEngagedModules();
                  String moduleName = "";

Modified: webservices/axis2/trunk/java/modules/core/webapp/listServices.jsp
URL: http://svn.apache.org/viewcvs/webservices/axis2/trunk/java/modules/core/webapp/listServices.jsp?rev=357909&r1=357908&r2=357909&view=diff
==============================================================================
--- webservices/axis2/trunk/java/modules/core/webapp/listServices.jsp (original)
+++ webservices/axis2/trunk/java/modules/core/webapp/listServices.jsp Mon Dec 19 20:53:35 2005
@@ -50,10 +50,10 @@
             AxisService axisService = (AxisService) iterator.next();
             operations = axisService.getOperations();
             operationsList = operations.values();
-            serviceName = axisService.getName().getLocalPart();
-            %><h2><font color="blue"><a href="<%=prifix + axisService.getName().getLocalPart()%>?wsdl"><%=serviceName%></a></font></h2>
-           <font color="blue">Service EPR : <font color="black"><%=prifix + axisService.getName().getLocalPart()%></font>
-           <h4>Service Description : <font color="black"><%=axisService.getAxisServiceName()%></h4>
+            serviceName = axisService.getName();
+            %><h2><font color="blue"><a href="<%=prifix + axisService.getName()%>?wsdl"><%=serviceName%></a></font></h2>
+           <font color="blue">Service EPR : <font color="black"><%=prifix + axisService.getName()%></font>
+           <h4>Service Description : <font color="black"><%=axisService.getServiceDescription()%></h4>
            <%
             if (operationsList.size() > 0) {
                 %><i>Available operations</i><%