I have a Java application and now I want to make it an web app. Now I think about how to make the architecture of this app.
In fact, I have many resources, matlab, exe files and XML files and a MySQL database. so we will have a 3-tier architecture.
Client: Browser
Treatment: Java EE server (maybe Servlet and EJB container)
Data: matlab, exe files and XML files and a MySQL database
So, how can I create this application without having a problem even if we have several clients connected which sends many queries at the same time?
Knowing that the processing is calling an EXE and reading and writing XML files, and execute MATLAB.
More details
INPUT -RESSOURCE-> OUTPUT
image(query) -exe-> XML
XML -JDOM-> Java Objects (List)
Java Objects -JDOM-> n XML files
n XML files -JDOM-> txt files
txt files -matlab-> txt files
txt files -MYSQL-> java objects (List)
txt files --> Images (results)