RSA Archer - How to find workflows in an Archer GRC implementation - archer

in an Archer implementation where workflows are implemented, I would like to know how to identify them and how to recognize an advanced workflow.
Thank you in advance for your kind help.
Giovanni

If an application is using Advanced Workflow you’d just click on the Advanced Workflow tab. It will either display the configured workflow or ask to enable it.
Most of these questions are covered in the administration guide or searching the online help.

Related

Avalara Integration with InkSoft

I am looking to integrate Avalara with existing InkSoft platform. Looking for some useful links and help to achieve above.
Avalara integration is not available OOTB but the APIs are available to integrate.
What is the right approach for this? Are there any solutions available in the market?

Customize user interface for n8n workflows

Is it possible to customize the user interface for n8n workflows? if possible, can someone give an idea. Thank you.
You can find the source code for all the frontend code inside their repository: https://github.com/n8n-io/n8n/tree/master/packages/editor-ui
The editor-ui folder inside packages is what you are looking for.
The app is written using Vue.js ans it's very easy to understand. You can see the n8n-theme*.scss files in the mentioned folder that could be a good starting point.
Feel free to add / share ideas on what you're looking to do and I'll try to help if possible.
Also they have a very active community that can be found here: https://community.n8n.io/

Is there any Static Code Analysis Tool to verify API REST guidelines?

Thanks in advance for sharing your ideas and inputs.
We know there are many REST guidelines for API published these days. I use the below for internal code review.
https://github.com/Microsoft/api-guidelines/blob/master/Guidelines.md
Is there any way I can automate the code review against the guidelines? Is there any specific tool for the same?
If no, can any of the available tool be configured with custom rules to check against the guidelines?
Any inputs are highly appreciated.
Thanks, Neel
I am using SwaggerHub which has built in standardisation checking but am playing with spectral to automatically review / lint against our standards.
API handyman/Arnaud Lauret
has an excellent series on how to do this and how spectral can be used to be an "Augmented API reviewer"

ECM Application using Alfresco

I am new to Alfresco Development. I had learn Alfresco Implementation and Usage little bit. Now i want to develop a application using Alfresco, ie, Knowledge Management Application with customized UI with my defined features only. No need to be with full features of Alfresco. Where should i start? I heard that there is two ways to develop Alfresco project, by Customizing Alfresco Explorer for my own need, or Create a new application on extending Alfresco features by API.I could't be clear for developing ECM Project using Alfresco.Can anyone pls guide me to do my wish? I am in end of days for my project.
Thank in advance,
with regards,
Feroz
I'd suggest you first spend some time learning about how to create a simple content model and how to modify the UI to display your stuff. One good tutorial can be found on www.ecmarchitect.com, look for custom content model example.

cryptoapi for dummies

Can some one point me to some books or online resources to help learn about the windows cryptoapi package? I did find "Cryptography for Visual Basic" by Richard Bondi. I'd be more interested in something aimed at C++ or the package in general. The MDSN is overwhelming!
Here is a simple tutorial that could point you in the right direction. I hope it helps.
http://www.codeproject.com/KB/security/EncryptionCryptoAPI.aspx
MSDN can be overwhelming however there are some pieces of light. This page would provide you some context:
http://msdn.microsoft.com/en-us/library/ms867086.aspx
In any case, it really depends on what are you planning to do. If you're just using CryptoAPI to perform cryptographic operations you're fine with MSDN or just have a look to Wincrypt.h (there's a lot of info inside that header).
However, if you're panning to develop you own CSP (cryptographic service provider) with or without hardware you would need further information.
If you give me more details I can point you to the appropriate place (I did both things time ago).
Regards