Hi all Just wondering what to do next. I need a working xmlrpc library for a project I am working on but the latest version of pharo-xmlrpc fails due to a DoesNotUnderstand #contentString error. This is just testing the samples provided as below:
| url proxy r | url := Url absoluteFromText: 'http://snipplr.com/xml-rpc.php'. proxy := XMLRPCProxy new url: url. r := proxy invokeMethod: 'languages.list' withArgs: #('Your snipplr key'). r := proxy invokeMethod: 'user.checkkey' withArgs: #('Your snipplr key'). r := proxy invokeMethod: 'snippet.list' withArgs: #('Your snipplr key' 'pharo'). "To get a snippet you don't need key, but the Snippet ID" r := proxy invokeMethod: 'snippet.get' withArgs: #('41365'). Any ideas to get this working? I see that someone mentioned that this may be a missing method in the Dictionary object. Regards Seamus -- View this message in context: http://forum.world.st/pharo-xmlrpc-samples-fail-in-Pharo-1-3-tp4042738p4042738.html Sent from the Pharo Smalltalk mailing list archive at Nabble.com.
