Wednesday, July 27, 2011

GAC issue during WSP deployment

 

Some times when we deployed WSP by bat file we get this type of issue, I was very unhappy when I saw this error and unable to find out why it is coming

Wsp Deployment Issue1

to resolve it go to assembly and remove all install related DLLs and if some dll denies to uninstall go to process(task manager) and stop all SharePoint /visual studio related process.

Thursday, July 14, 2011

Good reference for SharePoint learning(NO code solution)

hi guys I found a link to understand SharePoint and most important it is Video hurrrreeeeeeeeeeyyyyyyyyyyyyy

http://www.sharepoint-videos.com/all-free-videos/

I think you like it Smile

Thursday, July 7, 2011

Timer job in SharePoint

 

Hi guys in previous days I got chance to work on Timer job ,scenario was that “my timer job call a wcf service and after do some calculation it will update SharePoint custom list”

I follow Andrew connell' and other blogs and come to know few things

A. SPWebApplication webApplication = this.Parent as SPWebApplication;

  SPContentDatabase contentDb = webApplication.ContentDatabase[contentDbId];
please never forget to add this in your custom timer job.
B.you cant active timer job by  UI
c.And it is very hard to debug timer job.so need to keep patience.
In coming post I will try to put my way to accomplish this task.