diff --git a/plugins/network-elements/cisco-vnmc/src/com/cloud/network/cisco/CiscoVnmcConnectionImpl.java b/plugins/network-elements/cisco-vnmc/src/com/cloud/network/cisco/CiscoVnmcConnectionImpl.java index 6481a28a3a0..eeaa610d601 100644 --- a/plugins/network-elements/cisco-vnmc/src/com/cloud/network/cisco/CiscoVnmcConnectionImpl.java +++ b/plugins/network-elements/cisco-vnmc/src/com/cloud/network/cisco/CiscoVnmcConnectionImpl.java @@ -129,7 +129,7 @@ public class CiscoVnmcConnectionImpl implements CiscoVnmcConnection { throw new Exception("Failed to find Cisco VNMC XML file: " + filename); } - FileReader fr = new FileReader(xmlFilePath); + InputStreamReader fr = new InputStreamReader(new FileInputStream(xmlFilePath),"UTF-8"); BufferedReader br = new BufferedReader(fr); String xml = "";