Ticket #313: test-313.py

File test-313.py, 230 bytes (added by thijs, 5 months ago)

test client with logging enabled

Line 
1import logging
2logging.basicConfig()
3
4from pyamf.remoting.client import RemotingService
5
6gw = RemotingService('http://localhost:3636/')
7gw.logger.setLevel(logging.DEBUG)
8
9service = gw.getService('Hello')
10
11print service.sayHello()