Unable to view map when I used my company network. I thought some URL's has blocked by my company network. Could you please let me know which URL's going to hit when I use ArcGIS SDK maps?

1520
5
12-20-2016 10:50 PM
sarithapingili
New Contributor

I'm developing maps using ArcGIS SDK and Xamarin.Android.

0 Kudos
5 Replies
AnttiKajanus1
Occasional Contributor III

Hi,

It all depends what services you are using in your application. Could you describe a bit more which services you are using?

0 Kudos
sarithapingili
New Contributor

Hello Antti Kajanus,

I’m using the below code to display the current location

MapView _myMapView = new MapView();

Map _myMap = new Map(Basemap.CreateImagerywithLabels());

_myMapView.Map = _myMap;

_ myMapView.LocationDisplay.AutoPanMode = LocationDisplayAutoPanMode.Recenter;

if (!_myMapView.LocationDisplay.IsEnabled)

_ myMapView.LocationDisplay.IsEnabled = true;

If I’m using my personnel network, I can able to view but I’m unable to view with my company network.

When I try to browse arcgis related sites I can able view using my company network.

Please give me the solution.

Regards,

Saritha

0 Kudos
dotMorten_esri
Esri Notable Contributor

Loop through Source Uri property on the the layers created with the CreateImageryWithLabels() call, and you will see what gets called.

0 Kudos
MaraStoica4
Occasional Contributor

Could you look at the traffic from your application? What sites is it trying to reach, and what errors are you getting? You could use a tool like Fiddler to look at network traffic. 

0 Kudos