Creating your own C#/.NET code and using it inside the OutSystems platform
Tip
To get the most out of this section, you should have some knowledge of C#/ .NET development, as the intention is to adapt our custom code to be available in OutSystems.
Sometimes, we can come across situations where the external systems we want to connect with only have services that cannot be integrated in OutSystems natively, or we need to integrate a feature of our custom code.
In order for us to create our custom code in C#/.NET, Integration Studio integrates with Visual Studio (Microsoft's IDE). With this, we define our Actions, inputs, and outputs in Integration Studio, before moving on to editing it (developing its content) in Visual Studio.
With this, we can abstract our code into Actions that can be used according to the Service Studio visual model.
This feature allows us to do the following:
- Write our own C# code.
- Reuse all .NET frameworks.
- Reuse all existing...