Your achievements

Level 1

0% to

Level 2

Tip /
Sign in

Sign in to Community

to gain points, level up, and earn exciting badges like the new
Bedrock Mission!

Learn more

View all

Sign in to view all badges

iftdavid
iftdavid
Offline

Badges

Badges
6

Accepted Solutions

Accepted Solutions
0

Likes Received

Likes Received
0

Posts & Comments

Posts & Comments
12

Discussions

Discussions
0

Questions

Questions
3

Ideas

Ideas
0

Blog Posts

Blog Posts
0
Top badges earned by iftdavid
Customize the badges you want to showcase on your profile
Re: How to get name of a PolicyEntry principal? - Adobe LiveCycle 11-06-2010
The problem here is that the value returned by the getCanonicalName method of the Principal in the PolicyEntry is the Oid. Therefore to get all the values of the Principal one needs to use the findPrincipal method of the DirectoryManagerServiceClient class.The documentation should be updated to make this clear.I still do not understand why the Principal returned from the PolicyEntry has most of its fields unpopulated. There should be not need to do a findPrincipal. In addition why is the value f...

Views

92

Likes

0

Replies

0
Re: When adding a ACL to a resource getting UMException: string length wrong - Adobe LiveCycle 10-06-2010
Thanks Chetan.That solved the problem. The documentation did not make this clear.

Views

231

Likes

0

Replies

0
Re: When adding a ACL to a resource getting UMException: string length wrong - Adobe LiveCycle 10-06-2010
Anyone knows a solution to this problem. In addition to the code posted above, I try with running the "Quick Start (EJB mode): Managing access control lists using the Java API" and I get the same Exception.

Views

164

Likes

0

Replies

0
Re: Adding a Policy to a document located in the Repository - Adobe LiveCycle 10-06-2010
Thank you Jasmin and Diego. Your replies made me look carefully at my code and I found that I was not updating the repository with Document without the Policy added. I was doing the following:RMSecureDocumentResult protectDoc = documentManager.protectDocument(unproctDoc, "yabby_traps_kill_platypus.pdf", policySet, lcPolicy.getName(), null, null, null);r.getContent().setDataDocument(unproctDoc);repositoryClient.updateResource(r.getPath(),r,false);Instead I should have been doing the following:RMS...

Views

118

Likes

0

Replies

0
Adding a Policy to a document located in the Repository - Adobe LiveCycle 01-06-2010
Is it possible to add a Policy to a document stored in the Repository? I've been trying to do this but it does not seen to work. This is what I am doing:Retrieve from Repository the Resource containing the Document.Extract Document from Resource.Apply Policy to the Document.Update ResourceUp to this point all works without any problem. However, if a now retrieve the Resource and check the Policy of its Document I get the following exception: SDKException: getRMLicenseID: document has no license ...

Views

982

Likes

0

Replies

3
Re: How to get name of a PolicyEntry principal? - Adobe LiveCycle 05-05-2010
Here is a short program that reproduces this problem:package lctest;import com.adobe.edc.sdk.SDKException;import java.util.*;import com.adobe.idp.dsc.clientsdk.ServiceClientFactory;import com.adobe.idp.dsc.clientsdk.ServiceClientFactoryProperties;import com.adobe.idp.um.api.infomodel.Principal;import com.adobe.livecycle.rightsmanagement.client.*;import com.adobe.livecycle.rightsmanagement.client.infomodel.*;import java.util.logging.Level;import java.util.logging.Logger;public class ListPolicies{...

Views

92

Likes

0

Replies

0
How to get name of a PolicyEntry principal? - Adobe LiveCycle 21-04-2010
I am using the Java API (EJB Mode) to create Policies and Policy-Entries. I am able to do this without any problems. However when I retrieve a created Policy and its Policies-Entries I cannot obtain anything meaningful about the Principal associated with the Policy-Entry. Most of the fields of the Principal are null, with the exception of the canonical-name. However, the canonical-name returned does not correspond to that of the Principal when the Policy Entry was created. Also the domain for th...

Views

691

Likes

0

Replies

2
Re: Strange things in sdk of Rights Managerment ES - Adobe LiveCycle 20-04-2010
Anyone has a solution to this problem?

Views

154

Likes

0

Replies

0
Re: Adobe Live Cycle with Axis2 webservice giving error. Please help me - Adobe LiveCycle 12-04-2010
Check that you have all the jar libraries required by for Rights management are in your path.

Views

119

Likes

0

Replies

0
Re: When adding a ACL to a resource getting UMException: string length wrong - Adobe LiveCycle 25-03-2010
Hi Steve,Here is the source as you requested:import javax.activation.MimetypesFileTypeMap;import java.io.*;import java.util.*;import com.adobe.idp.dsc.clientsdk.ServiceClientFactory;import com.adobe.idp.dsc.clientsdk.ServiceClientFactoryProperties;import com.adobe.repository.bindings.dsc.client.ResourceRepositoryClient;import com.adobe.repository.infomodel.*;import com.adobe.repository.infomodel.bean.*;import com.adobe.repository.RepositoryException;import com.adobe.idp.Document;public class LCR...

Views

163

Likes

0

Replies

0