cybergarage / cybergarage-upnp

cybergarage-upnp is a development package for UPnP™ developers. cybergarage-upnp controls these protocols automatically, and supports to create your devices and control points quickly.

Home Page:http://www.cybergarage.org/

Geek Repo:Geek Repo

Github PK Tool:Github PK Tool

service.getAction is return null

dorobonneko opened this issue · comments

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