1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 41 42 43 44 45 46 47 48 49 50 51
|
<root xmlns="urn:schemas-upnp-org:device-1-0">
<specVersion>
<major>1</major>
<minor>0</minor>
</specVersion>
<device>
<deviceType>urn:test-gupnp-org:device:TestDevice:1</deviceType>
<friendlyName>GUPnP Regression Test Device</friendlyName>
<modelURL>http://gupnp.org/</modelURL>
<UDN>uuid:1234</UDN>
<iconList>
<icon>
<mimetype>image/png</mimetype>
<width>24</width>
<height>24</height>
<depth>24</depth>
<url>/icon-24x24x24.png</url>
</icon>
<icon>
<mimetype>image/png</mimetype>
<width>48</width>
<height>48</height>
<depth>24</depth>
<url>/icon-48x48x24.png</url>
</icon>
<icon>
<mimetype>image/png</mimetype>
<width>120</width>
<height>120</height>
<depth>24</depth>
<url>/icon-120x120x24.png</url>
</icon>
</iconList>
<serviceList>
<service>
<serviceType>urn:test-gupnp-org:service:TestService:1</serviceType>
<serviceId>urn:test-gupnp-org:serviceId:TestService:1</serviceId>
<SCPDURL>/TestService.xml</SCPDURL>
<controlURL>/TestService/Control</controlURL>
<eventSubURL>/TestService/Event</eventSubURL>
</service>
</serviceList>
<deviceList>
<device>
<deviceType>urn:test-gupnp-org:device:TestSubDevice:1</deviceType>
<friendlyName>Regression Test subdevice</friendlyName>
<UDN>uuid:5678</UDN>
</device>
</deviceList>
</device>
</root>
|