From 8f0e8cfe1bd86d36bb5c683db439d0d1d832d6e1 Mon Sep 17 00:00:00 2001 From: eap Date: Mon, 10 Jul 2006 12:09:37 +0000 Subject: [PATCH] fix bug 10560: set GIOP message size --- bin/orbmodule.py | 2 ++ 1 file changed, 2 insertions(+) diff --git a/bin/orbmodule.py b/bin/orbmodule.py index 52012f91a..86e67d6bf 100755 --- a/bin/orbmodule.py +++ b/bin/orbmodule.py @@ -52,6 +52,8 @@ class NamingServer(Server): class client: def __init__(self): + #set GIOP message size for bug 10560: impossible to get field values in TUI mode + sys.argv.extend(["-ORBgiopMaxMsgSize", "104857600"]) ## = 100 * 1024 * 1024 # Initialise the ORB self.orb=CORBA.ORB_init(sys.argv, CORBA.ORB_ID) # Initialise the Naming Service -- 2.39.2