Hi,
I have a simulation application developed independent of the ArcGIS platform using Java (.jar) that I would like to deploy as a WPS service using ArcGIS Server. The application takes a CSV file as input, does some calculations and then outputs another CSV file with the results. Please advice on the best procedure to achieve this. Thank you.
Timothy.
Hi Timothy,
There doesn't seem to be an easy one step way to solve that. The point is that Python is the native language to build GP tools and Models etc. for ArcGIS Desktop and Server. So if you can write a python script to call your Java application, then the rest is straight forward. Or if your Java application is not that complicated, then you can either re-write it in Python, or wrap your Java code as a GP tool using ArcObjects.
Thanks.