我正在开发一个应该在Windows中自动发现的硬件设备,所以我更倾向于通过SSDP而不是mDNS (Zeroconf等)来实现,以避免强制用户安装其支持应用程序。我只需要该设备在Windows资源管理器中出现在网络中,并单击它以使用URL中的设备IP地址打开默认浏览器。我已经编写了代码(在单播中回答多播M-SEARCH请求并在启动和定期发送通知消息),我可以在Windows PC上的Wireshark中看到消息,但该设备仍然没有出现在资源管理器网络文件夹中,我可以看到其他设备,如我的打印机,电视,媒体播放器等,我也可以在Wireshark上看到他们的消息。我在通知和响应消息的内容中寻找一些建议,也在带有这样一个简单设备的设备配置文件的xml文件中搜索—我只是想宣传该设备在其IP地址上有一个web服务器。
这些是我要发送的消息:
在多播:NOTIFY * HTTP/1.1
HOST: 239.255.255.250:1900
CACHE-CONTROL: max-age=100
NT: upnp:rootdevice
USN: uuid:c5baf4a1-0c8e-44da-9714-ef0123411223::upnp:rootdevice
NTS: ssdp:alive
SERVER: NodeMCU/20150415 UPnP/1.1 xpto/0.1
Location: http://192.168.3.246/deviceprofile.xml
在单播中作为对M-SEARCH的回复:
HTTP/1.1 200 OK
Cache-Control: max-age=100
EXT:
SERVER: NodeMCU/20150415 UPnP/1.1 xpto/0.1
ST: upnp:rootdevice
USN: uuid:c5baf4a1-0c8e-44da-9714-ef0123411223
Location: http://192.168.3.246/deviceprofile.xml
deviceprofile.xml:
<?xml version='1.0'?>
<root xmlns='urn:schemas-upnp-org:device-1-0'>
<device>
<deviceType>urn:schemas-upnp-org:device:Basic:1</deviceType>
<presentationURL>http://192.168.3.246/</presentationURL>
<friendlyName>Remote control</friendlyName>
<manufacturer>xpto.com</manufacturer>
<manufacturerURL>http://xpto.com/</manufacturerURL>
<serialNumber>10275488</serialNumber>
<UDN>uuid:c5baf4a1-0c8e-44da-9714-ef0123411223</UDN>
<serviceList>
<service>
<serviceType>urn:schemas-upnp-org:service:Basic:1</serviceType>
<serviceId>urn:upnp-org:serviceId:1</serviceId>
</service>
</serviceList>
</device></root>
为了使设备显示在windows资源管理器网络文件夹中还需要什么?
Thanks in advance
费尔南多你们的deviceprofile.xml
不符合UPnP规范。<service>
标签下需要其他元素。此外,urn:schemas-upnp-org:service:Basic:1
是非法的,您需要在自己的名称空间下更改为预定义或自定义的UPnP。例如:
<service>
<serviceType>urn:schemas-upnp-org:service:XXXX:1</serviceType>
<serviceId>urn:upnp-org:serviceId:1</serviceId>
<SCPDURL>URL to service description.xml</SCPDURL>
<controlURL>URL for control</controlURL>
<eventSubURL>URL for eventing</eventSubURL>
</service>
您可以查看:Part2.3 ofhttp://upnp.org/specs/arch/UPnP-arch-DeviceArchitecture-v1.1.pdf