question

DivyasiriEdula-7672 avatar image
0 Votes"
DivyasiriEdula-7672 asked MatheeshaPatalieFernando-0746 published

Accessing Novell.Directory.Ldap from Azure Functions

I have a existing windows service which runs daily and access c# library Novell.Directory.Ldap dll to get required information.
Now we are planning it to migrate to Azure functions. Is it possible to access this c# library from Azure functions

Thanks in advance

azure-functions
· 2
5 |1600 characters needed characters left characters exceeded

Up to 10 attachments (including images) can be used with a maximum of 3.0 MiB each and 30.0 MiB total.

Did it work for you?
Were you able to access the On premise AD within Azure Function?

0 Votes 0 ·

Did it work for you?
Were you able to access the On premise AD within Azure Function?

0 Votes 0 ·

1 Answer

MikeUrnun avatar image
0 Votes"
MikeUrnun answered DivyasiriEdula-7672 commented

Hello @DivyasiriEdula-7672

Yes, of course! Azure Functions is built on top of WebJobs SDK so you can use NuGet packages just as you would in dotnet paradigm, please review the following on how to install Nuget packages: C# class library with Visual Studio

In case you'd prefer wrapping the Novell.Directory.Ldap in a dependency injection pattern, you can do that as well: Use dependency injection in .NET Azure Functions

Hope this helps!


· 1
5 |1600 characters needed characters left characters exceeded

Up to 10 attachments (including images) can be used with a maximum of 3.0 MiB each and 30.0 MiB total.

Thank you for the reply

0 Votes 0 ·