Is there a way to use the response from the Google directions web service called, for example from C# code like this:
var url = System.String.Format(@"http://maps.googleapis.com/maps/api/directions/xml?origin={0}&destination={1}&sensor=false",
addressFrom, addressTo);
var result = XElement.Load(url);
And after that display the result on map; OR it must be done completely with JavaScript using the Google maps JavaScript API described here?