Forum Discussion
_anomDiebolt_
11 years agoQrew Elite
Arcgis supports a JavaScript API so you might be able to perform this using (1) the QuickBase API, (2) the ArcGIS API, and (3) client side JavaScript without involving Ruby or a third party server:
ARCGIS javaScript APIhttps://developers.arcgis.com/javascript/jsapi/
It appears that Arcgis supports JSONP which is one of two popular ways (the other being CORS) to get around the same origin policy which would normally prevent you from exchaning data between two different domains:
ARCGIS JSONP Example https://developers.arcgis.com/javascript/jssamples/data_requestJsonp.html
There might be a very simple solution where you call QuickBase's API to get CSV data and pump it to the appropriate Arcgis endpoint appropriately formatted.
Contact me via the information in my profile if you need help.
ARCGIS javaScript APIhttps://developers.arcgis.com/javascript/jsapi/
It appears that Arcgis supports JSONP which is one of two popular ways (the other being CORS) to get around the same origin policy which would normally prevent you from exchaning data between two different domains:
ARCGIS JSONP Example https://developers.arcgis.com/javascript/jssamples/data_requestJsonp.html
There might be a very simple solution where you call QuickBase's API to get CSV data and pump it to the appropriate Arcgis endpoint appropriately formatted.
Contact me via the information in my profile if you need help.