Hi
I am working on an application, if you could help out which paradigm is correct for implementing:
Client Side: Web Application (HTML/JSP/Servlets)
Intergration: Mule ESB
Client will call Mule ESB flow using HTTP URL and get response from the same
I have two way outs
1) We call Mule ESB from HTML directly and Mule ESB send response back to another
JSP page. Then, I need to mention page name inside, Mule ESB flows.
2) Or We call Mule ESB from controller(
servlets) and Mule ESB send response back to servlets and then servlets redirect to correct page with manipulated data.
Which of above two is considered as good?
Regards