Simple Service Discovery Protocol (SSDP) is a protocol for advertizing and discovering services on the network. It is mainly used in Universal Plug and Play (UPnP).
Questions tagged [ssdp]
112 questions
0
votes
2 answers
Is it possible to discover other smart tv's with a Roku TV?
I am a newbie to Roku development. I want to find out whether the Roku TV discovers all the other TVs(Samsung, LG, Android & Apple TVs). If yes, please give me the function to discover the other TVs.
Thanks in advance.

AndroidGeek
- 166
- 2
- 11
0
votes
0 answers
UPnP Packets are not receiving
I have a camera which can be found in UPnP Search.
It also advertises(multicast) the same response as of UPnP search in every 150 seconds.
I have created an android app which can identify the camera either by UPnP search or just listening to the…

Sonia John Kavery
- 2,099
- 2
- 20
- 36
0
votes
1 answer
Android SSDP Service Discovery
I am implementing an java program that scans some of the smart devices that I have, using SSDP discovery. The code that I am using detects only 2 devices among 10 that are connected to my local network. I could not understand the reason is.
My…

Arun Kumar
- 1
- 1
- 1
0
votes
2 answers
Setting up Philips Hue on Windows
I am trying to set Philips Hue on Windows 8.1 (64bit). However, I am not sure why when I browse to the following website it doesn't show anything:
https://www.meethue.com/api/nupnp
I have even tried the following (as some of their pages resides on…

Mona Jalal
- 34,860
- 64
- 239
- 408
0
votes
1 answer
How do I use SSDP?
I need a way for my application to find someone with the same application on a local network.
But can't find the docs to use a protocol like SSPD. It says its UDP on port 1900 and the ip 239.255.255.250.
It also says it can use NOTIFY and…

guestedForAnwser
- 19
- 4
0
votes
1 answer
Sony A-7R (ILCE-7R) refuses to connect by Sony Remote API after firmware 2.0 update
The new fresh firmware 2.0 was released recently for my Sony Alpha 7R. I've updated the firmware just now. After that, applications that use Sony Remote API can't connect to the camera anymore. I've tried to oversee UDP traffic.
I see SSDP problem.…

Anthony L. Gershman
- 143
- 1
- 11
0
votes
0 answers
Sony Alpha A6000 with WPF
I am having trouble with the Alpha 6000. I want to connect to my Sony Alpha A6000 through Wifi but I am unable to do so. I want to write a small C# WPF app that can connect and communicate with my camera through Wifi. I am very new with this so I…

GANDA1F
- 307
- 1
- 4
- 13
0
votes
1 answer
python SSDP discovery error
req = ['M-SEARCH * HTTP/1.1',
'HOST: 239.255.255.250:1900',
'MAN: "ssdp:discover"',
'ST: ssdp:all',
'MX: 3',
"", ""]
req = '\r\n'.join(req)
sock = socket(AF_INET, SOCK_DGRAM)
[sock.sendto(req,…

user4640839
- 3
- 1
0
votes
1 answer
how to perform ssdp communicationbetween upnp devices
i am trying to implement the upnp level communication between the devices .. but facing problem in getting the response message .and more over on sending the ssdp:discovery multicast not able to recieve the messages from the devices ... please guide…
0
votes
1 answer
is there a way to get the ips of all the services available in a network using ssdp?
I am trying to create a java program making use of SSDP to get the list of IP's of the systems connected to a server. Is it possible? If so can anyone tell me the method? Because as per I read they have just mentioned we can find the particular…

venkat
- 1
- 3
0
votes
1 answer
SSDP Multicast Missing answers from M-SEARCH - Discovery - UPnP
I am trying to receive the UPnP NOTIFY Messages from UPnP Devices in my Network. But when i send the M-SEARCH Message, i sometimes get no Answers. My Code looks like this:
public bool StartListener()
{
if (this.ssdpSocket == null)
{
…

Kingpin
- 1,067
- 2
- 14
- 34
0
votes
1 answer
Simple Device Discovery and Web Services
I have a custom embedded hardware device running Linux controlled by a Python code. I'd like to create an Android client that will automatically find any of my devices on the local network, configure the devices, and display data from them.
I'd…

proximous
- 617
- 1
- 10
- 28
0
votes
1 answer
Finding information about a router on my network
I need some code, preferably Java, to locate the IP address of a router on a SOHO-type network. As a bonus, I'd also like to get the make/model of the router along with the firmware version.
I see that HNAP will do the job, UPnP can sort of do it,…

Sander Smith
- 1,371
- 4
- 20
- 30
0
votes
1 answer
How to use bluetooth discover device with my application UUID in Android?
I'm working on an application, using bluetooth to transfer file. I have a question about bluetooth discovering. How can i find other devices which already installed my application when bluetooth discovering? I knew I have to use UUID, and i also…

PoHsiang
- 3
- 3
0
votes
1 answer
How to get description of LG Smart TV through rootservice.xml?
On searching for LG TV through UPnP/SSDP, I get below response:
HTTP/1.1 200 OK
CACHE-CONTROL: max-age=172800
DATE: Mon Dec 16 06:31:03 2013 GMT
EXT:
LOCATION: http://:/udap/api/data?target=rootservice.xml
SERVER: Linux/3.0.13 UDAP/1.0…

Coding Glory
- 1
- 1
- 1