. Fix to a couple of issues with virtualisation server URL and Port retrieval

. Fix to issue with current sandbox context AVMBrowseBean (when editing non-form content directly from modified files list)

git-svn-id: https://svn.alfresco.com/repos/alfresco-enterprise/alfresco/HEAD/root@4605 c4b6b30b-aa2e-2d43-bbcb-ca4b014f7261
This commit is contained in:
Kevin Roast
2006-12-14 13:34:35 +00:00
parent fae996c4b7
commit e8faec44c8
4 changed files with 71 additions and 33 deletions

View File

@@ -456,9 +456,10 @@ public class ClientConfigElement extends ConfigElementAdapter
if (iValue == null)
{
iValue = DEFAULT_VSERVER_PORT;
logger.warn("Virtualisation Server not started - reverting to default port: " + value);
logger.warn("Virtualisation Server not started - reverting to default port: " + iValue);
}
this.wcmPort.put(iValue.toString());
value = iValue.toString();
this.wcmPort.put(value);
}
return value;
}