<?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: Implementing UDP Client using Apache MINA</title>
	<atom:link href="http://www.ashishpaliwal.com/blog/2008/10/implementing-udp-client-using-apache-mina/feed/" rel="self" type="application/rss+xml" />
	<link>http://www.ashishpaliwal.com/blog/2008/10/implementing-udp-client-using-apache-mina/</link>
	<description>From Programmer, For Programmers</description>
	<lastBuildDate>Tue, 17 Aug 2010 12:04:21 +0000</lastBuildDate>
	<sy:updatePeriod>hourly</sy:updatePeriod>
	<sy:updateFrequency>1</sy:updateFrequency>
	<generator>http://wordpress.org/?v=3.0</generator>
	<item>
		<title>By: ashish</title>
		<link>http://www.ashishpaliwal.com/blog/2008/10/implementing-udp-client-using-apache-mina/comment-page-1/#comment-7946</link>
		<dc:creator>ashish</dc:creator>
		<pubDate>Tue, 13 Oct 2009 09:58:36 +0000</pubDate>
		<guid isPermaLink="false">http://www.ashishpaliwal.com/blog/?p=110#comment-7946</guid>
		<description>This is code extract from MINA example. Please get the code from there. You get the Session reference once your connection is complete :-)</description>
		<content:encoded><![CDATA[<p>This is code extract from MINA example. Please get the code from there. You get the Session reference once your connection is complete <img src='http://www.ashishpaliwal.com/blog/wp-includes/images/smilies/icon_smile.gif' alt=':-)' class='wp-smiley' /> </p>
]]></content:encoded>
	</item>
	<item>
		<title>By: sia</title>
		<link>http://www.ashishpaliwal.com/blog/2008/10/implementing-udp-client-using-apache-mina/comment-page-1/#comment-7945</link>
		<dc:creator>sia</dc:creator>
		<pubDate>Tue, 13 Oct 2009 08:48:10 +0000</pubDate>
		<guid isPermaLink="false">http://www.ashishpaliwal.com/blog/?p=110#comment-7945</guid>
		<description>ops, I had losting a slf4j-api library.

The Server is starting correctly but the client is a Nightmare...
Just a few question:
The code in the top is for Client or for the ClientHandler? Where is the main function for client?
And where I can define the Object session?

thanks</description>
		<content:encoded><![CDATA[<p>ops, I had losting a slf4j-api library.</p>
<p>The Server is starting correctly but the client is a Nightmare&#8230;<br />
Just a few question:<br />
The code in the top is for Client or for the ClientHandler? Where is the main function for client?<br />
And where I can define the Object session?</p>
<p>thanks</p>
]]></content:encoded>
	</item>
	<item>
		<title>By: ashish</title>
		<link>http://www.ashishpaliwal.com/blog/2008/10/implementing-udp-client-using-apache-mina/comment-page-1/#comment-7943</link>
		<dc:creator>ashish</dc:creator>
		<pubDate>Tue, 13 Oct 2009 07:43:29 +0000</pubDate>
		<guid isPermaLink="false">http://www.ashishpaliwal.com/blog/?p=110#comment-7943</guid>
		<description>Please set classpath as per this page http://mina.apache.org/mina-v20-quick-start-guide.html
Its not a problem. You can find the code with MINA distribution</description>
		<content:encoded><![CDATA[<p>Please set classpath as per this page <a href="http://mina.apache.org/mina-v20-quick-start-guide.html" rel="nofollow">http://mina.apache.org/mina-v20-quick-start-guide.html</a><br />
Its not a problem. You can find the code with MINA distribution</p>
]]></content:encoded>
	</item>
	<item>
		<title>By: sia</title>
		<link>http://www.ashishpaliwal.com/blog/2008/10/implementing-udp-client-using-apache-mina/comment-page-1/#comment-7942</link>
		<dc:creator>sia</dc:creator>
		<pubDate>Tue, 13 Oct 2009 07:20:41 +0000</pubDate>
		<guid isPermaLink="false">http://www.ashishpaliwal.com/blog/?p=110#comment-7942</guid>
		<description>hi... at the start, sorry for my terrible english...

I must implement a chat with apache mina for a university project but I don&#039;t understand nothing about Mina. I&#039;m using Eclipse and it produces always the exception 

&quot;Exception in thread &quot;main&quot; java.lang.NoClassDefFoundError: org/slf4j/LoggerFactory
	at org.apache.mina.core.service.SimpleIoProcessorPool.(SimpleIoProcessorPool.java:81)
	at org.apache.mina.core.polling.AbstractPollingIoAcceptor.(AbstractPollingIoAcceptor.java:104)
	at org.apache.mina.transport.socket.nio.NioSocketAcceptor.(NioSocketAcceptor.java:66)
	at Server.main(Server.java:18)
Caused by: java.lang.ClassNotFoundException: org.slf4j.LoggerFactory
	at java.net.URLClassLoader$1.run(Unknown Source)
	at java.security.AccessController.doPrivileged(Native Method)
	at java.net.URLClassLoader.findClass(Unknown Source)
	at java.lang.ClassLoader.loadClass(Unknown Source)
	at sun.misc.Launcher$AppClassLoader.loadClass(Unknown Source)
	at java.lang.ClassLoader.loadClass(Unknown Source)
	at java.lang.ClassLoader.loadClassInternal(Unknown Source)
	... 4 more&quot;
 
Please, could you send some complete sample TCP source code using apache MINA? because with the published code I can do anything...

thank you</description>
		<content:encoded><![CDATA[<p>hi&#8230; at the start, sorry for my terrible english&#8230;</p>
<p>I must implement a chat with apache mina for a university project but I don&#8217;t understand nothing about Mina. I&#8217;m using Eclipse and it produces always the exception </p>
<p>&#8220;Exception in thread &#8220;main&#8221; java.lang.NoClassDefFoundError: org/slf4j/LoggerFactory<br />
	at org.apache.mina.core.service.SimpleIoProcessorPool.(SimpleIoProcessorPool.java:81)<br />
	at org.apache.mina.core.polling.AbstractPollingIoAcceptor.(AbstractPollingIoAcceptor.java:104)<br />
	at org.apache.mina.transport.socket.nio.NioSocketAcceptor.(NioSocketAcceptor.java:66)<br />
	at Server.main(Server.java:18)<br />
Caused by: java.lang.ClassNotFoundException: org.slf4j.LoggerFactory<br />
	at java.net.URLClassLoader$1.run(Unknown Source)<br />
	at java.security.AccessController.doPrivileged(Native Method)<br />
	at java.net.URLClassLoader.findClass(Unknown Source)<br />
	at java.lang.ClassLoader.loadClass(Unknown Source)<br />
	at sun.misc.Launcher$AppClassLoader.loadClass(Unknown Source)<br />
	at java.lang.ClassLoader.loadClass(Unknown Source)<br />
	at java.lang.ClassLoader.loadClassInternal(Unknown Source)<br />
	&#8230; 4 more&#8221;</p>
<p>Please, could you send some complete sample TCP source code using apache MINA? because with the published code I can do anything&#8230;</p>
<p>thank you</p>
]]></content:encoded>
	</item>
	<item>
		<title>By: shiva</title>
		<link>http://www.ashishpaliwal.com/blog/2008/10/implementing-udp-client-using-apache-mina/comment-page-1/#comment-535</link>
		<dc:creator>shiva</dc:creator>
		<pubDate>Thu, 18 Dec 2008 05:21:19 +0000</pubDate>
		<guid isPermaLink="false">http://www.ashishpaliwal.com/blog/?p=110#comment-535</guid>
		<description>Subject: TFTP load balancing   

 I am interested finding a load balancing solution for TFTP servers so that we can load balance the TFTP servers (and thus the TFTP IP protocol). Has anyone done this before, had experience with this, know of any products/solutions to help me. Please? :)..
( not only with MINA)

please forward any links ..!!!</description>
		<content:encoded><![CDATA[<p>Subject: TFTP load balancing   </p>
<p> I am interested finding a load balancing solution for TFTP servers so that we can load balance the TFTP servers (and thus the TFTP IP protocol). Has anyone done this before, had experience with this, know of any products/solutions to help me. Please? <img src='http://www.ashishpaliwal.com/blog/wp-includes/images/smilies/icon_smile.gif' alt=':)' class='wp-smiley' /> ..<br />
( not only with MINA)</p>
<p>please forward any links ..!!!</p>
]]></content:encoded>
	</item>
	<item>
		<title>By: shiva</title>
		<link>http://www.ashishpaliwal.com/blog/2008/10/implementing-udp-client-using-apache-mina/comment-page-1/#comment-308</link>
		<dc:creator>shiva</dc:creator>
		<pubDate>Fri, 21 Nov 2008 06:00:00 +0000</pubDate>
		<guid isPermaLink="false">http://www.ashishpaliwal.com/blog/?p=110#comment-308</guid>
		<description>hi, ashish…..
how do you do?….

im devlping TFTP server with MINA, i have a prob…( describing here)

i want to send a packet and i need to for ACK,
if and only if ACK comes then i have to send next packet and so….
( here I must wait for ACK)

I tried( even now trying) but not geting… Hope u can do it easily,
If you can plz try and send me…..

thanq…….</description>
		<content:encoded><![CDATA[<p>hi, ashish…..<br />
how do you do?….</p>
<p>im devlping TFTP server with MINA, i have a prob…( describing here)</p>
<p>i want to send a packet and i need to for ACK,<br />
if and only if ACK comes then i have to send next packet and so….<br />
( here I must wait for ACK)</p>
<p>I tried( even now trying) but not geting… Hope u can do it easily,<br />
If you can plz try and send me…..</p>
<p>thanq…….</p>
]]></content:encoded>
	</item>
	<item>
		<title>By: shiva</title>
		<link>http://www.ashishpaliwal.com/blog/2008/10/implementing-udp-client-using-apache-mina/comment-page-1/#comment-54</link>
		<dc:creator>shiva</dc:creator>
		<pubDate>Tue, 11 Nov 2008 10:32:58 +0000</pubDate>
		<guid isPermaLink="false">http://www.ashishpaliwal.com/blog/?p=110#comment-54</guid>
		<description>hi 
asish..........

i&#039;ll describe my intent here..

&quot;how to send data from client side file to server side file&quot;

plz help me soon........

thank you.</description>
		<content:encoded><![CDATA[<p>hi<br />
asish&#8230;&#8230;&#8230;.</p>
<p>i&#8217;ll describe my intent here..</p>
<p>&#8220;how to send data from client side file to server side file&#8221;</p>
<p>plz help me soon&#8230;&#8230;..</p>
<p>thank you.</p>
]]></content:encoded>
	</item>
	<item>
		<title>By: shiva</title>
		<link>http://www.ashishpaliwal.com/blog/2008/10/implementing-udp-client-using-apache-mina/comment-page-1/#comment-50</link>
		<dc:creator>shiva</dc:creator>
		<pubDate>Mon, 10 Nov 2008 05:43:08 +0000</pubDate>
		<guid isPermaLink="false">http://www.ashishpaliwal.com/blog/?p=110#comment-50</guid>
		<description>hi...

what is difference b/w apache.commons and apache MINA...

could you tel me soon......</description>
		<content:encoded><![CDATA[<p>hi&#8230;</p>
<p>what is difference b/w apache.commons and apache MINA&#8230;</p>
<p>could you tel me soon&#8230;&#8230;</p>
]]></content:encoded>
	</item>
	<item>
		<title>By: shiva</title>
		<link>http://www.ashishpaliwal.com/blog/2008/10/implementing-udp-client-using-apache-mina/comment-page-1/#comment-49</link>
		<dc:creator>shiva</dc:creator>
		<pubDate>Mon, 10 Nov 2008 05:15:21 +0000</pubDate>
		<guid isPermaLink="false">http://www.ashishpaliwal.com/blog/?p=110#comment-49</guid>
		<description>hi....

how to send and recieve data from server....
can you plz send me one example which is working fine....

a bit urgent..
actually i&#039;d like to do TFTP client server program....

plz a bit urgent...</description>
		<content:encoded><![CDATA[<p>hi&#8230;.</p>
<p>how to send and recieve data from server&#8230;.<br />
can you plz send me one example which is working fine&#8230;.</p>
<p>a bit urgent..<br />
actually i&#8217;d like to do TFTP client server program&#8230;.</p>
<p>plz a bit urgent&#8230;</p>
]]></content:encoded>
	</item>
	<item>
		<title>By: ashish</title>
		<link>http://www.ashishpaliwal.com/blog/2008/10/implementing-udp-client-using-apache-mina/comment-page-1/#comment-40</link>
		<dc:creator>ashish</dc:creator>
		<pubDate>Wed, 05 Nov 2008 13:11:15 +0000</pubDate>
		<guid isPermaLink="false">http://www.ashishpaliwal.com/blog/?p=110#comment-40</guid>
		<description>Shiva, the code is complete, you just to glue this function together in main. I have removed unnecessary code, to keep posts simple. So, in main you call connect() and the call send data. Prepare the data u need to send.

Its that simple</description>
		<content:encoded><![CDATA[<p>Shiva, the code is complete, you just to glue this function together in main. I have removed unnecessary code, to keep posts simple. So, in main you call connect() and the call send data. Prepare the data u need to send.</p>
<p>Its that simple</p>
]]></content:encoded>
	</item>
</channel>
</rss>
