That would be really cool, then you could wire two web2py applications
together via remote services. This wouldn't solve my problem, since the API
I am connecting to is not a web service at all, but this would be a good
idea to increase web2py's ability to communicate.
On Thursday, April 28, 2011 11:40:59 AM UTC-4, Massimo Di Pierro wrote:
>
> What would be nice is a something like two web2py apps where one can
> do
>
> db=DAL('mysql://....')
> db.serve(port=8080)
>
> and another can do
>
> db=DAL('connect://127.0.0.1:8080')
> db.fetch_tables()
>
> mind this would be not too difficult to implement.
>
>
>
>
> On Apr 28, 10:25 am, Ross Peoples <[email protected]> wrote:
> > After thinking about this a little more, maybe a custom DAL adapter or
> > something would probably be the only way to handle this, which is no easy
>
> > task. Does anyone else have any ideas?