ICloud implementation in Ipad Application

Hi everyone,
                 We need to implement the icloud in my current Project developed for IPAD developed in flash builder 4.6.
                 I have no idea about how to implment this is flex as its is urgent because  I am new in flex,actully I have also post this discussion in flex Forum but could not get the response from any one.So after finding no hope from that forum i have posted in this section ,Please suggest if any one has some idea about ICloud.
                                         Thanks in advance....
Regards
Sumit Agrawal

Hi Sinious,
                 Thanks for kind reply.
                   Actually we want to show all the images and video in my flex app, downloaded by icloud in the Ipad .So i think first of all we need to check whether icloud is configure in ipad or not,and after finding the enable icloud configration in the Ipad we need to fetch all the images and video in my app.
                 Another Problem is that , i am able to fetch the camera roll images in the app but not able to fetch the video created by me in the ipad .
             Now i feel that u can better understand my problem . If u still feel the problem to understand what i want Please reply me.
Regards
Sumit Agrawal

Similar Messages

  • Pages downloaded, but I still can't open iCloud pages from iPad. Says that I need a new version of Pages on my Mac

    For my Mac Pro, after I downloaded the new Mavericks OS, I downloaded the new pages. However, I still can't open iCloud pages from iPad. Says that I need a new version of Pages on my Mac.
    Please help.

    It appears that you are launching the old version, probably using an icon in your Dock. That icon is an alias & is not updated. You will need to go to your Applications folder & find the new Pages 5 icon & double-click it. Once it is launched, you can right-click on the icon & choose Options > keep in Dock from the contextual menu.

  • My wife and I each have an iPhone4 with separate Apple IDs. We are hopefully about to purchase the 4th gen iPad; can we use iCloud on the iPad with separate IDs on the iPhones?

    My wife and I each have an iPhone4 with separate Apple IDs. We are hopefully about to purchase the 4th gen iPad; can we use iCloud on the iPad with separate IDs on the iPhones?
    We would like to have all our music, photos, etc. on the iPad - is it best to create a new combined Apple ID for the iPad and simply upload our music, photos, etc. via our laptop instead? Does this not then render the iCloud useless to us?

    And just in case you were wondering, installing one purchased copy on all the Macs you own is specifically called out as allowed in the Mac OS X Lion license.
    If you do not want to download multiple times, just copy the Applications -> Install Lion app to a safe place BEFORE you do the first install.  Then copy that copy to any Mac you own where you want to install Lion.

  • How do I move my movies from iCloud to my iPad and close iCloud I hate it!,

    How do I move my movies from iCloud to my iPad  i hate iCloud!
    I Can never watch a movie on the plane unless I move it first!

    Welcome to the Apple community.
    All you need to do is enable contacts in system preferences > iCloud on your Mac. Once you do this a sync will commence and your contacts application will be populated with your contacts from iCloud.

  • Error while uploading images to SAP Mobile Documents from iPad application using ObjectiveCMIS.

    Hi,
    I am getting the error while uploading images to SAP Mobile Documents from custom iOS(iPad )application using ObjectiveCMIS library.
    My Custom method is as follows:
    - (void)createSalesOrderRouteMapImageInFolder:(NSString*)salesOrderRouteMapFolderId routeMapImageTitle:(NSString *)imageTitle routeMapContent:(NSData *)imageData
        NSInputStream *inputStream = [NSInputStream inputStreamWithData:imageData];
        NSMutableDictionary *properties = [NSMutableDictionary dictionary];
        [properties setObject:[NSString stringByAppendingFileExtension:imageTitle] forKey:@"cmis:name"];
        [properties setObject:@"cmis:document" forKey:@"cmis:objectTypeId"];
        [self.session createDocumentFromInputStream:inputStream
                                           mimeType:@"image/png"
                                         properties:properties
                                           inFolder:salesOrderRouteMapFolderId
                                      bytesExpected:[imageData length]
                                    completionBlock:^(NSString *objectId, NSError *error) {
                                        NSLog(@"Object id is %@",objectId);
                                        if(error == nil) {
                                            [inputStream close];
                                            NSLog(@"Uploading Sales order route map successfully.");
                                            [[NSNotificationCenter defaultCenter] postNotificationName:SaveOrderSuccessNotification object:nil];
                                        } else {
                                            [inputStream close];
                                            NSLog(@"Uploading sales order route map failed.");
                                            [[NSNotificationCenter defaultCenter] postNotificationName:SaveOrderFailedNotification object:error];
                                    } progressBlock:^(unsigned long long bytesUploaded, unsigned long long bytesTotal) {
                                        NSLog(@"uploading... (%llu/%llu)", bytesUploaded, bytesTotal);
    OBjectiveCMIS Method in which i am getting error during upload:
    - (void)sendAtomEntryXmlToLink:(NSString *)link
                 httpRequestMethod:(CMISHttpRequestMethod)httpRequestMethod
                        properties:(CMISProperties *)properties
                contentInputStream:(NSInputStream *)contentInputStream
                   contentMimeType:(NSString *)contentMimeType
                     bytesExpected:(unsigned long long)bytesExpected
                       cmisRequest:(CMISRequest*)request
                   completionBlock:(void (^)(CMISObjectData *objectData, NSError *error))completionBlock
                     progressBlock:(void (^)(unsigned long long bytesUploaded, unsigned long long bytesTotal))progressBlock
        // Validate param
        if (link == nil) {
            CMISLogError(@"Must provide link to send atom entry");
            if (completionBlock) {
                completionBlock(nil, [CMISErrors createCMISErrorWithCode:kCMISErrorCodeInvalidArgument detailedDescription:nil]);
            return;
        // generate start and end XML
        CMISAtomEntryWriter *writer = [[CMISAtomEntryWriter alloc] init];
        writer.cmisProperties = properties;
        writer.mimeType = contentMimeType;
        NSString *xmlStart = [writer xmlStartElement];
        NSString *xmlContentStart = [writer xmlContentStartElement];
        NSString *start = [NSString stringWithFormat:@"%@%@", xmlStart, xmlContentStart];
        NSData *startData = [NSMutableData dataWithData:[start dataUsingEncoding:NSUTF8StringEncoding]];
        NSString *xmlContentEnd = [writer xmlContentEndElement];
        NSString *xmlProperties = [writer xmlPropertiesElements];
        NSString *end = [NSString stringWithFormat:@"%@%@", xmlContentEnd, xmlProperties];
        NSData *endData = [end dataUsingEncoding:NSUTF8StringEncoding];
        // The underlying CMISHttpUploadRequest object generates the atom entry. The base64 encoded content is generated on
        // the fly to support very large files.
        [self.bindingSession.networkProvider invoke:[NSURL URLWithString:link]
                                         httpMethod:httpRequestMethod
                                            session:self.bindingSession
                                        inputStream:contentInputStream
                                            headers:[NSDictionary dictionaryWithObject:kCMISMediaTypeEntry forKey:@"Content-type"]
                                      bytesExpected:bytesExpected
                                        cmisRequest:request
                                          startData:startData
                                            endData:endData
                                  useBase64Encoding:YES
                                    completionBlock:^(CMISHttpResponse *response, NSError *error) {
                                        if (error) {
                                            CMISLogError(@"HTTP error when sending atom entry: %@", error.userInfo.description);
                                            if (completionBlock) {
                                                completionBlock(nil, error);
                                        } else if (response.statusCode == 200 || response.statusCode == 201 || response.statusCode == 204) {
                                            if (completionBlock) {
                                                NSError *parseError = nil;
                                                CMISAtomEntryParser *atomEntryParser = [[CMISAtomEntryParser alloc] initWithData:response.data];
                                                [atomEntryParser parseAndReturnError:&parseError];
                                                if (parseError == nil) {
                                                    completionBlock(atomEntryParser.objectData, nil);
                                                } else {
                                                    CMISLogError(@"Error while parsing response: %@", [parseError description]);
                                                    completionBlock(nil, [CMISErrors cmisError:parseError cmisErrorCode:kCMISErrorCodeRuntime]);
                                        } else {
                                            CMISLogError(@"Invalid http response status code when sending atom entry: %d", (int)response.statusCode);
                                            CMISLogError(@"Error content: %@", [[NSString alloc] initWithData:response.data encoding:NSUTF8StringEncoding]);
                                            if (completionBlock) {
                                                completionBlock(nil, [CMISErrors createCMISErrorWithCode:kCMISErrorCodeRuntime
                                                                                     detailedDescription:[NSString stringWithFormat:@"Failed to send atom entry: http status code %li", (long)response.statusCode]]);
                                      progressBlock:progressBlock];
    Attaching the logs:
    ERROR [CMISAtomPubBaseService sendAtomEntryXmlToLink:httpRequestMethod:properties:contentInputStream:contentMimeType:bytesExpected:cmisRequest:completionBlock:progressBlock:] HTTP error when sending atom entry: Error Domain=org.apache.chemistry.objectivecmis Code=260 "Runtime Error" UserInfo=0x156acfa0 {NSLocalizedDescription=Runtime Error, NSLocalizedFailureReason=ASJ.ejb.005044 (Failed in component: sap.com/com.sap.mcm.server.nw) Exception raised from invocation of public void com.sap.mcm.server.service.AbstractChangeLogService.updateChangeLog(java.lang.String,boolean) throws com.sap.mcm.server.api.exception.MCMException method on bean instance com.sap.mcm.server.nw.service.NwChangeLogService@4e7989f3 for bean sap.com/com.sap.mcm.server.nw*annotation|com.sap.mcm.server.nw.ejb.jar*annotation|NwChangeLogService in application sap.com/com.sap.mcm.server.nw.; nested exception is: javax.ejb.EJBTransactionRolledbackException: ASJ.ejb.005044 (Failed in component: sap.com/com.sap.mcm.server.nw) Exception raised from invocation of public com.sap.mcm.server.model.ChangeLog com.sap.mcm.server.dao.impl.ChangeLogDaoImpl.findByUserId(java.lang.String) method on bean instance com.sap.mcm.server.dao.impl.ChangeLogDaoImpl@2852b733 for bean sap.com/com.sap.mcm.server.nw*annotation|com.sap.mcm.server.nw.ejb.jar*annotation|ChangeLogDaoImpl in application sap.com/com.sap.mcm.server.nw.; nested exception is: javax.persistence.NonUniqueResultException: More than 1 objects of type ChangeLog found with userId=25f8928e-8ba0-4edd-b08e-43bf6fb78f1a; nested exception is: javax.ejb.EJBException: ASJ.ejb.005044 (Failed in component: sap.com/com.sap.mcm.server.nw) Exception raised from invocation of public com.sap.mcm.server.model.ChangeLog com.sap.mcm.server.dao.impl.ChangeLogDaoImpl.findByUserId(java.lang.String) method on bean instance com.sap.mcm.server.dao.impl.ChangeLogDaoImpl@2852b733 for bean sap.com/com.sap.mcm.server.nw*annotation|com.sap.mcm.server.nw.ejb.jar*annotation|ChangeLogDaoImpl in application sap.com/com.sap.mcm.server.nw.; nested exception is: javax.persistence.NonUniqueResultException: More than 1 objects of type ChangeLog found with userId=25f8928e-8ba0-4edd-b08e-43bf6fb78f1a}
    2015-03-12 04:08:31.634 Saudi Ceramics[4867:351095] Uploading sales order route map failed.

    Hi Sukalyan,
    Have you checked the below links?
    These will give you step by step implementation procedure.
    http://www.sdn.sap.com/irj/scn/go/portal/prtroot/docs/library/uuid/a099a3bd-17ef-2b10-e6ac-9c1ea42af0e9?quicklink=index&overridelayout=true
    http://wiki.sdn.sap.com/wiki/display/WDJava/KmuploadusingWebdynproapplication
    Regards,
    Sandip

  • How to change my ICloud account in ipad

    I deleted an ICloud account from IPad, and entered new account ID. Got email to verify account(ID) and completed process. An email then confirmed that verification was completed. But the ICloud work page in Settings continues to ask for verification, and when trying to turn ICloud on it has continued for two days to indicate is "processing". All the applications under ICloud cannot be turned on either. Pls welcome suggestions

    If you haven't created another Apple ID, don't do it yet.
    Why do you want to create a new ID? Do you know that apps and anything that you purchase with an Apple ID will always be tied to that ID and you cannot transfer purchases to a new ID. You will always need to use that ID in order to update apps or to download previous purchases made with that ID.
    You can change an Apple ID if you get a new email address. That will simply change the username of the Apple ID to the new email address, but that is different than creating an entirely new ID.

  • Set up iCloud website for iPad

    Hi guys,
    I updated my Macbook,iphone,ipad so all have the latest softwares. I turned on icloud for both my ipad and iphone and I even tried to sync calendar and address between ipad and iphone and it works like magic!
    I have been using Pages lately and with the icloud that came out, i thought that theres a way to sync Pages document between Macbook and ipad by icloud. But I was reading that to do so, I need to go to www.icloud.com. On the website, I have set up my Apple account from my Macbook, I even uploaded some documents on that. So what I needed to do was setting up my account on the website from my iPad because apparently the Documents does not auto-sync 'on the air' through iCloud.
    THE PROBLEM is, when I tried to go to www.icloud.com on my ipad or iphone, the website comes up showing ONLY three options: Set up icloud on this device ( which will lead me to apple.com/icloud/setup, an instruction on how to set up iCloud), as I said previously, I HAVE ENABLED icloud on my ipad and iphone, WHY DO THEY KEEP FORCING ME TO GO A WEBSITE THAT SHOWS THE INSTRUCTION ON HOW TO DO IT ???, the other two options are setting 'finding my iphones' and 'finding my friends'
    This is getting so annoying whenever I try to go to that website on my ipad, It kinda never UNDERSTAND that i HAVE set up icloud CORRECTLY on this device. Well if you say I can share Pages files through Itunes using the traditional way or using Dropbox, I CAN, but i really want to use iCloud to sync everything on my devices.
    Thanks for your time and I'm really looking towards seeing your answers.

    You are right. Right now, the iCloud.com website access is blocked for iOS devices. In my opinion, the complete icloud.com website should be accessible from both Computer and iOS devices
    There are many things you can do only in the web interface as:
    - set up holiday message
    - reset photostream
    - share calendars
    - setup auto-forward
    - manage aliases
    - manage rules
    - manage email folders
    iOS devices claim they will replace home computers but it is still far from reality
    My guess is that Apple is trying to progressively integrate its online services in "packaged" applications and eliminate usage of web browsers that are difficult to trace and to control

  • I have just dowloaded the icloud control panel on my PC and i am am able to see everything that has been pushed to icloud from my ipad. However i cannot see my email. i can send from the computer using icloud, but i do not see any mail that is being rec.

    i have just dowloaded the icloud control panel on my PC and i am am able to see everything that has been pushed to icloud from my ipad. However i cannot see my email. i can send from the computer using icloud, but i do not see any mail that is being received by my ipad, which is set up with my mail server. What haven't i checked lol?

    turn your ipad off by holding the sleep wake button for 5 seconds and slide to turn off then turn it back on and the apps should be finished and if the apps didnt finish just redownload them

  • I just got a used ipad version 6.1.3.  I have an ipod classic version 1.1.2PC and I have a laptop with windows 7 and use internet explorer.   somehow i have icloud on my ipad but no app for it. I cannot explain what I need --not enuf text--2 b continued

    I have never used this--on my ipad it says I have an account with icloud and that I can syn all my devices but there is no app for icloud on my ipad.
    I have never used my ipod myself--that is to put material on it.  A friend did it and I registered with Apple and I did have itunes and a list of my stuff on my old pc but it is gone.  I tried to get itunes on the pc I have--no sucess--5 + attempts yesterday.  Today I tried to link my ipod to icloud.  In the "settings" heading I do not have a "software" choice.  I do not know what to do.  Can someone help me.  I am not very pc literate--so you might get frustrated.  Thank You

    Hi, thanks for the suggestion. I have tried as you suggested, and when opening the "purchased" apps some have the icloud logo next to them, but I only have "OPEN" against "Find My iPhone". When opening it up, it goes through the same routine; needs to be updated before proceeding, and wouldn't update because I don't have IOS8.
    Anything else I could try, or am I doomed!
    All of your help is much appreciated, thanks

  • ICloud notes on ipad but not on iphone using same account

    Hello,
    My notes on my iMac XOS 10.9.1 works perfectly from iCloud to my iPad 7.0.4 using the same iCloud account. But doing the same thing on my iPhone 4 with latest 7.0.4 show nothing on notes. But all contacts are fine???
    I have tried clearing my iCloud account on the iPhone and reinitialize it, but with no luck.
    Any clues?
    Thank you.

    Try deleting the iCloud account and signing back in.  To do this, start by saving any photo stream photos you wish to keep to your camera roll (unless already there) by opening your my photo stream album, tapping Select, tapping the photos, tap the share icon (box with upward facing arrow), then tapping Save to Camera Roll.  Then go to Settings>iCloud, tap Delete Account, provide the password and choose Delete from My iPhone when prompted, then after 30 seconds or so sign back in.  (This deletes the account and the iCloud data from your phone but not from iCloud.  Your iCloud data will reappear on your phone when you sign back in.)
    Then check the notes app again.

  • How can i access my photos in icloud with my ipad?

    I am in desperate need to get my photos from my iphone 3gs synced with all my apple devices. I was able to sell my iphone 3 but since it is still synced with my ipad and iphone 4, the new owner of the iphone i sold cannot register his own apple id.
    Also, i was hoping that i will be able to retrieve my photos from this iphone 3 backed up in icloud but do not know how i can access icloud through my ipad. Im not a very techy person and im really hoping someone will be patient enough to help me since some of the pictures in that iphone 3 were my kids' pictures and i was not able to save them in my laptop before it crashed and was reset.
    Please help me. Thanks

    Perhaps you could try this to resolve your issue: http://support.apple.com/kb/HT4486

  • Hi i have the same apple id for my iPad and my mac. my iPhone has a different one. My i cloud on my mac seems to be the iCloud on my iPad, if that makes sense so its not sending my photos from my mac to the cloud. how do i change it to upload mac?

    hi i have the same apple id for my iPad and my mac. my iPhone has a different one. My i cloud on my mac seems to be the iCloud on my iPad, if that makes sense so its not sending my photos from my mac to the cloud. how do i change it to upload mac pictures instead? thanks

    Did you go into Settings > Store and then tap your old ID, sign out and then enter your new ID?

  • HT5621 I recently changed my apple ID but the old on is still on my iCloud account. The old address is dimmed on iCloud on my iPad so I can't change it. How do I change to the new address?  I don't want to delete the account as I don't want to lose the pi

    I recently changed my apple ID but the old on is still on my iCloud account. The old address is dimmed on iCloud on my iPad so I can't change it. How do I change to the new address?  I don't want to delete the account as I don't want to lose the pictures

    To change it, you have delete the existing account.  However you can avoid losing any pictures in the process.  To avoid losing photo stream photos, save them to your camera roll (if not already there) before deleting the account.  To do this, open your my photo stream album, tap Edit, tap the photos, tap Share, then tap Save to Camera Roll.  (Camera roll photos are not effected by deleting the account.)
    Then go to Settings>iCloud, tap Delete Account, then sign back in with the new ID.  This deletes the account and your iCloud data from your device, but not from iCloud.  Provided you are signing back into the same account, your iCloud data will reappear on your device when you sign back in.

  • I set up my iCloud account on iPad with an exchange account and aol account.  I can see exchange and aol emails but not those from .me account or apple email.  I got it to show all 3 accounts on my iPhone with no problem.  Hat am I missing?

    I set up my iCloud account on iPad with an exchange account and aol account.  I can see exchange and aol emails but not those from .me account or apple email.  I got it to show all 3 accounts on my iPhone with no problem.  Hat am I missing?

    I'm having a similar problem, but I do have the key and is not working anyway.
    My old pc was running on windows 7 and my new one is an apple running on Lion.
    My phone is an Iphone IV and I can see all the bookmarks there.
    In order to sync, what I did was click on the "I don't have the device with me", I entered the key that was provided and the process finish ok. It says congratulations, etc, etc.
    But the bookmarks are not there, I tried merging data and replacing data on this computer options but is the same.
    Any suggestions?

  • How can I log onto iCloud from my iPad when the option is in grey and therefore not available

    How can I log onto iCloud from my iPad when the option is in grey and therefore not available. I deleted my account as it was showing up with an old Id ( I'd changed my email) but now I've done that it won't give me the option of logging back on. Do I have to do this on another device Or computer linked to iTunes first?
    THanks

    Hi Kate, have you perchance enabled restrictions on your device. (Settings > General > Restrictions)

Maybe you are looking for