Re: Consuming a SOAP services from Django

2007-10-18 Thread Tim Perrett
Hey Antoni Agreed, separating the generated code (which was created by reading a WSDL file), and then calling that is the way to go. In my situation, I have a couple of difference service endpoints to call, so im not sure how best to package them up. What are peoples thoughts? I'll have the

Re: Consuming a SOAP services from Django

2007-10-17 Thread Antoni Aloy
2007/10/17, Tim Perrett <[EMAIL PROTECTED]>: > > Hey all > > I have played around with consuming a SOAP services with simple > python scripts and the ZSI soap implementation, but I was then > wondering where best to put this kind of code? It would start to > clutter things up if I was to put it

Consuming a SOAP services from Django

2007-10-17 Thread Tim Perrett
Hey all I have played around with consuming a SOAP services with simple python scripts and the ZSI soap implementation, but I was then wondering where best to put this kind of code? It would start to clutter things up if I was to put it in views.py wouldnt it? Any advice would be great