source: products/PloneSMSCommunicator/trunk/tests/testServer.py @ 2284

Last change on this file since 2284 was 1, checked in by myroslav, 18 years ago

Building directory structure

File size: 374 bytes
Line 
1import SimpleHTTPServer
2import BaseHTTPServer
3
4class SimpleXiamHandler(SimpleHTTPServer.SimpleHTTPRequestHandler):
5    def do_POST(self):
6        self.send_response(200,'OK')
7        cl = int(self.headers['content-length'])
8        print self.rfile.read(cl)
9
10
11httpd = BaseHTTPServer.HTTPServer(("", 10010), SimpleXiamHandler)
12
13print 'listen port 10010'
14httpd.serve_forever()
Note: See TracBrowser for help on using the repository browser.