Add user as the apporver in workflow

Hi,
    I have created workflow for Project. I would like to add a user as a approver by using the following code.
user = IapiAccountLocator.lookup(session,"noppong_test");
addApprover(user.getAccountObjectReference(), new CollaboratorApprovalRuleType(0));
When the document is moved to the phase the document is locked by workflow engine, but there is nothing happen.  i also found the error in the log.
P.S. If you have an example to add the user as the approver. I'm appreciated if you provide me .
Daemon-027: EVENT_WORKFLOW_ENGINE (-2147483548, 0)     event_workflow_engine     daemon     com.frictionless.api.common.exception.ApplicationException: This field is required and must have a value.     AssociatedAttribute=WORK_ITEMS - SourceBo=-2144361477:1907:Contract Approval - ValidatingParent=-2144361477:1907:Contract Approval - com.frictionless.api.common.exception.ApplicationException: At least one of the items above is invalid. Mouse over the highlighted area for more details.| at com.frictionless.api.common.exception.ChainedExceptionFactory.createApplicationException(ChainedExceptionFactory.java:90)
Thank you so much,
noppong

Hi Baski,
    Thank you so much for your response. It is so useful for me.
    The issue has been resolved by uising the XPDL template from SAP. I have some question about changing the phase. I have 3 phases as the following :
1. Draft
2. Approval -> Workflow is here . Prev phase is Draft and Next Phase is Approved.
3. Approved
I added script to change phase in post script on the block activity as following 
import com.sap.odp.api.common.*;
if(getApprovalStatus() != DENIED) {
     doc.getIBeanHomeIfc().upgradeToEdit(doc);
     doc.getIBeanHomeIfc().changePhase(doc,"Approved");
}else{
     doc.getIBeanHomeIfc().upgradeToEdit(doc);
     doc.getIBeanHomeIfc().changePhase(doc,"Draft");
When the approver approve the document i found the error in backgroud task status as following:
Stack Trace: Sourced file: inline evaluation of: ``import com.sap.odp.api.common.*; if(getApprovalStatus() != DENIED) { doc.get . . . '' : target exception : at Line: 5 : in file: inline evaluation of: ``import com.sap.odp.api.common.*; if(getApprovalStatus() != DENIED) { doc.get . . . '' : .changePhase ( doc , "Approved" )
Target exception: com.frictionless.api.common.exception.ApplicationException: You may not transition to the target phase Approved. It is neither a valid next nor previous phase.
at bsh.BSHPrimarySuffix.doSuffix(Unknown Source)
at bsh.BSHPrimaryExpression.eval(Unknown Source)
at bsh.BSHPrimaryExpression.eval(Unknown Source)
at bsh.BSHBlock.evalBlock(Unknown Source)
at bsh.BSHBlock.eval(Unknown Source)
at bsh.BSHBlock.eval(Unknown Source)
at bsh.BSHIfStatement.eval(Unknown Source)
at bsh.Interpreter.eval(Unknown Source)
at bsh.Interpreter.eval(Unknown Source)
at bsh.Interpreter.eval(Unknown Source)
at com.frictionless.comp.scripting.ScriptEnviro...
It seem like the document is automatically changed the phase  to 'Approved' and make the script error, and the document is locked on the Approved phase. I would like to ask you some more questions.
1. Why does the workflow change the phase automatically? On my understanding the phase should be handled in PostScript by the script
2. On my understanding the workflow engine will lock the document during the workflow. Why this workflow did not release the lock when the document was changed the phase to 'Approved'.
Thank you and appreciate your help
Noppong

Similar Messages

  • Who can add users to the Term Store Administrators field in the termstoremanager.aspx

    In the Term Store management tool (_layouts/15/termstoremanager.aspx) what permissions does a user need to have to be able to add/change/remove accounts and groups listed in the Term Store Administrators field.
    I am guessing that they need to be Administrators of the Managed Metadata Service Application?
    I ask because I have a user who is Admin of the MM Service App and is listed in the Term Store Admin field but cannot add or remove users in the Term Store Admins field in the Term Store management tool
    Thanks
    J

    Hi,
    To be able to add users to the Term Store Administrators in SharePoint sites, the user needs to be
    both a member of the Administrators group on the computer running the SharePoint Central Administration Web site, and a member of the Farm Administrators group.
    More references:
    https://technet.microsoft.com/en-us/library/ee424400(v=office.14).aspx
    https://support.office.com/en-za/article/Manage-permissions-and-roles-for-term-sets-48d24117-de33-400e-ad67-3136a6c62022
    Thanks,
    Victoria Xia
    TechNet Community Support
    Please remember to mark the replies as answers if they help, and unmark the answers if they provide no help. If you have feedback for TechNet Support, contact
    [email protected]

  • Cannot add users to the Calendar Node error 0x13209

    I cannot add new users to the Calendar node. I am receiving error 0x13209. Any advice??

    You cannot add a user to a SAP group, create an enterprise user group and add both SAP group and AD user to that.

  • Add users to the James Server Dyanamically

    Hi,
    How to add users Dynamically with out using telnet in James.
    I have to add the E-mail account in James Server through Program or Script any
    Is it possible? Helppppppp!!!
    Thanks,
    Ram

    Hello,
    You have to create a new alert for that user C or delete existing one and create new one for all. Ultimately all single alert will be part of collection so there is no harm to create multiple alerts.
    Refer this for your info:
    http://social.technet.microsoft.com/Forums/en-US/57c5c448-a3ef-4b2e-a1d9-3aaa99559277/is-it-possible-to-add-a-user-to-an-existing-user-alert-in-sharepoint-2010
    Hemendra:Yesterday is just a memory,Tomorrow we may never see
    Please remember to mark the replies as answers if they help and unmark them if they provide no help

  • How to add users to the container

    Hi,
    My JSF application has security enabled. The users and their roles are defined in a .xml file located in my container (standard). Is there any way I can dynamically add users to this .xml file? Right now I am able to add them manually, but it would be nice if they were added as soon as they joined my service.
    Best Regards
    Thomas

    There is always some way ...
    Most app servers will support custom login modules via the JAAS "LoginModule" interface. Glassfish has built-in modules for file, LDAP, certificate store and solaris authentication, but you can plug-in others. There is an article and sample for how to do this for a database at <http://dev2dev.bea.com/pub/a/2003/04/Pijpops.html> (targeted at BEA, but Glassfish, etc should be the same).
    Using a database or LDAP directory to store your users means there are plenty of standard tools for manipulating and managing the data, and any updates will be available immediately to your app server.
    If you want to stick to with the file module, you can obviously update the file directly, but then the app-server or domain might need a restart before your new users get picked up, and also if the file stores the passwords hashed, you have to know the particular hashing algorithm used. Otherwise, each app server usually exposes the admin functionality (like adding users) through some web-service or EJB interface -- but this tends to be app-server specific. Your app server docs should give more details.
    What app server and version are you using? Glassfish? JBoss?

  • Can we add users to the 'Manage Access Request' field to process site access request in SharePoint Online?

    Hi,
    I have a requirement in which I have to assign couple of email ids to the "Manage Access Request" field to process site access requests. And, this is possible using server object model but I have to achieve this on SharePoint Online with the help
    of CSOM.
    There are two properties which control the access request configuration, first is "RequestAccessEnabled", a Boolean flag which turns on or off the access request feature for the site. The second property defines one or more email addresses where
    requests will be sent to. It is named "RequestAccessEmail".
    The above both properties are available for server object model but not for CSOM.
    So, is there any other workaround or way to achieve the sane in CSOM?
    Thanks,

    I don't think there is a programmatic workaround for SharePoint Online.  But the email address is just used for Notification.  Anyone with Manage Permissions can approve Access Requests.  If you create an email distribution list for the multiple
    addresses that should be notified you should be able to add the email address for the distribution list into the Access request email field using the user interface.
    Paul Stork SharePoint Server MVP
    Principal Architect: Blue Chip Consulting Group
    Blog: http://dontpapanic.com/blog
    Twitter: Follow @pstork
    Please remember to mark your question as "answered" if this solves your problem.

  • I have NDS 4.16, and I have iMS 5.1 running on Sun, Solaris 8. I want to know how can I add users using the command line instead of the console. My problem is how to set the password to this user?

     

    You can use ldapmodify found in <ServerRoot>/shared/bin
    for example
    ./ldapmodify -h ldaphost -D "cn=directory manager" -w password -f <name of LDIF file>
    Here's an example LDIF file
    dn: uid=cms,ou=people,o=balius.com,o=Universe
    changetype: add
    objectClass: person
    objectClass: organizationalPerson
    objectClass: inetOrgPerson
    objectClass: inetUser
    objectClass: ipUser
    objectClass: inetMailUser
    objectClass: inetLocalMailRecipient
    objectClass: nsManagedPerson
    objectClass: userPresenceProfile
    cn: Chad M. Stewart
    sn: Stewart
    initials: CMS
    givenName: Chad
    pabURI: ldap://host:389/ou=cms,ou=people,o=balius.com,o=Universe,o=pab
    mail: [email protected]
    mailDeliveryOption: mailbox
    mailHost: my.mailhost.com
    uid: cms
    dataSource: Chad by hand
    userPassword: users-password-here
    inetUserStatus: active
    mailUserStatus: active
    mailQuota: -1
    on a subsequent search you'd see something like
    userpassword: {SHA}S3e+L/K6

  • Active Directory and 10.8 Server: Can't add users

    I would be most appreciative of any help you folks can give a Mac user at a predominantly Windows/MS/Exchange Tier I university.
    I bought a MacMini to act as the departmental File server to allow a granular level of permissions on folders for faculty, administration, residents and students. The students and residents rotate in yearly or for 2 years at a time.
    The problem has become when I try and add users from the IT ActiveDirectory domain. The IT folks set-up the DNS, gave it a static IP address etc. all correctly.
    The MacMini was also bound to AD in Sys Prefs > Users & Groups > Login Options > Network Account Server to the domain.
    There are over 200,000 users in the university system. When I try and search for a user in the Users sidebar it pulls up a completely random list of users and lists "500+ users" next to the buttons. When I try and search for a user, invariably it fails. Furthermore, there is the term "Not Allowed" next to the names of all the random AD users.
    What am I doing wrong?
    The Sys Admin guy I spoke with said the only way he could figure it out was to go to Groups sidebar, create a new group and add the user that way.
    The whole premise for this is to allow the users the same login ID and PWD they do for every other service on campus. That's it. I then want to be able to control folder permissions directly on the MacMini. Is this possible or do I need to use Open Directory in conjunction with AD?
    Any help for this formerly Apple Power User would be greatly appreciated.
    Thanks folks.

    Hi
    This is a Jabber-ism I think.
    You get this if you are using UDS and the users you are trying to add aren't CUPS-enabled.
    You probably also get it if the users are from LDAP and aren't CUPS enabled.
    CUPC by comparison allows manual contact creation as well as adding of non CUPS people.
    Regards
    Aaron

  • Adding a domain user to the admin role within the local user management breaks all metro apps for all users!!

    Hi,
    I have posted this in another large thread under the "Windows 8 General" group but have not had any appropriate feedback from MS.
    After hours of testing and working with other users I have managed to isolate a simple situation that breaks all metro ui applications within Windows 8 for all users on the machine. Here are my exact steps and notes.
    Before continuing if you are running Avast then your solution may be to turn of the behaviour shield functionality as this also breaks metro apps. This is NOT the problem we are having!
    I have performed 3 cleans installs after isolating the problem and am able to reproduce the issue every time using the same steps on two different machines. 
    First thing to say is that for us it has nothing to do with simply joining the domain, domain/group policies nor does it appear to have anything to do with the software we installed, the problem here is much more simple but the result is pretty terrible.
    Here are my exact steps of what I did to reproduce our problem:
    Complete format of HDD in preperation for a clean install
    Clean install performed
    Set up the machine initially with a local account
    Test metro apps - all working fine
    Open control panel from the desktop, click on System, change the system to join the domain, click reboot
    Log into the system using my domain account
    Test metro apps - all working fine
    Here's were the problem starts. I need my domain account to have admin rights on the local machine so I can install programs without the IT men having to come over and enter their password every 5 mins.
    I go to control panel via the desktop and click on User Accounts. From with here I then click on "Manage User Accounts". This requires the IT guys to enter their details to give me access to such functionality. This is fine
    In the dialog box that opens I can only see the local user that was initially created during setup. The "Group" for this local account shows as "Administrators" - Image included below (important to note that metro apps are working at this point)
    I click add and then add my domain account - also giving it administrator access
    Sign off or reboot to ensure the new security is applied
    Sign back in to the domain account
    Test metro - ALL BROKEN
    Sign out
    Sign in as local account
    Test Metro - NOW ALL BROKEN FOR THIS USER ALSO
    So as soon as I add my domain account to the local user accounts and set it as admin it breaks all metro apps for all users. This is on a totally clean install with nothing at all installed other than the OS.
    Annoyingly if I go back and change the domain account to a standard user or if I totally remove the domain account from the local account management system the problem does not go away for either user. basically it is now permanently broken. The only fix I
    could fathom was a full re install and not giving the domain user admin access to the local  machine.
    Screen one - this is the local user accounts window AFTER joining the domain and logging in with my domain account (All metro apps working at this point)
    Screen 2: User accounts AFTER joining the domain and AFTER adding domain account to local user management (METRO BROKEN)
    I have isolated my machine from all group policies so nothing like that is affecting me. Users I have spoken to in different companies have policies that automatically add users to the local user management. This means that metro apps break as
    soon as they join the domain which leads them to wrongly think it is group policies causing the error. Once they isolate themselves from this they can reproduce following my steps.
    Thanks

    Hi Juke,
    Thank you for the response and apologies for the delay in getting back to you. My machine was running a long task so I couldn't try your suggested solution.
    I had already tried running the registry merge suggested at the top of the thread to no avail. I had not tried deleting the OLE key totally so I did that and the problem still exists. I will post all the errors I see in event viewer below. For
    your info, since posting my initial comment I have sent out my steps to 7 different people and we can all reproduce the problem. This comes to 10 different machines (3 of them mine then the other guys) in 3 different businesses / domains. We see the same errors
    in event viewer.
    Under "Windows Logs" --> "Application" : I get two separate error events the first reads "Activation of app winstore_cw5n1h2txyewy!Windows.Store failed with error: The app didn't start. See the Microsoft-Windows-TWinUI/Operational log for additional
    information." The second arrives in the log about 15 seconds after the first and reads "App winstore_cw5n1h2txyewy!Windows.Store did not launch within its allotted time."
    Under "Windows Logs" --> "System" : I get one error that reads "The server Windows.Store did not register with DCOM within the required timeout."
    Under "Applications And Services Logs" --> "Microsoft" -->  "Windows" --> "Apps" --> "Microsoft-Windows-TWinUI/Operational" : I get one error that reads "Activation of the app winstore_cw5n1h2txyewy!Windows.Store for the
    Windows.Launch contract failed with error: The app didn't start."
    If you require any further information just let me know and I will provide as much as I can.
    Thanks

  • Calendar Server - Unable to add users

    When I try to add users to a node I get an error message like:
    Working please wait...
    unidsattach failed, see /users/unison/log/unidsattach.log, Error Code =
    0x13205
    Add user [uid=ttesting,o=Airius.com] to node: failed
    Add user(s) to node completed.
    <P>
    This means that the Calendar Server is unable to communicate
    properly with the Directory Server. There are some Calendar-specific
    entries and an ACI that are added to the Directory Server when a node is
    created. These are critical to the proper functioning of the Calendar
    Server. This error may mean that they are missing.
    <P>
    You can also check the access log file of the Directory server to see what
    the problem may be. If you see entries like:
    [27/Jan/1999:07:39:47 -0500] conn=1 op=2 SRCH base="o=Airius.com" scope=2 filter="(nsc
    alxitemid=15000:00001)"
    [27/Jan/1999:07:39:47 -0500] conn=1 op=2 RESULT err=0 tag=101 nentries=0
    This indicates that 0 entries were returned for the search on the SYSOP
    Calendar user.
    <P>
    If you have recently imported data into your Directory Server, it is likely
    that these entries no longer exist. An import to a Directory Server does
    not append data; it replaces the current directory with the data in the
    LDIF file being loaded. You will need to recreate this Calendar information.
    Export your directory to an LDIF file and review the output to see if these
    entries exist.
    <P>
    Here is a boilerplate that may be useful if you don't have a backup copy
    of the original LDIF. Try replacing the baseDN (o=Airius.com) and the node
    id (15000) to match your Calendar configuration. The password is "password".
    The following is for illustration purposes and may not fix all problems:
    aci: (target ="ldap:///o=Airius.com")(targetattr = "*")(version 3.0
    ; acl "Untitled"; allow (write, add , delete ) groupdn = "ldap:///cn=Cal-A
    dministrators-15000, o=Airius.com" ;)
    dn: cn=Cal-Administrators-15000, o=Airius.com
    cn: Cal-Administrators-15000
    objectclass: top
    objectclass: groupofuniquenames
    uniquemember: nsCalXItemId=15000:00001, o=Airius.com
    uniquemember: nsCalXItemId=15000:00002, o=Airius.com
    uniquemember: nsCalXItemId=15000:00003, o=Airius.com
    uniquemember: nsCalXItemId=15000:00004, o=Airius.com
    uniquemember: nsCalXItemId=15000:00005, o=Airius.com
    uniquemember: nsCalXItemId=15000:00006, o=Airius.com
    creatorsname: uid=admin,o=Airius.com
    modifiersname: uid=admin,o=Airius.com
    createtimestamp: 19980501140113Z
    modifytimestamp: 19980501140113Z
    dn: nsCalXItemId=15000:00001, o=Airius.com
    objectclass: top
    objectclass: nsCalAdmin
    nscalxitemid: 15000:00001
    sn: SYSOP
    userpassword: {SHA}W6ph5Mm5Pz8GgiULbPgzG37mj9g=
    creatorsname: uid=admin,o=Airius.com
    modifiersname: uid=admin,o=Airius.com
    createtimestamp: 19980501140114Z
    modifytimestamp: 19980501140114Z
    dn: nsCalXItemId=15000:00002, o=Airius.com
    objectclass: top
    objectclass: nsCalAdmin
    nscalxitemid: 15000:00002
    sn: CWSOP
    userpassword: {SHA}W6ph5Mm5Pz8GgiULbPgzG37mj9g=
    creatorsname: uid=admin,o=Airius.com
    modifiersname: uid=admin,o=Airius.com
    createtimestamp: 19980501140114Z
    modifytimestamp: 19980501140114Z
    dn: nsCalXItemId=15000:00003, o=Airius.com
    objectclass: top
    objectclass: nsCalAdmin
    nscalxitemid: 15000:00003
    sn: STREAMOP
    userpassword: {SHA}W6ph5Mm5Pz8GgiULbPgzG37mj9g=
    creatorsname: uid=admin,o=Airius.com
    modifiersname: uid=admin,o=Airius.com
    createtimestamp: 19980501140114Z
    modifytimestamp: 19980501140114Z
    dn: nsCalXItemId=15000:00004, o=Airius.com
    objectclass: top
    objectclass: nsCalAdmin
    nscalxitemid: 15000:00004
    sn: FOREIGN
    userpassword: {SHA}W6ph5Mm5Pz8GgiULbPgzG37mj9g=
    creatorsname: uid=admin,o=Airius.com
    modifiersname: uid=admin,o=Airius.com
    createtimestamp: 19980501140114Z
    modifytimestamp: 19980501140114Z
    dn: nsCalXItemId=15000:00005, o=Airius.com
    objectclass: top
    objectclass: nsCalAdmin
    nscalxitemid: 15000:00005
    sn: SYNCH
    userpassword: {SHA}W6ph5Mm5Pz8GgiULbPgzG37mj9g=
    creatorsname: uid=admin,o=Airius.com
    modifiersname: uid=admin,o=Airius.com
    createtimestamp: 19980501140114Z
    modifytimestamp: 19980501140114Z
    dn: nsCalXItemId=15000:00006, o=Airius.com
    objectclass: top
    objectclass: nsCalAdmin
    nscalxitemid: 15000:00006
    sn: HOLIDAYOP
    userpassword: {SHA}W6ph5Mm5Pz8GgiULbPgzG37mj9g=
    creatorsname: uid=admin,o=Airius.com
    modifiersname: uid=admin,o=Airius.com
    createtimestamp: 19980501140114Z
    modifytimestamp: 19980501140114Z

    Probably in the next couple of weeks, we are releasing beta-2.
    Kumar
    Jim Clark wrote:
    >
    thanks, how often is there a beta refresh?
    Jim
    "Kumar Allamraju" <[email protected]> wrote in message
    news:[email protected]..
    Jim,
    I do not see this problem in the latest source line.
    Probably I'm running a WLS server that is slightly newer than the beta,
    so maybe
    some things might have been fixed.
    Kumar
    Jim Clark wrote:
    I was able to add users and groups through the "console" app, but I was
    unable to add users to the groups. After I added a user "jim" and a
    group
    "clark", I tried adding "jim" to the "clark". It just said "Addeduser...",
    and this, "Members: (none)".
    Jim

  • Integrating UCCX with Presence - Unable to Add Users to Contacts List

    Hi,
    I'm trying to integrate UCCX with Presence via the Desktop Administrator. I have created an enduser (LDAP Sync) and assigned the user a Service Profile which includes the Directory UC Service for LDAP, have tried both LDAP and GC configuration.
    I can make the connection the Presence Cluster, validation works. However I'm hitting the "CDAUI2067 Search did not complete successfully, and only partial results are displayed. Contact technical support." When trying to add users to the Contact List. Seems like the BUG ID CSCtg94342? However there is no reference to this bug id for UCCX 10.0 only 7.1
    Has anyone successfully integrated UCCX 10 with IMP10? If so, please advise the UC Service/Profile configuration for the End User.
    Thanks
    Ben

    Hi Ben,
    when configured Client type CAD, I didn't uncheck Version Check Required.
    Now I can complete configuration in Cisco Desktop Administration, but when I try to login with CAD client I cannot login to the Presence server - the following message appears:
    "An error has occurred communicating with the Cisco Unified Presence Service.
    The application will automatically continue attempting to connect."
    In log file I found the following "2014-12-05 09:24:23:450 ERROR STD2001 Client <SawConnectionManager> failed to connect to any service." instead of eg. "INFO STD2004 Client <SawConnectionManager> connected to service at <cup1.dcloud.cisco.com>."
    Does anybody have any idea what could be the problem?
    Thanks,
    Milan

  • Cannot add users to roles

    I have configured OpenLDAP data store with Access Manager. I can see the users added in LDAP in the Subjects tab of Access Manager, but when I create a role ad try to add users in the role I get the exception
    Plug-in com.sun.identity.idm.plugins.files.FilesRepo: Unable to find entry: C:\Documents and Settings\161101\amserver\idRepo\user\frank
    Can anybody suggest what is problem

    Hi there,
    The reason why you have file repo is because you installed the AM using file repo instead of LDAP.
    Deleting the File Repo configuration for that realm will not affect the configuration part of the AM ( I would still do a backup ... just in case) because the datastore configuration has nothing to do with that. The configuration part of the AM is at the platform level and you have that configured on the configurations tab of the platform. What I'm sugesting is on that specific Realm ( I usually use a different Realm other than the Root realm ... this way I'm sure not to mess it up ) go to the datastores (which is the place where user data is stored and not the configurations (though they might be the same) ) and delete the file datastore configuration (or point it to a different location ... but do not delete the files on the filesystem, because they are still in use by other Realms and the configuration ) .
    Configuration data and User repositories can be configured in different places .... which is what you are now trying to do .... have the conf on the file system and have the users on an LDAP.
    Defenetly do a backup of your stuff ... and if at all possible use a different realm other than the root realm.
    Hope this helps .... and makes any sense !
    Rp

  • How to batch add user

    the system use LDAP to authiticate the user, when user login the system.
    now I want to add a lot of user, how can I do?

    Make sure users are added in LDAP.
    No need to add users in the system.
    Pls mark correct/helpful if helps
    Edited by: Srini VEERAVALLI on Oct 10, 2012 6:24
    Any updates on this?
    Edited by: Srini VEERAVALLI on Jan 29, 2013 9:44 AM

  • Add user in ACS with limited access

    Dear
    I have low experiance with cisco ACS
    So kindly i need help to add user to The ACS which has limited access to my network Switches ( As Show only not to change configuration )
    Also how to take backup for the ACS Database
    Thanks,

    Hi,
    Search about command authorization in the AAA section, you'll get ample information about it, i.e., on how to configure network devices so that you can allow certain users on ACS to have limited and certain user to have full access.
    About taking a backup, that is pretty simple.
    System Configuration > ACS Backup > Backup Now.
    And you have a latest backup from ACS.
    Regards,
    Prem

  • Add User for Native PDF Conversion fails on Windows 2008 for WebSphere

    I'm installing LiveCycle ES3 Generator on Windows 2008 R2 server with WebSphere 8.  When I try to add users for the Native PDF conversion as part of the generator configuration I get an error.  I've included the installer log error and some of the related WebSphere logs below.  Anyone have any sugestions?
    Configuration Manager Install log:
    [2013-03-11 10:03:35,834], WARNING, Thread-11, com.adobe.pdfg.lcm.configure.users.AddPDFGAdminUserTask, Error while adding user to PDFG :ALC-DSC-005-000: com.adobe.idp.dsc.DSCNotSerializableException: Not Serializable
    Caused by: ALC-DSC-003-000: com.adobe.idp.dsc.DSCInvocationException: Invocation error.
              at com.adobe.idp.dsc.component.impl.DefaultPOJOInvokerImpl.invoke(DefaultPOJOInvokerImpl.jav a:152)
              at com.adobe.idp.dsc.interceptor.impl.InvocationInterceptor.intercept(InvocationInterceptor. java:140)
              at com.adobe.idp.dsc.interceptor.impl.RequestInterceptorChainImpl.proceed(RequestInterceptor ChainImpl.java:60)
              at com.adobe.idp.dsc.interceptor.impl.DocumentPassivationInterceptor.intercept(DocumentPassi vationInterceptor.java:53)
              at com.adobe.idp.dsc.interceptor.impl.RequestInterceptorChainImpl.proceed(RequestInterceptor ChainImpl.java:60)
              at com.adobe.idp.dsc.transaction.interceptor.TransactionInterceptor$1.doInTransaction(Transa ctionInterceptor.java:74)
              at com.adobe.idp.dsc.transaction.impl.ejb.adapter.EjbTransactionBMTAdapterBean.doRequiresNew (EjbTransactionBMTAdapterBean.java:218)
              at com.adobe.idp.dsc.transaction.impl.ejb.adapter.EJSLocalStatelessEjbTransactionBMTAdapter_ 3af08fdf.doRequiresNew(Unknown Source)
              at com.adobe.idp.dsc.transaction.impl.ejb.EjbTransactionProvider.execute(EjbTransactionProvi der.java:133)
              at com.adobe.idp.dsc.transaction.interceptor.TransactionInterceptor.intercept(TransactionInt erceptor.java:72)
              at com.adobe.idp.dsc.interceptor.impl.RequestInterceptorChainImpl.proceed(RequestInterceptor ChainImpl.java:60)
              at com.adobe.idp.dsc.interceptor.impl.InvocationStrategyInterceptor.intercept(InvocationStra tegyInterceptor.java:55)
              at com.adobe.idp.dsc.interceptor.impl.RequestInterceptorChainImpl.proceed(RequestInterceptor ChainImpl.java:60)
              at com.adobe.idp.dsc.interceptor.impl.InvalidStateInterceptor.intercept(InvalidStateIntercep tor.java:37)
              at com.adobe.idp.dsc.interceptor.impl.RequestInterceptorChainImpl.proceed(RequestInterceptor ChainImpl.java:60)
              at com.adobe.idp.dsc.interceptor.impl.AuthorizationInterceptor.intercept(AuthorizationInterc eptor.java:188)
              at com.adobe.idp.dsc.interceptor.impl.RequestInterceptorChainImpl.proceed(RequestInterceptor ChainImpl.java:60)
              at com.adobe.idp.dsc.interceptor.impl.JMXInterceptor.intercept(JMXInterceptor.java:48)
              at com.adobe.idp.dsc.interceptor.impl.RequestInterceptorChainImpl.proceed(RequestInterceptor ChainImpl.java:60)
              at com.adobe.idp.dsc.engine.impl.ServiceEngineImpl.invoke(ServiceEngineImpl.java:121)
              at com.adobe.idp.dsc.routing.Router.routeRequest(Router.java:131)
              at com.adobe.idp.dsc.provider.impl.base.AbstractMessageReceiver.invoke(AbstractMessageReceiv er.java:329)
              at com.adobe.idp.dsc.provider.impl.soap.axis.sdk.SoapSdkEndpoint.invokeCall(SoapSdkEndpoint. java:139)
              at com.adobe.idp.dsc.provider.impl.soap.axis.sdk.SoapSdkEndpoint.invoke(SoapSdkEndpoint.java :81)
              at sun.reflect.NativeMethodAccessorImpl.invoke0(Native Method)
              at sun.reflect.NativeMethodAccessorImpl.invoke(NativeMethodAccessorImpl.java:60)
              at sun.reflect.DelegatingMethodAccessorImpl.invoke(DelegatingMethodAccessorImpl.java:37)
              at java.lang.reflect.Method.invoke(Method.java:611)
              at org.apache.axis.providers.java.RPCProvider.invokeMethod(RPCProvider.java:397)
              at org.apache.axis.providers.java.RPCProvider.processMessage(RPCProvider.java:186)
              at org.apache.axis.providers.java.JavaProvider.invoke(JavaProvider.java:323)
              at org.apache.axis.strategies.InvocationStrategy.visit(InvocationStrategy.java:32)
              at org.apache.axis.SimpleChain.doVisiting(SimpleChain.java:118)
              at org.apache.axis.SimpleChain.invoke(SimpleChain.java:83)
              at org.apache.axis.handlers.soap.SOAPService.invoke(SOAPService.java:454)
              at org.apache.axis.server.AxisServer.invoke(AxisServer.java:281)
              at org.apache.axis.transport.http.AxisServlet.doPost(AxisServlet.java:699)
              at javax.servlet.http.HttpServlet.service(HttpServlet.java:595)
              at org.apache.axis.transport.http.AxisServletBase.service(AxisServletBase.java:327)
              at javax.servlet.http.HttpServlet.service(HttpServlet.java:668)
              at com.ibm.ws.webcontainer.servlet.ServletWrapper.service(ServletWrapper.java:1214)
              at com.ibm.ws.webcontainer.servlet.ServletWrapper.handleRequest(ServletWrapper.java:774)
              at com.ibm.ws.webcontainer.servlet.ServletWrapper.handleRequest(ServletWrapper.java:456)
              at com.ibm.ws.webcontainer.servlet.ServletWrapperImpl.handleRequest(ServletWrapperImpl.java: 178)
              at com.ibm.ws.webcontainer.filter.WebAppFilterChain.invokeTarget(WebAppFilterChain.java:125)
              at com.ibm.ws.webcontainer.filter.WebAppFilterChain.doFilter(WebAppFilterChain.java:92)
              at com.adobe.idp.dsc.provider.impl.soap.axis.InvocationFilter.doFilter(InvocationFilter.java :43)
              at com.ibm.ws.webcontainer.filter.FilterInstanceWrapper.doFilter(FilterInstanceWrapper.java: 192)
              at com.ibm.ws.webcontainer.filter.WebAppFilterChain.doFilter(WebAppFilterChain.java:89)
              at com.adobe.idp.um.auth.filter.CSRFFilter.doFilter(CSRFFilter.java:86)
              at com.ibm.ws.webcontainer.filter.FilterInstanceWrapper.doFilter(FilterInstanceWrapper.java: 192)
              at com.ibm.ws.webcontainer.filter.WebAppFilterChain.doFilter(WebAppFilterChain.java:89)
              at com.ibm.ws.webcontainer.filter.WebAppFilterManager.doFilter(WebAppFilterManager.java:926)
              at com.ibm.ws.webcontainer.filter.WebAppFilterManager.invokeFilters(WebAppFilterManager.java :1023)
              at com.ibm.ws.webcontainer.servlet.CacheServletWrapper.handleRequest(CacheServletWrapper.jav a:87)
              at com.ibm.ws.webcontainer.WebContainer.handleRequest(WebContainer.java:895)
              at com.ibm.ws.webcontainer.WSWebContainer.handleRequest(WSWebContainer.java:1662)
              at com.ibm.ws.webcontainer.channel.WCChannelLink.ready(WCChannelLink.java:195)
              at com.ibm.ws.http.channel.inbound.impl.HttpInboundLink.handleDiscrimination(HttpInboundLink .java:458)
              at com.ibm.ws.http.channel.inbound.impl.HttpInboundLink.handleNewRequest(HttpInboundLink.jav a:522)
              at com.ibm.ws.http.channel.inbound.impl.HttpInboundLink.processRequest(HttpInboundLink.java: 311)
              at com.ibm.ws.http.channel.inbound.impl.HttpInboundLink.ready(HttpInboundLink.java:282)
              at com.ibm.ws.tcp.channel.impl.NewConnectionInitialReadCallback.sendToDiscriminators(NewConn ectionInitialReadCallback.java:214)
              at com.ibm.ws.tcp.channel.impl.NewConnectionInitialReadCallback.complete(NewConnectionInitia lReadCallback.java:113)
              at com.ibm.ws.tcp.channel.impl.AioReadCompletionListener.futureCompleted(AioReadCompletionLi stener.java:165)
              at com.ibm.io.async.AbstractAsyncFuture.invokeCallback(AbstractAsyncFuture.java:217)
              at com.ibm.io.async.AsyncChannelFuture.fireCompletionActions(AsyncChannelFuture.java:161)
              at com.ibm.io.async.AsyncFuture.completed(AsyncFuture.java:138)
              at com.ibm.io.async.ResultHandler.complete(ResultHandler.java:204)
              at com.ibm.io.async.ResultHandler.runEventProcessingLoop(ResultHandler.java:775)
              at com.ibm.io.async.ResultHandler$2.run(ResultHandler.java:905)
              at com.ibm.ws.util.ThreadPool$Worker.run(ThreadPool.java:1783)
    Caused by: ALC-PDG-80000-000: com.adobe.pdfg.exceptions.ConfigException: ALC-PDG-080-000-Connection to failed service.
              at com.adobe.pdfg.config.PDFGConfigServiceImpl.validateUserCredentials(PDFGConfigServiceImpl .java:494)
              at com.adobe.pdfg.config.PDFGConfigServiceImpl.updateUserAccountsSettings(PDFGConfigServiceI mpl.java:870)
              at sun.reflect.NativeMethodAccessorImpl.invoke0(Native Method)
              at sun.reflect.NativeMethodAccessorImpl.invoke(NativeMethodAccessorImpl.java:60)
              at sun.reflect.DelegatingMethodAccessorImpl.invoke(DelegatingMethodAccessorImpl.java:37)
              at java.lang.reflect.Method.invoke(Method.java:611)
              at com.adobe.idp.dsc.component.impl.DefaultPOJOInvokerImpl.invoke(DefaultPOJOInvokerImpl.jav a:118)
              ... 71 more
    Caused by: java.lang.IllegalStateException: Connection to failed service.
              at com.adobe.service.ResourcePooler.allocateResource(ResourcePooler.java:96)
              at com.adobe.service.ConnectionFactoryManagerPeer.getConnectionResourceFromPool(ConnectionFa ctoryManagerPeer.java:79)
              at com.adobe.service.J2EEConnectionFactoryManagerPeerImpl.getConnection(J2EEConnectionFactor yManagerPeerImpl.java:103)
              at com.adobe.service.ConnectionFactoryRmiAdapter.getConnection(ConnectionFactoryRmiAdapter.j ava:54)
              at sun.reflect.NativeMethodAccessorImpl.invoke0(Native Method)
              at sun.reflect.NativeMethodAccessorImpl.invoke(NativeMethodAccessorImpl.java:60)
              at sun.reflect.DelegatingMethodAccessorImpl.invoke(DelegatingMethodAccessorImpl.java:37)
              at java.lang.reflect.Method.invoke(Method.java:611)
              at com.ibm.rmi.util.ProxyUtil$4.run(ProxyUtil.java:609)
              at java.security.AccessController.doPrivileged(AccessController.java:280)
              at com.ibm.rmi.util.ProxyUtil.invokeWithClassLoaders(ProxyUtil.java:606)
              at com.ibm.CORBA.iiop.ClientDelegate.invoke(ClientDelegate.java:1177)
              at $Proxy35.getConnection(Unknown Source)
              at com.adobe.service._ConnectionFactoryRemote_Stub.getConnection(_ConnectionFactoryRemote_St ub.java:59)
              at com.adobe.pdfg.config.PDFGConfigServiceImpl.getColorProfileService(PDFGConfigServiceImpl. java:1252)
              at com.adobe.pdfg.config.PDFGConfigServiceImpl.validateUserCredentials(PDFGConfigServiceImpl .java:487)
              ... 77 more
              at com.adobe.idp.dsc.provider.impl.base.AbstractResponseHolder.handleException(AbstractRespo nseHolder.java:150)
              at com.adobe.idp.dsc.provider.impl.soap.axis.sdk.SoapSdkBindingStubUtil.deSerializeResponse( SoapSdkBindingStubUtil.java:132)
              at com.adobe.idp.dsc.provider.impl.soap.axis.sdk.SoapAxisDispatcher.doSend(SoapAxisDispatche r.java:132)
              at com.adobe.idp.dsc.provider.impl.base.AbstractMessageDispatcher.send(AbstractMessageDispat cher.java:66)
              at com.adobe.idp.dsc.clientsdk.ServiceClient.invoke(ServiceClient.java:208)
              at com.adobe.pdfg.lcm.configure.users.AddPDFGAdminUserTask.run(AddPDFGAdminUserTask.java:76)
              at java.lang.Thread.run(Thread.java:619)
    Systemout
    [3/11/13 10:03:35:744 EST] 000000de ProcessResour A   ALC-BMC-001-505: Service ColorProfileSvc: Starting native process with command line "C:\\Program Files (x86)\\IBM\\WebSphere\\AppServer\\installedApps\\adobe\\server1\\ColorProfileSvc\\ColorPr ofileService.exe"  -IOR IOR:00bdbdbd0000002249444c3a636f6d2f61646f62652f736572766963652f4d616e616765723a312e3000b dbd000000010000000000000460000102bd0000000b4851324b38454945323500bd0000bdbd0000001f4c4d424 9000000154773e3aa001500050442522d3700080100000000000000bd0000000a000000010000001400bdbdbd0 501000100000000000101000000000049424d0a0000000800bd00011600000100000026000000020002bdbd494 24d04000000050005020102bdbdbd0000001f0000000400bd0003000000200000000400bd00010000002500000 00400bd000300000021000002d80001bdbd000000060002bdbd000000240000001e00bd00260002bdbd0000000 10000000b31302e312e32302e353400bd24bb00400000bdbd0000000806062b1200021e0200000028040100080 6062b1200021e020000001864656661756c7457494d46696c6542617365645265616c6d0000000000000000000 00000000000000042bdbd000000240000001e00bd00660042bdbd000000010000000b31302e312e32302e35340 0bd24ba00400000bdbd0000000806062b1200021e02000000280401000806062b1200021e02000000186465666 1756c7457494d46696c6542617365645265616c6d000000000000000000000000000000000002bdbd000000240 000001e00bd00260002bdbd000000010000000b31302e312e32302e353400bd24bb00400000bdbd00000008060 6678102010101000000280401000806066781020101010000001864656661756c7457494d46696c65426173656 45265616c6d000000000000000000000000000000000042bdbd000000240000001e00bd00660042bdbd0000000 10000000b31302e312e32302e353400bd24ba00400000bdbd00000008060667810201010100000028040100080 6066781020101010000001864656661756c7457494d46696c6542617365645265616c6d0000000000000000000 00000000000000002bdbd000000240000001e00bd00260002bdbd000000010000000b31302e312e32302e35340 0bd24bb00400000bdbd0000000806062b1200021e06000000280401000806062b1200021e06000000186465666 1756c7457494d46696c6542617365645265616c6d000000000000000000000000000000000042bdbd000000240 000001e00bd00660042bdbd000000010000000b31302e312e32302e353400bd24ba00400000bdbd00000008060 62b1200021e06000000280401000806062b1200021e060000001864656661756c7457494d46696c65426173656 45265616c6d0000000000000000000000000000000049424d21000000ba00bd00010000bdbd0000001057494d5 57365725265676973747279000000002149424d20576562537068657265204170706c69636174696f6e2053657 276657200bdbdbd00000008382e352e302e300000000007352f312f313200bd0000000a676d313231382e30310 0bdbd000000452863656c6c293a4851324b3845494532354e6f6465303143656c6c3a286e6f6465293a4851324 b3845494532354e6f646530313a28736572766572293a7365727665723100bdffff0001bdbd000000140000000 800bd00b6400224ba   -AppServer websphere
    [3/11/13 10:03:35:787 EST] 000007c2 ProcessResour W   ALC-BMC-001-024: Service ColorProfileSvc: Process ProcessResource@93771607(name=ColorProfileService.exe,pid=0) terminated abnormally with error code {3}
    [3/11/13 10:03:35:794 EST] 000000de ProcessResour A   ALC-BMC-001-505: Service ColorProfileSvc: Starting native process with command line "C:\\Program Files (x86)\\IBM\\WebSphere\\AppServer\\installedApps\\adobe\\server1\\ColorProfileSvc\\ColorPr ofileService.exe"  -IOR IOR:00bdbdbd0000002249444c3a636f6d2f61646f62652f736572766963652f4d616e616765723a312e3000b dbd000000010000000000000460000102bd0000000b4851324b38454945323500bd0000bdbd0000001f4c4d424 9000000154773e3aa001500050442522d3800080100000000000000bd0000000a000000010000001400bdbdbd0 501000100000000000101000000000049424d0a0000000800bd00011600000100000026000000020002bdbd494 24d04000000050005020102bdbdbd0000001f0000000400bd0003000000200000000400bd00010000002500000 00400bd000300000021000002d80001bdbd000000060002bdbd000000240000001e00bd00260002bdbd0000000 10000000b31302e312e32302e353400bd24bb00400000bdbd0000000806062b1200021e0200000028040100080 6062b1200021e020000001864656661756c7457494d46696c6542617365645265616c6d0000000000000000000 00000000000000042bdbd000000240000001e00bd00660042bdbd000000010000000b31302e312e32302e35340 0bd24ba00400000bdbd0000000806062b1200021e02000000280401000806062b1200021e02000000186465666 1756c7457494d46696c6542617365645265616c6d000000000000000000000000000000000002bdbd000000240 000001e00bd00260002bdbd000000010000000b31302e312e32302e353400bd24bb00400000bdbd00000008060 6678102010101000000280401000806066781020101010000001864656661756c7457494d46696c65426173656 45265616c6d000000000000000000000000000000000042bdbd000000240000001e00bd00660042bdbd0000000 10000000b31302e312e32302e353400bd24ba00400000bdbd00000008060667810201010100000028040100080 6066781020101010000001864656661756c7457494d46696c6542617365645265616c6d0000000000000000000 00000000000000002bdbd000000240000001e00bd00260002bdbd000000010000000b31302e312e32302e35340 0bd24bb00400000bdbd0000000806062b1200021e06000000280401000806062b1200021e06000000186465666 1756c7457494d46696c6542617365645265616c6d000000000000000000000000000000000042bdbd000000240 000001e00bd00660042bdbd000000010000000b31302e312e32302e353400bd24ba00400000bdbd00000008060 62b1200021e06000000280401000806062b1200021e060000001864656661756c7457494d46696c65426173656 45265616c6d0000000000000000000000000000000049424d21000000ba00bd00010000bdbd0000001057494d5 57365725265676973747279000000002149424d20576562537068657265204170706c69636174696f6e2053657 276657200bdbdbd00000008382e352e302e300000000007352f312f313200bd0000000a676d313231382e30310 0bdbd000000452863656c6c293a4851324b3845494532354e6f6465303143656c6c3a286e6f6465293a4851324 b3845494532354e6f646530313a28736572766572293a7365727665723100bdffff0001bdbd000000140000000 800bd00b6400224ba   -AppServer websphere
    [3/11/13 10:03:35:839 EST] 000007c5 ProcessResour W   ALC-BMC-001-024: Service ColorProfileSvc: Process ProcessResource@99362d6c(name=ColorProfileService.exe,pid=0) terminated abnormally with error code {3}
    SystemErr
    [3/11/13 10:03:35:778 EST] 000007c2 SystemErr     R system exception1096024066
    [3/11/13 10:03:35:778 EST] 000007c2 SystemErr     R Unknown Exception in doFlush()
    [3/11/13 10:03:35:778 EST] 000007c2 SystemErr     R AdobeServer::Logger: flusher terminated abnormaly
    [3/11/13 10:03:35:829 EST] 000007c5 SystemErr     R system exception1096024066
    [3/11/13 10:03:35:830 EST] 000007c5 SystemErr     R Unknown Exception in doFlush()
    AdobeServer::Logger: flusher terminated abnormaly

    I today finished installing on W2R2+WebSphere 8 LC ES4 with a similar error on XMLForm.exe. This link worked for me and my error was similar. 
    http://blogs.adobe.com/livecycle/2012/05/livecycle-xmlforms-native-process-and-websphere-g lobal-security.html

Maybe you are looking for

  • MBP running out of battery power before sleeping - Help!

    Hi My MacBook Pro has been running out of battery power before the memory-saving sleep mode kicks in, so it dies with a little click of the HD. It's not a hibernation state as when I reattach the power supply it boots up a new session. I've noticed t

  • Trouble connecting Wii to BEFW11S4

    I've been having troubles connecting my Wii to my BEFW11S4 Ver. 3.0 router as of late.  The Wii finds the connection, but can't get to the Internet.  It keeps giving me the same code (I think it's like 52130 or something), which says that there's an

  • N97 doesn't change to landscape when keyboard oper...

    Folsk, just updated the firmware on the phone and the transfer to landscape when opening the keyboard is either very sluggish [ takes about 1 minute ] or non existant. Also if the keyboard is open and the ophone is in portrait the key pad doesn't hav

  • Few featues in JDev 10.1.3 code editor

    Few code editor feautes I would like to see in JDev 10.1.3 Reference : http://help.eclipse.org/help30/topic/org.eclipse.jdt.doc.user/whatsNew/jdt_whatsnew.html 1) a method parameter, to assign it to a new field 2) a method declaration. to create the

  • Guys ... a few app deleting problems here :/

    something happened .. and all of my apps are deleted, and except for the built in ones but that's no biggy since i can just re-download them but......is there some way i can get all my content back on them? if not... Oh well plzzz help!! (this is for