JMP will suspend normal business operations for our Winter Holiday beginning on Wednesday, Dec. 24, 2025, at 5:00 p.m. ET (2:00 p.m. ET for JMP Accounts Receivable).
Regular business hours will resume at 9:00 a.m. EST on Friday, Jan. 2, 2026.
We’re retiring the File Exchange at the end of this year. The JMP Marketplace is now your destination for add-ins and extensions.
What can I do if the temporary file name is the same during concurrent downloads using JMP 17?
Created:
Mar 21, 2023 03:11 AM
| Last Modified: Jun 9, 2023 9:05 AM(2691 views)
Hello!
I used JMP 17 for a concurrent download, which resulted in temporary files with the same name, files being overwritten over and over, and only one file. How do you handle the downloaded code?
rqs = New Multi HTTP Request();
For( i = 1, i <= N Items( u ), i++,
rq = New HTTP Request( Method( "GET" ), URL( u[i] ), Timeout( 0.1 ) );
txt = rq << Send;
rqs << Add( rq );
);
hh = rqs << Get Requests();
da = rqs << Download( "show progress", "detailed" );