[web2py] Re: Best way to send data from web2py client to web2py server

2016-07-21 Thread Anthony
OK, so when you say "web2py client", you don't mean a browser but a server-side web2py application that happens to be communicating with another server-side web2py application (on a different server). In that case, I suppose the obvious approach is to use Python to make HTTP requests from your

[web2py] Re: Best way to send data from web2py client to web2py server

2016-07-21 Thread Aydin
Sure, Let's say I have a machine connected running web2py, this will be like a client because the app will be sending data out. I use scheduler to routinely send the data (every 2 min). I want this app send data to a web2py server (has domain like www.example.com). let's say I have two of these

[web2py] Re: Best way to send data from web2py client to web2py server

2016-07-21 Thread Anthony
On Thursday, July 21, 2016 at 8:22:21 AM UTC-4, Aydin wrote: > > Thanks, yes, I know of the forms, I was just wondering if there are other > services or methods that I may not know. > I think you need to explain more specifically what you are trying to do. Anthony -- Resources: - http://web2py

[web2py] Re: Best way to send data from web2py client to web2py server

2016-07-21 Thread Michael Messmer
In my infrastructure I connect to a Oracle DB hosted somewhere else in the datacenter. I just point the URI in appconfig to the schema location. I have two different major web services running off of Centralized Oracle DB and numerous smaller api/webapp servers that dont need HA use SQLite inste

[web2py] Re: Best way to send data from web2py client to web2py server

2016-07-21 Thread Aydin
Centralized DB, because to process the data on the server that is available by a domain. The data are integers. On Wednesday, July 20, 2016 at 11:22:38 PM UTC-4, Michael Messmer wrote: > > Are you talking about High Availability? Load Balancer and Centralized DB? > Why and what kind of data

[web2py] Re: Best way to send data from web2py client to web2py server

2016-07-21 Thread Aydin
Thanks, yes, I know of the forms, I was just wondering if there are other services or methods that I may not know. On Wednesday, July 20, 2016 at 9:07:16 AM UTC-4, Marlysson Silva wrote: > > Using forms? > And web2py get them using request.vars.* > > Em quarta-feira, 20 de julho de 2016 09:59:18

[web2py] Re: Best way to send data from web2py client to web2py server

2016-07-20 Thread Michael Messmer
Are you talking about High Availability? Load Balancer and Centralized DB? Why and what kind of data? On Wednesday, July 20, 2016 at 5:59:18 AM UTC-7, Aydin wrote: > > What's the best way to send data from web2py clients to a web2py server? > Especially when there are many web2py clients tha

[web2py] Re: Best way to send data from web2py client to web2py server

2016-07-20 Thread Marlysson Silva
Using forms? And web2py get them using request.vars.* Em quarta-feira, 20 de julho de 2016 09:59:18 UTC-3, Aydin escreveu: > > What's the best way to send data from web2py clients to a web2py server? > Especially when there are many web2py clients that at the same time send > data to the web2py