Hi, We have developed a web application which consumes a web service. The user will upload data using the application. Uploading one record using web service takes 7 sec. The user will upload approximately 12000 record at a time. So it is taking more time. So can a web application run for more than 5 or 6 hours ?
What are all the factors that i have to consider when deploying this application.
There is also an option to upload the records in bulk, like
<Object>
<record>
<value1> 1 </value1>
<value2> asd </value2>
</record>
<record>
<value1> 2 </value1>
<value2> asd </value2>
</record>
<record>
<value1> 3 </value1>
<value2> asd </value2>
</record>
<record>
<value1> 4 </value1>
<value2> asd </value2>
</record>
</object>
but the problem is we need to have the upload status for each record. If there is any data error in onr record the entire upload will be canceled. so we are processing the records one by one.
Please suggest if there is a better way to do this. Also please let me know if you have any questions regarding this issue. thanks.
Regards, Jebli.