Blue prism closing abruptly.
Options
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Email to a Friend
- Report Inappropriate Content
08-03-22 04:10 PM
Hi,
i am using unmanaged dll(which is written in c++ language) in code stage, when i call a example method from unmanaged dll and if any exception throws from unmanaged dll blue prism closing abruptly even though handled exception in code stage how can i over come this.
I have downloaded Unmanaged dll from internet I can't handle exception in dll i need to handle in blue prism code stage only.
------------------------------
Thanks and Regards,
Naveen.
------------------------------
i am using unmanaged dll(which is written in c++ language) in code stage, when i call a example method from unmanaged dll and if any exception throws from unmanaged dll blue prism closing abruptly even though handled exception in code stage how can i over come this.
I have downloaded Unmanaged dll from internet I can't handle exception in dll i need to handle in blue prism code stage only.
------------------------------
Thanks and Regards,
Naveen.
------------------------------
3 REPLIES 3
Options
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Email to a Friend
- Report Inappropriate Content
08-03-22 06:34 PM
Hi @naveen k
Do you have any error in your business object? It's load correctly the library and the namespaces?
If this part is correct, you can use a simple "try catch" statement to see any error
The statement looks like this:
ex.Message tells you the exception message
Hope this helps you.
See you in the community, bye 🙂
------------------------------
Pablo Sarabia
Architect
Altamira Assets Management
Madrid
634726270
------------------------------
Do you have any error in your business object? It's load correctly the library and the namespaces?
If this part is correct, you can use a simple "try catch" statement to see any error
The statement looks like this:
try
{
// your code calling the dll functions
}
catch (Exception ex)
{
errormessage = ex.Message;
}
ex.Message tells you the exception message
Hope this helps you.
See you in the community, bye 🙂
------------------------------
Pablo Sarabia
Architect
Altamira Assets Management
Madrid
634726270
------------------------------
Options
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Email to a Friend
- Report Inappropriate Content
09-03-22 03:42 AM
Hi Pablo Sarabia,
i am already calling method inside try catch block only.
------------------------------
naveen k
------------------------------
i am already calling method inside try catch block only.
------------------------------
naveen k
------------------------------
Options
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Email to a Friend
- Report Inappropriate Content
09-03-22 09:25 AM
It may help to check the Windows event logs to see what if there is any error message related of the crash
------------------------------
John Carter
Professional Services
Blue Prism
------------------------------
------------------------------
John Carter
Professional Services
Blue Prism
------------------------------
