Symantec Access Management

  • 1.  get all list of SSO 'AgentConfigObjects' at a time from java SDK(12.6).

    Broadcom Employee
    Posted May 31, 2018 06:56 AM

    Hi,

    I need to get all list of SSO 'AgentConfigObjects' at a time from java SDK(12.6).

    Please help me on quickly. It should be great.



  • 2.  Re: get all list of SSO 'AgentConfigObjects' at a time from java SDK(12.6).

    Posted May 31, 2018 07:15 AM

    Hi Nagaraju,

     

    Check ACO Movement from one server to another 

     

    Regards,

    Leo Joseph.

     



  • 3.  Re: get all list of SSO 'AgentConfigObjects' at a time from java SDK(12.6).

    Broadcom Employee
    Posted May 31, 2018 07:25 AM

    Sorry that is not helping me, because i need only list of ACO names at a time.

    FYI i tried to get all Agents that is done. but not ACO.

    Ex for get all Agents:

    result = policyapi.getGlobalObjectNames("Agents", vector);

    I was tried like:

    result = policyapi.getGlobalObjectNames("AgentConfig", vector);

    and

    result = policyapi.getGlobalObjectNames("CA.SM:AgentConfig", vector);

    and 

    result = policyapi.getGlobalObjectNames("AgentConfigObject", vector);

    and lot more, but no luck.



  • 4.  Re: get all list of SSO 'AgentConfigObjects' at a time from java SDK(12.6).

    Posted May 31, 2018 07:44 AM

    please try:


    result = policyapi.getGlobalObjectNames("

    PropAgentConfigs",

    vector);



  • 5.  Re: get all list of SSO 'AgentConfigObjects' at a time from java SDK(12.6).
    Best Answer

    Posted May 31, 2018 07:46 AM

    sorry, this one:


    please try:


    result = policyapi.getGlobalObjectNames("

    AgentConfigs",

    vector);



  • 6.  Re: get all list of SSO 'AgentConfigObjects' at a time from java SDK(12.6).

    Broadcom Employee
    Posted May 31, 2018 07:58 AM

    Great Ujwal, this is working.

    result = policyapi.getGlobalObjectNames("AgentConfigs",vector);

     

    much appreciated.

     

     

    Thanks.