Microsoft Queue VBO available on BP?
Options
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Email to a Friend
- Report Inappropriate Content
17-05-18 04:08 PM
Hello,
We are trying to integrate a Microsoft Queue with Blue Prism.
We need to return a generic object type from MS Queue to BP, in order to deserialize it later and get the information that we need.
The problem is that on our Code stage we cant have an object type as an output, due to BP data types limitation.
1) Does Blue Prism provides any VBO for interacting with MS Queues?
2) Could we find a workaround of returning a generic object type from a Code stage in Blue Prism.
Thanks in advance.
Konstantinos Vogiatzakis
3 REPLIES 3
Options
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Email to a Friend
- Report Inappropriate Content
17-05-18 05:26 PM
1) No we don't I'm afraid.
2) Maybe your code stage could return a collection? Or take a look at the JSON utility object?
Options
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Email to a Friend
- Report Inappropriate Content
17-05-18 05:30 PM
Hi John,
The code stage returns specifically a generic object type that couldn't be converted to string or collection..
Thanks for your answer though.
Konstantinos
Options
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Email to a Friend
- Report Inappropriate Content
17-05-18 09:15 PM
In that case maybe you could hold your object as a global variable and expose it's properties via code stages, eg OutputFromCodeStage = mObject.SomeProperty
