<div dir="ltr"><div>I&#39;m trying to set up OSC communication between chuck and python-osc. It appears that the messages we send from the python side do not arrive at the chuck side. All other combinations, i.e. python to python, chuck to chuck and chuck to python are working fine though.</div><div>I&#39;m running python 3.4.4 on windows 7.</div><div>What could be going wrong here?</div><div><br></div><div>Here are the four files with the client/server implementations I&#39;m using for testing.</div><div><br></div><div><br></div><div>### chuck_client.py:</div><div><br></div><div>    OscSend xmit;</div><div>    xmit.setHost(&quot;localhost&quot;, 5005);</div><div>    &lt;&lt;&lt;&quot;Sending&quot;&gt;&gt;&gt;;</div><div>    xmit.startMsg(&quot;/debug&quot;);</div><div><br></div><div><br></div><div>### chuck_server.py:</div><div><br></div><div>    OscRecv orec;</div><div>    5005 =&gt; orec.port;</div><div>    orec.listen();</div><div>    orec.event(&quot;/debug&quot;) @=&gt; OscEvent e;</div><div>    </div><div>    &lt;&lt;&lt;&quot;Waiting&quot;&gt;&gt;&gt;;</div><div>    e =&gt; now;</div><div>    &lt;&lt;&lt;&quot;Received&quot;&gt;&gt;&gt;;</div><div><br></div><div><br></div><div>### python_client.py:</div><div><br></div><div>    from pythonosc import osc_message_builder</div><div>    from pythonosc import udp_client</div><div>    </div><div>    client = udp_client.UDPClient(&#39;localhost&#39;, 5005)</div><div>    msg = osc_message_builder.OscMessageBuilder(address=&quot;/debug&quot;)</div><div>    msg = msg.build()</div><div>    print(&#39;Sending&#39;)</div><div>    client.send(msg)</div><div><br></div><div>### python_server.py:</div><div><br></div><div>    from pythonosc import dispatcher</div><div>    from pythonosc import osc_server</div><div>    </div><div>    dispatcher = dispatcher.Dispatcher()</div><div>    dispatcher.map(&quot;/debug&quot;, lambda _: print(&#39;Received&#39;))</div><div>    </div><div>    print(&#39;Waiting&#39;)</div><div>    server = osc_server.ThreadingOSCUDPServer(</div><div>        (&#39;localhost&#39;, 5005), dispatcher)</div><div>    print(&quot;Serving on {}&quot;.format(server.server_address))</div><div>    server.serve_forever()</div><div><br></div><div>This issue can also be viewed on github: <a href="https://github.com/ccrma/chuck/issues/54#issuecomment-213495106">https://github.com/ccrma/chuck/issues/54#issuecomment-213495106</a></div></div>