From bf259d2e565c97323b095630b4ab600ef722b29d Mon Sep 17 00:00:00 2001 From: Paul RASCLE Date: Thu, 25 Jan 2018 12:02:30 +0100 Subject: [PATCH] use nativeCharCodeSet = UTF-8 in omniORB config allows accentuated strings in scripts --- bin/ORBConfigFile.py | 1 + 1 file changed, 1 insertion(+) diff --git a/bin/ORBConfigFile.py b/bin/ORBConfigFile.py index 0769cd6c1..c9447f8fa 100644 --- a/bin/ORBConfigFile.py +++ b/bin/ORBConfigFile.py @@ -64,6 +64,7 @@ def writeORBConfigFile(path, host, port, kwargs={}): orbdata.append("%sgiopMaxMsgSize = %s # 2 GBytes"%(prefix,GIOP_MaxMsgSize)) orbdata.append("%straceLevel = 0 # critical errors only"%(prefix)) orbdata.append("%smaxGIOPConnectionPerServer = 500 # to allow containers parallel launch"%(prefix)) + orbdata.append("%snativeCharCodeSet = UTF-8"%(prefix)) orbdata.append("") with open(omniorb_config, "w") as f: -- 2.39.2