Thanks for replying,
Actually I am trying to implement an encryption algorithm using JPPF, so i am starting with a simple program lets say adding two numbers which is running on java perfectly now i changed the program to run on jppf as follows:
import org.jppf.server.protocol.JPPFTask;
public class TemplateJPPFTask extends JPPFTask
{
public void run()
{
System.out.println("Hello, this is the node executing a one vishal's template 2 JPPF task");
int a = 56;
int b=61;
int c;
c=a + b;
System.out.println("addition of " + a + " and " + b +" is "+ c);
setResult("the execution of my templet was performed successfully");
}
}
and i had already started JPPF node , Server. Now how i will run this code on jppf?
please guide me i will really appreciate your help.