Rights managment off line permit question

I set a policy to allow off line for 2 days as well as an off line permit for a group with in the policy. Then I opened it and checked the policy, and found it set correctly. When I tried to open it again off line it gave me a message that the computer must be connected to the Internet to open the document. What did I do wrong??

For a document to be opened offline, a "Principal Key" for the user who has "offline" permissions is required on the client system that is being used to view the document.
If the document has been opened while online, then the synchronization should be occurring in the background.  If the document has never been opened, and no synchronization (of principal keys) has occurred, then the document will not open offline.  Each time a connection is established between Acrobat or Reader with the Rights Management server, the client should synchronize with the server and get any principal keys that related to documents that the user has offline permissions.
Try forcing a synchronization, from Acrobat select Advanced > Security > Adobe LiveCycle Rights Management > Synchronize for Offline.  If you are using Reader, select Document > Security > Adobe LiveCycle Rights Management > Synchronize for Offline
Regards
Steve

Similar Messages

  • All photos appearing off-line

    All photos in in my Lightroom 5, appearing off-line with question mark next to all folders. I have over 45,000 photos. How can I get everything to show up again. First time this has ever happened.

    jasahb wrote:
    Did not move, rename or delete the 49,815 files that are showing up as being off-line.
    In the many years I have been doing this, I have seen examples where people accidentally do something, and you might want to check your operating system and make sure your folder names, file names and drive name/letters haven't been accidentally changed. And also what Jim Wilde said.

  • Oracle 10g on Windows Server off-line database backup - a few questions

    I'd like to do an Oracle off-line backup every night. Please tell me what you think about my plan.
    First, run this batch file.
    set oracle_sid=PLDG
    C:\oracle\product\10.2.0\bin\sqlplusw.exe /nolog @c:\oracle\product\oradata\pldg\shutdb.sql
    C:\oracle\product\10.2.0\bin\oradim -shutdown -sid PLDG -shuttype srvc
    net stop OracleORADB10GTNSListenerPLDG
    This is the shutdb.sql script that the above batch file calls.
    set echo on
    spool C:\oracle\product\oradata\pldg\shutdb.log
    connect /@pledgemaker as sysdba
    shutdown immediate
    spool off
    exit
    ....that should shut down the database.
    Now I will copy the files that the following three queries pulls up to another server.
    SQL> select name from sys.v_$datafile;
    NAME
    C:\ORACLE\PRODUCT\ORADATA\PLDG\SYSTEM01.DBF
    C:\ORACLE\PRODUCT\ORADATA\PLDG\UNDOTBS01.DBF
    C:\ORACLE\PRODUCT\ORADATA\PLDG\SYSAUX01.DBF
    C:\ORACLE\PRODUCT\ORADATA\PLDG\DRSYS01.DBF
    C:\ORACLE\PRODUCT\ORADATA\PLDG\ODM01.DBF
    C:\ORACLE\PRODUCT\ORADATA\PLDG\PLEDGEMAKER_DATA01.DBF
    C:\ORACLE\PRODUCT\ORADATA\PLDG\PLEDGEMAKER_INDX01.DBF
    C:\ORACLE\PRODUCT\ORADATA\PLDG\TOOLS01.DBF
    C:\ORACLE\PRODUCT\ORADATA\PLDG\USERS01.DBF
    C:\ORACLE\PRODUCT\ORADATA\PLDG\XDB01.DBF
    C:\ORACLE\PRODUCT\ORADATA\PLDG\MAILING01.DBF
    C:\ORACLE\PRODUCT\ORADATA\PLDG\BO516_REP01.DBF
    C:\ORACLE\PRODUCT\ORADATA\PLDG\PLEDGEMAKER_DATA02.DBF
    C:\ORACLE\PRODUCT\ORADATA\PLDG\PLEDGEMAKER_DATA03.DBF
    C:\ORACLE\PRODUCT\ORADATA\PLDG\PLEDGEMAKER_INDX02.DBF
    C:\ORACLE\PRODUCT\ORADATA\PLDG\PLEDGEMAKER_INDX03.DBF
    SQL> select member from sys.v_$logfile;
    MEMBER
    C:\ORACLE\PRODUCT\ORADATA\PLDG\REDO01A.LOG
    C:\ORACLE\PRODUCT\ORADATA\PLDG\REDO01B.LOG
    C:\ORACLE\PRODUCT\ORADATA\PLDG\REDO02A.LOG
    C:\ORACLE\PRODUCT\ORADATA\PLDG\REDO02B.LOG
    C:\ORACLE\PRODUCT\ORADATA\PLDG\REDO03A.LOG
    C:\ORACLE\PRODUCT\ORADATA\PLDG\REDO03B.LOG
    SQL> select name from sys.v_$controlfile;
    NAME
    C:\ORACLE\PRODUCT\ORADATA\PLDG\CONTROL01.CTL
    C:\ORACLE\PRODUCT\ORADATA\PLDG\CONTROL02.CTL
    C:\ORACLE\PRODUCT\ORADATA\PLDG\CONTROL03.CTL
    After copying the above files, I want to start the database back up.  First I run this batch file
    set oracle_sid=PLDG
    net start OracleORADB10GTNSListenerPLDG
    C:\oracle\product\10.2.0\bin\oradim -startup -sid PLDG -starttype srvc,inst
    Then run this script.
    set echo on
    spool C:\oracle\product\oradata\pldg\startdb.log
    connect /@pledgemaker as sysdba
    startup
    spool off
    exit
    - Is this plan complete?
    - Will the filenames that the above three queries retrieve ever change in the future? Or do they remain the same?
    - There are other files in the C:\ORACLE\PRODUCT\ORADATA\PLDG\ directory, such as TEMP01.DBF. I am assuming that I do not need to back these files up. Is this correct?
    Thanks so much for your help!
    Edited by: DataHandle on Jun 13, 2012 3:49 PM

    DataHandle wrote:
    Sorry, I should explain my situation better. Currently there is no backup in place right now so I just want to get SOMETHING running and backing up our data. I am an Oracle newbie compared to a lot of the experts on here - I just want to go with the simplest solution so that I can implement it ASAP. Then I can at least sleep at night.
    I agree that I should eventually get to learning RMAN and should understand it thoroughly. I've read a lot of the documentation on it but it can be really confusing. I mean there are 666 page books on Oracle backups - it is intimidating.
    Anyway, thanks for your help.
    Edited by: DataHandle on Jun 14, 2012 9:48 AM
    Edited by: DataHandle on Jun 14, 2012 9:49 AMYes, the official documentation can be pretty overwhelming. I suggest you go to amazon and look up "RMAN Backup and Recovery" by Hart and Freeman. It is very well written and cuts through a lot of the clutter of the actual reference manual.
    For the immediate, here's what you need to do
    log on the the sever as 'oracle' - or whoever owns the oracle installation
    then
    rman target /
    rman> CONFIGURE RETENTION POLICY TO REDUNDANCY 1;     << set this how you want -- it's a quick reference in the official docs
    rman> CONFIGURE BACKUP OPTIMIZATION ON;
    rman> CONFIGURE CONTROLFILE AUTOBACKUP ON;
    rman> CONFIGURE DEVICE TYPE DISK PARALLELISM 1 BACKUP TYPE TO COMPRESSED BACKUPSET;
    rman> CONFIGURE CHANNEL DEVICE TYPE DISK FORMAT   '/oradata/fs91upg/upgbkup/%U';     << set the path to wherever you want to store your backup
    rman>the above commnads are one-time setup.
    rman> shutdown immediate
    rman> startup mount
    rman> backup database
    rman> alter database open
    rman> exitis your database in archivelog mode?
    Edited by: EdStevens on Jun 14, 2012 10:47 AM

  • LiveCycle Rights Management questions

    1. When user is authenticated (via LDAP), then during policy creation process, at the "Add User or Group" page [https://aps8:8443/edc/UserGroupSearchWizard.do ], unable to find any users or groups. Any ideas what the problem is? From the adminui page [https://aps8:8443/adminui/secured/admin.faces] find users and group is not a problem.
    2. When trying to open a policy (policy on LC8) enabled pdf from Acrobat 8.x, I get this Acrobat Security error. "You are attempting to connect to an Adobe LiveCycle Policy Server using an insecure protocol (http). The connection attemp has been cancelled. Use the https protocol instead..."
    I have been using the same PC and openning policy (policy on LC7) enable pdf without such error. How to resolve this error.
    3. How can I disable http and use only https for LC8 adminui and Rights Management pages?
    Thanks!

    Problems above solved for now.
    But still getting log-in problem (user account can not log-in) to LC Rights Manamagent page with user accounts that have multiple LC Rights Management roles.

  • My iPad 2 doesn't work right since I down loaded ios8. It's slow and falls off line. Has anyone else had these problems?

    MY iPad 2 is slow and falls off line since I down loaded ios8. Has anyone else had these problem? Is Apple going to do any thing about it? I feel like I need to buy a new iPad.

    Hi ..
    Reset the device:
    Press and hold the Sleep/Wake button and the Home button together for at least ten seconds, until the Apple logo appears.
    If that doesn't help, tap Settings > General > Reset > Reset All Settings
    If that doesn't help, tap Settings > General > Reset > Reset Network Settings
    You may have to re enter your Wi-Fi password.
    If nothing above has helped, try here >  iOS: Troubleshooting Wi-Fi networks and connections

  • Web start off-line applications

    Is it possible to disable the automatic update feature of web start, and indicate that an application will always run off-line? For users that only have a dial up connection, it's inconvenient for web start to try to connect each time.

    I think I answered my own question; the answer is that presently the answer is no. Web start will always try to get the latest version, like it or not. I also understand that this might change in Java 1.6.
    There is an ongoing debate as to whether creating java executables (exe files) in windows is needed or advisable. Many suggest using java web start; others suggest distributing an executable jar. Both have problems.
    In the case of an executable jar, unless one makes a shortcut and uses an application icon, it is apparent that the program is not a normal windows application. Also, if the application uses javahelp, there is the additional difficulty of getting jhall.jar to the right place.
    Java Web Start has good potential. However, this business of always looking for automatic updates has problems. Many users don't want updates unless they explicitly ask for them. It is possible to run the application offline using the Java Web Start manager. But then its very obvious that this is not a standard windows application. Clicking on the icon that web start creates causes Java web start to announce itself to dial up users who happen not to be connected to the internet at the time of the launch. Again, it becomes obvious that this is not a windows application.
    It's my personal opinion that this is a serious design flaw. Java can make inroads to .net if its applications can run in windows transparently, as any other application. My vote is to correct this flaw in the next version.

  • Take audio blade off line on 3545?

    Greetings,
    How do I place the audio blade off line?
    I am upgrading my development MeetingPlace servers to from v7.0 to v7.1.  I have upgraded the application and web server.  Reading the documentation states to take the audio blade off line but I don't see how to do it on my 3545.  The Cisco documentation states:
    Step 1 Sign in to the Media Server Administration for the Hardware Media Server.
    Step 2 Select Resource Management > MCU from the left panel.
    Step 3 Select the name of an Audio Blade.
    Step 4 Perform one of the following actions:
    •To bring the Audio Blade online, select online.
    •To bring the Audio Blade offline, select offline and either enter a date to bring the Audio Blade online or check Permanently to keep the Audio Blade offline permanently.
    Step 5 Select OK.
    Here is a screenshot from our mcu.

    Beth,
    On the MP app server web page, Click on Media server administration (it is on the top right corner)
    You will be redirected to another page. Click on 'Resource Management' from the options on the left to follow the above steps.
    Let me know if you have any questions.
    Jyothi
    Please rate useful posts.

  • Adobe Reader for iOS and Android & Rights Management

    This week's release of Reader for iOS and Android devices incorporates support for accessing files secured by Adobe LiveCycle Rights Management.
    As you are probably familiar, LiveCycle Rights Management protects sensitive documents by encrypting them with industry-standard AES encryption and enabling central management of their access permissions. Protections persist even when documents are accidentally distributed via email, the cloud, or saved on a lost mobile device.
    Many of the core capabilities that you are used to on the desktop versions of Acrobat and Reader are now supported when you are on the go on your tablet or mobile phone. We intend to incorporate additional functionality in future releases of these mobile devices and look forward to your feedback.
    We've had several questions thus far about how this works. More information about the product, as well as a link to an FAQ can be found at:http://blogs.adobe.com/security/2011/10/just-released-adobe-reader-10- 1-for-ios-and-android.html
    Jonathan

    Hello Jonathan,
    is there an way to trigger iOS download to immediately open using "Adobe Reader"
    instead of using the default Previewer (showing an plain empty white window) and then re-open it using "Open with" ?
    Is there an MIME-Type to indicate IRM-protected PDF-files?
    Thanks,

  • How can I use an WebDynpro application off line?

    : Hello,
    I am developing a normal WebDynpro application to publish on my portal.  I would also like to use this app on my mobile engine (so I can use it off line) . What do I need to change of my WebDynpro application for it to work in the mobile client? The MC comes with tom cat light is there a way to deploy de webDynpro libraries for tom cat ?
    Any help is great help
    I am using :
    WebAS 640 sp 9
    MI 2.5 sp 9
    Windows 2000 + mobile client
    Thank you in advance,
    Guy

    Hello Guy,
    I am afraid that Gregor is right: WebDynPro is a complete online solution and has neither the aim nor the ability to become available offline. Ms Karin Schattka (SAP Product Manager WebDynPro) stated this very clearly in her TechEd04 presentation, which is available in SDN as well.
    To employ offline applications you can choose from the Mobile Business Solutions portfolio that SAP offers for it's "Mobile Infrastructure" which is part of Netweaver 04 and later. Several applications are available, such as Sales, CRM, AssetMgmt and Mobile Time and Travel.
    If nothing fits your needs you can develop your own applications using the MI framework. These are the options you have but unfortunately they have nothing to do with WebDynPro and No, there is no way to generically take Netweaver Portal content offline, as the portal (like WebDynPro technology) follows an online-only strategy.
    Best regards,
    Tim

  • How do I connect to computers that are being used in the lab, but have no address listed on the "all computers" screen and say "off line" while they are being used?

    Thanks for any help I can get.  I'm the new guy here at school, and did not set up the system, so I'm not familiar with any of the individual steps for correcting problems.  My question is listed in the window up top.
    Jim

    Thanks for the response. I tried to find out what you asked.  For example:
    1. Computer #35 is listed on the "all computers" screen but says "access denied", "not authorized",  right click for " get info" has no administrators listed, and I don't know how to add my computer as one.
    2.  "Scanner" screen # 35 is not listed either in "Bonjour", or "Local Network" (ethernet interface)
    3.  "Scanner 2" screen - same.
    4.  "Scanner 3" screen - same.
    5.  "Computer Lab" screen #35 is listed, but says "off line", "access denied"
    I hope this gives us somewhere to start and go from there.  Thanks. 
    Jim

  • Printing or Editing Off-Line Images

    Hi,
    I am looking for the best way for editing or printing images that have been previously moved/archived to CDs/DVDs when using PSE 3/4 Organizer. As I understand it once you bring back an image to edit it, the archived version is brought back online., and the one on the CD is basically removed from the catalog. Is this correct?
    How does all this work if you are dealing with Version Sets, all of which have been previously archived to CDs?
    What if you only want to bring an archived image to print it? In this case, is the high resolution image just temporarily loaded to make the print? I vaguely remember that the answer to this is yes, but I am not positive.
    And what if you wanted to make a slide show but did not want to start with the resolution of your proxies?
    I do know that I can go and find the answers to each one of these questions myself, but I am hoping to save a little time and possibly screwing up somewhere by asking the question before trying things out. I am also interested on how others are doing the above.
    TIA
    Don S.

    Barb,
    Thanks so much for the simple solution. I have tried it and it seems to do just what I want. Let me list the steps to make sure I did what you said.
    1. From the Organize mode, I select the off-line photo
    2. Click on Go to Standard Edit. I get the message re. picture is no considered on-line.
    3. After the image is oopened in the Editor, I go back to the Organizer, click on the Undo arrow. The gold CD icon on the picture, which was not there now comes back, but the red strip with the lock is still over the photo.
    4. I go back to the Editer, make my changes and then use Save As with a new name.
    5. I close the photo in the Editor, and automatically am taken back to the Organizer, where there is no red stripe, but now two photos in the Photo Bin, the one off-line with the CD icon in the top left corner, and the edited version right next to it that is on-line.
    To be honest, I only did Steps 1-3. I am presuming that Steps 4-5 would be as stated. Is this how the whole process works?
    PS I did confirm that when you bring an off-line image back in to print it, it is only brought back temporarily and is still considered an off-line image after being printed.
    Again, thanks for your initial answer Barb. I now need to see how Version Sets affect the above, if at all.
    Don S.

  • Images are off line

    Images are off line.  There is a symbol at the bottom right of some images that has an arrow and a red line. The error is. The selected master image is either offline or not found. Please reconnect it and try again.  All I did was copy the aperture library to an external hard drive and copy it back to a newer mac book pro.  I am trying to work with the image in my new computer.

    Are you running a referenced or managed library? Try double clicking on the library to launch Aperture if it's managed. Try File>Locate Referenced Files... if it's a referenced library.

  • Rights management service

    Hi All,
    I have a query on Rights management service that comes along with Microsoft. I have the following question:
    1. What needs to be done to get a lifetime licence, as it provides the licence for 30 days only?
    2. Does this service work on real time, for eg. I have set the date of expiry of a document for 10 days and have given only read access. But  after sending the document to the concerned person, i realise that i shold have given only 5 days
    access, can i now change this policy on the same document that the recepient has already accessed at their end?
    3. Can this service be used within an organisation? Means, today if i restrict a document and send to any outsider, and if i resign then can someone control these rights on my behalf?
    4. Is it possible to apply these policy on a folder in an organizational structure? that means, if i create a folder with certain restricted persmission then all the permission given to the folder should automatically get applied to all the document
    within that folder? also, if the file is emailed then those permissions should go along with the document?
    Will appreciate a detailed response on the same. 

    Hi,
    Have you checked the steps the above threads provided?
    Is there any update with your issue?
    Best regards,
    If you have feedback for TechNet Subscriber Support, contact
    [email protected]
    Amy Wang
    TechNet Community Support

  • Clients show off-line

    I have been having this problem for some months now and simply putting up with it, but it is pretty annoying. I manage around 100 Macs.
    Clients in the Remote Desktop main window list will unexpectedly show as being off-line when they are not. I can add them back in and delete the old entry if I care to. The old entry will still show as being off-line and the recently added one right above it will show as on-line. The IP has not changed. If I double click the off-line showing entry it errors with: "Connection Failed f-9494.
    ARD Software is up to date 3.3 (451.15). I believe I started having these problems after an ard update, or my other thought is having the same machine in several lists may be contributing. Machines are not all on the same subnet.
    If a machine shows as off-line it will do so in every list it's in.
    Any recommendations are more than welcome.
    Thanks mucho,
    Tim

    Same problem here.
    ARD 3 on Mac 10.4.11

  • Looking for a tutorial/design-pattern for Manage User and Permissions.

    Hello,
    I wonder if anyone knows a good tutorial/blog with reference to security - howto Manage Users and Permissions.
    In my application I have GROUPS and each group has access to different RECORDS and CASES.
    Example:
    Groups: Alfa, Beta, Gamma
    Record: R1, R2, R3...
    Case: C100, C200, C300
    Group Alfa can view: R1, R2 and C300
    Group Beta can view: R1, R3, C200, C100, C300,
    Group Gamma can view: R3
    My question is this: what should be the best way (design-pattern?) to force a policy to securing the Records/Cases?
    What should every case/record implemented to verify that a user (part of a group) has the right to access the entity.
    Thank You!

    Sorry if this one is too basic for you but as I do not know your level of experience try:
    http://www.adobe.com/devnet/dreamweaver/articles/first_dynamic_site_pt3_print.html
    HTH
    There are also many other tutorials on:
    http://www.adobe.com/devnet/dreamweaver/application_development.html

Maybe you are looking for

  • Ipod 3g it's not recognized by itunes 11.1.5

    When I plug it, my mac book pro doesn`t recognize it. It doesn`t show up on the desk or itunes, since I update it please help!

  • Installation of creative cloud on windows

    Hello, I'm trying to install Creativce cloud on my computer. It is installed but whenever I try to open it, it shows a window completely white and it won't let me do anything. I've tried uninstalling and restarting 1 million times and nothing happens

  • Budget Line Item for Internal Order was disappeared

    Dear GURU, I have the problem when posting budget via Tcode KO22 KO24 and KO26. When posting budget in the first time, the system was not generate budget document. But it was created when I post budget again in the second time. Please tell me what ha

  • MDT Boot Credentials Error

    Hi All- I am trying to learn MDT 2010. I have imported out of box drivers and have created my boot and install WIM files. This server at work was previously working fine and I tried to modify the customsettings.ini and bootstrap.ini files so I wouldn

  • HELP...... OVI suite!!!

    Hi, Just started having issues trying to connect to ovi suite. ive been using it for months without any problems. But no for the past week or so, it wont detect my usb connection or it says its not in pc suite mode. The phone does connect to the conp