Questions tagged [upnp]

Universal Plug and Play (UPnP) is a set of networking protocols that permits networked devices to seamlessly discover each other's presence on the network and establish functional network services for data sharing, communications, and entertainment.

539 questions
3
votes
1 answer

libraries in python and upnp

I want to develop some protocols that helps in the functioning of UPNP(universal plug and play) and simple service discovery protocol. I need to find the libraries for python and upnp so that I can read them and it becomes easy for me to understand…
KIT
  • 41
  • 2
  • 5
3
votes
0 answers

UPnP: Discovery message is sent but no response received

I am trying to get a list of UPnP services available. I am sending the discover message but I cannot get any response. 192.168.1.228 is the IP of the computer sending the discovery message. I also tried 127.0.0.1 and 192.168.0.1 but I still get no…
Yiannis Mpourkelis
  • 1,366
  • 1
  • 15
  • 34
3
votes
1 answer

UPnP events not received or received late

I've been working on a simple UPnP client implementation but I'm having trouble with receiving events. To try and find faults in the messages I'm sending, I tested my use case with CLing (which is an awesome library but it depends on Java 1.5 while…
delucasvb
  • 5,393
  • 4
  • 25
  • 35
3
votes
0 answers

Cling: Getting started with device search

I'm new to UPnP development and recently started to use Cling to develop a UPnP client in Java. To me the Cling documentation is insufficient. Especially it's lacking of basic examples, such as discovering UPnP devices via IP address. The search for…
3
votes
0 answers

Cannot connect to private ip (behind nat) even with PortMapping added to upnp router

I'm trying to make a p2p connection from a device outside a private network to a device inside a private network and behind a NAT. I'm using lib net.sbbi.upnp to add a Port Mapping to my router. import…
lhts
  • 61
  • 1
  • 3
3
votes
1 answer

Android cling-android Upnp SetAVTransportURI send Upnp Response = 500 Internal server error on xbox one

i'have a probleme using Upnp to send video file to xbox one with java/android. I use cling api to discover and connect upnp device over network. The discover operation work well, the xbox one is detected. The problem is when i try to send video link…
Simon Mardiné
  • 510
  • 2
  • 7
  • 23
3
votes
1 answer

How to send M-SEARCH from Javascript / Browser

Is it possible to send a SSDP M-SEARCH from javascript in a browser? The protocol is based on UDP, and the message I'd like to send from Javascript should look like this: M-SEARCH * HTTP/1.1 HOST: 239.255.255.250:1900 MAN: "ssdp:discover" MX:…
Paul Fryer
  • 9,268
  • 14
  • 61
  • 93
3
votes
1 answer

DLNA sequential playback, how it work?

If the tracks are played sequentially, who initiates the switch to the next track? Control Point. It asks the Digital Media Renderer for elapsed time from the beginning of the track and the next track starts. or Digital Media Renderer? How?
Evgeniy
  • 99
  • 7
3
votes
0 answers

How to use miniupnpc with Boost.Asio UDP when binding a socket to a random port

I'm astonished by the lack of documentation on miniupnp, I believe there's a lot of people using it, but almost no documentation at all, I found a piece of code in the source of RakNet to guide me. Now I'm having a conceptual issue... I'm developing…
Aymar Fisherman
  • 388
  • 1
  • 8
3
votes
1 answer

Android: WifiP2pManager.discoverServices doesn't have UPNP data sent

I'm working on an app that uses UPNP to discover a TV Set Top Box via UPNP in order to put pictures taken on the device up on the TV. In onCreate I get the manager and initialize the channel. protected void onCreate(Bundle savedInstanceState) { …
Dan S
  • 31
  • 1
3
votes
0 answers

How to setup UPnP Remote Acess service?

I am setting up an app in which I have to remotely operate the device (switch) from the other network.From my studies I came to know that it can be done using UPnP.I have implemented the code for local network which is able to operate the device on…
Imran
  • 1,715
  • 2
  • 20
  • 42
3
votes
2 answers

Listening for a UDP unicast reply to a UDP multicast message

I am trying to implement a very simple upnp controller on linux, so that I can control a device which otherwise requires proprietary software. The docs say that I need to send a UDP multicast request of a specific form (see the "M-SEARCH" string in…
Tony
  • 1,645
  • 1
  • 10
  • 13
3
votes
2 answers

How can I add a prefix to a WCF ServiceContract Namespace

I'm trying to implement an UPnP MediaServer in WCF. I'm slowly getting there, but now I've hit a brick wall. I need to add a prefix to the ServiceContract namespace. Right now I have the following: [ServiceContract(Namespace =…
Lodewijk
  • 2,380
  • 4
  • 25
  • 40
3
votes
1 answer

UPnP and Port Forwarding with Lidgren fails

I'm fairly new to networking and lidgren has made it much easier for me to begin adding multiplayer capability to my XNA PC game. I've been testing across the network setting up my laptop right next to me and it has been working great. The problem…
Ted
  • 277
  • 1
  • 3
  • 14
3
votes
0 answers

UPNP Advertise on Linux and discover on windows?

How to public/announce over Linux: GSSDP (libgssdp in most linux distros) is a small, reliable and well tested library that handles the announcement and discovery part of UPnP: it's trivial to write a small program that advertizes the device uri…
SC-SL
  • 377
  • 3
  • 19