Hello everybody, i'm new in android and arcgis api for android, and i tested the helloworld sample of esri and it worked fine for me.
my problem is when i try to display my arcgis server 10 mapservice (started of cource), into the helloword sample by changing :
private MapView map = null;
String dynamicMapURL = "http://sampleserver1.arcgisonline.com/ArcGIS/rest/services/Specialty/ESRI_StateCityHighway_USA/MapServer";
map = (MapView) findViewById(R.id.map);
ArcGISDynamicMapServiceLayer dynamicLayer = new ArcGISDynamicMapServiceLayer(
dynamicMapURL);
map.addLayer(dynamicLayer);
by
private MapView map = null;
String dynamicMapURL = "http://pocket-pc:80/ArcGIS/rest/services/GpsLogistique/MapServer";
map = (MapView) findViewById(R.id.map);
ArcGISDynamicMapServiceLayer dynamicLayer = new ArcGISDynamicMapServiceLayer(
dynamicMapURL);
map.addLayer(dynamicLayer);
when i run the code it runs normaly but display nothing even error.
if someone have any idea thank you in advance.