Imagination
Member
Hello,
Bit of description:
At work (a bank), we have 3 production servers:
1 Webserver
1 Application servers
1 SQL Server
We offer for certain clients an ability to import payments. They create a file (using what ever spreadsheet or app they want) based on a file spec that the bank designed. they log into the website and then upload the file onto our webserver. Once its on the webserver, a record is entered into a table on our SQL Server w/ a pending status. We have a background process (built in VB6) that looks every couple of minutes in that table and sees if theres any items pending. If there are, it then locates the file on the webserver and processes the payments in the file and thats that.
Now, a couple of the customers want to create a system on there end that will FTP the files directly to our webserver w/o any manual intervention.
My question is does anyone have any recommendations on how I should go about modifying the application that runs on the app server to also look for new files created besides the records in our SQL database?
We are not on .Net or anything like that (that conversion is 1 year away) because our bank beleives in "if it ain't broke, don't fix it".
This is just ASP, VB6, C++, SQL Server 2000...
Bit of description:
At work (a bank), we have 3 production servers:
1 Webserver
1 Application servers
1 SQL Server
We offer for certain clients an ability to import payments. They create a file (using what ever spreadsheet or app they want) based on a file spec that the bank designed. they log into the website and then upload the file onto our webserver. Once its on the webserver, a record is entered into a table on our SQL Server w/ a pending status. We have a background process (built in VB6) that looks every couple of minutes in that table and sees if theres any items pending. If there are, it then locates the file on the webserver and processes the payments in the file and thats that.
Now, a couple of the customers want to create a system on there end that will FTP the files directly to our webserver w/o any manual intervention.
My question is does anyone have any recommendations on how I should go about modifying the application that runs on the app server to also look for new files created besides the records in our SQL database?
We are not on .Net or anything like that (that conversion is 1 year away) because our bank beleives in "if it ain't broke, don't fix it".
This is just ASP, VB6, C++, SQL Server 2000...