move example to different port master
authorLuke Kenneth Casson Leighton <lkcl@lkcl.net>
Tue, 4 May 2021 02:23:46 +0000 (03:23 +0100)
committerLuke Kenneth Casson Leighton <lkcl@lkcl.net>
Tue, 4 May 2021 02:23:46 +0000 (03:23 +0100)
README
jsonapp.py
testjsonrpc.py

diff --git a/README b/README
index 2e37e13f5ab8876064ff6428ee7ac1f1d23435b6..be6e13cf3ebfa7edf242af7c127f548e98bd0ba0 100644 (file)
--- a/README
+++ b/README
@@ -7,7 +7,10 @@ So far, this includes a basic HTTP server based on SimpleHTTPServer:
 and a JSONRPC test application:
     python jsonapp.py
 
-The latter is where it gets interesting.  Session cookies are automatically
+then run the jsonrpclib test:
+    python testjsonrpc.py
+
+The jsonapp.py is where it gets interesting.  Session cookies are automatically
 used to create application instances which are persistent in memory
 (TODO: drop them after an application-specified timeout of course...)
 
index 12781ba43447aa079ebd40116eb0f56d0636b6cc..9ae9d0f8268067826010ba2c5ef0c045e9b90ffd 100644 (file)
@@ -17,6 +17,6 @@ class MyApp(SimpleJSONRPCRequestHandler, BaseApp):
 httpd.set_debug(True)
 agent = HTTPServer()   
 agent.apps = dict({'/json': MyApp, '*': App})
-agent.start()
+agent.start(port=8089)
 multitask.run() 
 
index 47eae408e3ab58d2ecd938121a3b3c3198c558cd..e70f0d5a2ceb4ee15e2ca21d299241874dfbde50 100644 (file)
@@ -3,7 +3,7 @@ import jsonrpclib
 
 class TestJsolait(unittest.TestCase):
     def test_echo(self):
-        s = jsonrpclib.ServerProxy("http://127.0.0.1:8080/json", verbose=0)
+        s = jsonrpclib.Server("http://127.0.0.1:8089/json", verbose=0)
         reply = s.echo("hello")
         print reply
         #self.assert_(reply["result"] == "foo bar")