Implement a method that calls a method in a DLL

Hi all ,

Please how to Implement a method that calls a method in a DLL?
Thanks .

Parents Reply Children
  • It means you want to connect Aras & oracle database with the help of DLL? Can you please elaborate your use case?

  • i created method in visuel studio connected the database Oracle this method connect get data from table :   

    private void button4_Click(object sender, EventArgs e)
    {
    try
    {
    OracleConnection conn = new OracleConnection("DATA SOURCE=localhost:1521/orcl;USER ID=SYSTEM;password=khouloud");

    OracleCommand cmd = new OracleCommand();
    cmd.Connection = conn;
    cmd.CommandText = "Select currentstate from xtransfer where articlenumber=15";
    conn.Open();
    cmd.ExecuteNonQuery();
    OracleDataReader dr = cmd.ExecuteReader();
    dr.Read();
    textBox3.Text = dr.GetString(0);
    conn.Close();

    MessageBox.Show("ok");
    }
    catch (Exception ex)
    {
    MessageBox.Show(ex.Message);
    }

    * the project work fine with database

    * i build the project and i configure the DLL 

    * i need method aras c# that get this data from the database oracle using this DLL! if it is possible  I don't       know .

    * if you have another idea to get data from oracle data base please tell me .

  • Hi Hammami,

    I seen your code and it is windows forms application. You can't inject Windows Form Application in Aras because Aras is web application(asp application) instead of windows forms application create Class library Project. 

    Create one method in your class library as shown in below screen shot

    Compile your project. OracleDBConnection dll will create.

    1. Copy the OracleDBConnection dll in server bin folder  e.g.(C:\Program Files (x86)\Aras\Innovator\Innovator\Server\bin).

    Register your dll in method-config.xml file (C:\Program Files (x86)\Aras\Innovator\Innovator\Server) 

    1. Open method-config.xml file :

    2. Add your dll the namespace under <ReferencedAssemblies> xml tag

    3. Add your dll reference in <Template name="CSharp">

    4. Create your method in Aras and call your dll method from aras method.

    If you have any doubt in this then please refer my second comments which is mention for calculation.dll

    It is possible in Aras to connect with Oracle database without creating DLL also.

    1. Register System.Data.OracleClient dll in aras. (I already mention how to register dll in Aras)

    2. Create server side method in Aras and write your connection code.

    Regards,

    Suhas.