web services - VSTO web interaction -


in php can use code:

$url = "http://maps.googleapis.com/maps/api/distancematrix/json?origins=$location1&      destinations=$location2&mode=bicycling&language=en-en&sensor=false";                $data = @file_get_contents($url);                $obj = json_decode($data);                 $arr = (array)$obj; 

to array of values return distance between 2 locations.

is kind of web interaction possible vsto? have googled high , low , nothing search giving me results work with.

ergo, think missing something.


Comments

Popular posts from this blog

c# - Unity IoC Lifetime per HttpRequest for UserStore -

Change the color of an oval at click in Java AWT -

I am trying to solve the error message 'incompatible ranks 0 and 1 in assignment' in a fortran 95 program. -