|
jem_plugin_service_upnp_mediaserver
This page describes the UPnP Service plugin.
Phase-Deploy IntroductionThis plugin exposes the music, video and pictures to clients that are compatible with the UPnP MediaServer 1.0 specification. Extra care has been taken to extend the server so that it is recognizable by the XBox 360 aswell. (For more information, see the the notes on this.) ConfigurationThis plugin is set up in the modules section of the JemsConfig.xml file. <?xml version='1.0' encoding='utf-8'?>
<jems>
<modules>
...
<module name="WWW Server" class="net.kodeninja.jem.server.www.WWWService">
<port>80</port>
</module>
...
<module name="UPnP Media Server" class="net.kodeninja.jem.server.UPnP.MediaServer">
<friendlyname>Jems Media Center</friendlyname>
<www-module>WWW Server</www-module>
<uuid>24b1a1e6-4107-407e-b1c7-8945fb9181a6</uuid>
</module>
...
</modules>
<services>
...
<service module="WWW Server"/>
...
</services>
...
</jems>Figure 1.1 - Sample module definition Note: The UPnP server currently requires the WWW server to be previously defined in order to work. Notes: While the UPnP server does not require an entry in the services area, the WWW server still does. Legend:
|