2 # Copyright (C) 2006-2019 CEA/DEN, EDF R&D
4 # This library is free software; you can redistribute it and/or
5 # modify it under the terms of the GNU Lesser General Public
6 # License as published by the Free Software Foundation; either
7 # version 2.1 of the License, or (at your option) any later version.
9 # This library is distributed in the hope that it will be useful,
10 # but WITHOUT ANY WARRANTY; without even the implied warranty of
11 # MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU
12 # Lesser General Public License for more details.
14 # You should have received a copy of the GNU Lesser General Public
15 # License along with this library; if not, write to the Free Software
16 # Foundation, Inc., 59 Temple Place, Suite 330, Boston, MA 02111-1307 USA
18 # See http://www.salome-platform.org/ or email : webmaster.salome@opencascade.com
21 import xmlrpc.client,sys
25 <methodName>echo</methodName>
27 <param><value>hello, world</value></param>
28 <param><value><double>3.5</double></value></param>
29 <param><value><string>coucou</string></value></param>
37 with open("input",'r') as f:
42 """Wrapper for objrefs """
43 def __init__(self,data=None):
46 return self.data or ""
48 # __cmp__ is not defined in Python 3 : strict ordering
49 def __le__(self, other):
50 if isinstance(other, Binary):
52 return self.data <= other
53 def __lt__(self, other):
54 if isinstance(other, Binary):
56 return self.data < other
57 def __ge__(self, other):
58 if isinstance(other, Binary):
60 return self.data >= other
61 def __gt__(self, other):
62 if isinstance(other, Binary):
64 return self.data > other
65 def __eq__(self, other):
66 if isinstance(other, Binary):
68 return self.data == other
69 def __ne__(self, other):
70 if isinstance(other, Binary):
72 return self.data != other
74 def decode(self, data):
77 def encode(self, out):
78 out.write("<value><objref>")
79 out.write(self.data or "")
80 out.write("</objref></value>\n")
82 xmlrpc.client.WRAPPERS=xmlrpc.client.WRAPPERS+(Objref,)
84 def end_objref(self,data):
85 self.append(Objref(data))
88 xmlrpc.client.Unmarshaller.end_objref=end_objref
89 xmlrpc.client.Unmarshaller.dispatch["objref"]=end_objref
91 params, method = xmlrpc.client.loads(data)
96 response = (response,)
98 # report exception back to server
99 response = xmlrpc.client.dumps( xmlrpc.client.Fault(1, "%s:%s" % sys.exc_info()[:2]))
101 response = xmlrpc.client.dumps( response, methodresponse=1)
104 with open("output",'w') as f: