I have a problem with this CURL call:
curl -X POST \
     --data-binary '@File01.tar.gz' \
     http://website.intra.prova.it/gore-orgac/PINGU/TEST/lots/Test_017/content/files/File02.tar.gz
And I receive this error:
curl: (56) Failure when receiving data from the peer
But if I do this CURL:
curl -X POST \
     --data-binary '@File01.tar.gz' \
     http://website.intra.prova.it/gore-orgac/PINGU/TEST/lots/Test_017/content/files/File02
Its works well.
Why is that?
 
     
     
     
     
     
    