You are viewing a plain text version of this content. The canonical link for it is here.
Posted to commits@juddi.apache.org by tc...@apache.org on 2009/04/08 06:11:23 UTC

svn commit: r762839 - /webservices/juddi/branches/v3_trunk/juddi-cxf/src/main/webapp/index.jsp

Author: tcunning
Date: Tue Apr  7 16:34:23 2009
New Revision: 762839

URL: http://svn.apache.org/viewvc?rev=762839&view=rev
Log:
JUDDI-166
Use File.separator rather than "/"

Modified:
    webservices/juddi/branches/v3_trunk/juddi-cxf/src/main/webapp/index.jsp

Modified: webservices/juddi/branches/v3_trunk/juddi-cxf/src/main/webapp/index.jsp
URL: http://svn.apache.org/viewvc/webservices/juddi/branches/v3_trunk/juddi-cxf/src/main/webapp/index.jsp?rev=762839&r1=762838&r2=762839&view=diff
==============================================================================
--- webservices/juddi/branches/v3_trunk/juddi-cxf/src/main/webapp/index.jsp (original)
+++ webservices/juddi/branches/v3_trunk/juddi-cxf/src/main/webapp/index.jsp Tue Apr  7 16:34:23 2009
@@ -18,7 +18,7 @@
 String errMsg = "";
 if (request.getParameter("install") != null) {
     try {
-        Install.install(request.getRealPath("WEB-INF\\install"), request.getParameter("rootPartition"), true);
+        Install.install(request.getRealPath("WEB-INF" + java.io.File.separator + "install"), request.getParameter("rootPartition"), true);
     }
     catch (JAXBException je) {
         errMsg = "JAXBException occurred attempting to install jUDDI:  " + je.getMessage();
@@ -136,4 +136,4 @@
 </table>
 
 </body>
-</html>
\ No newline at end of file
+</html>



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