
Raj_hpking
Novice
Jul 23, 2014, 7:10 AM
Post #3 of 9
(1319 views)
|
Re: [FishMonger] Perl Script in Multi User Environment
[In reply to]
|
Can't Post
|
|
Hi, Processfile.pl is simple perl script file, it will read each record of CSV file (its path is provided by Web Service) and apply some logic like addition or deletion on the columns. Number of columns can be 10 (dynamic). About time it will take, is depend on perl, i.e. how much time perl will take to complete say 10 millions of record. I will create the batch file in web service and use below to trigger perl script, System.Diagnostics.Process p =new System.Diagnostics.Process(); p.StartInfo.FileName=mybatchfilename; p.Start(); p.WaitForExit(); p.Close(); It dont need to return anything to the web service, but need to generate one csv file after applying addition or deletion on each column. Web service will read that csv file. Presently, I do not have that script ready, Once I get confident that we can use Perl Script in multi user scenario then I am thinking to start working on it.
(This post was edited by Raj_hpking on Jul 23, 2014, 7:17 AM)
|