Sign in
Sridhar's blog
SharePoint programming and customization.
Search
Blog - News
These postings are provided "AS IS" with no warranties, and confers no rights. Use of included script samples are subject to the terms specified at
Microsoft
Common Tasks
Blog Home
Email Blog Author
About
OK
RSS for comments
RSS for posts
Atom
Translate This Page
Translate this page
Powered by
Microsoft® Translator
Tags
ADMembershipProvider
BCS
BDC
Claims
Code Samples
Coding tips
Customization
External Content Type
External Lists
FBA
How-To
MOSS 2007
MySite
No Code Stuffs
PSConfig Error
Service Applications
SharePoint 2010
SharePoint Search/Indexing
SharePoint2010
SP2010
SPS 2003
Troubleshooting Tips
WSS 2.0
WSS 3.0
You would love to know this
Subscribe via RSS
Sort by:
Most Recent
|
Most Views
|
Most Comments
Excerpt View
|
Full Post View
Sridhar's blog
Register CSR-override on MDS enabled SharePoint 2013 site
Posted
3 months ago
by
sridhara2
1
Comments
Both CSR [Client-Side Rendering] and MDS [Minimal Download Strategy] are new concepts in SharePoint 2013. I recently had a chance to work on an issue concerning CSR and MDS, which I thought I’d share through this post so that it is helpful for the...
Sridhar's blog
A case of custom email templates not used when alerts are created from code in SharePoint
Posted
11 months ago
by
sridhara2
0
Comments
Recently, I had a case where customer was creating SPAlert object using SharePoint object model code and things were not working out well. What seem to happen was that whenever the condition that warrants alert trigger is met (e.g., an item is changed...
Sridhar's blog
Not able to create publishing pages!!
Posted
over 2 years ago
by
sridhara2
0
Comments
Recently I worked a case where the customer was not able to create publishing pages at all. Whenever they trying doing so, it errors out in the browser and in the ULS logs we see the following stack: System.ArgumentOutOfRangeException: Index...
Sridhar's blog
Implementing a post back button in a SharePoint 2010 Web Part with contextual ribbon
Posted
over 3 years ago
by
sridhara2
0
Comments
There are quite a few articles that talks about implementing a contextual ribbon button that does a post back in SharePoint 2010. But despite quite a few tries, I’ve not been able to get hold of a complete walk-through on it. I am posting...
Sridhar's blog
Working with SharePoint 2010 Client Object Model on an SSL enabled site
Posted
over 3 years ago
by
sridhara2
1
Comments
When working SharePoint 2010 Client Object Model on an SSL enabled SharePoint 2010 site, we also need to pass in the certificate and validate it for the client object model calls to work. Below is a sample. 1: private void button1_Click( object sender...
Sridhar's blog
Update taxonomy field values in a list item through SharePoint web services
Posted
over 3 years ago
by
sridhara2
9
Comments
Recently, I was tasked to find out how to update a taxonomy field value in a list item through SharePoint web services (lists.asmx). Though this sounds quite simple, it turned out to be a good learning. Taxonomy fields are very similar to lookup...
Sridhar's blog
Tracing SharePoint 2010 Service Applications
Posted
over 3 years ago
by
sridhara2
3
Comments
If you are interested (as I was) to know what happens behind the scenes in a SharePoint 2010 Service Application, there’s a very neat way to do this. I had a specific scenario where I had to understand what happens in the back-end of BCS service...
Sridhar's blog
Custom Service Applications in SharePoint 2010
Posted
over 3 years ago
by
sridhara2
3
Comments
I had to write up an internal article on creating custom service applications and making it work with SharePoint 2010. This was not an easy joke at all and is pretty involved process. I used the sample walk-through provided in Service Application Framework...
Sridhar's blog
Uploading files using Client Object Model in SharePoint 2010
Posted
over 3 years ago
by
sridhara2
32
Comments
There are 2 ways to upload files to SharePoint 2010 document libraries using managed client object model. The first method uses a client library batch mechanism. It will encode the binary using BASE64 encoding, which could increase the message size...
Sridhar's blog
BCS and External List Learning – Part3
Posted
over 3 years ago
by
sridhara2
2
Comments
Check out previous posts on the same topic: Part1 Part2 Case where an external content type created did not show up in the external content type picker control. This case was amazing as we (me and the customer) found the cause while on call! The...
Sridhar's blog
BCS and External List Learning – Part2
Posted
over 3 years ago
by
sridhara2
11
Comments
In Part1 , I covered a specific scenario related to viewing external list and BDC throttling settings. In this post, I’ll cover a similar specific scenario but related to authentication. When we create an external content type using SPD2010, the...
Sridhar's blog
BCS and External List Learning – Part1
Posted
over 3 years ago
by
sridhara2
6
Comments
I am posting this article split into series covering specific BCS learning when working with customers. In this post, I’ll cover a specific scenario where when browsing to an external list we might see the following error. In most cases,...
Sridhar's blog
The correct Geneva Framework Runtime needed for SharePoint 2010 RC
Posted
over 3 years ago
by
sridhara2
0
Comments
A lot of download links point to the older version of Geneva framework. So, if you are like me (like browse to www.bing.com and type in “download geneva framework”) and installed it, possibilities are you have the wrong one. Install the correct...
Sridhar's blog
Setting up BCS with Secure Store Application impersonation
Posted
over 3 years ago
by
sridhara2
14
Comments
We used to perform SSO impersonation in BDC in MOSS 2007. We now have a secure store service application that allows us to specify types of target applications to use for impersonating specific services including BCS. Here’s a walk-through...
Sridhar's blog
LINQ to SharePoint 2010
Posted
over 3 years ago
by
sridhara2
3
Comments
Wow! LINQ to SharePoint 2010 is awesome! You have to work with it to see how it simplifies development tasks. I especially love the ability to see what underlying CAML that’s generated on the fly and passed to the server for execution. With...
Sridhar's blog
Setup Claims using AspNetSqlMembershipProvider
Posted
over 3 years ago
by
sridhara2
11
Comments
Setting up claims using AspNetSqlMembershipProvider is very similar to this walk-through. However, the provider information would be different and we’ll need to add an additional connection string element to specify the SQL Server and the database...
Sridhar's blog
IdentityNotMappedException: Some or all identity references could not be translated
Posted
over 3 years ago
by
sridhara2
0
Comments
Recently, I ran into an interesting issue. I thought I’ll post this as I guess most SharePoint Developers could possibly run into it. I used to have my MOSS 2007 development environment on one domain (let’s say mydomain1.com). I then joined...
Sridhar's blog
Setting up FBA Claims in SharePoint 2010 with Active Directory Membership Provider
Posted
over 3 years ago
by
sridhara2
26
Comments
This is a walk-through on setting up FBA Claims in SharePoint 2010 using the Active Directory Membership Provider. The very first step is to create a web application AND create that with claims authentication mode. I am going to provision a web...
Sridhar's blog
SharePoint 2010 – The Start!
Posted
over 4 years ago
by
sridhara2
0
Comments
It’s been a while I updated my blog posts! Have been quite busy with SharePoint 2010 and the splendid new things it has to offer. I realized I’ll take a crack at SharePoint 2010 starting with the several learning opportunities available publicly...
Sridhar's blog
HowTo: Create a quizzing application with SharePoint 2007
Posted
over 5 years ago
by
sridhara2
17
Comments
With SharePoint 2007 "Survey" list template, I recently created a quizzing application. The thing with survey list is that it stack ranks the questions taking into account how many of the respondents favored each options within that question. But for...
Sridhar's blog
How do I use SecureString type in SharePoint 2007?
Posted
over 5 years ago
by
sridhara2
3
Comments
SecureString is the type that's used for passwords in SharePoint 2007. You might find its use when you are automating some "higher level" administration operation (like creating a web application for example). How do you use it is shown below: 1...
Sridhar's blog
Using Post Caching Substitution in SharePoint 2007 Web Parts
Posted
over 5 years ago
by
sridhara2
4
Comments
There are good number of articles that explains the different caching option Microsoft Office SharePoint Server 2007 provides and ways to leverage them to achieve better site performance. However, there are scenarios where you might want to implement...
Sridhar's blog
Wildcard Search in SharePoint
Posted
over 5 years ago
by
sridhara2
6
Comments
Being able to perform wildcard search is probably an area that's missing in out of the box search in SharePoint. Here's a small web part sample you can use to perform wildcard search in MOSS 2007 (and it can be engineered backward to fit into SharePoint...
Sridhar's blog
"Failed to verify user permissions" error when using DspSts.asmx web service
Posted
over 5 years ago
by
sridhara2
3
Comments
I recently handled a case where the customer sees a "Failed to verify user permissions" error when accessing the DspSts.asmx web service in SharePoint 2007. Below is the code similar to what they were using to invoke the Query method of DspSts.asmx web...
Sridhar's blog
The buzz with "UrlQueryString" in SharePoint navigation
Posted
over 5 years ago
by
sridhara2
1
Comments
SharePoint's navigation APIs have a property exposed that allows us to set query string properties for a URL. Sadly, but not surprisingly, this only works when root site collection has publishing feature enabled. Reason is simple... One a WSS only...
Page 1 of 3 (67 items)
1
2
3