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

PHPMotion implementation - URL based videos (Hosted on separate location) -

javascript - Using Windows Media Player as video fallback for video tag -

c# - Unity IoC Lifetime per HttpRequest for UserStore -