Identity Broker Forum

Welcome to the community forum for Identity Broker.

Browse the knowledge base, ask questions directly to the product group, or leverage the community to get answers. Leave ideas for new features and vote for the features or bug fixes you want most.

0
Completed

Schema provider select which fields to apply

Adam van Vliet 11 years ago updated by anonymous 9 years ago 2

With some schema providers potentially having 100 fields, the ability to optionally select which fields are applied becomes quite important.

First determine the feasibility of this, and make sure it won't take much longer than the estimate before commencing.

Update the schema provider to have check-boxes next to each field (default checked) and only apply those that are checked. Also include a check all / uncheck all checkbox at the top.

0
Completed

Throw warning if IdB tries to update an attribute on a connector that does not exist

Matthew Woolnough 11 years ago updated by anonymous 9 years ago 1

Currently, When Group Membership information is read in via a transformation, if you write back to this attribute the data disappears into the ether, with no warning or errors thrown.

An error or warning should be thrown.

0
Answered

Investigate whether trailing spaces being stripped are detected as a change

Adam van Vliet 10 years ago updated by anonymous 9 years ago 2

From UNISC-10, trailing spaces were causing issues with a join. The issue wasn't resolved until the connector was cleared and reimported. The trailing spaces should have been removed during regular connector imports. Investigate whether trailing spaces are detected as a change (and subsequently reflected), and also the scenario with the key only changing.

0
Fixed

Cannot request Schema - Byte validator missing

Ryan Crossingham 11 years ago updated by anonymous 9 years ago 5

When attempted to request schema for the InnerRange Concept 4000 Virtual User connector I recieve the following error:

Value cannot be null. Parameter name: There are no known default validators that support the Byte value type. 
0
Fixed

Relevant selection (join transformation) does not make use of local flag

Adam van Vliet 9 years ago updated by anonymous 9 years ago 2
Observation

New position change through join transformation (relevant selection) were happening a day early.

The windows appear to be the only thing that uses the local flag. However, there is a fair bit of logic in the selections that should have the local flag applied. See RecentSelection, RelevantSelection and NextPlacementSelection.

Task
  1. Create unit tests for all boundary conditions around date and time for the above mentioned selections.
  2. Fix up broken unit tests.
0
Fixed

Update record processing to ignore unrecognised records

Adam van Vliet 10 years ago in UNIFYBroker/Frontier ichris/chris21 updated by anonymous 9 years ago 4

From SSICT-493, a certain condition was causing the chris21 service to return a PRG GTR line. This had not been seen before, but the details can be found on INTIDBCHRS:v7.7 Documentation, in CHRIS_BRE_SDK.pdf.

Essentially PRG is a progress message, why it's being returned is currently unknown, but it doesn't matter, it (and any other unknown line types) should be ignored.

0
Answered

Allow for attached images to be managed

Adam van Vliet 13 years ago in UNIFYBroker/Frontier ichris/chris21 updated by anonymous 9 years ago 10

From discussions on TATTS-7, allow for images to be saved and retrieved.

Please see attached demo code.

Either create a test application for POC, or add it straight to the product if you feel it will be quicker.

Thanks.


Photos.cs
RE Chris21 Staff PhotosAttachments via GTR interface.msg
0
Answered

Adoption of Daily Exclusion Timing

Bob Bradley 11 years ago updated by anonymous 9 years ago 2

This morning a PHRIS event occurred which resulted in the unwanted disabling of some 2K+ AD user accounts - see CSODBB-312.

The culprit turned out to be the nightly PHRIS practice of truncating the PERSON table at 3 AM, which had a knock-on effect of causing Identity Broker adapter DELETIONS of some 3.5K JOB records - by virtue of a SQL join on EMPLOYEE in the JOB view which is used within the PHRIS JOB web service method implementation.

This is not something we can prevent from happening in the future - but we need to mitigate the impact this could have - and it has been agreed with the Red Rock consultant (Andy Ross) that the best strategy is to institute a "black out" on all PHRIS web service calls from midnight to 5 AM (this includes a buffer of about a couple of hours either side of the activity).

Looking at the IdB 3.0.7 timing documentation I can see that this idea is supported in this version of the product, but I would appreciate confirmation of the correct use of this setting in my current connector configuration.

The JOB connector timing is presently configured as follows:

        <getAllEntities>
          <timing name="RecurringTimespanStandardTime">
            <timespan value="01:00:00" />
          </timing>
        </getAllEntities>
        <polling>
          <timing name="RecurringTimespanStandardTime">
            <timespan value="00:01:00" />
          </timing>
        </polling>

Am I correct in understanding that I should change the above to the following to achieve the desired "black out"?

        <getAllEntities>
			<timing name="DailyExclusion" start="00:00:01" end="05:00:00" UseLocal="True">
				<timing name="RecurringTimespanStandardTime">
					<timespan value="01:00:00" />
				</timing>
			</timing>
        </getAllEntities>
        <polling>
			<timing name="DailyExclusion" start="00:00:01" end="05:00:00" UseLocal="True">
				<timing name="RecurringTimespanStandardTime">
					<timespan value="00:01:00" />
				</timing>
			</timing>
        </polling>

Appreciate your help with a simple yes/no (plus fix) answer - I am about to start testing the above idea in the lab but thought it would be best to seek confirmation that this will work as I expect.

0
Answered

Add support for SCIM 2.0

Adam Bradley 8 years ago updated by anonymous 7 years ago 2

Add support for SCIM 2.0 to support outbound provisioning from AAD, PingFederate

Answer
anonymous 7 years ago

Available in v5.2.1.

0
Completed

Identity Broker Server IP Address Reassignment

Richard Courtenay 9 years ago updated by anonymous 9 years ago 4
Request

https://unifysolutions.jira.com/wiki/display/IDB50/LDAP+Configuration

In Identity Broker 5.X, if services on other servers need to contact Identity Broker you have to supply the servers IP address. I have the following questions:

a) The UI does not allow me to enter in another servers IP address, if I do this I get a message stating the IP is not valid in the current context. This is good. What happens however if the servers IP address was to be changed. Will Identity Broker pick this up and compensate when it's next restarted, will it fail to start or will something else happen?

b) Is there any reason this field can't take in the fully qualified domain name of the server? The FIM Administrators aren't likely to be network administrators, so ideally they could configure services with a higher level of granularity than an IP address (which they don't manage). 127.0.0.1 is ok for localhost as it's universal, anything else might cause issues based on the behaviour in question A.

c) As an extension of part b, could the field be removed outright? If traffic is to be restricted to localhost firewall rules could be used on the assigned port.

Task
  • Update documentation to let users know that IdB can be bound to any IP.
  • Make the any IP easier to configure on the UI
  • Consider offering ability to select the IP (or preferably the network adapter) (keep in mind this should come from the server and not studio)