Checked in the changes for bug 535874.

This commit is contained in:
bindumathi 2009-11-09 06:00:40 +00:00
parent 2c88f4a775
commit 00674cde8e
1 changed files with 4 additions and 1 deletions

View File

@ -202,7 +202,10 @@ public final class Rpc extends javax.servlet.http.HttpServlet implements javax.s
//
// First check if it has been specified via a system property
ServletContext context = config.getServletContext();
m_appFolderPath = context.getRealPath(File.separator);
// m_appFolderPath = context.getRealPath(File.separator);
m_appFolderPath = context.getRealPath("/");
if(!m_appFolderPath.endsWith(File.separator)) m_appFolderPath = m_appFolderPath + File.separator;
m_configFolderPath = System.getProperty("com.novell.casa.authtoksvc.config");
if (m_configFolderPath == null)
{