!!!SimpleXMLRPCServer *投稿者: みゅ *カテゴリ: Python *優先度: 普通 *状態: 完了 *日時: 2010年06月18日 20時21分54秒 //{{bugstate}} !!内容 *メモ *[Re: XPL-RPC(SimpleXMLRPCServer)|http://www.python.jp/pipermail/python-ml-jp/2006-May/003561.html] **同じような現象. **hostsは正しく設定しましょう. !!リモートから終了可能 import SimpleXMLRPCServer running = True def finis(): global running running = False return 1 server = SimpleXMLRPCServer.SimpleXMLRPCServer(('127.0.0.1', 8000)) server.register_function(finis) while running: server.handle_request() !!コメント //{{comment}}