TECHNOLOGIES
FORUMS
JOBS
BOOKS
EVENTS
INTERVIEWS
Live
MORE
LEARN
Training
CAREER
MEMBERS
VIDEOS
NEWS
BLOGS
Sign Up
Login
No unread comment.
View All Comments
No unread message.
View All Messages
No unread notification.
View All Notifications
Answers
Post
An Article
A Blog
A News
A Video
An EBook
An Interview Question
Ask Question
Forums
Monthly Leaders
Forum guidelines
m naveed
NA
1
0
updating Assembly in GAC
Dec 5 2006 6:24 AM
Hi
i have created a C# DLL in VS2003 and installed it in GAC with WISE installer which actually register the dll in gac and add registry key.
i am calling this dll following way in vbscript
set TestAddaptor = CreateObject("Gen.TestAdaptor")
set aList = TestAddaptor.GetList("Gen.myList")
TestAddaptor is a c++ assembly which call my dll like this
GetList(
BSTR myListProgId)
{
CComObject<XMLList>* pObj;
hr = CComObject<XMLList>::CreateInstance(&pObj);
if
(FAILED(hr)){
return
hr; }
hr = pObj->InternalInitialize(myListProgId);//error here
}
when i first time installed the dll and access it with above script it works fine
but when i change the version number after some updates in the code and install it again its not working
in event log its giving the error for Invalid class string.
i even remove the previous version before new installation and restart my pc and iisreset.
this happen for all the dlls i m working they all work first time same error after new version of dll
can you please help me i m stuck here.
thanks a lot
Reply
Answers (
0
)
Deploying Crystal reports on .net server
Logon failure when trying to start the service after installing the service programatically