Hi for all,
I very very new to spring, Please accept my stupid and unclear questions.
please let me explain my scenario,
* My NMS web application(Using Spring MVC) is running on my server.
* Network Element(NE) is connected through the network.
Yet to be implement
* My Java application(middle ware / service) running on the server(Tomcat) to keep on monitoring(thread) the network element like pinging, internal changes,queries and etc
now I want to know,
? How do I communicate / access this java application(service) from spring controller when i want to do some operation on NE?
?? Like, If I want to set ip address from the spring application, it goes to the middle ware to ask to change the ip address of the NE with the given parameter.
?? Then java application have to communicate with the NE to do the above.
?? After Completion return to the controller with response
# What about web service, but I don't have any clear idea about that.
client -> Controller -> java service/ middle ware app -> NE -> java service/ middle ware app -> Controller
Please can any one suggest any idea.
Thanks in advance.