HT201342 Large Files via ICloud

How do i NOTIFY A GROUP OF CONTACTS that I have a very large file I want them to see and how do I transmit such a large file to them, please?

gleeuser wrote:
How do i NOTIFY A GROUP OF CONTACTS that I have a very large file I want them to see
Email
and how do I transmit such a large file to them, please?
How large?

Similar Messages

  • After some running time I cannot download large files via any browser.

    I am running OS X 10.9.2 on a 27inch iMac 2013 model.
    If I keep it running (without sleeping) for some time, perhaps a week, I can no longer download any large files via any browser. It will start and after a very short time go down to 0 B/s, stall there and at the end aboft with an "Unknown network error" or something similar.
    Has anyone seen similar problems?

    Open router set up using http://192.168.1.1  .....you will see username & password .....leave username blank & in password use admin...............
    Click status tab..........check firmware version .......download the latest firmware from http://linksys.com/download ..........
    Udate the firmware ....reset the router for 20-30 seconds ........ later on reconfigure the router ........

  • Can you share large files on iCloud drive like dropbox?

    I am exploring how to use iCloud drive now...and had a basic question.  Can you share large files from it in a similar way as you can with dropbox?  This is a great feature of dropbox...or google drive when mailing large files just doesn't work. 
    I have a Yosemite beta currently, and it doesn't look like you can do this. 
    I also was wondering if anyone has figured out how to make an alias of the iCloud drive on the desktop rather than always opening a finder window in order to drop files into iCloud drive....
    Yosemite Beta and Mavericks, iMac 2012/Mac Pro/Mac book air

    I am exploring how to use iCloud drive now...and had a basic question.  Can you share large files from it in a similar way as you can with dropbox?
    Have a look at the iCloud Drive FAQ:  The file size limit is 15 G:   iCloud Drive FAQ     http://support.apple.com/kb/HT201104
    You can store any type of file in iCloud Drive, as long as it's less than 15 GB in size. There's no restriction on file type, so you keep all of your work documents, school projects, presentations, and more up to date across all of your devices. Learn more about managing your iCloud Drive files.
    If you make an alias to a folder on iCloud Drive, you can drag it to the Favourites in the Finder sidebar. That is the best I could do.

  • Can I store large files on iCloud?

    I've been a mobile me user since it first started way back when.  I find it useful for allowing people to send large image files, that can be as large as 25 to 50 MB to my mobile me account. Since I'm a mobile me user I know I have a 50 GB limit until June or July. My question is will people be able to send me large files with the iCloud service? Will I be able to put a file up on the Cloud and have someone get access to that file if they are not an iCloud user? Or will I need to use DropBox? Last question I'm on a MacPro 2.66 GHz dual-core Intel processor so I can't upgrade to Lion. Will this affect my ability to use iCloud? I haven't been keeping up on all the changes so I hope someone can answer these questions for me. 
    Thanks,
    Lou

    Open a word doc in mac's Pages app and then save to icloud.  Check this link:
    http://support.apple.com/kb/PH2704
    You might also look at using Dropbox instead of icloud.

  • Uploading large file to iCloud & move to Server

    Hi, is there a way to set up iCloud to share a large file from a client with our company, so that we can move that file from iCloud to our server? Any help would be appreciated. Thanks.

    No

  • Uploading Very Large Files via HTTP

    I am developing some classes that must upload files to a web server via HTTP and multipart/form-data. I am using Apache's Tomcat FileUpload library contained within the commons-fileupload-1.0.jar file on the server side. My code fails on large files or large quantities of small files because of the memory restriction of the VM. For example when uploading a 429 MB file I get this exception:
    java.lang.OutOfMemoryError
    Exception in thread "main"I have never been successful in uploading, regardless of the server-side component, more than ~30 MB.
    In a production environment I cannot alter the clients VM memory setting, so I must code my client classes to handle such cases.
    How can this be done in Java? This is the method that reads in a selected file and immediately writes it upon the output stream to the web resource as referenced by bufferedOutputStream:
    private void write(File file) throws IOException {
      byte[] buffer = new byte[bufferSize];
      BufferedInputStream fileInputStream = new BufferedInputStream(new FileInputStream(file));
      // read in the file
      if (file.isFile()) {
        System.out.print("----- " + file.getName() + " -----");
        while (fileInputStream.available() > 0) {
          if (fileInputStream.available() >= 0 &&
              fileInputStream.available() < bufferSize) {
            buffer = new byte[fileInputStream.available()];
          fileInputStream.read(buffer, 0, buffer.length);
          bufferedOutputStream.write(buffer);
          bufferedOutputStream.flush();
        // close the files input stream
        try {
          fileInputStream.close();
        } catch (IOException ignored) {
          fileInputStream = null;
      else {
        // do nothing for now
    }The problem is, the entire file, and any subsequent files being read in, are all being packed onto the output stream and don't begin actually moving until close() is called. Eventually the VM gives way.
    I require my client code to behave no different than the typcial web browser when uploading or downloading a file via HTTP. I know of several commercial applets that can do this, why can't I? Can someone please educate me or at least point me to a useful resource?
    Thank you,
    Henryiv

    Are you guys suggesting that the failures I'm
    experiencing in my client code is a direct result of
    the web resource's (servlet) caching of my request
    (files)? Because the exception that I am catching is
    on the client machine and is not generated by the web
    server.
    trumpetinc, your last statement intrigues me. It
    sounds as if you are suggesting having the client code
    and the servlet code open sockets and talk directly
    with one another. I don't think out customers would
    like that too much.Answering your first question:
    Your original post made it sound like the server is running out of memory. Is the out of memory error happening in your client code???
    If so, then the code you provided is a bit confusing - you don't tell us where you are getting the bufferedOutputStream - I guess I'll just assume that it is a properly configured member variable.
    OK - so now, on to what is actually causing your problem:
    You are sending the stream in a very odd way. I highly suspect that your call to
    buffer = new byte[fileInputStream.available()];is resulting in a massive buffer (fileInputStream.available() probably just returns the size of the file).
    This is what is causing your out of memory problem.
    The proper way to send a stream is as follows:
         static public void sendStream(InputStream is, OutputStream os, int bufsize)
                     throws IOException {
              byte[] buf = new byte[bufsize];
              int n;
              while ((n = is.read(buf)) > 0) {
                   os.write(buf, 0, n);
         static public void sendStream(InputStream is, OutputStream os)
                     throws IOException {
              sendStream(is, os, 2048);
         }the simple implementation with the hard coded 2048 buffer size is fine for almost any situation.
    Note that in your code, you are allocating a new buffer every time through your loop. The purpose of a buffer is to have a block of memory allocated that you then move data into and out of.
    Answering your second question:
    No - actually, I'm suggesting that you use an HTTPUrlConnection to connect to your servlet directly - no need for special sockets or ports, or even custom protocols.
    Just emulate what your browser does, but do it in the applet instead.
    There's nothing that says that you can't send a large payload to an http servlet without multi-part mime encoding it. It's just that is what browsers do when uploading a file using a standard HTML form tag.
    I can't see that a customer would have anything to say on the matter at all - you are using standard ports and standard communication protocols... Unless you are not in control of the server side implementation, and they've already dictated that you will mime-encode the upload. If that is the case, and they are really supporting uploads of huge files like this, then their architect should be encouraged to think of a more efficient upload mechanism (like the one I describe) that does NOT mime encode the file contents.
    - K

  • Unable to download large files via my Mobile Network

    I have unlimited mobile data but I am unable to download large files, like podcasts unless I connect to Wi Fi. My settings are set to use mobile data, is there anything I can do?

    There is a 50meg (recently upgraded from 20) per file download limit over cellular data. No, you can't change that.

  • WebLogic Apache bridge problems on uploading large files via HTTP post

    I have a problem uploading files larger than quarter a mega, the jsp
    page does a POST
    to a servlet which reads the input stream and writes to a file.
    Configuration: Apache webserver 1.3.12 connected to the Weblogic 5.1
    application server
    via the bridge(mod_wl_ssl.so) from WebLogic Service pack 4.
    The upload goes on for about 30 secs and throws the following error.
    "Failure of WebLogic APACHE bridge:
    IO error writing POST data to 100.12.1.2:7001; sys err#: [32] sys err
    msg [Broken pipe]
    Build date/time: Jul 10 2000 12:29:18 "
    The same upload(in fact I uploaded a 8 MEG file) using the
    Netscape(NSAPI) WebLogic
    connector.
    Any answers would be deeply appreciated.

    I have a problem uploading files larger than quarter a mega, the jsp
    page does a POST
    to a servlet which reads the input stream and writes to a file.
    Configuration: Apache webserver 1.3.12 connected to the Weblogic 5.1
    application server
    via the bridge(mod_wl_ssl.so) from WebLogic Service pack 4.
    The upload goes on for about 30 secs and throws the following error.
    "Failure of WebLogic APACHE bridge:
    IO error writing POST data to 100.12.1.2:7001; sys err#: [32] sys err
    msg [Broken pipe]
    Build date/time: Jul 10 2000 12:29:18 "
    The same upload(in fact I uploaded a 8 MEG file) using the
    Netscape(NSAPI) WebLogic
    connector.
    Any answers would be deeply appreciated.

  • Problem downloading large files via Safari

    When downloading large video files (for example, from FilesAnywhere.com), my download stars off OK and then slowly gets slower and slower... and slower and then seems to grind to a halt. I'm currently attempting to download a 165MB file which has taken all day so far, and the time remaining just gets longer and longer. It now stands at another 18 hours, but by the morning it will most likley tell me there's a week left.
    Does anybody know what is causing this? I can download via FTP with no problem very fast -it's just via Safari that seems to be the problem. I'm on a home broadband account.
    I've encountered this problem before and I just had to give up on the download.

    Good to see the problem was solved from the suggestion provided. Glad to have helped.
    Aloha from Big Island.

  • TS3991 how to retreive deleted voice memos file via ICloud?

    I  have "voice memos" on my Iphone 5 and I deleted an important voice file in it yesterday. I have Icloud and I try to find it in Icloud or other Icloud devices (a mini Ipad, an Ipad 2 and an ipod touch) but without success. Help!

    hi, you can use third-party iPhone recovery program (google it) to scan your iCloud backup to see if your backup files contain your voice memo, then you can recover deleted voice memos on iPhone.
    Good luck.

  • How can I store and share PDF files via iCloud?

    I am trying to use iCloud to store and share PDF files from my PC, iPad2 and iPhone 4S... They are supposedly supported. I can share .docs, .xls, etc.... However, I cannot figure out how to share a pdf!

    Welcome to the Apple Community.
    You can download an iWork document from iCloud as a PDF, but you can't share a PDF document with iWork apps on iOS devices.

  • My iMac was stolen in a robbery - no files via iCloud (long story).  I have a new iMac which is set up and being used - how do I recover old iMac files from what looks like back-up files showing on my Time Capsule (also being used for this new iMac)?

    My iMac was stolen - but I think there's a backup on my Time Capsule (which wasn't stolen). I have a new iMac which I've been using normally; I didn't use the 'Restore from...' option at the start because I thought the Time Capsule had nothing on it.  So how do I now recover files from the Time Machine?  I can see various back-ups on the Time Capsule, from various machines - laptops, etc. - but it's not letting me open any of them to see what they contain. Does anyone know how I access this information?

    Use migration assistant.
    See http://pondini.org/OSX/MigrateLion.html
    Although this is only up to Mountain Lion it is still relevant to Mavericks.. only expect Mavericks to kick and buck a lot more.

  • File uploads via iCloud?

    Why can't I see a way to upload & share files via iCloud? When I bought the iMAC a few weeks ago this was one of the promoted features. In fact I was told I would have 5G of free space?

    When I log into iCloud, the available options are Mail, Contacts, Calendar, Notes, Reminders, Find My Phone, iWork. iWork takes me to options to BUY applications called Keynote, Pages, Numbers.
    I think I read in another forum that iCloud discontinued free uploads a while back. If that's true, that's one of a few key things the Apple Store associate was wrong about when he sold me my computer.

  • Large file uploads  with jersey client

    Hello All,
    I am getting heap spcace iissue while uploading large files via jersey client , the jvm will run out memory
    Can any one help me in understanding how can i send large file about 300mb
    via jersy client.
    code that i have wriiten is:
    WebResource webResource = client.resource(url);
    MultiPart multiPart = new MultiPart();
    FileDataBodyPart filePart = new FileDataBodyPart("file", file,
    MediaType.APPLICATION_OCTET_STREAM_TYPE);
    multiPart.bodyPart(filePart);
    multiPart.bodyPart(new FormDataBodyPart("code", code));
    ClientResponse response = webResource.type(MediaType.MULTIPART_FORM_DATA).post(ClientResponse.class,
    multiPart);
    Thanks

    Thanks for ur reply but i have tried it by using
    client.setChunkedEncodingSize(10000);
    WebResource webResource = client.resource(url);
              // file to multi part Request
              MultiPart multiPart = new MultiPart();
              FileDataBodyPart filePart = new FileDataBodyPart("file", file,
                        MediaType.APPLICATION_OCTET_STREAM_TYPE);
              multiPart.bodyPart(filePart);
              multiPart.bodyPart(new FormDataBodyPart("code",code));
              ClientResponse response = null;
                   response = webResource.type(MediaType.MULTIPART_FORM_DATA).post(ClientResponse.class,
                             multiPart);
    Now the file are easily send in chunked but the problem is i am not able to receive value of code now..
    On the other server where i am sending this file along code is:
    public void upload(@RequestParam("file") MultipartFile uploadedFile,
                   @RequestParam("code") String code,
                   Writer responseWriter) throws IOException
    }

  • HT4864 Large file stuck in iCloud

    I sent a file from my iPhone that is apparently too big for iCloud to handle and it is stuck in the outbox of my iPhone. I can not delete it. I tried and tried. Its been stuck about 6 hours now and it is drainking my battery. I also restarted my phone and it just comes back. Help

    "Marianne, when you opened Photoshop right after a crash, did the files that were open before the crash (and AutoSaved) just re-open in Photoshop on their own?"
    no. and honestly i dont remember now whether the files did indeed show up as a second file in the same folder or when i went to reopen the file it opened recovered and with 'recovered' in the file name... probably the latter. i'll recreate the crash when i get a chance
    6 is creating larger files in general, tho maybe im overlooking a setting... I worked on an image in 6 and when saving i was informed it had to be a PSB, file size coming in at 3.73gb. yikes. I know this to be extravagant for this image. So, out of curiosity, i opened it in 5 and created a new same size doc, slid all the layers over and saved it as a PSD with no problem... see the screen catpture... same image, totally different file sizes. I have AutoSave turned off, max comp on.
    All that said... it occured to me while writing this to try a Purge>All, in 5, on the bloated 6 psb... that allowed me to save it as a psd at a file size at a much more recognizable file size...

Maybe you are looking for

  • IOS 8 - send and receive iMessages

    With iOS 7, I used to be able to receive iMessages at two phone numbers. There was an option under iMessage - Send and Receive.  I used that to monitor my son's messages. Now with iOS 8, I can only see my phone number under Send and Receive, and some

  • Address book won't accept invitation

    When I get an invitation to a meeting here at work I get this message: Invitation Error To be able to use invitations, you need to create an address card for yourself in Mac OS X Address Book. I have an address card in my Address Book, but it won't r

  • About current frame property

    Hello I am trying to make as3 take action when a certain frame is reached. As far as I understand I need to use current frame property. But it does not work for some reason. It is about as. file so my object is referred to as "this".  if (this.hitTes

  • Cs6 upgrade from CS4

    If both are retail boxed versions. Will this work? Thanks. Alex

  • Write protecting Item

    I am having the following code in SP_TN that successfully protects changing Items that are used as sample Items and base to duplicate from. It only can not detect changing of the ItemCode itself. IF @object_type = '4' AND @transaction_type = 'U' BEGI