Which IIQ version are you inquiring about?
8.3p4
Please share any images or screenshots, if relevant.
[Please insert images here, otherwise delete this section]
Please share any other relevant files that may be required (for example, logs).
*Here are the log lines for the script shared below and I see blank values for the highlighted ones.
[2025-07-18 11:56:55] Reader: System.IO.StringReader
[2025-07-18 11:56:55] XmlReader:
[2025-07-18 11:56:55] RequestObject:
[2025-07-18 11:56:55] XmlFactory:
*
Share all details about your problem, including any error messages you may have received.
*We recently upgraded to 8.3p4 from 8.2p3. We have a AD native rules Powershell to create an exchange online remote mail box which was failing after the upgrade. I noticed below lines are failing:
#Refer to SailPoint class library
Add-type -path “C:\IQService\Utils.dll”
#Read the environment variables
$sReader = New-Object System.IO.StringReader([System.String]$env:Request);
Write-Log “Reader: $sReader”
##Form the xml reader object###
$xmlReader = System.xml.XmlTextReader;
Write-Log “XmlReader: $xmlReader”
###Create SailPoint Request object
$requestObject = New-Object Sailpoint.Utils.objects.AccountRequest($xmlReader);
Write-Log “RequestObject: $requestObject”
###Get xmlFactory object to retive application configuration
$xmlFactory = [sailpoint.Utils.xml.XmlFactory]::Instance;
Write-Log “XmlFactory: $xmlFactory”
Please let me know anyone else run into similar issue and any advise on how to fix. I am not sure if SailPoint rearranged any APIs since I see Utils.dll size is little bigger after the upgrade.
*