--- android/TrainInfo/src/dk/thoerup/traininfo/provider/XmlDepartureProvider.java 2009/09/01 19:40:02 293 +++ android/TrainInfo/src/dk/thoerup/traininfo/provider/XmlDepartureProvider.java 2009/09/01 20:28:55 294 @@ -26,10 +26,12 @@ StringBuilder builder = new StringBuilder(512); @Override - public void lookupDepartures(String station) { + public void lookupDepartures(String stationCode) { departures.clear(); try - { String url = "http://t-hoerup.dk/tog/xml_display.php?stationname="+station; + { + String url = "http://t-hoerup.dk/tog/xml_display.php?stationcode="+stationCode; + Log.i("xmlurl",url); String doc = DownloadUtil.getContentString(url, 45000, "ISO-8859-1"); InputSource source = new InputSource( new StringReader(doc));