Windows |
Windows |
Hashtable defaultLocation = new Hashtable(); defaultLocation.put("HardlinkServerURL",
"http://RFAServer:7001/enovia"); defaultLocation.put("ShadowUser",
"creator|"); defaultLocation.put("MappedDrive", "T:"); defaultLocation.put("StorePath",
"E:/stacks/STORE"); locationHardlinkServerDetailsMapping.put("STORE",defaultLocation); |
UNIX |
Hashtable defaultLocation = new Hashtable(); defaultLocation.put("HardlinkServerURL",
"http://RFAServer:7001/enovia"); defaultLocation.put("ShadowUser",
"creator|"); defaultLocation.put("MountPoint", "/data/mount"); defaultLocation.put("StorePath",
"E:/stacks/STORE"); locationHardlinkServerDetailsMapping.put("STORE",defaultLocation); |
Windows+UNIX |
Hashtable defaultLocation = new Hashtable(); defaultLocation.put("HardlinkServerURL",
"http://RFAServer:7001/enovia"); defaultLocation.put("ShadowUser",
"creator|"); defaultLocation.put("MappedDrive", "T"); defaultLocation.put("MountPoint",
"/data/mount"); //For UNIX clients only defaultLocation.put("StorePath",
"E:/stacks/STORE"); locationHardlinkServerDetailsMapping.put("STORE",defaultLocation); |
UNIX |
Windows |
Hashtable defaultLocation = new Hashtable(); defaultLocation.put("HardlinkServerURL",
"http://RFAServer:7001/enovia"); defaultLocation.put("Shadow User",
"creator|"); defaultLocation.put("MappedDrive", "T:"); defaultLocation.put("StorePath",
"/data/dsc"); locationHardlinkServerDetailsMapping.put("STORE",defaultLocation);
|
UNIX |
Hashtable defaultLocation = new Hashtable(); defaultLocation.put("HardlinkServerURL",
"http://RFAServer:7001/enovia"); defaultLocation.put("Shadow User",
"creator|"); defaultLocation.put("MountPoint", "/data/mount"); defaultLocation.put("StorePath",
"/data/dsc"); locationHardlinkServerDetailsMapping.put("STORE",
defaultLocation); |
Windows + UNIX |
Hashtable defaultLocation = new Hashtable(); defaultLocation.put("HardlinkServerURL",
"http://RFAServer:7001/enovia"); defaultLocation.put("Shadow User",
"creator|"); defaultLocation.put("MappedDrive", "T:");//For Windows
clients defaultLocation.put("MountPoint", "/data/mount");//For
UNIX clients only defaultLocation.put("StorePath", "/data/dsc"); locationHardlinkServerDetailsMapping.put("STORE",defaultLocation);
|