<?xml version="1.0" encoding="UTF-8"?>
<rss version="2.0"
	xmlns:content="http://purl.org/rss/1.0/modules/content/"
	xmlns:wfw="http://wellformedweb.org/CommentAPI/"
	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/"
	xmlns:slash="http://purl.org/rss/1.0/modules/slash/"
	>

<channel>
	<title>Java, J# &#38; C# Notes &#187; RMI</title>
	<atom:link href="http://robotics.icstweb.org/java-do-diez/category/rmi/feed/" rel="self" type="application/rss+xml" />
	<link>http://robotics.icstweb.org/java-do-diez</link>
	<description></description>
	<lastBuildDate>Wed, 08 Sep 2010 21:26:30 +0000</lastBuildDate>
	<language>en</language>
	<sy:updatePeriod>hourly</sy:updatePeriod>
	<sy:updateFrequency>1</sy:updateFrequency>
	<generator>http://wordpress.org/?v=3.0.1</generator>
		<item>
		<title>How to: RMI</title>
		<link>http://robotics.icstweb.org/java-do-diez/2009/02/05/how-to-rmi/</link>
		<comments>http://robotics.icstweb.org/java-do-diez/2009/02/05/how-to-rmi/#comments</comments>
		<pubDate>Thu, 05 Feb 2009 11:07:52 +0000</pubDate>
		<dc:creator>Fieral</dc:creator>
				<category><![CDATA[How-To]]></category>
		<category><![CDATA[Java]]></category>
		<category><![CDATA[RMI]]></category>

		<guid isPermaLink="false">http://robotics.icstweb.org/java-do-diez/?p=65</guid>
		<description><![CDATA[Steps to creation of an RMI system: The short version 1) Create an interface. (in this case, the interface is myRMIInterface.java). 2) Create a class that implements the interface. (in this case, myRMIImpl.java). 3) Create a server that creates an instance of this class 4) Create a client that connects to the server object using [...]]]></description>
			<content:encoded><![CDATA[<p>Steps to creation of an RMI system: </p>
<p>The short version<br />
1) Create an interface. (in this case, the interface is myRMIInterface.java).<br />
2) Create a class that implements the interface. (in this case, myRMIImpl.java).<br />
3) Create a server that creates an instance of this class<br />
4) Create a client that connects to the server object using Naming.lookup()<br />
5) Compile these classes.<br />
6) Run the RMI interface compiler on the .class file of the implementation<br />
   class (in this case, you&#8217;d say &#8220;rmic myRMIImpl&#8221;).<br />
7) Start the RMI registry (on Windows NT/95, say &#8220;start rmiregistry&#8221;).<br />
8) Start the server class (&#8220;start java myRMIServer&#8221;).<br />
9) Run the client program (&#8220;java myRMIClient&#8221;).</p>
<p>The long version: <a href="http://patriot.net/~tvalesky/easyrmi.html">http://patriot.net/~tvalesky/easyrmi.html</a></p>
]]></content:encoded>
			<wfw:commentRss>http://robotics.icstweb.org/java-do-diez/2009/02/05/how-to-rmi/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
	</channel>
</rss>
