xml-rpc module question
Fredrik Lundh
fredrik at effbot.org
Tue Dec 19 19:48:19 EST 2000
More information about the Python-list mailing list
Tue Dec 19 19:48:19 EST 2000
- Previous message (by thread): xml-rpc module question
- Next message (by thread): xml-rpc module question
- Messages sorted by: [ date ] [ thread ] [ subject ] [ author ]
Scott Hathaway wrote: > Thanks for the response. When I try your suggested code, here is the error > I get: > > C:\Projects\core>python core_client.py > Traceback (most recent call last): > File "core_client.py", line 5, in ? > print testing.CubeIt(3) > File "xmlrpclib.py", line 547, in __call__ > return self.__send(self.__name, args) > File "xmlrpclib.py", line 627, in __request > response = self.__transport.request( > AttributeError: 'int' object has no attribute 'request' you're passing in a bogus second argument to the xmlrpclib Server constructor. don't do that. </F>
- Previous message (by thread): xml-rpc module question
- Next message (by thread): xml-rpc module question
- Messages sorted by: [ date ] [ thread ] [ subject ] [ author ]
More information about the Python-list mailing list