IPad use for offline PDF submit

For iPad use, is there yet any way to use the offline PDF formfiller with the active "submit" button to send responses back to the FormsCentral server? Ipad use is key for my field sales team. The "submit" button is missing when the PDF is opened through Adobe Reader (mobile) on the iPad (iPad4 iOS 7.1). Is this because iPads do not have "Flash" and is there any workaround?

Hi;
You have two options for "offline" PDF workflow with the iPad.
One is to use an Acrobat Email workflow, not collecting responses in FormsCentral but adding a Submit button in Acrobat to email the form responses to you.  When users fill out the PDF and click Submit it will queue the email, when online again those emails would be sent and you'd get the responses.
Using FormsCentral is a little more work in the offline case, see this response from Genevieve where she describes how to do it: http://forums.adobe.com/message/5339644#5339644
That info aside, the Submit button in a FormsCentral PDF should work fine in Adobe Reader Mobile for iOS.  Are you sure users are opening the PDF in Adobe Reader mobile?  The Submit button would be missing if Preview was used to view the PDF on the iPad.
Thanks,
Josh

Similar Messages

  • Currently, I have 5 iPads used for the same purpose. Since similar data /application is shared among all of them, is it alright for me "Backup" only 1 iPad. And in which case, if anything happens to any of the other iPads I can still recover the data

    Currently, I have 5 iPads used for the same purpose. Since the same data /application is shared among all of these iPads, is it alright for me "Backup" only 1 iPad instead of all 5?  And if anything happens to any my iPads which I have not backed up, I can restore it from the iPad where I have save the Backup. I am hoping by doing so, I will also be able to save some icloud storage space. Let me know if my question is still not so clear to you guys.  Thanks.

    Hello PeachY1234,
    If I understand correctly you'd like to save iCloud storage space by only backing up 1 of the 5 iPads to your account since they are all going to have very similar data and usage. You certainly can do that, but I do have to warn you that any unique data between them would be lost if you had to restore from that one backup made on another iPad so just keep that in mind. If you do need to restore in the future you can use this article to restore that iCloud backup:
    iCloud: Restore or set up your iOS device from iCloud
    Thank you for using Apple Support Communities.
    Cheers,
    Sterling

  • Setting 'Content Copying' as 'Not Allowed' for offline PDF

    Hi,
    Can anyone help on the following scenario?
    Generate a PDF that does not allow user to copy contents within the PDF.
    Setting the Document Restriction - 'Content Copying' as 'Not Allowed'
    As this PDF is to be open offline, there will be no direct connection to the livecycle server hence not able to connect to the Rights Management Server to verify the policy.
    How can this be achive?
    Ryan.

    Ryan
    You are correct in your understanding.  Just to clarify one point though, the client machine does require the "Principal" key be downloaded from the RM server and "Synchronize for offline" is one way to get the key.  In addition to this, when a user "authenticates" to the RM server to open a policy protected document, a "synchronization" occurs in the background and if there are "new" principal keys for other policies they will be downloaded even if they are not reklated to the document the user is currently accessing.
    Now, in addition to Rights Management, Adobe has two other "encryption" options.
    You could password protect the document to prevent "content copying", but this is not a very secure option, password protection is easily cracked, there is no user authentication, and third party PDF viewers may not respect\enforce the password protection.
    Another option, which is very secure is to use the "Encrypt with certificates" option, where the PDF is encrypted for a user based on the users x509 certificate (public key).  The user then uses their corresponding private key to authenticate themselves and view the document.  Encrypt with certificates allows you to enforce authentication and you can allow\deny the same "permissions" that you can with RM protection.  There is no requirement for a server, but the "certificate management" (certificate creation\provisioning\revocation) capability requires a PKI.  Also, the user will need to have their private key available to open the document.
    Hope this helps.
    Steve

  • How do I create DRM Licenses that can be used for Offline Playback?

    [ Background ]
    Typically, a license is acquired from the DRM license server when the client video player encounters a video that is DRM-protected.   However, some use cases call for the ability for end-users to be able to play DRM content when a network connection is not available to the device.
    For example - the user wants to download a video from their home, acquire a license to play the content, and then get onto a train/airplane where a network connection isn't available.  On the train/airplane/etc..., the end user expects to be able to watch their video that they downloaded at home.
    [ DRM Policy Requirements ]
    For this use case to be possible, the DRM license must be acquired when the network connection is available.  In addition, the DRM license must be allowed to persist on the device disk.  For this to be possible, one value must be present in the DRM policy:
    1. Offline License Caching must be set to 1 or higher.  This policy parameter indicates how many minutes a license is allowed to be persisted to disk once it's been acquired by the license server.
    [ Workflow ]
    Now that the content has been packaged with a DRM policy that allows for offline caching (persistance) of a license, the video player simply has to acquire the license before the network connection is lost.  This can be accomplished via the typical API calls that the Video Player Application Developer would use to do a normal DRM license acquisition (DRMManager.loadVoucher()).
    For example, by using the DRMManager ActionScript3 API: http://help.adobe.com/en_US/FlashPlatform/reference/actionscript/3/flash/net/drm/DRMManage r.html
    For other platforms supported by Adobe Access DRM (iOS, Android, etc...), please refer to the appropriate documentation around playback of DRM content on how to pre-fetch the DRM license.
    [ Workflow - iOS ]
    Enabling offline playback using the Primetime Media Player SDK (PSDK) for iOS requires a bit of self-extraction & instantiation of the DRM Metadata from the m3u8.  The reason for this is that as of PSDK v1.2, the PSDK APIs do not expose an mechanism for extracting the DRM metadata.
    You must manually (outside of the PSDK) get access to the DRM Metadata, instantiate a DRMContentData, and then use the DRMManager class to obtain a license for your content.  Afterwards, you may download your HLS content and stream it to your video player application locally.  Since the DRM license was pre-acquired before playback of the downloaded HLS content, your video player application does not require a network connection to acquire a DRM license.  Below is a code sample of obtaining the DRM Metadata from the m3u8 manifest and then using it with the DRMManager singleton.
    /*          Main entry points, playlistURL is url to a top level m3u8. */
    void PlayContent(NSURL* playlistURL)
              DRMManager* drmManager = [DRMManager sharedManager];
              if ([drmManager isSupportedPlaylist:playlistURL])
      // First we need a handler for any errors that may occur
                        DRMOperationError errorHandler = ^(NSUInteger major, NSUInteger minor, NSError* nsErr)
      /*          report error. */
      /*          Synchronous call to DRM manager to extract DRM metadata out of the playlist. */
                        [_drmManager getUpdatedPlaylist:playlistURL
                                                                                      error:errorHandler
                                                                                    updated:^(NSURL *newPlaylist, DRMMetadata *newMetadata)
                                   (void) newPlaylist; /*          updated URL is not used for this code sample. */
                                   if (newMetadata)
                                                      Assumes we are going to try to satisfy requirements to acquire license on the first policy in the metadata.
                                                      If there are multiple policies in the metadata, only 1 of them need to be satisfied for the license request to
                                                      go through.                                          
                                             DRMPolicy* drmPolicy = NULL;
                                             for (id object in newMetadata.policies) {
                                                       DRMPolicy* drmPolicy = (DRMPolicy*)object;
                                                       break;
                                             if (drmPolicy == NULL)
                                                       /*          report error, this metadata is malformed. DRM metadata must contain at least 1 policy*/
                                             if (drmPolicy.authenticationMethod != ANONYMOUS)
    However, please note that the above only describes the DRM license handling for offline playback.  The actual playback of video using the Primetime client SDK is not officially supported.  You will have to use your own mechanism of saving and playback back HLS content locally within the application.
    Theoretically, it is possible to save the HLS stream to the app, and then embed an HTTP server to the app to stream the HLS content back into the application.  However, the Primetime client SDK doesn't not expose a way to do this directly, since it's not yet supported.
    cheers,
    /Eric.

    no, the headers, here's a picture of the headers on this page. When I use SEO for Firefox, it sees them on every other page but never on my iweb sites.
    Quickpost this image to Myspace, Digg, Facebook, and others!

  • It appears that Revel can't be used for offline viewing

    If I have my iPad airplane mode on, I am unable to view photos or if the photo is displayed it is very very blurry.  I concluded that Revel must have an internet connection, which also means that it will eat into my data plan and since it appears the photos are not stored on my iPad, viewing photos is slower and will also be slower if there is an internet connection but is a slow internet connection.
    Am I correct on all counts?

    Hello,
    You do need an wifi connection to download thumbnails for previewing your images in Revel on your Ipad. When you view your photos with out a wifi connection, Revel will show you a cached thumbnail of the image but its not the full resolution. To see the full resolution of the image, you do need to be connected to the wifi as Revel downloads and caches the full resolution of the image from the cloud service.
    I tested this as I viewed an album of photos, clicked on a 5 out of 7 images and viewed them in loupe view(single image). These images showed the full resolution, then turned off the wifi on the ipad.  The remaining 2 images still did show but did show a bit blurry. This is because I did not view the image in loupe view to download the thumbnail.  I then turned back on the wifi and viewed the image again as Revel was able to view the image in the full resolution. I hope that didn't sound to confusing. If you view your images in single loupe view this will cache the image for offline viewing. Granted its best to be connected to wifi as it does not take too long to download the images.
    let me know if you have any other questions
    Thanks
    Scott

  • Ipad uses for Retirees

    Good Morning/Afternoon/Evening/Late Night to whoever is out there!
    I have recently been trying to get my parents to take a technological leap, and purchase an iPad. Besides their basic cell phones and television, they have a boulder of a dell desktop pc, which runs slower than molasses, and don't really interact with technology since my dad's atari when he was a boy. They argue the fact that it seems too expensive (they do have wireless internet in their condo so it wouldn't be data fees) and not worth the trouble of having to carry it around, my dad likes to complain if you can't tell by now!
    I think they would really enjoy the ability to face time or skype with my children and my brother's kids, email with us more, among other things to keep them busy.
    I was hoping that I could have some help from others on the discussion board. I want to point out more apps and uses for them in my argument, i know the basic uses and the benefits of touch screen and certain games but am hoping to find cool things that would really make them go "wow".
    If you have any stories of a similar situation, or are of that age and made the jump yourself, it would be great to hear from you!
    Thank you in advance, i hope you are enjoying your summers!
    MIchael

    This is an excellent question. Much would depend on the physical abilities (and age) of the person involved.
    Some may find it easier to type directly on a screen vs a keyboard because of wrist issues.
    Being able to pull the Ipad very close to one's eyes may also be a benefit.
    It is also a lot easier to carry from room to room, but also easier to drop.
    But moving the cursor may be more difficult on the Ipad if one is doing email.
    Some may enjoy being able to review and move through pictures of grandkids on the Ipad easily and then taking them to the neighbor's house to show.
    And the ease of use of apps for newspapers and  news programs may be a benefit.

  • IPad use for both work and personal by leveraging multiple iCloud backups

    I have an original iPad 1 that's my personal iPad.  Since I got an iPhone 5S over a year ago, I almost never use the iPad as it's so frustratingly slow compared to the 5S, and most of the most recent apps don't work on iOS 5.1.1.
    I work for a small consulting firm where a large part of my responsibilities is business development.  2-2.5 years ago, I started occasionally needing an iPad for doing sales presentations of enterprise software.  So, I purchased and expensed a then cutting edge 4th Gen iPad.  For work purposes, I've always kept this iPad nearly completely empty except for essential software. In the past 6 months, I've needed this iPad less and less for said presentations.  I'm down to not even turning it on once a month, and have gone 3 months at a time without touching it.  That said, there's always a chance I'll find out that a week from now I'll need to fly somewhere and do a demo using it.
    I was really hoping iOS 8 was going to enable multi-user support, but obviously it did not.  I'm now pondering the use of iCloud backups as an effective means of multiple user functionality when you don't have to switch user accounts very often.
    My thinking is that I can make sure my personal iPad 1 is fully backed up to my personal 20GB iCloud account, and that the work iPad is fully backed up to the work iCloud account.  I'd then wipe the work iPad, log in to it using my personal iCloud account and let it restore from there.  At that point I'd be using the work iPad for personal use and would completely stop using the iPad 1.
    If I found out I needed to demo using the iPad a week later, I would wipe the iPad 4 clean again, after which I'd log in to the work iCloud account, let it restore, and be good to go.  Once done the presentation, I could then wipe it, log back in to my personal iCloud and let it restore.
    Every time I found myself needing to use the iPad for work purposes I would simply go through the above process.
    My questions are:
    Are there are any holes in my logic? 
    Am I risking data loss on either the work or personal account? 
    I assume iCloud accounts can exist with backups intact even if no device is currently utilizing them?Is there any time limit to this?
    Besides the time it takes to wipe and restore the iPad, are there any downsides to the above process?
    Is there any reason I cannot wipe my iPad 1 and sell it/donate it? 
    Thank you in advance.

    Ah, MBA makes more sense.  Unfortunately, the point of demoing on the iPad is to explicitly show that the enterprise software is iPad compatible and what it looks like on it.  Everyone's a skeptic, so I definitely have to use the actual iPad and not emulation software.
    As far as overwriting a backup, I would think that the only backups ever visible would be those for the account i'm currently logged in as.  I don't see how it's plausible then to overwrite any in the wrong account.  Again, these are 100% separate accounts that have nothing at all connecting them.  If it were possible, wouldn't the people who sell their iDevices on ebay be complaining about how the recipients deleted their iCloud backups.  I'm effectively transferring the device in the same way...just between by own 2 disconnected accounts instead of 2 humans with 2 disconnected accounts.
    I don't really view it as a time drain, as when switching accounts I'd just "Reset all settings," and walk away.  I'd later log in as the other user, and would walk away again while the iPad just automatically starts loading everything up.  I'm not sitting there waiting for it, as this is merely a luxury device that I've never once had an immediate need for.  It's just a "nice to have."
    Again, this transfer would likely only be happening once every 6 weeks anyway.  The majority of the time it would be set up on my personal account.
    WiFi is no issue, as I'd only do this while at home on my 50/50 FiOS.  Again, I never "need" the iPad on my personal account such that waiting until I return home from a trip would be an issue.

  • IPad use for Deaf students

    I am looking for apps for a new iPad I am receiving. My search results do not pertain to deaf student needs and tend to lean towards sign language instruction which they do not need. Any ideas for visual apps used in instruction or apps that can be used for aural training?

    Hi deafed,
    Here's a blog post that I did and within it, is a link to a Google spreadsheet with 200+ apps pertaining to things like sign language, listening therapy and accessibility: http://tinachildress.wordpress.com/2011/12/21/apps-for-kids-with-hearing-loss/
    I hope this is what you're looking for.
    ~ Tina ~

  • The mail function renders PDFs well - can it be used for offline review

    I'm very happy with my iPad.
    However one of the "justifications" for, it is so that I can read a library of pdf files off line.
    There are lots of PDF readers- free and paid -with different functionality.
    However the best from my POV is actually the one in embedded mail reader.
    This is because when you flip to landscape mode, it immediately stretches the file to page width rather than trying to display a whole page. The font is immediately easily readable - better than in portrait.
    Is there anyway I can save the PDFs to iPad in someway and then use the mail reader to open them?
    Or if anyone knows of a pdf reader that will immediately render in page width on flipping to landscape.
    I've used iBooks reader, cloud reader, and good reader and something else - but none of them nicely do what I've described as Mail does.
    Thanks
    Tom

    I'm very happy with my iPad.
    However one of the "justifications" for, it is so that I can read a library of pdf files off line.
    There are lots of PDF readers- free and paid -with different functionality.
    However the best from my POV is actually the one in embedded mail reader.
    This is because when you flip to landscape mode, it immediately stretches the file to page width rather than trying to display a whole page. The font is immediately easily readable - better than in portrait.
    Is there anyway I can save the PDFs to iPad in someway and then use the mail reader to open them?
    Or if anyone knows of a pdf reader that will immediately render in page width on flipping to landscape.
    I've used iBooks reader, cloud reader, and good reader and something else - but none of them nicely do what I've described as Mail does.
    Thanks
    Tom

  • Sample code for offline PDF forms submit to workflow

    Hi,
    I have a XDP form which needs to be submitted offline by the user. So i have saved the XDP as dynamic PDF. On submit of this PDF the code flows to the servlet. I am getting the following error:
    "com.adobe.formServer.interfaces.ProcessFormSubmissionException: RequestBuffer not specified at com.adobe.formServer.client.EJBClient.processFormSubmission(EJBClient.java:454) at samples.triggerworkflow.servlet.ProcessFormServlet.doPost(ProcessFormServlet.java:54) at samples.triggerworkflow.servlet.ProcessFormServlet.doGet(ProcessFormServlet.java:28) at javax.servlet.http.HttpServlet.service(HttpServlet.java:697) at javax.servlet.http.HttpServlet.service(HttpServlet.java:810) at org.apache.catalina.core.ApplicationFilterChain.internalDoFilter(ApplicationFilterChain.j ava:237) at org.apache.catalina.core.ApplicationFilterChain.doFilter(ApplicationFilterChain.java:157) at.... "
    Finally i need to trigger the workflow from the servlet.
    Please help me fix this error. Pleas eprovide a sample code if you have.
    My servelt code is:
    package samples.triggerworkflow.servlet;
    import java.io.IOException;
    import javax.servlet.*;
    import javax.servlet.http.*;
    import com.adobe.formServer.client.*;
    import com.adobe.formServer.interfaces.*;
    import com.adobe.idp.*;
    import com.adobe.workflow.client.*;
    import com.adobe.workflow.manager.*;
    import samples.util.*;
    * @version 1.0
    * @author
    public class ProcessFormServlet extends HttpServlet implements Servlet {
    private static String failedHTML = "Process Invocation Failed. See Log";
    * @see javax.servlet.http.HttpServlet#void (javax.servlet.http.HttpServletRequest, javax.servlet.http.HttpServletResponse)
    public void doGet(HttpServletRequest req, HttpServletResponse resp)
    throws ServletException, IOException {
    doPost(req, resp);
    * @see javax.servlet.http.HttpServlet#void (javax.servlet.http.HttpServletRequest, javax.servlet.http.HttpServletResponse)
    public void doPost(HttpServletRequest req, HttpServletResponse resp)
    throws ServletException, IOException {
    EJBClient formServer = new EJBClient(Util.getInitContext(getServletContext()));
    IOutputContext form = null;
    try {
    IOutputContext outputContext =formServer.processFormSubmission(req,"OutputType=0");
    // Determine the content type -- make sure it is text/xml
    String ct = outputContext.getContentType();
    if ((ct.equals("text/xml"))||(ct.equals("application/vnd.adobe.xdp+xml")))
    // Get the length of the output stream
    int outLength = outputContext.getOutputContent().length;
    // Create a byte array and allocate outLength bytes
    byte[] formOutput = new byte[outLength];
    // Populate the byte array by invoking getOutputContext
    formOutput = outputContext.getOutputContent();
    System.out.println("coming in post 5555***********");
    } catch (ProcessFormSubmissionException e1) {
    System.out.println("coming in exception 123***********");
    e1.printStackTrace(resp.getWriter());
    return;
    String returnHtml = triggerWorkflow(form);
    resp.setContentType("text/html");
    resp.setContentLength(returnHtml.length());
    resp.getWriter().print(returnHtml);
    private String triggerWorkflow(IOutputContext form) {
    System.out.println("coming in triggerWorkflow 1111***********");
    QLCSession session = null;
    String html = null;
    try {
    System.out.println("coming in try of triggerWorkflow 2222***********");
    session = QLCSessionFactory.createSession("Localhost");
    Context wkfContext = session.login("administrator", "password");
    session.setContext(wkfContext);
    System.out.println("coming in try of triggerWorkflow 3333***********");
    ProcessManager manager = session.getProcessManager();
    System.out.println("coming in try of triggerWorkflow 4444***********");
    manager.setContext

    Figured out how to set an event parameter in the function:
        CALL METHOD event_container->set
          EXPORTING
            name                          = 'Item'
            value                         = wa_eban-bnfpo

  • How do I download a 250mb video from Dropbox to iPad? For offline use.

    I have uploaded a large video I need to show someone, offline.  It's on Dropbox, but I don't see a means to download it, not like I can with the photos.
    Also - how do I download multiple photos from dropbox, as when i select lots, there is no option to move/download.

    If the video is in Dropbox, simply 'Favorite' the video from within the Dropbox app.  Doing so kicks off a download to the iPad in the background.  To check the status of the download, click on 'Favorites' and it will show you the downloaded thus far.  Once it's complete, yu can play the video from within Dropbox even when offline.
    As for photos, not sure there is a way to do that directly from the Dropbox app.

  • Ipad app for displaying pdf bookmarks

    I have the new 3rd generation iPad and I'm looking for an iPad app that will display bookmarked PDF's in a manner similar to how they are displayed on my computer (i.e., bookmarks listed in the navigation panel on the left side of the screen and the PDF document to the right of that).  I have the iBooks app but it only displays the bookmarks in the Table of Contents and doesn't show the document itself simultaneously.  I also have the free Adobe Reader app; however when I tap the bookmarks icon at the bottom of the app it only shows a few bookmarks even though the document contains many more (lately it also seems to crash whenever I try to use it).
    The PDF documents I review on a monthly basis are fairly large (2,000+ pages with 200+ bookmarks per document).  The ability to do some basic annotations would also be nice but not essential since I would do any serious annotation work to the file in Adobe Acrobat Professional on my computer.  Obviously, there are numerous PDF apps available but I can't tell from their descriptions if they will display the bookmarked files in the manner I want.  Any suggestions from users who have actual experience with various apps would be greatly appreciated.  Thanks.

    Hey,
    I know this is not a reply to your question but I just wanted to ask you about a problem I encountered while  mail merging. The steps I follow: Create a mail merge in Microsoft Word using the necessary steps ( I am pretty sure that they are correct) and  then press the  Finish & Merge button. The messages are then in my configured Outlook's outbox. The problem is that they have been in the outbox for a whole night ad not even one message got sent.
    Please reply if you kow the answer.
    Thanks.

  • Can commenting tools be used for a PDF document created by scanning another document?

    I have Adobe Reader X.  It has commenting tools.  I
    created a PDF file by scanning another docu
    ment (a newpaper clipping) to the PDF file for an attachment to an Email. I am not able to use the highlighting tool on the new PDF document.  Since I was the author of the PDF document in this case (but obviously did not use Adobe Acrobat to create it), can I somehow enable use of commenting tools for the document?

    The highlight tool works for highlighting text that is in the document (as text objects). Images of text, which is what you get with a scan, cannot be highlighted with this tool, even if you had Acrobat.

  • Can Oracle forms be used for offline screens

    I need to address a business requirement to
    provide offline screens.Is it possible to provide these using Forms on client sites who are not connected to the net.
    The files produced by the Forms are to be sent remotely to a server at a fixed time using some middleware
    Basically,can we have Oracle forms running
    without Oracle Forms server?

    hey there!
    i really am looking for the solution of this question myself if anybody know the solution plz let me know
    thanx in advance
    JAS

  • Does anyone know about iPad use for Patients diagnosed with ALS ?

    My Mom was recently diagnosed with ALS (Lou Gehrig's Disease) and has lost her voice. She has been using my sisters iPad to communicate. And I want to thank Apple for creating such a great device, but I want to know if anyone out there has had any experience or knows of any ALS patients who have used an iPad for primary communication. Thank you.

    You might start with contacing any local or national ALS support organizations. I would think they would be a better source of specific use information that this forum. A response here is likely to be more hit and miss than anything else.

Maybe you are looking for

  • Firewire audio problems with OS X 10.5.6

    Hello, I’m experiencing audio problems with Firewire 400 on my Macbook running Mac OSX 10.5.6. I’ve got a 2.4Ghz IntelCore 2 Duo with 4 GB RAM and 59 GB available on the internal HD. It’s hooked up to a brand new Mackie D.4 mixer with 2 Firewire outp

  • TS1630 Hearing troubles with I-Phone 5

    I have a I-Phone 5, I cant hear when receiving calls, nor can the caller hear me, I've tryed to clean out the jack points but still no luck, dose anybody have any ideas

  • Dreamweaver CC Rejecting A File Name...

    Hello! I just began using Dreamweaver Creative Cloud and am having difficulty ading a photo to an already created document. The name of the file is 'Red%Dragon%Cartel.jpg', yet when I attempt to add it, it appears as 'Red%DragonÊrtel.jpg' within Prop

  • Appliance purchase/delivery nightmare

      I was shopping for appliances and comparison shopping.  A salesperson approached us and we were given a printed quote for the appliances we wanted.  We said we were out comparison shopping and would come back if we found this to be the best we coul

  • Fold down window just disappears when trying to bind to AD

    We're switching back to Macs!! In preparation I'm trying to bind my MacBook (10.5.6) to the Windows server (I've done this successfully at another school). When I go to Directory Access, click the + , put in the info, the fold down window goes away a