we are trying to setup Architecture for Application.This is first time for us.This Application is not interact with End-Users,it's for my internal computations purpose.
We have a remote DBServer
(Ms sql server azure) with 1 database name as DBTesting
. Whenever any data was modified in DBTesting
,it triggers java Application name as App1
.
Question 1:
What are the possibilities to trigger App1
.
In App1
, I am running .exe
file,which is written in C
language.It takes 20 min for evaluation. If DBTesting
is modified many times with in 20 min, it sends that many number of requests from DBTesting
to App1
.But I don't want to handle more number of requests at a time.So I want to trigger App1
in queue base. Once previous Http
request is done then only Queue will be release next HTTP request.
Question 2:
Is there any way to Implement this using Java
or any other technologies
we are interacting Database with this Link
UserName : MyUserName
Password : MyPassword
we are trying to fix these from 1 week,but we are not figure it out which way is good way.
can anyone suggest me with some tutorials, which are suitable to my requiments.
Thanks.