I have this evening tried to install LongReach on our Iseries and my iPad.
I have now tried to recive, change and upload files.
I seems to work with "small" files.
I tried to upload an image but after 5 sec. I get this Error:
File Manager
Connection Error:
NSPOSIXErrorDomain 12
Have you seen this before?
Problem uploading a big file
Re: Problem uploading a big file
NSPOSIXErrorDomain 12 looks like a 'cannot allocate memory' issue.
What type of iPhone/iPad device are you using.
You cannot directly see the file size from LongReach, You could 'open in' the file in another App that shows file size.
You could create a large file (known size) on the server and receive to LongReach, and then send this file back to the server to confirm that large files can be sent.
What type of iPhone/iPad device are you using.
You cannot directly see the file size from LongReach, You could 'open in' the file in another App that shows file size.
You could create a large file (known size) on the server and receive to LongReach, and then send this file back to the server to confirm that large files can be sent.
Re: Problem uploading a big file
LongReach can receive any size file as the content is received as a stream of bytes and directed to the file system for storage.
Apple's NSURLConnection API can only send an allocated amount of data, so the send file needs to be read and encrypted into memory before sending.
I have tested the sending of a 15MB PDF file from an iPhone 3G (iOS 4.2.1) and a 100MB file from an iPad2 (iOS 5.0.1).
Apple's NSURLConnection API can only send an allocated amount of data, so the send file needs to be read and encrypted into memory before sending.
I have tested the sending of a 15MB PDF file from an iPhone 3G (iOS 4.2.1) and a 100MB file from an iPad2 (iOS 5.0.1).