I am trying to collect information about a developer/company application in a proxy (not the application making the proxy call).
I am using an AccessEntity policy to load the application info and then an ExtractVariables policy to grab the value I need.
The ExtractVariables policy fails with the error:
AccessEntity.Load-App message is not available for ExtractVariable
I have done this elsewhere with success, but it has only been for a company or developer entity. What seems to be the failure is my trying to load an “app” entity.
Works:
<AccessEntity async="false" continueOnError="false" enabled="true" name="Load-App">
<DisplayName>Load App</DisplayName>
<EntityType value="developer"/>
<EntityIdentifier ref="appOwner" type="developeremail"/>
</AccessEntity>
Does Not Work:
<AccessEntity async="false" continueOnError="false" enabled="true" name="Load-App">
<DisplayName>Load App</DisplayName>
<EntityType value="app"/>
<EntityIdentifier ref="appName" type="appname"/>
<SecondaryIdentifier ref="appOwner" type="developeremail"/>
</AccessEntity>