* @see org.osgi.service.upnp.UPnPIcon#getInputStream()
*/
public InputStream getInputStream() throws IOException {
String urlString=ParseLocation.getUrlBase(cyberdev.getLocation())+icon.getURL();
URL url=new URL(urlString);
HTTPRequestForIcon requestor=new HTTPRequestForIcon(url);
return requestor.getInputStream();
}