Citing RM via Java API for events

Hello!


When the audit function is enabled, LiveCycle Rights Management ES2 allows to control certain types of events, such as open doc or printed. We can see this information in the administration console of the LiveCycle.

Is it possible to get these events using Java API in LiveCycle? Or I have to create a process of Workbench to obtain this information?

Thanks in advance!

Yes, you can use the API to get the events.  Here is a link to a part of literature around this...

http://help.Adobe.com/en_US/LiveCycle/9.0/programLC/Javadoc/com/Adobe/LiveCycle/rightsmana gement/client/infomodel/Event.html

Concerning

Steve

Tags: Adobe LiveCycle

Similar Questions

  • The gateway configuration GemFire 7.0.1 via Java APIs is unable to successfully deploy

    I followed the instructions here: (WAN) multi-site Configuration.

    I have been unable to deploy a gateway and according to me, Miss me him a little bit of configuration, but I can't identify what it is.

    # loc1.properties
    jmx-manager-port=1899
    mcast-port=0
    remote-locators=localhost[11045]
    
    
    
    distributed-system-id=1
    

    gfsh start locator - name = loc1 - port = 11044 - properties-file = loc1.properties

    # loc2.properties
    jmx-manager-port=1999
    mcast-port=0
    remote-locators=localhost[11044]
    
    
    
    distributed-system-id=2
    

    gfsh start locator - name = loc2 - port = 11045 - properties-file = loc2.properties

    String license = "== omitted valid WAN enabled key ==";
    String serverName = "node1";
    
    CacheFactory cacheFactory = new CacheFactory();
    cacheFactory.set("name", serverName);
    cacheFactory.set("mcast-port", "0");
    String workingDir = String.format("c:/software/ssw/%s", serverName);
    cacheFactory.set("license-working-dir", workingDir);
    cacheFactory.set("deploy-working-dir", workingDir);
    cacheFactory.set("locators", "localhost[11044]");
    cacheFactory.set("license-data-management", license);
    cacheFactory.set("distributed-system-id", "1");
    Cache cache = cacheFactory.create();
    cache.setIsServer(true);
    
    CacheServer cacheServer = cache.addCacheServer();
    cacheServer.setPort(30303);
    
    String gatewayName = String.format("%sSender", serverName);
    RegionFactory replicatedRegionFactory = cache.createRegionFactory(RegionShortcut.REPLICATE_PERSISTENT_OVERFLOW);
    replicatedRegionFactory.addGatewaySenderId(gatewayName);
    replicatedRegionFactory.create("TestRegion");
    
    cache.createGatewaySenderFactory().setParallel(false).create(gatewayName, 2);
    cache.createGatewayReceiverFactory().setStartPort(12000).setEndPort(12009).create().start();
    
    cacheServer.start();
    
    
    
    
    
    

    Each member starts and runs but when inspecting via "list gfsh gateways" I have the following message:

    [warning 2013/11/15 13:56:50.148 CST loc1 <RMI TCP Connection(3)-172.20.121.109> tid=0x56] (tid=11 msgId=11) Errorjava.lang.Exception: node1 is an invalid member name or Id
      at com.gemstone.gemfire.management.internal.beans.DistributedSystemBridge.validateMember(DistributedSystemBridge.java:694)
      at com.gemstone.gemfire.management.internal.beans.DistributedSystemBridge.listGatewaySenderObjectNames(DistributedSystemBridge.java:1218)
      at com.gemstone.gemfire.management.internal.beans.DistributedSystemMBean.listGatewaySenderObjectNames(DistributedSystemMBean.java:344)
      at com.gemstone.gemfire.management.internal.cli.commands.WanCommands.listGateway(WanCommands.java:603)
    
    
    
    
    

    This message is incongruous with ' gfsh describe config - Member = node1':

    gfsh>describe config --member=node1
    Configuration of member : "node1"
    
    JVM command line arguments
    -------------------------------------------------
    -Didea.launcher.port=7542
    -Didea.launcher.bin.path=C:\software\ide\IntelliJ
    IDEA
    12.1.4\bin
    -Dfile.encoding=UTF-8
    
    
    GemFire properties defined using the API
    .................................................................................................................................
    deploy-working-dir                       : c:\software\ssw\node1
    distributed-system-id                    : 1
    license-data-management                  : === omitted ===
    license-working-dir                      : c:\software\ssw\node1
    locators                                 : localhost[11044]
    mcast-port                               : 0
    name                                     : node1
    
    
    Cache attributes
    .................................................................................................................................
    is-server        : true
    
    
    Cache-server attributes
    . port                 : 30303
    
    
    
    
    

    Has anyone tried to get a bridge linking purely Java API?

    Thank you

    Jeff

    Jeff,

    I appreciate you are trying to help.  I expect to have a setting that I forgot.  Your suggestions were valid and I have test again each of these this morning.  I think I've identified the problem and it isn't really a problem code, setting issue or a question of GemFire. I think that our network of local offices has a particular configuration that affects GemFire in a unique way.

    In my test, I used localhost as the address for locators and remote control-locators.  I changed to be my explicit hostname and I do not see the error longer.  I am able to inspect bridges via gfsh and start them.  FYI: I witnessed a different symptom with the new product of the pulse.  When you try to deploy the war impulse locally I be watching only partial functionality.  The application of impulse load but could not inspect the data nodes, but I could see the locators.  I played with each of the possible combinations (ip address, host name, localhost, qualified domain host name) and the only way I could solve the problem of the impulse was to use the host name.  It smells the same number of local network.

    I'm working on a Windows desktop computer and use an active Windows with DHCP domain controller.  Production deployment is on RHEL and should not encounter these problems.

    Thank you

    Jeff

  • How to get the attributes of node when you query the TQL via java API

    Hello

    I'm trying to pick up a hierarchy of IC using a TQL. I created a TQL on uCMDB and am now questioning him through the uCMDB java API. The TQL is simple and queires a hierarchy containing a Node (Server) containing the disks, file systems, interfaces and IP addresses.

    My code snippet is:

        UcmdbService ucmdbService = CMDBConnection.createCMDBService();
        TopologyQueryService queryService = ucmdbService.getTopologyQueryService();
        Topology topology = queryService.executeNamedQuery("BasicTopologyView");
        Collection allCIs = topology.getAllCIs();

        for (TopologyCI node : allCIs) {
                 System.out.println("Node is " + node.getPropertyValue("display_label") + "(" +node.getId().getAsString() + ") ... " + node.getPropertyValue("display_label")
                         + " ... " + node.getPropertyValue("TenantOwner")+ " ... " + node.getPropertyValue("discovered_os_name"));
             }

    The output I get is

    The node is/usr (18de9fd759680f10b4f1d3567fb0f5e5)... / usr... null null
    The node is/tmp (18eaac5d8ec14e45874029f25011a13c)... / tmp... null null

    Whatever properties I question are coming as null. Is there a way I can say uCMDB what I expect from each node to the execution of the attributes.

    Thanks in advance.

    Peyrot

    This problem is now resolved. The correct way to proceed, queryProperties method is used when querying of the node.

    node.queryProperties(props);
    

    When the accessories is a string containing all of the appropriate properties you want to take to uCMDB.

  • Java API for OBIEE?

    Hello

    I am looking for Java API and SDK OBIEE, please help with the problem...

    Thank you

    Sandeep

    Details of Web Service and the API: https://docs.oracle.com/cd/E28280_01/bi.1111/e16364/toc.htm

  • Otherwise for development if there is no java API?

    Hi, expert,

    Right now, we are trying to find out if we can set password policies, configure vpn profiles and configure the email on blackberry programmatically accounts.

    To establish password policies, it is confirmed that there is no API: http://supportforums.blackberry.com/t5/Java-Development/Is-there-API-to-change-the-password-policy-a... .

    To set up e-mail, I saw this: http://stackoverflow.com/questions/5496885/set-up-a-non-blackberry-email-account-on-blackberry-devic... and http://supportforums.blackberry.com/t5/Java-Development/Setting-up-non-BB-email-account-on-a-Blackbe.... Say that there is no API to do.

    for the VPN profile this post http://supportforums.blackberry.com/t5/Java-Development/Create-VPN-profile-and-VPN-settings-programa... receives no answer.  And this post http://supportforums.blackberry.com/t5/Java-Development/Virtual-Private-Network-VPN-connection-quest... said that it has no API to configure the VPN profile.

    So it doesn't look good at all. Just wonder if there is another way if there is no java api for development. There are some sellers who could really do more, as this company: http://www.astrasync.com/, they could enforce the policies of the Exchange.

    I could think of is to use EventInjection of our application in e-mail blackberry UI configuration (which we would try to start as well). Not sure about good password policies.

    It would be really appreciated if someone points or thoughts for research which will seek us in future investigations.  Y at - it all unpublished API rim including some seller access to the (for example, http://www.astrasync.com/)?

    I will close this thread because it seems that it is no other way to do this if there is not java API.

  • Word 97/2003 XML to PDF conversion (Java API)

    Hello

    Is there a Java API for converting XML Word documents (1997/2003) in PDF format?

    Kind regards

    Gautam.

    You may need the forum product for LiveCycle PDF Generator. However, I think he can use Word on the server and thus be able to read what it can read the words.

  • Using the record of decision in the Java API

    Hey all,.

    I work with an integration of Java of the OPA, and I'm curious to know how to exploit the record of decision by using the Java API for the information I'm after.

    Basic example:

    X = Maximum (A, B)

    In a record of decision, I see that A and B are used to determine X, but is there a way to know what is done with the API? I know its somewhere, I just need to get to work!

    Another example:

    X = (A - B) * C

    How can I retrieve what exactly happened in java using the API? Is this possible?

    Thank you!!!

    Dan

    Dan,

    Records of decision (code or xml) unfortunately do not go into that kind of detail. Records of decision describes what values are relevant and values assumed under influence, but they have no detailed calculation of information in them.

    It is not possible to do what you are trying to do.

    See you soon
    Frank

    Daniel Hager wrote:
    Hey all,.

    I work with an integration of Java of the OPA, and I'm curious to know how to exploit the record of decision by using the Java API for the information I'm after.

    Basic example:

    X = Maximum (A, B)

    In a record of decision, I see that A and B are used to determine X, but is there a way to know what is done with the API? I know its somewhere, I just need to get to work!

    Another example:

    X = (A - B) * C

    How can I retrieve what exactly happened in java using the API? Is this possible?

    Thank you!!!

    Dan

    Published by: frank.hampshire on April 10, 2013 10:42

  • vShield App - access Flow Monitoring via vShield API?

    Hello world!

    We want to get their hands on the information provided by the App Flow vShield"monitor"programmically. We found no detail on how to do this via the API of vShield. Anyone know how or have experience using the Flow' monitor ' in this way?

    See you soon!

    Hi, would like to understand how you want to use data more precisely. Today, vShield Manager collects a large set of data that comes to the microphones, and recovery of the flow bulk can be no optimal via REST... We don't have a way to retrieve the stream via the API for this reason. You are looking for a filtered or a search for style operation to retrieve specific streams or more doing timed calls for periodic flows? If it's the latter, potentially using the Netflow feature in our vSwitch can be an alternative method.

    Do you currently work closely with vShield engineering team? Looks like an interesting use case, we would be delighted to hear from you...

  • Appeal of determinations engine (10.3) with Java API

    Are there examples of code was over what to call the engine with the Java API for 10.3 OPA?

    Hi Robert,.

    What would a full example code "? Examples of code using the OPA developer should demonstrate each of the various tasks needed to use the engine of determinations.

    Kind regards
    Brad

  • is there a way to tell firefox allow and remember the java plugin for all users via the command line or a script?

    Hello

    I have about 200 computers I want to push the next to parameter

    allow and remember the java plugin for firefox for all users
    

    is it possible to do this via a script or configuration file?

    You must create two files in the Firefox program folder.

    • local - settings.js file in the defaults\pref folder where you will find the channel - prefs.js
    • mozilla.cfg in the main folder of the Firefox program
  • Search for users using java API IOM 11 with the value of null field

    Hello

    I find user using java api findUsers (HashMap hash), but I need get all users where a custom field is equal to null

    Example:

    HashMap userHash = new HashMap();
    userHash.put ("USR_UDF_CUSTOM", "NULL");
    userData tcResultSet = userOps.findUsers (userHash);

    Someone help me?

    Do not use this search functionality. The user that:

    UserManager usermgr = Platform.getService (UserManager.class);
    Criteria of SearchCriteria = new SearchCriteria ("Custom Label", null, SearchCriteria.Operator.EQUAL); Suppose USR_UDF_CUSTOM label is personalized
    List of users of = usermgr.search (null, null, criteria);
    for (user: user) {}
    perform the action here
    }

    -Kevin

  • what event of filter of java is for deletion

    I am looking for a filter of java to delete event glad I can do something when my content is delete.

    Thank you.

    filesToDelete seems to be the primary files & replacement associated with your content. So I guess you can access/manipulate the metadata custom as you normally would in a java filter: binder.getLocal ("xCustomField");

  • How to get the id of the cluster, the name of vcenter via vi java api? Please help me

    I use vsphere java api, I wanted to retrieve the uuid of the cluster and datacenter resourcepool, how do I do it?

    Welcome to the Forums, I took the liberty of moving your question to the right subforum.

  • Java API to create a password for a user

    I used the Java API to create a user in Livecycle, but I can't seem to find a way to give this user a password.

    Here is the code I use to add the user.

    http://help.Adobe.com/en_US/LiveCycle/9.0/programLC/help/index.htm?content=000004.html

    Once the user is defined in LiveCycle I want the user to set the password to a Web page. How to make this happen?

    Thank you.

    Take a look on change the password of the user recipe.

  • I could develop Java Application for Blackberry device software version 5.0 to 6.0 JDE

    Hi, expert,

    I saw this line of the ' BlackBerry Java Development Environment - 4.7.0 - fundamentals Guide'.

    It is said:

    ===============================

    With each major version of the BlackBerry Device Software and the FMV of BlackBerry, Research In Motion includes the
    corresponding Java API and version of the BlackBerry® Java® development environment. The version of the BlackBerry device
    Software determines the version of the BlackBerry® integrated development environment that you can use to develop
    applications. For example, RIM released BlackBerry Device Software version 4.0 and BlackBerry JDE version 4.0 in even
    time. BlackBerry JDE version 4.0 supports APIs that were introduced in BlackBerry Device Software version 4.0
    and BlackBerry JVM version 4.0.

    The applications that you create by using BlackBerry JDE Version 4.0 only work on BlackBerry devices
    running BlackBerry Device Software version 4.0 or later.

    =========================

    The last sentence talking about version 4.0 of JDE. I think that would mean that I could not develop a java application on JDE 6.0 for Blackberry 5.0 version of the software, even if I do not use any new API to 6.0. However, it seems to me that it is a useless limitation. Could someone throw some lights on it?

    I'm going to agree with superdirt here.

    I have the 5.0 OS update of applications work well on OS 5.0, 6.0 and 7.0 of the OS OS phones.  I try not to recompile for levels of the OS, if I can, and so far I've been perfectly safe with OS 5.0 running on the later levels of the operating system.  So you should be able to get away with just using OS 5.0.

    Not that it is important for you, but I just thought I documents some historical information about level changes.  .

    As far as I know it 2 change cod in the file format, one to the 4.0 OS and the other in OS 4.2.  Therefore, if you want to run anything in OS 6.0 or above, it must be compiled in OS 4.2 or higher.  Again, I have applications compiled to OS 4.2 running on OS 6.0, without no problem devices.

    There have been changes to the API - the result is that the code that works in OS xx does not work in OS yy where yy is after xx.  I hit a few of them and have so far managed to rework the code so that it works very well on both levels of the operating system.  In general it is things that I do wrong anyway, as the older operating systems (from memory) are not as strict on when the event Thread must be used.

    The problem with OS 4.7 compatibility is an impact and to get more of this, for devices touch screen only, I compile using OS 4.7.  If an application that uses only the functionality that was available in the OS 4.2, I compile on OS 4.2 for non touch screen phones and OS 4.7 for touchscreen phones.  And everything works fine.

    I hope this helps.

Maybe you are looking for

  • How to export albums

    Hello I've grouped photos into albums and I'd like to export my photos while keeping the structure of the albums. When I try to export, the only options I give myself, is to save their grouped in moments. How can I not lose my albums? Thanks for the

  • single-board rio Guide

    I bought a Single-Board RIO 9636. It is not a trial edition, and I don't know how to program the single board rio. Where can I find the user for sbrio guide? This is my first time to use sbrio.

  • I can't link my hotmail accounts to another!

    I can't link my hotmail accounts to another - this has happened 3 weeks! Help Our business accounts have 3 different hot mail accounts, up to 3 weeks ago, the possibility of linking the three accounts just disappeared. It's a huge pain and a waste of

  • enable scripts after malware scan to start diagnosis

    I need Set-ExecutionPolicy Unrestricted in windows powershell on vista

  • Why Renderer is off on first CC 2015?

    Hi allyesterday I installed the card GTX 770, there CUDA on board and it is listed as officially supported by Adobe Premiere. I have the latest drivers Nvidia and Windows 10 Adobe first Pro CC 2015.2.Also in the settings of the project the Renderer o