zeroconf

Can I use Bonjour from command line?

Is it possible to use Bonjour from command line? For example if I want to register a service I type something like that: bonjour -register service_name port. And then Bonjour allocate a free IP for my service. Or, for example, if I want to see a list of available services I type something like: bonjour -showServices. And then I get list ...

Why it should be done in such a complicated way? Is it OOP way of thinking?

I am trying to use Bonjour from Java. I found an example of how to do it and I think I understood it. But I still do not understand why it should be done in such a complicated way. May be I miss something. So, the code I found works in the following way (the code is also given bellow). Java program tries to find a service and if the ...

Can Bonjour browse a service with a particular name?

Bonjour provides "DNSSD.browse(serviceType,callBackObject)" method which browses for services of a particular type. If a service of the given type is found, Bonjour calls "callBackObject.serviceFound". If the service is lost, Bonjour calls "callBackObject.serviceLost". I alway considered "DNSSD.browse" as a method for monitoring a parti...

How can I discover zeroconf (Bonjour) services on Android? I'm having trouble with jmDNS.

I'm working with a Droid / Android 2.0.1 and encountering an issue apparently many people have: I'm unable to discover services using the one pure-Java zeroconf library I know of, jmDNS. (Apple's Bonjour, while it works on Linux and Windows Java, I believe would be harder to port to Android because of reliance on native code.) I can cre...

DNS resolve without depending on router for asterisk system

Hello, Basically I have a Debian box running asterisk assigned an IP via DHCP with host-name XXX. My windows browser can resolve the host-name but if I use host-name in X-Lite or my SPA922 phone it fails to resolve. Is there any way of getting this to work without depending on the router or assigning a static IP (request is to make it po...

is there a pure C# ZeroConf , bonjour, or dns-sd available?

I'm building a .net-microframework app that uses Zeroconf. The existing zeroconf solutions all seem to either rely on dns-sd.dll or some other interop function of .net which is not supported in .netmf. Is there a pure C# version of zeroconf (or dns-sd) out there that you know of? ...

Does log4net support zeroconf?

I've recently checked out Apache Chainsaw as a viewer for my log4net logs. One feature that struck me as interesting is zeroconf: http://logging.apache.org/log4j/companions/zeroconf/apidocs/org/apache/log4j/net/ZeroConfSocketHubAppender.html Does log4net support zeroconf for Apache Chainsaw to consume? Is there a log4net zeroconf append...

Where can I find the source code for log4j's ZeroConfSocketHubAppender?

I'm looking for a way to make log4net support zeroconf to publish logs to Apache Chainsaw (see here: http://stackoverflow.com/questions/2843238/does-log4net-support-zeroconf). Apparently log4j can already do this using a ZeroConfSocketHubAppender. Where might I be able to view the source for the java ZeroConfSocketHubAppender? I've loo...

Zeroconf Name resolution

I am developing a control device with an embedded webserver. The webserver provides a control interface to any web browser that requests it (from Windows browsers, Mac browsers, iPhone android etc). The problem I am having is with a general way of generically knowing how to access the device. i.e. what address to type in the web browser...

How do BitTorrents connect with eachother?

Hey guys, I was just downloading a new distro of linux using uTorrent, and started to wonder how uTorrent (and other bittorrents) send files to eachother through NAT routers? They obviously use the trackers to get introduced, but how do they pass info to eachother? Is there a whitepaper on this? I couldn't find one :/ Thanks, Max ...

ZeroConf Chat with Python

Hello all, I am trying to set up a Bonjour (or Ahavi) chatbot for our helpdesk system that would answer basic questions based on a menu system. The basis of my question is how do I get python to create the bot so that it connects to the network as a chat client. Basically, anyone on my network with iChat or Empathy (or any chat program...

How to advertise a Bonjour Service in Visual C++

Hey everyone, I'm trying to figure out if this is even possible, but what's the simplest way of advertising a Bonjour service through Visual C++? I've got the Bonjour SDK installed but frankly, SDK seems a kind word for what it really is. I've had a good old google around for sample codes, snippets, tutorials, but got nowhere - can anyon...