How is generated Acrobat reviewID? (Acrobat 8 - shared reviews)

Ask a Question related to Adobe Acrobat SDK, Design and Development.

  1. #1

    Default How is generated Acrobat reviewID? (Acrobat 8 - shared reviews)

    Hello i'm trying to get any information how is generated reviewID. It's part of directoryname when the PDF file is reviewed (shared reviews - webdav or network folder)

    directoryname:
    DP2_Review.pdf__a81c922551db314b982188ffc2259fde

    reviewID part:
    a81c922551db314b982188ffc2259fde

    also reviewID is included in xml file with comments:

    <?xml version="1.0"?>
    <rss version="2.0"><channel>
    acrobat:Review?reviewID=a81c922551db314b982188ffc2 259fde
    <ttl>120</ttl>
    ....

    I think it's some MD5 hash, but i cannot find any information (SDK including) how to create it. I found some old Adobe MD5 HASH Algorithm in Perl <http://support.adobe.com/devsup/devsup.nsf/docs/52680.htm>
    but the results of hash is not the same.

    Thanks for any help.
    Radek_Bauer@adobeforums.com Guest

  2. Similar Questions and Discussions

    1. API for Shared Review in Acrobat SDK
      Hi, I would like to implement the functionality for Shared Review programmatically. Right now we need to open each pdf file select Comments ->...
    2. Transfer tracked email reviews from Acrobat 7 to Acrobat 8
      I have many tracked email reviews that were set up in Acrobat 7. We just purchased Creative Suite 3 with Acrobat 8 included and I would like to begin...
    3. SHARED REVIEW ACROBAT 8 PROFESSIONAL
      I would like to understand the file creation that happens when initiating a shared review. The pdf that is to be in the Review is coming from a...
    4. Parlez-vous Acrobat? Sprechen Zie Acrobat? Habla Acrobat?
      Diana Goddard, "Unsupported Language" #2, 11 Jul 2005 11:07 am </cgi-bin/webx?13@@.3bbb44a3/1>
    5. Index generated in acrobat 6.0 is not compatible with earlier version of acrobat
      Hello all. I have a problem with using the catalog feature in 6.0. When I try to update an index that was created using 5.0, I get a warning...
  3. #2

    Default Re: How is generated Acrobat reviewID?(Acrobat 8 - shared reviews)

    With Acrobat 7, obtaining a hash is a two step process. Not sure about v8 but this may help. You have to convert the URL first, and then create the hash.

    Collab.URL2PathFragment("http://localhost/test.pdf")
    http/80/127.0.0.1/test.pdf/_

    Collab.hashString("http/80/127.0.0.1/test.pdf/_")
    _OAsY4PGjPOTYQLy99_NpA
    chris_mcfarling@adobeforums.com Guest

Posting Permissions

  • You may not post new threads
  • You may post replies
  • You may not post attachments
  • You may not edit your posts

1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 41 42 43 44 45 46 47 48 49 50 51 52 53 54 55 56 57 58 59 60 61 62 63 64 65 66 67 68 69 70 71 72 73 74 75 76 77 78 79 80 81 82 83 84 85 86 87 88 89 90 91 92 93 94 95 96 97 98 99 100 101 102 103 104 105 106 107 108 109 110 111 112 113 114 115 116 117 118 119 120 121 122 123 124 125 126 127 128 129 130 131 132 133 134 135 136 137 138 139