I have an ASP.NET web application written in C#. I can load .NET APIs in the form of dlls dynamically and call methods in them from my application. I want to know if I can do the same with Java APIs (Jar files). Can I load Jar files dynamically at runtime and call functions within them?
Thanks.