Re: ASP .NET web service and Django

2014-05-28 Thread shar100101
Thanks everyone. I will try using suds but if suds use C libs, like soaplib does (lxml ), than this wont work too. @Vernon I don't know for IronPython3. I didn't managed to set up Django 1.5, there was errors in Django six.py lib ("""Utilities for writing code that runs on Python 2 and 3""")

Re: ASP .NET web service and Django

2014-05-27 Thread Vernon D. Cole
Jani: Can you please provide a link to the "hacks" you mention for IronPython? I am preparing to run django with IronPython3 and any information on what people did to make IronPython work would be helpful. -- Vernon Cole On Monday, May 26, 2014 12:21:00 PM UTC+1, Jani Tiainen wrote: > >

RE: ASP .NET web service and Django

2014-05-26 Thread Ilya Kazakevich
Hello, For web services (I believe you speak about SOAP web services) check: * https://wiki.python.org/moin/WebServices (SOAP section). It has info about Python SOAP client and server libraries. * For .NET (client) : http://stackoverflow.com/questions/1302525/how-to-use-a-wsdl Ilya Kazakevich,

Re: ASP .NET web service and Django

2014-05-26 Thread Jani Tiainen
You might be interested in suds library, it's basically lightweight SOAP stuff, it may work or it may not. All depends quality of WSDL you do have. And to my knowledge getting Django to run on IronPython requires some hacks... On Mon, 26 May 2014 04:09:19 -0700 (PDT) shar100101

Re: ASP .NET web service and Django

2014-05-26 Thread shar100101
Unfortunately Tastypie is not solution for me, because it uses Rest. I am using IronPython to run website and I still have not found solution to read Soap/Rest requests with IronPython. I was hoping that output form .Net service, sent using HTTP, can be used in Django. I tried using WebRequest