How can I get 10 different URLs?
-
-
Is the slot called those many times ? Since u r firing 10 request u may b hitting issue. Can u try firing 6 requests and try?
-
Is the slot called those many times ? Since u r firing 10 request u may b hitting issue. Can u try firing 6 requests and try?
I can firing for 5 times without any problem.
But when i firing for 6 or more it will cause the problem sometimes.
It cannot connect to the server. -
Your server probably can't cope with so many requests at once.
Slow down. Wait for the first request to finish before you send your second one.
-
QNetworkAccess manager can only handle max 6 requests in parallel. That may be causing the issue.
-
Hi,
@dheerendra while the number of parallel queries is correct, it should not have an influence here. The following queries will be queued and started once another as been completed. I think @JKSH is likely on the right track with a server side problem.