Annotation with X not modifiable with 9.4.2

Hello
I'm annotating pdf with acrobat reader 10 on windows, and this works perfectly.
I have also to work on a linux platform, on which there is only the 9 version.
The documents I annotate on reader 10 on win cannot be edited with reader 9 on linux !
Moereover, while on reader 10 permissions are OK, when I check the permissions with reader 9 there are not the same (and, indeed, not allow to annotate the document) ?
Why this issue ?
Thanks

So.... no answer ?
Any member of the adobe support team ?
No explanation of this difference between reader X and reader 9 in the pdf  ?

Similar Messages

  • Issue with Calendar not syncing with iPhone 3g

    Issue with Calendar not syncing with iPhone 3g.
    Solution
    Create backup of your entire mailbox before starting (THIS IS IMPORTANT)
    Create offline folder (.pst file) Check windows help on how to do this for your version.
    Open folders view on Outlook
    Right click on Calendar in tree view and 'copy to' offline .pst folder
    Go back to main calendar view and delete all entries in your calendar.
    Create simple cal entry and sync test with iphone
    If this works then start dragging cal entries back from the offline folder into the main calendar then sync after each step....
    I moved events in this order
    -Yearly recurrences (ie Birthdays)
    - Monthly recurrences
    - weekly recurrences
    - Daily recurrences
    All appointments from the beginning of this year >> to the end of time!
    If all these sync then the issue is with an older cal item and you have to decide if you actually need these in you current calendar.
    I chose to leave these in the offline cal and if i need access them from there.
    If at any point the sync fails then you know you have a corrupt cal entry in the block you just transferred. Move the offending items back into the offline folder and try again in smaller chunks until you identify the offending items and delete them and manually recreate them in your real calendar.
    Also smart to run the inbox (.pst /.ost ) repair tools for your OS/Outlook version.
    Fixed so far
    XP Pro / Outlook 2008
    XP Pro /Outlook 2003

    I just updated the firmware to iPhone 2.0.1 and the syncing works great both ways.

  • I am getting frustrated with Apple not working with Flash player on some of my favorite web sites. Is there any alternative that will work on I-pad instead of flash?

    I am getting frustrated with Apple not working with Flash Player on some of my favorite web sites! Is there another alternative to watching these site options on my I-pad?

    Flash is not, and probably never will be, supported on the iPad : http://www.apple.com/hotnews/thoughts-on-flash/ . Plus it would be up to Adobe to make a version of their flash player that works on iOS devices - something which they have never managed to do and which they have now given up on trying to do.
    Browser apps such as Skyfire, iSwifter and Puffin 'work' on some sites, but judging by their reviews not all sites. Also some websites, especially news sites, have their own apps in the App Store, so your could try checking there for your sites (and there is the built-in YouTube app).

  • Embedding with JPA annot: column "is not compatible with expected type"

    I have the following embed case (things I guess to be inessential omitted):
    @Entity
    public class Container {
    @Id
    @GeneratedValue
    @Column(name="ID")
    private long id;
    @Embedded
    @AttributeOverride(name="value", column=@Column(name="UID"))
    private Uid uid;
    @Embeddable
    public class Uid {
    private String value;
    When I run this through the mapping tool to build the schema, it correctly builds the UID column in the MySQL Agreement table as a VARCHAR.
    However, when I try to access the table, I get the following error (I've edited class names to match my simplified example):
    RROR_SYSTEM_FAILED:
    <4|true|4.0.0> kodo.persistence.ArgumentException: "Uid.value" declares a column that is not compatible with the expected type "varchar". Column details:
    Full Name: Agreement.UID
    Type: blob
    Size: 0
    Default: null
    Not Null: false
         at kodo.jdbc.meta.MappingInfo.mergeColumn(MappingInfo.java:720)
         at kodo.jdbc.meta.MappingInfo.createColumns(MappingInfo.java:567)
         at kodo.jdbc.meta.ValueMappingInfo.getColumns(ValueMappingInfo.java:143)
         at kodo.jdbc.meta.strats.StringFieldStrategy.map(StringFieldStrategy.java:52)
         at kodo.jdbc.meta.FieldMapping.setStrategy(FieldMapping.java:101)
         at kodo.jdbc.meta.RuntimeStrategyInstaller.installStrategy(RuntimeStrategyInstaller.java:75)
         at kodo.jdbc.meta.FieldMapping.resolveMapping(FieldMapping.java:497)
         at kodo.jdbc.meta.FieldMapping.resolve(FieldMapping.java:456)
         at kodo.jdbc.meta.ClassMapping.resolveNonRelationMappings(ClassMapping.java:930)
         at kodo.jdbc.meta.ClassMapping.resolveMapping(ClassMapping.java:886)
         at kodo.meta.ClassMetaData.resolve(ClassMetaData.java:1761)
         at kodo.jdbc.meta.ValueMappingImpl.resolve(ValueMappingImpl.java:541)
         at kodo.jdbc.meta.strats.EmbedFieldStrategy.map(EmbedFieldStrategy.java:62)
         at kodo.jdbc.meta.FieldMapping.setStrategy(FieldMapping.java:101)
         at kodo.jdbc.meta.RuntimeStrategyInstaller.installStrategy(RuntimeStrategyInstaller.java:75)
         at kodo.jdbc.meta.FieldMapping.resolveMapping(FieldMapping.java:497)
         at kodo.jdbc.meta.FieldMapping.resolve(FieldMapping.java:456)
         at kodo.jdbc.meta.ClassMapping.resolveMapping(ClassMapping.java:890)
         at kodo.meta.ClassMetaData.resolve(ClassMetaData.java:1761)
         at kodo.meta.MetaDataRepository.processBuffer(MetaDataRepository.java:683)
         at kodo.meta.MetaDataRepository.resolveMapping(MetaDataRepository.java:635)
         at kodo.meta.MetaDataRepository.resolve(MetaDataRepository.java:518)
         at kodo.meta.MetaDataRepository.getMetaData(MetaDataRepository.java:288)
         at kodo.meta.MetaDataRepository.getMetaData(MetaDataRepository.java:352)
         at kodo.kernel.QueryImpl.classForName(QueryImpl.java:1879)
         at kodo.kernel.ExpressionStoreQuery$1.classForName(ExpressionStoreQuery.java:74)
         at kodo.kernel.jpql.JPQLExpressionBuilder.getClassMetaData(JPQLExpressionBuilder.java:151)
         at kodo.kernel.jpql.JPQLExpressionBuilder.resolveClassMetaData(JPQLExpressionBuilder.java:119)
         at kodo.kernel.jpql.JPQLExpressionBuilder.getCandidateMetaData(JPQLExpressionBuilder.java:203)
         at kodo.kernel.jpql.JPQLExpressionBuilder.getCandidateMetaData(JPQLExpressionBuilder.java:176)
         at kodo.kernel.jpql.JPQLExpressionBuilder.getCandidateType(JPQLExpressionBuilder.java:167)
         at kodo.kernel.jpql.JPQLExpressionBuilder.access$500(JPQLExpressionBuilder.java:30)
    ===
    I can't figure out why it thinks something should be a blob. Any thoughts?
    Thanks,
    -- Bryan Loofbourrow

    Ok, I found the problem. I hadn't added the Uid.java to the persistence.xml file, so although the mapping tool correctly recognized this as a varchar situation, the execution environment did not, taking Uid to be a nonpersistent class that it must treat as a blob.
    -- Bryan

  • Why is my CD with documents not opening with my MacBook Pro?

    Why is my CD with documents not opening on my MacBook Pro?  I have inserted the CD and keep saying that it is not apple apps.

    I think I'm running iTunes 11.1.2.
    Also, my computer isn't even recognising it - its just saying my USB ports are power surging.
    (Thanks for your help! )

  • Why does the usb cord my ipod came with say not supported with this accesorie

    i plugged my ipod into my computer and a yellow triangle popped up with a exclaimation mark in it and said below it charging is not supported with this accesorie.

    Jamie,
    Could be that your USB cable is damaged somehow.  Try using a different cable if at all possible.
    Otherwise, check your iPod's connector port on the bottom and make sure it is clear of debris such as lent, etc.  Use a can of compressed air to help blow it out.  Also, look for any broken or bent pints that could cause this error message to appear.
    B-rock

  • Put quantity position of sales order not modifiable with delivery created

    Hi experts,
    Actually, in my sales orders positions it is possible to change the order quantity after I have the delivery created.  (the delivery is not partial)
    I need change this to make not possible modify the order quantity of sales order when I create the delivery.
    Is it possible??
    Thanks in advance

    Hi
    Go to t code OVAH and change the message application area V4 msg no 96 from warning to error
    This will fulfill your requirement
    Path to OVAH
    img-SD-Sales-Sales documents--Define variable messages
    Regards
    Raja

  • Acrobat 11.0.09 With IE11 - Not Compatible With Enhanced Security

    We've packaged Acrobat 11.0.09 for deployment with the Customization Wizard and the install goes fine.  We are having issues when try to view linked PDF files in Internet Explorer 11 (Enhanced Security is on) on Win7 64-bit PCs.  We are receiving prompts asking us to allow opening of these files.  I was under the impression that starting with Acrobat 11.0.07 IE11 Enhanced Security was fully supported?  One thing I did notice is while viewing the IE11 add-ons, the "Adobe PDF Reader" add-on shows as 32-bit, any way to load the 64-bit version of this?  Thank you.    

    I believe the EPM compatibility was for Adobe Reader XI and not for Acrobat XI just yet.

  • Is it possible to use a different Adobe account to the one you downloaded the software with on a machine with it not screwing with another versions on that account?

    I  have 2 adobe accounts, one is my CS5 student license on my mac and one is as a CC trial on this PC.
    The trial has run out and I want to buy the CC subscription for my PC but I cant because I signed up with a wrong email address for this account so cant log in to buy it and Adobe customer services are taking over 24 hours to get back to me.
    For reference heres a better idea of my situation:
    https://forums.adobe.com/message/7480974#7480974
    Is it possible to buy the CC on my account associated with the account/software on my Mac onto this computer? (On that account I have already done the 30 day trial and also had it for under 30 days before cancelling CC and going back to CS5).
    Or is it only possible to install the software with the specific account you signed up with? As when I have access to my Mac I would like to still use my CS5 on that but CC on this PC.(I really don't want to risk somehow screwing it up so I cant use my CS5)
    Thanks a lot
    V

    In case the email is incorrect & it can not be verified then you can abandon that Adobe id, if you have purchased CC with incorrect Email, then you need to get the CC cancelled & buy a new CC with correct Email ID.
    Please personally inbox me the incorrect Email ID for further investigations.
    Regards
    Rajshree

  • ITunes No Longer Synching With iPods, Not Connecting with iTunes Store

    iPods: both iPod touch, 2nd Generation, 8GB
    iTunes: (Most Recent Version)
    Issue:
    For a while, the iPods of myself and a family member have not been able to synch our iPods with iTunes anymore: when plugged in, it only appears to charge, does not show up in "Devices", does not do anything. I've run Diagnostics several times, tried redownloading iTunes, & checked settings, etc.
    Also, whenever I try to go into iTunes Store, it says that it "Cannot connect to iTunes Store", even if connection to the internet is fine.
    These problems started occurring simultaneously, as well as out of no where. As I recall, I had no problem synching & going into iTunes Store the day before.

    Ask your other family members if they did. Something has to have changed.
    I am betting it's something on the PC, since two ipods going bad at the same time would be highly unlikely.
    If you have auto updates turned on for Windows & security software, it might not even be obvious they occurred.
    You can try restarting your modems/routers/and PC, in that order.

  • Remote session via RDGW fine with Windows - not possible with Mac ...?

    Hi,
    I've configured a fresh single RDS Server (all roles on one Server including Gateway) based on Windows Server 2012 R2. Everything works fine when we use Windows 7 with current RDP Client to connect via Gateway/HTTPS.
    When we use a Mac (OS X 10.9.3) with current Version of "Microsoft Remote Desktop" (8.0.7), no RDP Connection is established. Error message: "Unable to connect to remote PC. Please verify ...". Login on <external.domain.name>/rdweb
    works fine and I'm able to download the .rdp-file and open it with Microsoft Remote Desktop, but after a few seconds the error above appears.
    I did some traffic analyzing on our Firewall and it seems that the Mac try to connect on port 3389 on the public ip of the RDS Server, which is blocked. I manually configured a RDP Connection with Gateway - same error. The log of Microsoft Remote Desktop:
    [2014-May-22 11:58:30] RDP (0): Final rdp configuration used: gatewayhostname:s:<external.domain.name>
    screen mode id:i:2
    use multimon:i:1
    session bpp:i:32
    full address:s:<external.domain.name>
    audiomode:i:0
    username:s:
    disable wallpaper:i:0
    disable full window drag:i:0
    disable menu anims:i:0
    disable themes:i:0
    alternate shell:s:
    shell working directory:s:
    authentication level:i:2
    connect to console:i:0
    gatewayusagemethod:i:1
    disable cursor setting:i:0
    allow font smoothing:i:1
    allow desktop com:1
    redirectprinters:i:1
    bookmarktype:i:3
    use redirection server name:i:1
    loadbalanceinfo:s:tsv://MS Terminal Services Plugin.1.<name>_RDS
    [2014-May-22 11:58:30] RDP (0): --- BEGIN INTERFACE LIST ---
    [2014-May-22 11:58:30] RDP (0): lo0 af=18  addr= netmask=
    [2014-May-22 11:58:30] RDP (0): lo0 af=30 (AF_INET6)  addr=::1 netmask=ffff:ffff:ffff:ffff:ffff:ffff:ffff:ffff
    [2014-May-22 11:58:30] RDP (0): lo0 af=2 (AF_INET)  addr=127.0.0.1 netmask=255.0.0.0
    [2014-May-22 11:58:30] RDP (0): lo0 af=30 (AF_INET6)  addr=fe80::1%lo0 netmask=ffff:ffff:ffff:ffff::
    [2014-May-22 11:58:30] RDP (0): gif0 af=18  addr= netmask=
    [2014-May-22 11:58:30] RDP (0): stf0 af=18  addr= netmask=
    [2014-May-22 11:58:30] RDP (0): en0 af=18  addr= netmask=
    [2014-May-22 11:58:30] RDP (0): en0 af=30 (AF_INET6)  addr=<address>%en0 netmask=ffff:ffff:ffff:ffff::
    [2014-May-22 11:58:30] RDP (0): en0 af=2 (AF_INET)  addr=<address> netmask=255.255.255.0
    [2014-May-22 11:58:30] RDP (0): en0 af=2 (AF_INET)  addr=<address> netmask=255.255.255.0
    [2014-May-22 11:58:30] RDP (0): en1 af=18  addr= netmask=
    [2014-May-22 11:58:30] RDP (0): fw0 af=18  addr= netmask=
    [2014-May-22 11:58:30] RDP (0): en2 af=18  addr= netmask=
    [2014-May-22 11:58:30] RDP (0): bridge0 af=18  addr= netmask=
    [2014-May-22 11:58:30] RDP (0): p2p0 af=18  addr= netmask=
    [2014-May-22 11:58:30] RDP (0): --- END INTERFACE LIST ---
    [2014-May-22 11:58:30] RDP (0): ----- BEGIN ACTIVE CONNECTION -----
    [2014-May-22 11:58:30] RDP (0): client version: 8.0.24875
    [2014-May-22 11:58:30] RDP (0): Protocol state changed to: ProtocolConnectingNetwork(1)
    [2014-May-22 11:58:30] RDP (0): correlation id: 7a0a5e55-c35a-c642-882e-788a487a0000
    [2014-May-22 11:58:30] RDP (0): Resolved '<external.domain.name>' to '<external ip address>' using NameResolveMethod_DNS(1)
    [2014-May-22 11:58:38] RDP (0): Protocol state changed to: ProtocolDisconnected(8)
    [2014-May-22 11:58:38] RDP (0): ------ END ACTIVE CONNECTION ------
    I remember that there was an issue to establish SSO based on DNS resolve (external Domain Name to internal ip address via Gateway Connection); but we resolved this with a new DNS Zone. But why is it fine on Windows, but not on Mac OS X with Microsoft
    Remote Desktop? I wondering why the MRD is not using the Gateway Connection to resolve the RDP host ... ?
    Many thanks,
    Erik

    And log from situation 1:
    [2014-Jun-03 14:43:36] RDP (0): Final rdp configuration used: redirectcomports=0
    disable themes=0
    allow font smoothing=1
    session bpp=32
    negotiate security layer=1
    disable wallpaper=0
    full address=rds.something.com
    rdgiskdcproxy=0
    [email protected]
    disable cursor setting=0
    gatewayusagemethod=2
    use redirection server name=1
    compression=1
    gatewayprofileusagemethod=1
    keyboardhook=2
    remoteapplicationmode=0
    allow desktop composition=1
    connection type=6
    alternate full address=rds.something.com
    drivestoredirect=*
    gatewayhostname=gw.something.com
    displayconnectionbar=1
    networkautodetect=1
    redirectposdevices=0
    gatewaycredentialssource=0
    screen mode id=2
    bitmapcachepersistenable=1
    disable full window drag=0
    shell working directory=
    workspace id=rds.something.com
    redirectprinters=1
    kdcproxyname=
    redirectclipboard=1
    use multimon=0
    disable menu anims=0
    prompt for credentials=0
    authentication level=2
    audiocapturemode=1
    audiomode=0
    autoreconnection enabled=1
    enableworkspacereconnect=0
    bandwidthautodetect=1
    alternate shell=
    videoplaybackmode=1
    promptcredentialonce=1
    redirectsmartcards=0
    winposstr=0,3,0,0,800,600
    devicestoredirect=*
    loadbalanceinfo=tsv://MS Terminal Services Plugin.1.something
    [2014-Jun-03 14:43:36] RDP (0): Final rdp configuration used: gatewayhostname:s:gw.something.com
    screen mode id:i:2
    use multimon:i:0
    session bpp:i:32
    full address:s:rds.something.com
    audiomode:i:0
    username:s:[email protected]
    disable wallpaper:i:0
    disable full window drag:i:0
    disable menu anims:i:0
    disable themes:i:0
    alternate shell:s:
    shell working directory:s:
    authentication level:i:2
    connect to console:i:0
    gatewayusagemethod:i:1
    disable cursor setting:i:0
    allow font smoothing:i:1
    allow desktop com:1
    redirectprinters:i:1
    bookmarktype:i:3
    use redirection server name:i:1
    loadbalanceinfo:s:tsv://MS Terminal Services Plugin.1.something
    [2014-Jun-03 14:43:36] RDP (0): --- BEGIN INTERFACE LIST ---
    [2014-Jun-03 14:43:36] RDP (0): lo0 af=18  addr= netmask=
    [2014-Jun-03 14:43:36] RDP (0): lo0 af=30 (AF_INET6)  addr=::1 netmask=ffff:ffff:ffff:ffff:ffff:ffff:ffff:ffff
    [2014-Jun-03 14:43:36] RDP (0): lo0 af=2 (AF_INET)  addr=127.0.0.1 netmask=255.0.0.0
    [2014-Jun-03 14:43:36] RDP (0): lo0 af=30 (AF_INET6)  addr=fe80::1%lo0 netmask=ffff:ffff:ffff:ffff::
    [2014-Jun-03 14:43:36] RDP (0): gif0 af=18  addr= netmask=
    [2014-Jun-03 14:43:36] RDP (0): stf0 af=18  addr= netmask=
    [2014-Jun-03 14:43:36] RDP (0): en0 af=18  addr= netmask=
    [2014-Jun-03 14:43:36] RDP (0): en0 af=30 (AF_INET6)  addr=fe80::288:65ff:fe37:7788%en0 netmask=ffff:ffff:ffff:ffff::
    [2014-Jun-03 14:43:36] RDP (0): en0 af=2 (AF_INET)  addr=192.168.21.114 netmask=255.255.255.0
    [2014-Jun-03 14:43:36] RDP (0): en4 af=18  addr= netmask=
    [2014-Jun-03 14:43:36] RDP (0): bridge0 af=18  addr= netmask=
    [2014-Jun-03 14:43:36] RDP (0): p2p0 af=18  addr= netmask=
    [2014-Jun-03 14:43:36] RDP (0): --- END INTERFACE LIST ---
    [2014-Jun-03 14:43:36] RDP (0): ----- BEGIN ACTIVE CONNECTION -----
    [2014-Jun-03 14:43:36] RDP (0): client version: 8.0.24875
    [2014-Jun-03 14:43:36] RDP (0): Protocol state changed to: ProtocolConnectingNetwork(1)
    [2014-Jun-03 14:43:36] RDP (0): correlation id: 9c3a9777-747c-704c-86d1-1ace1eef0000
    [2014-Jun-03 14:43:36] RDP (0): Protocol state changed to: ProtocolDisconnected(8)
    [2014-Jun-03 14:43:36] RDP (0): ------ END ACTIVE CONNECTION ------
    Seems to have disappeared "workspace id=" or is it all right?

  • Forms built with 9 not saving with Adobe reader X

    I have many computers that are running Adobe reader X.  when they are attempting to save a form that was built in Adobe 9.x, a msg dictates that they are unable to save file.  How can I rectify this without downgrading my Adobe to 9 accross our system.

    Downgrading to Adobe Reader 9 will not solve the problem because the issue is Reader was designed not to save completed forms.
    You can use Acrobat 9 to add Extended Reader Rights to PDF forms and that enabled copy can be saved with form data by Acrobat X.
    You will be restricted to 500 returned forms for each form. Above that limit you should contact Adobe about their LiveCycle server product.

  • Robohelp 9 with patch - Not working with IE10

    Hi,
    We have a problem with webhelp generated from RoboHelp 9 when viewing with Internet Explorer 10. We can't open a topic on the left or open a search result, until we either :
    A) Resize the window
    B) Resize the splitter between contents and the content pane on the right
    C) Open the dev tools via F12
    We have installed the patch provided by adobe for existing webhelp generated by RH9 at the following address :
    http://abak09.abaksoftware.com/AbakWeb7700/Extras/Help/EN/
    I have also tried to install RH10 and generate the project again, but the same issue occurs.
    I don't know what else to look for, the problems are what the patch was released for, but it is not working in our case.

    We are reproducing with Windows 8 Pro 64bit, with Internet Explorer 10 (Update version 10.0.3).
    I see on your website the snippet "Topics not opening in IE10.". On our web server, we add the IE8 compatibility tag for our web application to work correctly. I have created a new site without this tag and the fix is working.
    Thanks a lot for your help

  • ACER with Vista not working with WRT54GS

    Recently changed from a D-link to a WRT54GS and now my ACER laptop does not seem to connect properly.  The network and internet indicate they are fully connected, but I am unable to achieve results through Explorer - indicates it cannot connect to the internet.
    The network and internet works fine with the desktop and a Toshiba laptop.
    Any help would be greatly appreciated.

    check the ip add on the Acer Laptop .. ensure that its in the range of the router's ip add ..

  • Devieces used with USB not working with applications

    I got an ipod shuffle today and when i put it in it didn't do anything in itunes like it does with my nano.
    I got a new camera, and i pluged that in using a USB cable and it connected but didn't do anything in iPhoto like my old camera did.
    I wouldn't think this would happen with two devices, but it does.
    What can i do?

    with the ipod no it should mount on the desktop at least. i had a problem with a friends iPod mini. it would mount on the desktop but not in itunes. try the iPod forums

Maybe you are looking for

  • Why is it only possible to run queries on a Distributed cache?

    I found by experiementation that if you put a NearCache (only for the benefit of its QueryMap functions) on top of a ReplicatedCache, it will throw a runtime exception saying that the query operations are not supported on the ReplicatedCache. I under

  • Issue Regarding Chinese characters In Smart Form Print preview..

    Hi All, I am working on a smart form development for chinese users. The requirement is the user will login using English & when the delivery will be issued for output, a check will be done on the country of user. If that comes as china then the inter

  • How to bring Windows 7 snap window to OS X to work with two apps/ docs side

    I quite like the feature that windows 7 has to allow working with documents or applications side by side filling the screen. I know that i can resize each window but it seems a little fiddly and i'm thinking there must be a way to have it automated.

  • Mm.mysql JDBC Driver and the WHERE clause

    Anybody has succesfully performed a MySQL/JDBC query in a JSP application using more than one variable in the WHERE clause? It works fine when I run queries with one fixed value assigned to a column and one variable assigned to the other column in th

  • How to convert DateField date to String ?

    Hi, I'm trying to convert DateField date to String. How can I do it because Data class does not have String converting methods... Thanks Krzysztof