question

Upvotes
Accepted
163 11 11 19

Handling status with UPA

If I post a request for an item using UPA and I get a RSSL_MC_REFRESH message with an associated RSSL_DATA_SUSPECT dataState, if the item later recovers I assume that I will get a RSSL_MC_STATUS message with an RSSL_DATA_OK dataState.

Will the code of that message be RSSL_SC_NONE ?

I've checked in the Dev guide but I can't find this case referred to explicitly.

elektronelektron-sdkrrteta-apielektron-transport-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.

@andy.sciascia
Thank you for your participation in the forum.
Are the replies below satisfactory in resolving your query? If yes please click the 'Accept' text next to the reply. This will guide all community members who have a similar question. Otherwise please post again offering further insight into your question.
Thanks,
-AHS

@andy.sciascia

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

Thanks,

AHS

Upvotes
Accepted
36 0 0 1

It's okay to look at the state code but the stream state and data state are what tell you the status of your request. Stream state of RSSL_STREAM_CLOSED/CLOSED_RECOVER and data state of RSSL_DATA_SUSPECT tell you that your request is rejected. The state code is just extra information.

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.

Upvotes
493 4 2 4

This will generally be the case, however the status code may vary based on the content provider so it is not advised you code specific behaviors around that. Behavior should be driven mainly by stream and data states. Appendix A in the UPA/ETA Developers Guide walks through typical application behaviors driven by each stream & data state combination, both for item status and group status.

Hope this helps!

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.

Upvotes
163 11 11 19

Thank's for that. Re the code, my app needs to know if the symbol we're requesting exists and if we're entitled to it. We have to drive behaviour based on that. We currently use the code field to check this i.e. we check for RSSL_SC_NOT_ENTITLED, RSSL_SC_NOT_FOUND values. It sounds like that isn't recommended. But from when I read in the Dev guide I can't see any other way of checking those conditions.

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.

Asked expert Brian Sandri to helpw ith the follow-up question

Upvotes
163 11 11 19

I understand the point about the state being the vital information. It's just that on our platform it's important to distinguish between a symbol not existing and not being permissioned and we have to use the code for that information. So even though it's recommended in the Dev guide to not use the code to drive behaviour, in this case we have to.

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.