IBM Verify

IBM Verify

Join this online user group to communicate across Security product users and IBM experts by sharing advice and best practices with peers and staying up to date regarding product enhancements.

 View Only
  • 1.  IGI - AD adapter - adding multiple proxyaddress

    Posted Tue November 26, 2019 12:55 PM
    Hello,
    Manually if we add multiple proxyaddress into Active Directory ( example:  smtp:a@test.com , SMTP:b@test.com ) it creates one data entry for each proxyaddress defined.
    How can we do that ( configure multiple proxyaddress ) into AD adapter ?
    Does IGI automatically creates one data entry in ldap for each proxyaddress we inform in field erADEProxyAddresses ? 
    Please someone have a sample of the format we should use to populate into erADEProxyAddresses ?
    Tks,
    Lincoln Sant´Anna

    ------------------------------
    Lincoln Sant Anna
    ------------------------------


  • 2.  RE: IGI - AD adapter - adding multiple proxyaddress

    Posted Wed November 27, 2019 03:24 AM

    Hi,

    you should define in the post-mapping of the connector which values the "eradproxyaddress" has to contain.

    Following a bit of code i hope it could be useful using your example values:

    ##################
    when
    event : Event( )
    then

    //Proxy addresses
    List<Object> proxyValues = new ArrayList<Object>();
    proxyValues.add("smtp:a@test.com");
    proxyValues.add("SMTP:b@test.com");

    event.getBean().setCurrentAttributeValue("eradeproxyaddresses", proxyValues);
    ##################



    ------------------------------
    mario principato
    ------------------------------



  • 3.  RE: IGI - AD adapter - adding multiple proxyaddress

    Posted Fri November 29, 2019 07:32 AM

    Tks a lot. It helped.

     






  • 4.  RE: IGI - AD adapter - adding multiple proxyaddress

    Posted Fri November 29, 2019 09:19 AM

    you are welcome.

    Regards

    Mario



    ------------------------------
    mario principato
    ------------------------------