[Zope-dev] XMLRPC client and Zope 2.6.0

2003-01-24 Thread Gilles Lenfant
Hi, Is there something wrong with XML-RPC client and Zope 2.6.0 ? Things that worked perfectly with Zope 2.5.1 don't work any more ! Even when I make a hello world Python script handler like ## Script (Python) xtest ##bind container=container ##bind context=context ##bind namespace= ##bind

Re: [Zope-dev] XMLRPC client and Zope 2.6.0

2003-01-24 Thread Andy McKay
s = Server('http://localhost') try: s = Server('http://localhost/') And read the xmlrpclib.py docs where it automatically appends RPC2 if the url doesnt end in a slash. -- Andy McKay ___ Zope-Dev maillist - [EMAIL PROTECTED]

Re: [Zope-dev] XMLRPC client and Zope 2.6.0

2003-01-24 Thread Dieter Maurer
Gilles Lenfant wrote at 2003-1-24 17:24 +0100: ... from xmlrpclib import Server s = Server('http://localhost') Append / to your URL. I.e. use: s = Server('http://localhost/') again. Resource: RPC2\nPOST The RC2 not found it an indication that you just specified the