<?xml version="1.0" encoding="UTF-8"?><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"
	xmlns:sy="http://purl.org/rss/1.0/modules/syndication/"
		>
<channel>
	<title>Comments on: A Simple Java UDP Server and UDP Client</title>
	<atom:link href="http://systembash.com/content/a-simple-java-udp-server-and-udp-client/feed/" rel="self" type="application/rss+xml" />
	<link>http://systembash.com/content/a-simple-java-udp-server-and-udp-client/</link>
	<description>Technology and System Administration</description>
	<lastBuildDate>Mon, 15 Mar 2010 08:03:06 +0000</lastBuildDate>
	<generator>http://wordpress.org/?v=2.9.2</generator>
	<sy:updatePeriod>hourly</sy:updatePeriod>
	<sy:updateFrequency>1</sy:updateFrequency>
		<item>
		<title>By: vivek</title>
		<link>http://systembash.com/content/a-simple-java-udp-server-and-udp-client/comment-page-1/#comment-39975</link>
		<dc:creator>vivek</dc:creator>
		<pubDate>Tue, 23 Feb 2010 09:49:06 +0000</pubDate>
		<guid isPermaLink="false">http://systembash.com/?p=236#comment-39975</guid>
		<description>Good prgram for passing string,number etc between client &amp;server</description>
		<content:encoded><![CDATA[<p>Good prgram for passing string,number etc between client &amp;server</p>
]]></content:encoded>
	</item>
	<item>
		<title>By: Craig</title>
		<link>http://systembash.com/content/a-simple-java-udp-server-and-udp-client/comment-page-1/#comment-39939</link>
		<dc:creator>Craig</dc:creator>
		<pubDate>Mon, 08 Feb 2010 19:14:28 +0000</pubDate>
		<guid isPermaLink="false">http://systembash.com/?p=236#comment-39939</guid>
		<description>Ok I found it. It&#039;s 9876. Thanks</description>
		<content:encoded><![CDATA[<p>Ok I found it. It&#8217;s 9876. Thanks</p>
]]></content:encoded>
	</item>
	<item>
		<title>By: Craig</title>
		<link>http://systembash.com/content/a-simple-java-udp-server-and-udp-client/comment-page-1/#comment-39938</link>
		<dc:creator>Craig</dc:creator>
		<pubDate>Mon, 08 Feb 2010 19:11:17 +0000</pubDate>
		<guid isPermaLink="false">http://systembash.com/?p=236#comment-39938</guid>
		<description>How do you set the UDP port on which the server is listening?</description>
		<content:encoded><![CDATA[<p>How do you set the UDP port on which the server is listening?</p>
]]></content:encoded>
	</item>
	<item>
		<title>By: Matt Hollander</title>
		<link>http://systembash.com/content/a-simple-java-udp-server-and-udp-client/comment-page-1/#comment-40023</link>
		<dc:creator>Matt Hollander</dc:creator>
		<pubDate>Sun, 24 Jan 2010 16:33:43 +0000</pubDate>
		<guid isPermaLink="false">http://systembash.com/?p=236#comment-40023</guid>
		<description>&lt;span class=&quot;topsy_trackback_comment&quot;&gt;&lt;span class=&quot;topsy_twitter_username&quot;&gt;&lt;span class=&quot;topsy_trackback_content&quot;&gt;Just found the site where Freddy got his Client/Server http://is.gd/6VLfk #DurhamCS&lt;/span&gt;&lt;/span&gt;</description>
		<content:encoded><![CDATA[<p><span class="topsy_trackback_comment"><span class="topsy_twitter_username"><span class="topsy_trackback_content">Just found the site where Freddy got his Client/Server <a href="http://is.gd/6VLfk" rel="nofollow">http://is.gd/6VLfk</a> #DurhamCS</span></span></span></p>
]]></content:encoded>
	</item>
	<item>
		<title>By: Nitin Verma</title>
		<link>http://systembash.com/content/a-simple-java-udp-server-and-udp-client/comment-page-1/#comment-39390</link>
		<dc:creator>Nitin Verma</dc:creator>
		<pubDate>Thu, 19 Nov 2009 15:22:47 +0000</pubDate>
		<guid isPermaLink="false">http://systembash.com/?p=236#comment-39390</guid>
		<description>Client is sending the packets to localhost, use the IP Adress or name of the m/c you are running server on.

InetAddress IPAddress = InetAddress.getByName(&quot;localhost&quot;);</description>
		<content:encoded><![CDATA[<p>Client is sending the packets to localhost, use the IP Adress or name of the m/c you are running server on.</p>
<p>InetAddress IPAddress = InetAddress.getByName(&#8220;localhost&#8221;);</p>
]]></content:encoded>
	</item>
	<item>
		<title>By: Anonymous</title>
		<link>http://systembash.com/content/a-simple-java-udp-server-and-udp-client/comment-page-1/#comment-39252</link>
		<dc:creator>Anonymous</dc:creator>
		<pubDate>Wed, 11 Nov 2009 07:35:59 +0000</pubDate>
		<guid isPermaLink="false">http://systembash.com/?p=236#comment-39252</guid>
		<description>its nt working on two different computer...what should i do </description>
		<content:encoded><![CDATA[<p>its nt working on two different computer&#8230;what should i do</p>
]]></content:encoded>
	</item>
	<item>
		<title>By: edgar</title>
		<link>http://systembash.com/content/a-simple-java-udp-server-and-udp-client/comment-page-1/#comment-38617</link>
		<dc:creator>edgar</dc:creator>
		<pubDate>Tue, 13 Oct 2009 09:13:53 +0000</pubDate>
		<guid isPermaLink="false">http://systembash.com/?p=236#comment-38617</guid>
		<description>In the server, you would like to take into account the size of the received package:

String sentence = new String(receivePacket.getData(), 0,  receivePacket.getLength());</description>
		<content:encoded><![CDATA[<p>In the server, you would like to take into account the size of the received package:</p>
<p>String sentence = new String(receivePacket.getData(), 0,  receivePacket.getLength());</p>
]]></content:encoded>
	</item>
	<item>
		<title>By: Me</title>
		<link>http://systembash.com/content/a-simple-java-udp-server-and-udp-client/comment-page-1/#comment-38382</link>
		<dc:creator>Me</dc:creator>
		<pubDate>Mon, 05 Oct 2009 10:46:17 +0000</pubDate>
		<guid isPermaLink="false">http://systembash.com/?p=236#comment-38382</guid>
		<description>&gt; javac UDPClient.java UDPServer.java
Open two command prompt windows and write in one:
&gt; java UDPServer
and after this, write on another:
&gt; java UDPClient</description>
		<content:encoded><![CDATA[<p>&gt; javac UDPClient.java UDPServer.java<br />
Open two command prompt windows and write in one:<br />
&gt; java UDPServer<br />
and after this, write on another:<br />
&gt; java UDPClient</p>
]]></content:encoded>
	</item>
	<item>
		<title>By: jeya</title>
		<link>http://systembash.com/content/a-simple-java-udp-server-and-udp-client/comment-page-1/#comment-37678</link>
		<dc:creator>jeya</dc:creator>
		<pubDate>Mon, 07 Sep 2009 10:35:37 +0000</pubDate>
		<guid isPermaLink="false">http://systembash.com/?p=236#comment-37678</guid>
		<description>how to execute</description>
		<content:encoded><![CDATA[<p>how to execute</p>
]]></content:encoded>
	</item>
	<item>
		<title>By: terry</title>
		<link>http://systembash.com/content/a-simple-java-udp-server-and-udp-client/comment-page-1/#comment-37283</link>
		<dc:creator>terry</dc:creator>
		<pubDate>Mon, 10 Aug 2009 10:53:48 +0000</pubDate>
		<guid isPermaLink="false">http://systembash.com/?p=236#comment-37283</guid>
		<description>how to execute</description>
		<content:encoded><![CDATA[<p>how to execute</p>
]]></content:encoded>
	</item>
</channel>
</rss>
