I am new to openlayers. I tried this example. I have published world shapefile to tiger workspace as 'country' layer to geoserver and want to access with WMS. The world map is getting displayed in IE on Windows XP but not in IE of Windows 6 mobile emulator. I am able to access geoserver's admin page on my PC from the mobile emulator so network connection may not be issue. Kindly suggest anything I am missing.
<html>
<head>
<title>OpenLayers Example</title>
<script src="http://host IP address:8080/geoserver/OpenLayers.js"></script>
</head>
<body>
<div style="width:100%; height:100%" id="map"></div>
<script defer="defer" type="text/javascript">
var map = new OpenLayers.Map('map');
var wms = new OpenLayers.Layer.WMS( "OpenLayers WMS",
"http://host IP address:8080/wms", {layers: 'tiger:country'} );
map.addLayer(wms);
map.zoomToMaxExtent();
</script>
</body>
</html>
