Hi, I am facing a strange problem here,
when I run below url from web browser or from java command line http://maps.googleapis.com/maps/api/distancematrix/json?origins=416%2063,Sweden&destinations=424%2069,Stor%C3%A5s%20Industrigatan%2020,Angered,G%C3%B6teborg&sensor=false I get below results. { "destination_addresses" : [ "StorĂ¥s Industrigata 20, 424 69 Angered, Sweden" ], "origin_addresses" : [ "Gothenburg, Sweden" ], "rows" : [ { "elements" : [ { "distance" : { "text" : "10.4 km", "value" : 10388 }, "duration" : { "text" : "15 mins", "value" : 924 }, "status" : "OK" } ] } ], "status" : "OK" } but when I run the same url from glassfish server I mean sending an http request from form submit I get below strange response "destination_addresses" : [ "" ], "origin_addresses" : [ "Gothenburg, Sweden" ], "rows" : [ { "elements" : [ { "status" : "NOT_FOUND" } ] } ], "status" : "OK" } please not destination_addresses is empty in this case and status in NOT_FOUND. please guide me to resolve this issue, thanks.... -- You received this message because you are subscribed to the Google Groups "Google Maps API V2" group. To post to this group, send email to [email protected]. To unsubscribe from this group, send email to [email protected]. For more options, visit this group at http://groups.google.com/group/google-maps-api?hl=en.
