Prerequisites - 7.3

DotNET

Version
7.3
Language
English
Product
Talend Big Data
Talend Big Data Platform
Talend Data Fabric
Talend Data Integration
Talend Data Management Platform
Talend Data Services Platform
Talend ESB
Talend MDM Platform
Talend Real-Time Big Data Platform
Module
Talend Studio
Content
Data Governance > Third-party systems > DotNET components
Data Quality and Preparation > Third-party systems > DotNET components
Design and Development > Third-party systems > DotNET components
Last publication date
2024-02-21

Before replicating this scenario, you need first to build up your runtime environment.

  • Create the DLL to be loaded by tDotNETInstantiate

    This example class built into .NET reads as follows:

    using System;
    using System.Collections.Generic;
    using System.Text;
    
    
    namespace Test1
    {
        public class Class1
        {
            string s = null;
            public Class1(string s)
            {
                this.s = s;
            }
    
            public string getValue()
            {
                return "Return Value from Class1: " + s;
            }
    
        }
        }

    This class reads the input value and adds the text Return Value from Class1: in front of this value. It is compiled using the latest .NET.

  • Install the runtime DLL from the latest .NET. In this scenario, we use janet-win32.dll on Windows 32-bit version and place it in the System32 folder.

    Thus the runtime DLL is compatible with the DLL to be loaded.