Share all details related to your problem, including any error messages you may have received.
Hello Team,
We have implemented IntegrationConfig to take care of creation and Enable Account Requests, But Rapid Leaver processed and Disable request went to the IntegrationConfig. is this expected becuase Integrationconfig is configured as below
Hi Vijay,
IntegrationConfig is actualy some kind of simple pipe - if you configure AppA to be managed resource in your integrationConfig that means that all provisioning calls will use your integrationConfig executor instead of standard connector - in the executor class you will already have to handle everything on your own.
I am actualy more interested in what is the real usecase here as I am not certain if using IntegrationConfig would be the most optimal solution here as most of cases can be just done by before/after provisioning.
Our use case is to create the Active Directory Account using the AD Account Management Tool. We know doing this using the IQService by considering the current process we wanted to have Active Directory accounts created by the AD Account Management Tool itself, so we have created integration config to create the Account instaed of depending on direct connector.
Our concern is at intConfig we have
why Rapid leaver is coming to the IntegrationConfig eventhough we dont have the Disable operation configured in intConfig?
It will intercept all provisioning transactions for Active Directory application. That means for each provisioning plan containing this application IIQ will call your provision method.
You can add into your executor class configure method
This will read your configuration which will make it available in your provision method. Then you can controll in provision method what you want to do.