I have created a Server application that calls a 2nd server application (using j.PostString) to tell this 2nd server to request a file from the 1st server. All works well until the 2nd server receives this file from the 1st server (j.Success = True) and tries to copy the Stream into a file using File.Copy2 where it gives the following error:
java.io.FileNotFoundException: /media/pss-admin/pssDrive2/file_store/4e3f015a-3930-41ac-84d0-cb707ab70ca7.jpg (Input/output error).
Is this due to some sort of threading issue because the 2nd server is making a Download request while still dealing with the ServletRequest request that came from the 1st server?
java.io.FileNotFoundException: /media/pss-admin/pssDrive2/file_store/4e3f015a-3930-41ac-84d0-cb707ab70ca7.jpg (Input/output error).
Is this due to some sort of threading issue because the 2nd server is making a Download request while still dealing with the ServletRequest request that came from the 1st server?