I have an Stand alone Application which runs Shell Script(with parameters)in Ubuntu.
ProcessBuilder pb1 = new ProcessBuilder("sh","deltapackage_app.sh","part_value","pathtofile");
Process process1 = pb1.start();
I am taking parameter through GUI. Now same thing i want to implement in web application where i can take inputs form web page and send it to server and then server will execute the shell script with parameters.
Can any one suggest me the best way of doing this. What things should i use to do this.
I Know i have to learn many things about server. Or can i use same code with Browser based Application.