Programming UPnP - Links To Documents And Tutorials: Difference between revisions

From Yggenyk
Jump to navigation Jump to search
(Created page with 'Category:English pages Category:Software development <google>ENGELSK</google> * [http://www.codeproject.com/Articles/27346/Programming-control-point-application-using-th…')
 
No edit summary
 
(5 intermediate revisions by the same user not shown)
Line 3: Line 3:
<google>ENGELSK</google>
<google>ENGELSK</google>


* [http://www.codeproject.com/Articles/27346/Programming-control-point-application-using-the-UP Programming control point application using the UPnP Control Point API]
* [http://www.codeproject.com/Articles/27346/Programming-control-point-application-using-the-UP Programming control point application using the UPnP Control Point API - Code Project]
* [http://technet.microsoft.com/en-us/library/bb727027.aspx Universal Plug and Play (UPnP) Client Support - TechNet]
* [http://msdn.microsoft.com/en-us/library/windows/desktop/aa382318.aspx Using the Control Point API (Windows)]
 
==Troubleshooting==
* [http://forum.conceiva.com/showthread.php/1183-FAQ-Cannot-see-Mezzmo-on-your-DLNA-device Cannot see Mezzmo on your DLNA device?]
* [http://answers.microsoft.com/en-us/windows/forum/windows_7-windows_programs/ssdp-not-working-for-ipv4/1e000aad-e658-49e4-9bc8-724b5192a268 SSDP not working for IPv4]
 
==Configure Windows Firewall==
Windows firewall can be configured from a command prompt with administrative rights
* [http://technet.microsoft.com/en-us/library/dd734783.aspx Netsh AdvFirewall Firewall Commands]
Example:
:'''netsh advfirewall firewall set rule name="Network Discovery (SSDP-In)" profile=domain new enable=yes remoteip=any'''
will allow SSDP discovery on domain networks from any ipaddress on the network
:'''netsh advfirewall firewall set rule name="Network Discovery (SSDP-In)" profile=private new enable=yes remoteip=any'''
will allow SSDP discovery on private networks from any ipaddress on the network
:'''netsh advfirewall firewall set rule name="Network Discovery (SSDP-In)" profile=public new enable=yes remoteip=any'''
will allow SSDP discovery on public networks from any ipaddress on the network

Latest revision as of 16:34, 7 August 2014

<google>ENGELSK</google>

Troubleshooting

Configure Windows Firewall

Windows firewall can be configured from a command prompt with administrative rights

Example:

netsh advfirewall firewall set rule name="Network Discovery (SSDP-In)" profile=domain new enable=yes remoteip=any

will allow SSDP discovery on domain networks from any ipaddress on the network

netsh advfirewall firewall set rule name="Network Discovery (SSDP-In)" profile=private new enable=yes remoteip=any

will allow SSDP discovery on private networks from any ipaddress on the network

netsh advfirewall firewall set rule name="Network Discovery (SSDP-In)" profile=public new enable=yes remoteip=any

will allow SSDP discovery on public networks from any ipaddress on the network

id=siteTree