<?xml version="1.0" encoding="UTF-8"?><rss xmlns:dc="http://purl.org/dc/elements/1.1/" xmlns:content="http://purl.org/rss/1.0/modules/content/" xmlns:atom="http://www.w3.org/2005/Atom" version="2.0"><channel><title><![CDATA[C++ Client Server Kommunikation]]></title><description><![CDATA[<p>Hallo,</p>
<p>ich suche einen Muster in C++ zur Kommunikationsaufbau zw. Client und Server mit Standartmethoden. Das ganze soll lokal, in verschiedenen Threads laufen. Der Client soll Nachrichten verschicken können und der Server sie empfangen.<br />
Vielen Dank im voraus.</p>
<p>Grüße July</p>
]]></description><link>https://www.c-plusplus.net/forum/topic/287245/c-client-server-kommunikation</link><generator>RSS for Node</generator><lastBuildDate>Thu, 20 Aug 2026 14:40:46 GMT</lastBuildDate><atom:link href="https://www.c-plusplus.net/forum/topic/287245.rss" rel="self" type="application/rss+xml"/><pubDate>Wed, 25 May 2011 08:29:19 GMT</pubDate><ttl>60</ttl><item><title><![CDATA[Reply to C++ Client Server Kommunikation on Wed, 25 May 2011 08:29:19 GMT]]></title><description><![CDATA[<p>Hallo,</p>
<p>ich suche einen Muster in C++ zur Kommunikationsaufbau zw. Client und Server mit Standartmethoden. Das ganze soll lokal, in verschiedenen Threads laufen. Der Client soll Nachrichten verschicken können und der Server sie empfangen.<br />
Vielen Dank im voraus.</p>
<p>Grüße July</p>
]]></description><link>https://www.c-plusplus.net/forum/post/2068273</link><guid isPermaLink="true">https://www.c-plusplus.net/forum/post/2068273</guid><dc:creator><![CDATA[july07]]></dc:creator><pubDate>Wed, 25 May 2011 08:29:19 GMT</pubDate></item><item><title><![CDATA[Reply to C++ Client Server Kommunikation on Wed, 25 May 2011 08:31:19 GMT]]></title><description><![CDATA[<p><a href="http://c-worker.ch/" rel="nofollow">http://c-worker.ch/</a><br />
war mir sehr hilfreich <img
      src="https://www.c-plusplus.net/forum/plugins/nodebb-plugin-emoji/emoji/emoji-one/1f609.png?v=ab1pehoraso"
      class="not-responsive emoji emoji-emoji-one emoji--winking_face"
      title=";)"
      alt="😉"
    /></p>
]]></description><link>https://www.c-plusplus.net/forum/post/2068276</link><guid isPermaLink="true">https://www.c-plusplus.net/forum/post/2068276</guid><dc:creator><![CDATA[sebi91]]></dc:creator><pubDate>Wed, 25 May 2011 08:31:19 GMT</pubDate></item><item><title><![CDATA[Reply to C++ Client Server Kommunikation on Wed, 25 May 2011 08:46:17 GMT]]></title><description><![CDATA[<p>Ich hab mir an etwas ohne TCP und sockets gedacht, weil ich eh nur paar Server und Clients auf meinem lokalen Rechner starten möchte. Geht das in c++?</p>
<p>Grüße July</p>
]]></description><link>https://www.c-plusplus.net/forum/post/2068283</link><guid isPermaLink="true">https://www.c-plusplus.net/forum/post/2068283</guid><dc:creator><![CDATA[july07]]></dc:creator><pubDate>Wed, 25 May 2011 08:46:17 GMT</pubDate></item><item><title><![CDATA[Reply to C++ Client Server Kommunikation on Wed, 25 May 2011 08:48:11 GMT]]></title><description><![CDATA[<p>july07 schrieb:</p>
<blockquote>
<p>Ich hab mir an etwas ohne TCP und sockets gedacht, weil ich eh nur paar Server und Clients auf meinem lokalen Rechner starten möchte. Geht das in c++?</p>
<p>Grüße July</p>
</blockquote>
<p>Über was sollen Denn Deine Clients und Server miteinander kommunizieren? Es muss ja ein Medium und irgendwelche Protokolle geben. Sonst wird das nichts.</p>
]]></description><link>https://www.c-plusplus.net/forum/post/2068284</link><guid isPermaLink="true">https://www.c-plusplus.net/forum/post/2068284</guid><dc:creator><![CDATA[Tachyon]]></dc:creator><pubDate>Wed, 25 May 2011 08:48:11 GMT</pubDate></item><item><title><![CDATA[Reply to C++ Client Server Kommunikation on Wed, 25 May 2011 08:54:09 GMT]]></title><description><![CDATA[<p>aus QNX kenn ich die Kommunikation über NodeId, ProcessId usw., was hier ziemlcih prtaktisch wäre. Ist sowas auch in normalem c++ möglich?</p>
<p>Grüße July</p>
]]></description><link>https://www.c-plusplus.net/forum/post/2068292</link><guid isPermaLink="true">https://www.c-plusplus.net/forum/post/2068292</guid><dc:creator><![CDATA[july07]]></dc:creator><pubDate>Wed, 25 May 2011 08:54:09 GMT</pubDate></item><item><title><![CDATA[Reply to C++ Client Server Kommunikation on Wed, 25 May 2011 08:59:37 GMT]]></title><description><![CDATA[<p>july07 schrieb:</p>
<blockquote>
<p>aus QNX kenn ich die Kommunikation über NodeId, ProcessId usw., was hier ziemlcih prtaktisch wäre. Ist sowas auch in normalem c++ möglich?</p>
<p>Grüße July</p>
</blockquote>
<p>Nicht mit Standardmitteln. Für Interprozesskommunikation brauchst Du entweder Funktionen des Betriebssystems oder Wrapper darum, wie sie z.B. von<a href="http://www.boost.org/doc/libs/1_46_1/doc/html/interprocess.html" rel="nofollow"> <code>boost.interprocess</code> </a>angeboten werden. Als einfaches Medium kann man außerdem über Dateien kommunizieren, jedoch hat man da häufig das Problem, dass dies schwer zu synchronisieren ist.</p>
]]></description><link>https://www.c-plusplus.net/forum/post/2068298</link><guid isPermaLink="true">https://www.c-plusplus.net/forum/post/2068298</guid><dc:creator><![CDATA[Tachyon]]></dc:creator><pubDate>Wed, 25 May 2011 08:59:37 GMT</pubDate></item><item><title><![CDATA[Reply to C++ Client Server Kommunikation on Wed, 25 May 2011 09:57:26 GMT]]></title><description><![CDATA[<p><a class="plugin-mentions-user plugin-mentions-a" href="https://www.c-plusplus.net/forum/uid/4465">@Tachyon</a><br />
Kann ich dafür nicht einfach wie in Java Streams benutzen?</p>
]]></description><link>https://www.c-plusplus.net/forum/post/2068333</link><guid isPermaLink="true">https://www.c-plusplus.net/forum/post/2068333</guid><dc:creator><![CDATA[july07]]></dc:creator><pubDate>Wed, 25 May 2011 09:57:26 GMT</pubDate></item><item><title><![CDATA[Reply to C++ Client Server Kommunikation on Wed, 25 May 2011 10:03:58 GMT]]></title><description><![CDATA[<p>july07 schrieb:</p>
<blockquote>
<p><a class="plugin-mentions-user plugin-mentions-a" href="https://www.c-plusplus.net/forum/uid/4465">@Tachyon</a><br />
Kann ich dafür nicht einfach wie in Java Streams benutzen?</p>
</blockquote>
<p>Das wäre dann quasi über Dateien, jedoch ist das Problem dabei die Synchronisation:<br />
Welcher Prozess schreibt gerade? Ist das Schreiben abgeschlossen? Darf ich schon lesen? Usw.</p>
]]></description><link>https://www.c-plusplus.net/forum/post/2068337</link><guid isPermaLink="true">https://www.c-plusplus.net/forum/post/2068337</guid><dc:creator><![CDATA[Tachyon]]></dc:creator><pubDate>Wed, 25 May 2011 10:03:58 GMT</pubDate></item></channel></rss>