tags:

views:

813

answers:

2

I am in the middle of a production deployment. Unfortunately I am deploying to a tightly controlled environment. It is unlikely I'm going to get clearance tonight to run the full Visual J# redistributable EXE. Our app is currently throwing errors saying that it can't find the assembly "vjslib.dll". Can I just drop this into the bin of our app and have everything work without all the hassle of the full-blown EXE install for the server?

+1  A: 

The vjslib.dll file is a redistributable file. You should be able to place it in the BIN directory and have everything work just fine unless there is another dependency missing. You may need to add vjsnativ.dll as well.

Gary.Ray
I did need vjsnativ.dll and vjscor.dll; otherwise it worked. I got my hand slapped because the engineer dropped them in the middle of the day, BUT IT WORKED!!
Jay Stevens
A: 

It is not working when I place the vjslib.dll in the Bin folder of the website. I also tried placing vjsnativ.dll and vjscor.dll but still it ddn't help. I had to install the full Visual J# redistributable EXE in DEV server to make this work.. I am not sure what i miss here. I don't want to do this in the Production enviroment.. Please help.

Hari