views:

43

answers:

1

I have a application wrote in Python. Now I must run many instances of this application, but it is one problem. Many instances have one device and access to this device must be synchronised.

I think that the best way to synchronise these instances is to build webservice.

In which language you suggest to write webservice. Python/Django or .NET? How my client can edit data in webservice? I have only found tutorials with read data - not write.

Thanks for responses!

A: 

In which language you suggest to write webservice.

Python/Django

How my client can edit data in webservice?

Read about REST. A POST request instead of a GET request is an update.

Use Piston with Django.

S.Lott