cybergarage-upnp
cybergarage-upnp copied to clipboard
service.getAction is return null
Device.java 270 line String absUrl = locationURLStr + urlString;
need change to
URL locationURL = new URL(locationURLStr); // 重新拼接url String absUrl = locationURL.getProtocol() + "://" + locationURL.getHost() + ":" + locationURL.getPort() + urlString;
service.getAction can be work