xml-rpc

2010-11-01 Thread Lic . José M . Rodriguez Bacallao
is possible tu run xml-rpc code from django_xmlrpc project through django test server (python manage.py runserver)? -- Lic. José M. Rodriguez Bacallao Centro de Biofisica Medica - Todos somos muy ignorantes, lo que ocurre es que no

Re: Remote login via XML-RPC or SOAP?

2009-09-16 Thread ash
lient's server, > including authentication info. The client will not give us direct > access to their database, but are willing to allow us a limited form > of access via XML-RPC or SOAP, basically logging in users and > retrieving some of their profile information. --~--~---

Re: Remote login via XML-RPC or SOAP?

2009-09-16 Thread Rodrigo Cea
on on our client's server, including authentication info. The client will not give us direct access to their database, but are willing to allow us a limited form of access via XML-RPC or SOAP, basically logging in users and retrieving some of their profi

Re: Remote login via XML-RPC or SOAP?

2009-09-16 Thread ash
s your best bet. > > On Sep 14, 7:07 pm, Rodrigo Cea wrote: > > > > > I am creating a Django website for a client who won't give me access > > to their database or server, but will allow login / account creation > > on their server via SOAP or XML-RPC from

Re: Remote login via XML-RPC or SOAP?

2009-09-15 Thread djfis...@gmail.com
bsite for a client who won't give me access > to their database or server, but will allow login / account creation > on their server via SOAP or XML-RPC from my server, where the Django- > based website will reside. > I would like to get an idea beforehand about which route, SOAP or

Remote login via XML-RPC or SOAP?

2009-09-14 Thread Rodrigo Cea
I am creating a Django website for a client who won't give me access to their database or server, but will allow login / account creation on their server via SOAP or XML-RPC from my server, where the Django- based website will reside. I would like to get an idea beforehand about which route,

Chunked transfer of a file fetched through xml-rpc

2009-05-20 Thread Nico Ayci
Hello everyone, here is the situation: I have a Django web server A that communicates with another local server B through xml-rpc. A storage C (NAS, but it doesn't really matter) is mounted on B. I would like to make a file located on C available for download from A. I would like to

Unit tesing with XML-RPC server

2007-11-29 Thread meledictas
Anybody have experience running unit testing against mock xml-rpc server? What is posible solution?. Creating mock of XML-RPC server and redirect all XML-RPC request from application to a mock server is initial idea. Any idea or example will be my appliciate. Thanks

Unit tesing with XML-RPC server

2007-11-29 Thread meledictas
Anybody have experience running unit testing against mock xml-rpc server? What is posible solution?. Creating mock of XML-RPC server and redirect all XML-RPC request from application to a mock server is initial idea. Any idea or example will be my appliciate. Thanks

Re: how to connect Django to objects served over xml-rpc?

2007-04-22 Thread Forest Bond
ctionality are de-coupled relatively well. I would still use Django even if my data access back-end is pure XML-RPC. I just probably wouldn't use Django's ORM. Of course, using the ORM does allow you to abstract your web code even further, but you can probably write wrapper classes a

Re: how to connect Django to objects served over xml-rpc?

2007-04-22 Thread Joe
my dreams, but I need some advice. > > My project group has written an xml-rpc API in front of our database > and password stores. This means that when we want to, say, create a > campus guest account, we call xml-rpc functions like create_guest(), > set_guest_info(), and set_account_

Re: how to connect Django to objects served over xml-rpc?

2007-04-21 Thread Forest Bond
Hi Brandon, On Fri, Apr 20, 2007 at 01:58:48PM -0400, [EMAIL PROTECTED] wrote: > I want to try out Django for a small project, hoping to discover that > it will be the web framework of my dreams, but I need some advice. > > My project group has written an xml-rpc API in front of

Re: how to connect Django to objects served over xml-rpc?

2007-04-21 Thread Oliver Charles
Hey, seeing as you haven't had any relies yet, I will through my idea down. What I think you're gonna have to do for the most graceful version is to create your own database wrapper, that calls xml-rpc, instead of an actual database. Then Django *should* be free to use. The problem

how to connect Django to objects served over xml-rpc?

2007-04-20 Thread brandon . craig . rhodes
I want to try out Django for a small project, hoping to discover that it will be the web framework of my dreams, but I need some advice. My project group has written an xml-rpc API in front of our database and password stores. This means that when we want to, say, create a campus guest account

Re: XML-RPC call for django unit testing

2007-03-30 Thread Russell Keith-Magee
On 3/29/07, [EMAIL PROTECTED] <[EMAIL PROTECTED]> wrote: > > Hi > I 'm trying to test django app using built-in django unit > testing. Some of it make a call to xml-rpc server using xmlrpclib. > Now, I use django testing framework and can run unit testing excep

XML-RPC call for django unit testing

2007-03-29 Thread meledictas
Hi I 'm trying to test django app using built-in django unit testing. Some of it make a call to xml-rpc server using xmlrpclib. Now, I use django testing framework and can run unit testing except that I can't enable in-process xml-rpc server. My idea is, create xml-rpc server