| bio | website | twitter.com/falaky |
|---|---|---|
| location | Stockholm, Sweden | |
| age | ||
| visits | member for | 2 years, 6 months |
| seen | 2 hours ago | |
| stats | profile views | 862 |
SharePoint Architect/Developer (MCTS, MCPD, MCITP) in the capital of Scandinavia (Stockholm). I'm riding with SharePoint awesomeness.
I am a also a mentor, speaker and community contributor!
At the moment, working for CGI Group Inc.
Successful people are always looking for opportunities to help others. Unsuccessful people are always asking "What's in it for me?" ~Brian Tracy
Note: My answers, comments and posts are provided "as-if"
Connect me @ twitter world @falaky
|
May 16 |
comment |
How to consume a custom sharepoint webservice service application from outside SharePoint You're deploying it as a custom service application .Now you can go to Central Administration->Application Management->Configure service application associations and assign your new proxy group to the web application. In the code, just use url of Web application to get your custom service application. |
|
May 8 |
comment |
Copying SharePoint 2010 farm to a different server TFS is a tool that has grown way beyond source control. It can surely be deployed to production to enter user stories, track progress, and run reports. But, SharePoint application development life cycle's core is to use automated TFS builds to perform automation with builds to QA and Production and generate TFS builds directly to those environments. But, performing SharePoint development on production is simply out of question, with and without source control; one must avoid it. |
|
May 8 |
comment |
jQuery not loading in sharepoint 2010 asp.net page do you mean adding the jquery ref to an application page? |
|
May 7 |
comment |
sharepoint 2007 to 2010 list migration issue Ishan, could you please post the code for systedata.xml? Why don't you just upgrade the Product version from 3 to 4 in manifest.xml, if list templates are merely stp files? |
|
May 3 |
comment |
SP2010 Foundation Web Analytics Issue on Top Level Site Only Click On Application management -> manage services applications, make sure web analytics service application is started. If not, please start it, then check the effect. Or you can provision a new Web Analytics Service Application. |
|
Apr 30 |
comment |
How to include .js file from location different than “_layouts” folder to sharepoint master page? Eliya, please see my updated response! |
|
Mar 10 |
comment |
Error occurred in deployment step 'Activate Features': The parent content type specified by content type identifier 0x0101 does not existOO separator is required if the suffix being added to the ID is a GUID and to make it unique (agree with the fact being used by most of developers) but the 01 and 02 approach makes it much more simple to generate unique IDs in large scale development. I myself use OO in most of implementations but expect developers to know both :) |
|
Mar 5 |
comment |
Get document properties.Keys value I have simplified your code. Try this paste pastebin.com/g6TBpe10 |
|
Feb 11 |
comment |
Is there a service that controls PSSnapin Microsoft.SharePoint.Powershell? Great, now let's delete the comments now! |
|
Feb 1 |
comment |
FIM throwing massive errors on AD Synchronization Are you pushing anything to AD? or only reading/importing from AD? |
|
Jan 29 |
comment |
I cannot get “orderby” to work in SPS 2010 listdata.svc REST query Is DeliveryFormat a boolean? |
|
Jan 28 |
comment |
creating userprofile programmatically Show us your code? |
|
Jan 28 |
comment |
Search Scope across multiple farms, Exam question 70 - 667 You can create multiple Search service applications if you have to have multiple search indexes. For example, if you want to segregate sensitive content, such as employee benefits information, into a separate index so that the content does not appear to users who do not have permission to that content, you can create a separate Search service application, which will have a separate index. |
|
Jan 24 |
comment |
Which language or format Site Templates are in I wonder where are these xml files located? |
|
Jan 24 |
comment |
SharePoint 2010 Query service authentication problem Kai, I wrote solution and wondering if you have feedback on it? I am using Visual Studio to generate the proxy and then call the asmx service. |
|
Jan 23 |
comment |
Not able to delete site collection using powershell What role SPAdmin has in your SharePoint installation? |
|
Jan 14 |
comment |
SharePoint 2013 connecting with site-mailbox Would you mind improving you acceptance rate on your previous posts? |
|
Jan 10 |
comment |
Add script reference to all pages in a site collection when a feature is activated Delegate control is also an option to inject JS into a Master Page without editing it. This usually is doable with a delegate control with control id AdditionalPageHead |
|
Jan 10 |
comment |
Add script reference to all pages in a site collection when a feature is activated Just to elaborate more, this method requires an element file to inject the script into site. The source JavaScript can be either manually placed in appropriate location in the SharePoint farm or it can be deployed through a Module. The location attribute in CustomAction element should be set as "ScriptLink". The sequence number attribute in CustomAction element decides the order in which the script has to be loaded into the page. |
|
Jan 10 |
comment |
Add script reference to all pages in a site collection when a feature is activated It's one of my fav approaches where you place the scripts without having to modify the pages or master pages, in real. |