Re: Sending XML to a WEB Service and Getting Response Back

2010-12-21 Thread John Nagle
On 12/20/2010 11:45 PM, Ian Kelly wrote: On 12/20/2010 11:34 PM, John Nagle wrote: SOAPpy is way out of date. The last update on SourceForge was in 2001. 2007, actually: http://sourceforge.net/projects/pywebsvcs/files/ And there is repository activity within the past 9 months. Still, point

Re: Sending XML to a WEB Service and Getting Response Back

2010-12-21 Thread Anurag Chourasia
Thanks for the response all. I tried exploring suds (which seems to be the current) and i hit problems right away. I will now try urllib or httplib. I have asked for help in the suds forum. Hope somebody replies. When i try to create a client, the error is as follows. from suds.client import

Re: Sending XML to a WEB Service and Getting Response Back

2010-12-21 Thread Ian Kelly
On 12/21/2010 12:10 PM, John Nagle wrote: The original SOAPpy was at http://sourceforge.net/projects/soapy/files/ but was apparently abandoned in 2001. Someone else picked it up and moved it to http://sourceforge.net/projects/pywebsvcs/files/SOAP.py/ These are unrelated projects, AFACT.

Re: Sending XML to a WEB Service and Getting Response Back

2010-12-21 Thread John Nagle
On 12/21/2010 11:26 AM, Anurag Chourasia wrote: Thanks for the response all. I tried exploring suds (which seems to be the current) and i hit problems right away. I will now try urllib or httplib. I have asked for help in the suds forum. Hope somebody replies. When i try to create a client,

Sending XML to a WEB Service and Getting Response Back

2010-12-20 Thread Anurag Chourasia
Dear Python Mates, I have a requirement to send a XML Data to a WEB Service whose URL is of the form http://joule:8041/DteEnLinea/ws/EnvioGuia.jws I also have to read back the response returned as a result of sending this data to this WebService. This web service implements the following

Re: Sending XML to a WEB Service and Getting Response Back

2010-12-20 Thread Hidura
I recommend you use the urllib.request in the library of python says everything that you want to know. 2010/12/20, Anurag Chourasia anurag.choura...@gmail.com: Dear Python Mates, I have a requirement to send a XML Data to a WEB Service whose URL is of the form

Re: Sending XML to a WEB Service and Getting Response Back

2010-12-20 Thread Ian Kelly
On Mon, Dec 20, 2010 at 11:58 AM, Anurag Chourasia anurag.choura...@gmail.com wrote: Dear Python Mates, I have a requirement to send a XML Data to a WEB Service whose URL is of the form http://joule:8041/DteEnLinea/ws/EnvioGuia.jws I also have to read back the response returned as a result of

Re: Sending XML to a WEB Service and Getting Response Back

2010-12-20 Thread John Nagle
On 12/20/2010 12:14 PM, Hidura wrote: I recommend you use the urllib.request in the library of python says everything that you want to know. 2010/12/20, Anurag Chourasiaanurag.choura...@gmail.com: Dear Python Mates, I have a requirement to send a XML Data to a WEB Service whose URL is of the

Re: Sending XML to a WEB Service and Getting Response Back

2010-12-20 Thread Ian Kelly
On 12/20/2010 11:34 PM, John Nagle wrote: SOAPpy is way out of date. The last update on SourceForge was in 2001. 2007, actually: http://sourceforge.net/projects/pywebsvcs/files/ And there is repository activity within the past 9 months. Still, point taken. --