views:

211

answers:

2

I must be dumb (and i m sure i am making mistake but cant figure out at the moment)

Actually i deployed ASMX page containing reference to a Class Library which contains few web methods. It exposes those methods when i browse the site. But some how it is not showing me any further methods which i have added in it. The DLL is strong name assembly.

any clue plz?

I tried re adding the reference but there is no difference.

It worked but i dont know weather the files are not updated or references, so what i did, i removed the referenced ,deleted the files from bin and GAC and then re-added the files.After rebuilding , i deployed them again and it worked.

+3  A: 

You need to update the web reference that you added to your project. If the class library contains the web reference, update the reference in it and then re-add/update your project's reference to the class library. If you don't update, then the only stubs/methods that your project will know about are the ones created when the web reference was first added.

tvanfosson
A: 

Or is it something about GAC. If your class library assembly lies in GAC as an old version it won't be updated.

erdogany