Tagged Questions
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.
16
votes
7answers
12k views
Is there a UPnP Library for .NET (C# or VB.NET)?
I'm working on a P2P application, and I need to get it to communicate through NAT Routers / Firewalls using UPnP. However, it doesn't seem that the .NET Framework includes support for UPnP.
Is there ...
13
votes
6answers
6k views
Where can I get started writing a media server in C# like PlayOn
Where can I get started writing a media server in C# like PlayOn
http://www.themediamall.com/playon
UPDATE:
I have learned that PlayOn is a is a DLNA/UPnP media server but I am still looking for C# ...
8
votes
2answers
3k views
Python UPnP/IGD Client Implementation?
I am searching for an open-source implementation of an UPnP client in Python, and more specifically of its Internet Gateway Device (IGD) part.
For now, I have only been able to find UPnP Media Server ...
8
votes
5answers
12k views
Creating a DLNA server/service in VB.NET
I would like to create a DLNA server in VB.NET.
Since a lot of multimedia devices start supporting DLNA, i would like to see what is possible. Not only streaming video/audio and pictures but see what ...
7
votes
3answers
440 views
How to guide for creating a uPNP iPhone app?
I want to create an iPhone app that manages a Windows computer via uPNP. The Windows computer will be the device I'm controlling, and the iPhone will be the controller.
I've pretty much narrowed it ...
7
votes
4answers
4k views
UPnP library for Java [closed]
Is there a library for implementing service discovery and publishing via UPnP?
(I am trying to find some alternatives to JmDNS that while protocol-wise worked fine for our purposes, was highly ...
6
votes
2answers
4k views
iPhone to iPhone communication
I'm kind of curious how I should approach a problem with iPhones and communication between two phones.
I have an idea for an application that needs to send data between two known phones. The problem ...
4
votes
6answers
1k views
UPnP Library for .Net
I'm trying to play around with UPnP. Specifically, I'm trying to browse the content library of a PS3 Media Server.
I tried upnp.dll (a COM library that ships with windows) and found it easy to use. ...
4
votes
4answers
9k views
C# UPNP/DNLA Media Server Library
I want to add UPNP media server functionality to an app, are there any good C# UPNP/DNLA Media Server Libraries?
4
votes
2answers
1k views
What are the best options for NAT port forwarding?
I'd like to make it easy for users to forward a port on their NAT to their local machine for my C++ app. I'd like to make this work on OSX & Windows. Linux would be a great bonus, but Linux ...
3
votes
1answer
351 views
Android Http server and broken pipes
I'm trying to develop an Android UPnP application that has an embedded http server in it, so it can serve media files from the device over lan.
The first implementacion of the web server that I used ...
3
votes
2answers
74 views
How to set DNS Servers on Router from OSX Client?
I want to set the dns servers that my router will hand out to all clients from a program running on osx. Is there any native way to do this. Does osx provide any uPNP wrapper apis. I have seen some ...
3
votes
1answer
2k views
What's the difference between UPnP AV and DLNA?
Am I right in thinking that if I'm DLNA 1.5 compliant, I've implemented UPnP AV? What does DLNA get me besides specifying minimum format requirements? Isn't DLNA built on top of UPnP? I know for ...
3
votes
2answers
786 views
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:
...
3
votes
4answers
3k views
Trying to get NAT's external IPAddress with INATExternalIPAddressCallback in C#
How do I get the external IP Address of a NAT using the windows library? I am trying to find any information on INATExternalIPAddressCallback, but have only found one example in C++ using unavailable ...
3
votes
1answer
988 views
Is there any reasonable SSDP or DIDL Lib for java/groovy/python?
For a future project I am looking for a library to handle SSDP communication and messages in DIDL-Lite xml dialect. Is there any reasonable implementation of java, groovy or python?
I don't like to ...
3
votes
1answer
1k views
Emulating a UPnP router
I want to add the option of automatic port forwarding (NAT Traversal) to an application.
I know this can be done using UPnP (specifically the part that communicates with the device presenting itself ...
2
votes
1answer
75 views
UPnP port forwarding with C++ in Windows
I am trying to use the C++ IUPnPNAT interface to achieve automatic port forwarding in a P2P application under windows, and I can't make it work just because it returns allways a NULL object. I was not ...
2
votes
1answer
84 views
Search DLNA(Upnp) media renderers for remoteplayback
I am trying to write a DLNA application using the Cling Java library. I Can able to search all the media servers in the DLNA network and play the content also. But i need to search Media Renderers ...
2
votes
1answer
107 views
How to programmatically turn on “Network Discovery” in Windows?
My project open ports using UPnP protocol. Windows disables UPnP device discovery by default, one needs to turn on "Network Discovery" in "Network and Sharing Center" to enable UPnP device discovery.
...
2
votes
1answer
127 views
Windows COM action invoke on UPNP
I'm working with COM UPnP. I'm trying to send SetAVTransportURI action to urn:upnp-org:serviceId:AVTransport. SetAVTransportURI requires 3 params:
InstanceID: 0
CurrentURI: ...
2
votes
1answer
470 views
TCP hole punching on iPhone
I have done a bit of reading, and although I'm new to iPhone networking I was wondering if a TCP hole punch is possible for connecting two iPhones through NAT. I also read some helpful things about ...
2
votes
1answer
162 views
client server app upnp / port forward question
I am thinking about writing a client server app using sockets in c#. My question is, if the server is behind a router and upnp is enabled, once the server starts listening does upnp automatically ...
2
votes
1answer
915 views
UPnP AV Remote Control in Java or C#
I need to create some kind of remote control that can interact with a UPnP media server.
I've read that there are kind of like three applications for the UPnP AV stack: media server, media renderer, ...
2
votes
1answer
557 views
Can UPnP Discovery be done from Javascript?
I'm working on a webpage on which I want to discover some UPnP devices, however the client maybe on a different VLAN than the server. So, UPnP discovery needs to happen on the client. Apparently UDP ...
2
votes
1answer
239 views
portforward with UPnP
I am writing a networking application and need to forward a port on a router if UPnP is enabled. Where can I find C++ code for forwarding a port with UPnP? The the code must work on windows xp, ...
2
votes
1answer
289 views
Python: Open a Listening Port Behind a Router (upnp?)
I've developed an application that is essentially just a little ftp server with the ability to specify which directory you wish to share on startup. I'm using ftplib for the server because it's sick ...
2
votes
2answers
1k views
SSDP on the iPhone
I need to be able to send out a UDP message and also receive one in order to discover SSDP devices on the network from the iPhone.
I know that I need to send the packet to the multicast address and ...
2
votes
1answer
1k views
How to use the Platinum uPnP SDK?
I would like to use the Platinum SDK in order to develop a cross platform uPnP AV Host using Qt. I can't find any documentations or wiki for this library.
Does anyone already used the Platinum SDK ...
1
vote
2answers
55 views
logic: how to search a local network for a custom service
I'm not familiar with networking terminology so it makes it difficult searching for an answer without the right keywords.
My curiosity is picking at me again after seeing how media servers work. I'm ...
1
vote
1answer
44 views
Can I instantly forward a port-range with UPnP?
I am currently using the COM object "Interop.NATUPNPLib" in order to port-forward a couple of ports using UPnP.
I can forward ports individually just fine, but now I have a port range that I want to ...
1
vote
0answers
39 views
UPnP auto select external port
I am trying to make an application that utilizes UPnP if necessary to open ports so incoming transmissions can be received. The thing is, I don't want to specify an external port (because one, the ...
1
vote
1answer
53 views
Pass a function to a COM Object Function as a parameter
I'm using the UPnP Object Method IUPnPDeviceFinder::[CreateAsyncFind][1] and the third parameter is a callback function.
I've tried to create my own COM Object but the method don't call back my ...
1
vote
1answer
61 views
Some question about NAT Penetration with UPnP
I'm implementing a protection system for household network. There are several digital devices in the home, and they all have web services running on them in order that they can visit each other ...
1
vote
1answer
138 views
How do I get the android emulator to use port 1900 when it's already being used by Windows?
I'm writing an android application that searches for devices using the UPnP port 1900, but when I telnet into the emulator and try to set up the port redirect like so:
redir add udp:1900:1900
It ...
1
vote
0answers
123 views
Could UPnP control point display UI on Media Render
i've need to design UPnP control point device to remote control DLNA-certified TV box.
The question is could UPnP control point display UI on Media Render ? What I mean is how I could create simple ...
1
vote
2answers
262 views
Is ->h_addr_list[0] the address I need?
I am working on implementing UpNP on C++, and I need to get the local internal IP address assigned by the router to make the sockets works. The address I need is the one that appears on routers where ...
1
vote
2answers
350 views
UPnP discovery in c++?
I am trying to implement UpNp in a c++ application, I found this code with google:
BOOL upnp_discover( upnp_device_t* Device, ushort Tries )
{
SOCKET Sock;
struct sockaddr_in ...
1
vote
1answer
397 views
Searching for UPnP devices using SSDP
I want to search for my media player on the network. Am I right in thinking it is done using SSDP m-search?
Also, when I switch the device on, will it broadcast its availability? How do I go about ...
1
vote
1answer
164 views
Comparison of P2P Technology
I have gone through various udp based P2P Technology like Stun . I have implemented UDP/TCP hole punching recently for implementing p2p.
I found there are other technology as for like ICE,UPnP and ...
1
vote
1answer
122 views
How to use a python package - shouldn't i be able to access anything listed in __all__?
I'm trying to use the pyupnp package (http://code.google.com/p/pyupnp/)
I've built and installed it and in my code I have:
import pyupnp
b = pyupnp.UpnpBase()
...
But I get this error: ...
1
vote
2answers
358 views
Having trouble with Scala's “repsep” as seen in parser combinators
Please help! I am trying to build a parser to parse SSDP messages as defined in the UPnP protocol. (see "Discovery" section)
Basically it's a header of HTTP OK, followed by name: value pairs, and ...
1
vote
0answers
455 views
iOS UPnP Server
I wrote a UPnP controller for iOS on Obj-C using cybergarage and now I want to add a UPnP Server for the same app using the same cybergarage library.
But I got a problem: I didnt found any tutorials ...
1
vote
0answers
123 views
How would a client/server utilizing UPnP work in Ruby?
I'd like to allow two computers behind routers share files in a server/client setup using Ruby; I've looked into the UPnP implementation for Ruby, but the documentation is, in my opinion, fairly poor ...
1
vote
1answer
482 views
SSDP and interface IP address
I'm writing a UPnP AV/DLNA DMS which needs to send and receive SSDP messages. In response to some M-SEARCH packets I need to send a reply with the URL of a resource (in this case a HTTP server), which ...
1
vote
0answers
111 views
UPnp Device with Python
I want to implement a UPnP device that has 1 service and 1 action in python.please help in the designing part. I looked over the Python-Brisa code but it is too complicated. Please suggest me ant link ...
1
vote
1answer
301 views
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 ...
1
vote
1answer
263 views
Is there a Python library for service discovery using SSDP or UPnP?
Is there a library for implementing Simple Service Discovery Protocol(SSDP) via UPnP in Python? Basically, I want to make protocols for SSDP using python.
1
vote
3answers
557 views
Is “Platinum UPnP” open source library a good option to implement a DLNA system on a linux based system?
I am thinking of implementing my own DLNA system on my linux based systems. Is "Platinum UPnP" library a good option for this.
What I found is "Platinum UPnP" library is quite big in size.
Are ...
1
vote
1answer
138 views
Upnp: list portmappings
I'm currently looking at the miranda upnp tool (http://code.google.com/p/mirandaupnptool/). Is there a way for upnp to list all portmappings. I was able to forward ports an delete portmappings but I ...