Creating the netlet descriptors

We need two netlet descriptors for this example, one for the client netlet and one for the provider netlet.

For the creating client netlet descriptor we specify the following:

Meanwhile, the netlet descriptor for Hello2Provider is largely the same. It differs only in these respects:

From all this we get the following sequence:


% ls
hello2.jar
% jtrixmaker -type netlet -outfile hello2-client.xml \
     -jardirs /usr/lib/jtrix . -jars hello2.jar \
     -classname org.jtrix.project.helloworld.Hello2Client
% jtrixmaker -type netlet -outfile hello2-provider.xml \
     -jardirs /usr/lib/jtrix . -jars nodality_facet.jar hello2.jar \
     -classname org.jtrix.project.helloworld.Hello2Provider
% ls
hello2-client.xml  hello2-provider.xml	hello2.jar
% 

The two descriptors that come out of this allow us to run them in a node.

Nik Silver 2002-03-09