How to update external web-service with ArcGIS REST API with Python?

2597
1
03-03-2015 01:42 PM
GeoffreyWest
Occasional Contributor III

I would like to update a JSON web-service from my ArcGIS feature service.  3 fields from my feature service should be sent to this other web-service, incrementally, probably once every minute.  I have the web-service 'UPSERT' method which will allow me to update the service. What is a good way to approach this? 

0 Kudos
1 Reply
OwenEarley
Occasional Contributor III

ArcGIS feature services are designed to provide data when requested. I don't think there is any built in functionality to push data out at regular intervals - although you could possibly develop a Server Object Extension to do this.

If you have control over the JSON web service why not request data from the ArcGIS feature service at regular intervals and process the results into your own service?

0 Kudos