SOAPpy and http authentication

2006-01-03 Thread [EMAIL PROTECTED]
Note: this is in reply to a message from August 2 which i found searching for help on my own problem. I couldn't seem to reply to it, but a friend suggested that simply using the same subject would put it in that thread. In case he's wrong, i quoted the previous comments . Odd-R. wrote: > I use t

Re: SOAPpy and http authentication

2005-08-02 Thread Oliver Andrich
2 Aug 2005 11:38:51 GMT, Lutz Horn <[EMAIL PROTECTED]>: > On 2005-08-02, Odd-R. <[EMAIL PROTECTED]> wrote: > > from SOAPpy import WSDL > > from SOAPpy import URLopener > > url= ' http://someserver/somewebservice > > url1 = URLopener.URLopener(username='user',passwd='pass') > > server=WSDL.Proxy(url

Re: SOAPpy and http authentication

2005-08-02 Thread Lutz Horn
On 2005-08-02, Odd-R. <[EMAIL PROTECTED]> wrote: > from SOAPpy import WSDL > from SOAPpy import URLopener > url= ' http://someserver/somewebservice > url1 = URLopener.URLopener(username='user',passwd='pass') > server=WSDL.Proxy(url1.open(url)) Is it possible to call WSDL.Proxy with a String? Then

SOAPpy and http authentication

2005-08-02 Thread Odd-R.
I use the following piece of code to contact a webservice, and read a wsdl file. from SOAPpy import WSDL from SOAPpy import URLopener url= ' http://someserver/somewebservice url1 = URLopener.URLopener(username='user',passwd='pass') server=WSDL.Proxy(url1.open(url)) This yields no errors, and ever