<?xml version="1.0" encoding="UTF-8"?>
<!-- generator="bbPress/1.1" -->
<rss version="2.0"
	xmlns:content="http://purl.org/rss/1.0/modules/content/"
	xmlns:dc="http://purl.org/dc/elements/1.1/"
	xmlns:atom="http://www.w3.org/2005/Atom"
		>
	<channel>
		<title>Control &#187; Topic: Hypothetical control setup - is it possible?</title>
		<link>http://charlie-roberts.com/Control/forum/topic.php?id=457</link>
		<description>forum for discussing Control interface software</description>
		<language>en-US</language>
		<pubDate>Wed, 19 Jun 2013 15:49:40 +0000</pubDate>
		<generator>http://bbpress.org/?v=1.1</generator>
				<atom:link href="http://charlie-roberts.com/Control/forum/rss.php?topic=457" rel="self" type="application/rss+xml" />

		<item>
			<title>olekristensen on "Hypothetical control setup - is it possible?"</title>
			<link>http://charlie-roberts.com/Control/forum/topic.php?id=457#post-3414</link>
			<pubDate>Wed, 14 Mar 2012 15:25:56 +0000</pubDate>
			<dc:creator>olekristensen</dc:creator>
			<guid isPermaLink="false">3414@http://charlie-roberts.com/Control/forum/</guid>
			<description><![CDATA[<p>Hey Guys,</p>
<p>I've made my processing sketch show up on the list of destinations, and I just wanted to share my little hack with you...</p>
<p>I was spending a lot of time looking at different java implementations zeroConf/ahavi/bonjour/mDNS/dns-ds (so many names, damn you trademarks!) - many of them were abandoned.</p>
<p>- but in the terminal i did this: <code>man mDNS</code></p>
<p>and found out i could just let my processing sketch fire a shell command in it's setup.</p>
<pre><code>import java.io.*;

void setup()
{
    String[] params = {
    &#34;/usr/bin/mDNS&#34;, &#34;-R&#34;, &#34;\&#34;Oles fine service\&#34;&#34;, &#34;_osc._udp&#34;, &#34;.&#34;, &#34;10000&#34;
  };

  exec(params);
}</code></pre>
<p>- but why is it that the iOS client does not show my custom string for the service?</p>
<p>an ip/portnumber combo doesn't make much sense to my experience lab users....</p>
<p>best / ole</p>
<p>it university of copenhagen<br />
recoil performance group
</p>]]></description>
					</item>
		<item>
			<title>admin on "Hypothetical control setup - is it possible?"</title>
			<link>http://charlie-roberts.com/Control/forum/topic.php?id=457#post-1406</link>
			<pubDate>Thu, 19 Jan 2012 18:59:45 +0000</pubDate>
			<dc:creator>admin</dc:creator>
			<guid isPermaLink="false">1406@http://charlie-roberts.com/Control/forum/</guid>
			<description><![CDATA[<p>Hi Jeff,</p>
<p>Yes, you can automatically route each client to a different port. The process would be:</p>
<p>1. Your server scans for instances of Control running on the wifi network using Bonjour / Zeroconf (see <a href="http://jmdns.sourceforge.net/)" rel="nofollow">http://jmdns.sourceforge.net/)</a></p>
<p>2. When it finds an instance, it sends the <code>/control/pushDestination</code> msg to that device. This allows you both to specify an IP (which will be the same for all instances) and a port (which will be different for each instance).</p>
<p>3. You can then dynamically create interfaces depending on which parameters a client is controlling. Alternatively everyone could use the same controls just routed differently (this would be easier).</p>
<p>This page will probably help you:</p>
<p><a href="http://charlie-roberts.com/Control/?page_id=297" rel="nofollow">http://charlie-roberts.com/Control/?page_id=297</a></p>
<p>... and you might also want to check out this blog entry:</p>
<p><a href="http://charlie-roberts.com/Control/?p=292" rel="nofollow">http://charlie-roberts.com/Control/?p=292</a></p>
<p>Let me know how it goes! - Charlie
</p>]]></description>
					</item>
		<item>
			<title>beatfix on "Hypothetical control setup - is it possible?"</title>
			<link>http://charlie-roberts.com/Control/forum/topic.php?id=457#post-1405</link>
			<pubDate>Thu, 19 Jan 2012 18:28:44 +0000</pubDate>
			<dc:creator>beatfix</dc:creator>
			<guid isPermaLink="false">1405@http://charlie-roberts.com/Control/forum/</guid>
			<description><![CDATA[<p>Hi all,</p>
<p>New to the forums, very excited about the potential of Control in my digital art-making.  I have an idea for a project, trying to figure out how feasible it is.</p>
<p>I'd like to allow multiple clients (smartphone, tablet) to simultaneously connect to an OSC server running real-time visual software.  The software has dozens of exposed parameters that can be controlled via OSC/MIDI.</p>
<p>Here's the tricky bit - I'd like to set it up so that each new client is automatically filtered (or directed) to a different set of parameters, so there is no overlap between multiple clients.  This requires that the server is somehow aware of the uniqueness of each client connecting to it.</p>
<p>Is it possible to:<br />
A. automatically route each new client to a new (open) server port upon connection<br />
or<br />
B. filter incoming messages by client if they are coming in on the same port</p>
<p>Right now I'm using Processing on the server end, though PD is also an option.</p>
<p>Any thoughts appreciated.  Thanks!<br />
j e f f
</p>]]></description>
					</item>

	</channel>
</rss>
