I need to design a Swing application, which will need to send out multiple jobs as customer requested. each job is running the same shell scripts which will take 10-30 mins to return a value. (the jobs are not running on application server or as web services. )then the Swing application will need to decide what to do next according to the return value. my question is if I can use JMS to send out jobs. if not, what do you suggest I look into? multithreading....
Thank you very much!