Re: Accessing Web Services using Django

2007-07-03 Thread Roboto
Thanks Jacob, I was looking for something like this! On Jul 3, 2:17 pm, "Jacob Kaplan-Moss" <[EMAIL PROTECTED]> wrote: > Hey Roboto -- > > There isn't anything Django-specific about consuming web services; > it's just Python. You might want to check out the section of Dive Into > Python that

Re: Accessing Web Services using Django

2007-07-03 Thread Jacob Kaplan-Moss
Hey Roboto -- There isn't anything Django-specific about consuming web services; it's just Python. You might want to check out the section of Dive Into Python that covers web services: http://diveintopython.org/http_web_services/index.html God luck, Jacob

Accessing Web Services using Django

2007-07-03 Thread Roboto
Hey guys, I'm still new to Python and Django, heck I guess I consider myself new to web development in general, and I'm at a part where I'm a little lost on what to do. In a nutshell I have a form that will take in a Country (from a drop down) and a postal code. I want to grab the

Re: Integrating web services with django

2007-03-21 Thread Jeremy Dunck
On 3/21/07, Nathan Harmston <[EMAIL PROTECTED]> wrote: ... > The view could return results if the result was retrieved > within a specific time period, else it would return a "work in progress". > Would this kind of thing work? So the "WS client process" and Django both > share the same models

Re: Integrating web services with django

2007-03-21 Thread ashwoods
is there any reason you want to process the "webservices" on the server side? unless there is any special reason to do this, it looks like kind of redundant and actually that is one of the main reasons to use webservices (decentralized application model). that means you would want to spit out

Re: Integrating web services with django

2007-03-21 Thread Nathan Harmston
When I say Web Services, I am including SOAP aswell as REST. So my django project actually becomes a portal to various web services hosted by external entities. So is the best way to do it, to have a job model which holds the various job data and have a process running which runs the web service

Re: Integrating web services with django

2007-03-14 Thread Malcolm Tredinnick
On Tue, 2007-03-13 at 13:36 +, Nathan Harmston wrote: > Hi, > > I was wondering if anyone had added a web services client to django. > Ie when a user makes a request, "Web service" is an extremely generic term, so you aren't really asking a specific question her

Integrating web services with django

2007-03-13 Thread Nathan Harmston
Hi, I was wondering if anyone had added a web services client to django. Ie when a user makes a request, it is processed by django and then a web service is invoked and the results send back. Has anyone developed any frameworks or apps which do this? How can I deal with invocations/jobs which

Re: Web services in Django

2007-02-11 Thread marxy
It might be good to see what our friends at TurboGears are up to with http://cheeseshop.python.org/pypi/TGWebServices/ cheers, peter --~--~-~--~~~---~--~~ You received this message because you are subscribed to the Google Groups "Django users" group. To post

Re: Web services in Django

2007-01-12 Thread David Larlet
2006/12/22, juampa <[EMAIL PROTECTED]>: > > Hello all: > > I am trying to gather all the information I can about implementing web > services with Django (XML-RPC, SOAP, REST). Can you suggest good > sources of information/examples of implementations? What is the offica

Re: Web Services in Django

2006-12-23 Thread Russell Keith-Magee
On 12/22/06, juampa <[EMAIL PROTECTED]> wrote: Hello all: I am trying to gather all the information I can about implementing web services with Django (XML-RPC, SOAP, REST). Can you suggest good sources of information/examples of implementations? What is the offical status of WS s

Web Services with Django.

2006-12-23 Thread juampa
Hello all: I am trying to find as much information as possible about web services with Django (RPC, SOAP, REST), particularly implementing (serving) them. I have found a couple references in this list to a SOAP and an XML-RPC patch. Is there more information or examples available? What

Web Services in Django

2006-12-23 Thread juampa
Hello all: I am trying to gather all the information I can about implementing web services with Django (XML-RPC, SOAP, REST). Can you suggest good sources of information/examples of implementations? What is the offical status of WS support in Django? Thanks. Juampa P.S. I accidentally posted

REST-like web services in Django

2006-11-01 Thread [EMAIL PROTECTED]
Hi everyone, Just thought I'd throw out an implementation I've been kicking around for an app I'm building. Just wanted to get the groups thoughts. I know this violates MVC in a way, you can do this writing out url files and views seperately, but some of the flexibility of having models define