question

Upvotes
Accepted
16 2 4 8

Principle identity and how to create one

My question

Do you have to send all detail ie, user, application and position, or can you leave position blank.


publicStandardPrincipalIdentity createStandardIdentity(String userName, String appName, String position) {

finalStandardPrincipalIdentity identity =newStandardPrincipalIdentity();

identity.setAppName(appName);

identity.setName(userName);

if(position !=null) {

identity.setPosition(position);

}else{

// if no explicit position has been specified, make sure we set a blank position and not 127.0.0.1/default// this is required so DACS authentication works correctlyidentity.setPosition("");

}returnidentity;

}

packagecom.reuters.rfa.common;

importcom.reuters.rfa.common.PrincipalIdentity;importcom.reuters.rfa.common.PrincipalIdentity.PrincipalIdentityType;

public final classStandardPrincipalIdentityextendsPrincipalIdentity {

String _userName ="";

String _appName ="";

String _position ="";

publicStandardPrincipalIdentity() {

}

treprfarfa-api
icon clock
10 |1500

Up to 2 attachments (including images) can be used with a maximum of 512.0 KiB each and 1.0 MiB total.

Hi @jeff.waterman,

This question is duplicate with https://community.developers.refinitiv.com/questions/39609/principle-identity-and-how-to-create-one.html, so I have removed that duplicated question.

Regards,

AHS

Hello @jeff.waterman,

Thank you for your participation in the forum. Is the reply below satisfactory in resolving your query?
If so please can you click the 'Accept' text next to the appropriate reply. This will guide all community members who have a similar question.
Thanks,
AHS

@jeff.waterman

Hi,

Please be informed that a reply has been verified as correct in answering the question, and has been marked as such.

Thanks,

AHS

1 Answer

· Write an Answer
Upvotes
Accepted
9.6k 10 7 7

Hello @jeff.waterman

If your application connects to TREP(ADS component) to consume data, using StandardPrincipalIdentity to perform local entitlements by RFA is deprecated. TREP performs entitlement instead and RFA application just sends TokenizedPrincipalIdentity on SSL connection(default port is 8101). For the example application, please refer to MDSubDemo example application.

To perform local entitlements for the other scenario, OpenDACS product should be used instead. To use OpenDACS, just include rfa.jar which contains OpenDACS already.

Based on my test with OpenDACS: the user, application id, and position cannot be blank("") otherwise the application receives a login denied. Moreover, the position has to be in the correct format, IP address/hostname or IP address/net. For the example application source code, please see DacsSubscribeClient shipped with Open DACS API - Java Edition - 8.0.0.L1 package

Hope this help.

icon clock
10 |1500

Up to 2 attachments (including images) can be used with a maximum of 512.0 KiB each and 1.0 MiB total.

Write an Answer

Hint: Notify or tag a user in this post by typing @username.

Up to 2 attachments (including images) can be used with a maximum of 512.0 KiB each and 1.0 MiB total.