19 p = Popen(appDict, stdin=PIPE, stdout=PIPE, stderr=PIPE)
20 output, err = p.communicate(b
"input data that is passed to subprocess' stdin")
21 return output, err, p.returncode
30server = SimpleXMLRPCServer((
"0.0.0.0", 10001),requestHandler=RequestHandler)