DLL call from Servlets

HiHope you are fine.I want to ask that how can I use DLL in Servlets? Is it possible? If not, then can you please suggest some way around?Take Care
[175 byte] By [fastian02a] at [2007-10-2 20:47:25]
# 1

You can't use a DLL in java directly. You have to use something called the "native interface", which means you have to create a wrapper DLL around the DLL you want to use so Java can map the DLL functions to methods in a class. This is not easy and requires that you use a native compiler (like GCC for windows or Visual C++).

also be aware that a DLL is windows specific, so you won't be able to run your servlets on any other platform.

gimbal2a at 2007-7-13 23:31:19 > top of Java-index,Enterprise & Remote Computing,Web Tier APIs...