Hi all,
I'm working on Windows machine and I need to use an external DLL written with c#

this is a sample code from x++:

Code:
    connector = new Cegeka.AX.IXFE.Connector(); // this is the DLL
    connector.initByAooName(parameters.ServiceURL, parameters.ServiceUser, parameters.ServicePassword, parameters.Aoo);
then
Code:
        request = new Cegeka.AX.IXFE.SendInvoiceRequest();
        request.set_Filename(filename);
        request.set_Mode(Cegeka.AX.IXFE.SendMode::XMLString);
        request.set_XmlString(eInvoice.XMLOutgoing);

        invoicePrintingAsByteArray = this.getInvoicePrintingAsByteArray(eInvoice);

        response = connector.sendInvoice(request);
how can I do with Lianja?
Is possible?

Thanks
Fabio