Django SOAP server (2)

2007-01-16 Thread [EMAIL PROTECTED]
Hello all, I am a new at Django ... I saw there were some questions about SOAP and I am having some doubs too. The code below is about that matter. My questions: How can I put SimpleSOAPView under 'contrib.soap' ?? I am getting this error ... : " cannot import name SimpleSOAPView " Thanks in adv

Re: Re: Django SOAP server

2006-11-07 Thread Tom Haddon
Cool, works a treat!On 11/2/06, Jure Čuhalev <[EMAIL PROTECTED]> wrote: On 11/2/06, tomass <[EMAIL PROTECTED]> wrote:>> Hi Jure,>> Thanks for the response. I've made the changes you suggest, but just> have a few questions: >> - The urls.py file: the soapview.soap - does this refer to a file> called

Re: Re: Django SOAP server

2006-11-02 Thread Jure Čuhalev
On 11/2/06, tomass <[EMAIL PROTECTED]> wrote: > > Hi Jure, > > Thanks for the response. I've made the changes you suggest, but just > have a few questions: > > - The urls.py file: the soapview.soap - does this refer to a file > called "soapview.py" and then the "soap" portion refers to whatever th

Re: Django SOAP server

2006-11-02 Thread tomass
Hi Jure, Thanks for the response. I've made the changes you suggest, but just have a few questions: - The urls.py file: the soapview.soap - does this refer to a file called "soapview.py" and then the "soap" portion refers to whatever the name you assign the SimpleSOAPView() function to? - How d

Re: Django SOAP server

2006-11-01 Thread Jure Čuhalev
On 11/1/06, tomass <[EMAIL PROTECTED]> wrote: > I had to change some code in the soap.py as it was pre-magic-removal, > but it's still not working for me. The changes I made were to change > "from django.utils.httpwrappers import HttpResponseServerError, > HttpResponse" to "from django.http impor

Django SOAP server

2006-11-01 Thread tomass
Hi Folks, I'm interested in serving SOAP requests through Django. I've taken a look at the pages below, but I'm not sure what the current state of development is, as I couldn't get the example in 552 working. http://code.djangoproject.com/ticket/552 http://code.djangoproject.com/ticket/115 I ha