Posts

security policy export failed. the binding contains a transportsecuritybindingelement

After having a fresh installation of SharePoint 2010 i was facing the following error in my Security Token Service. I tired multiple solutions but could not fix my issue. Finally a  thread  helped me out to solve my problem. Note: This solution worked for me. I had a fresh installation of SharePoint 2010 without SP1 and any update. It was completely OOB. If one tries to visit standard web service such as SecurityTokenServiceApplication ( http://localhost:32843/SecurityTokenServiceApplication/SecurityToken.svc  , or https://localhost:32844/SecurityTokenServiceApplication/SecurityToken.svc  ), the service will respond with System.InvalidOperationException Error:  Security policy export failed. The binding contains a TransportSecurityBindingElement but no transport binding element that implements ITransportTokenAssertionProvider. Policy export for such a binding is not supported. Make sure the transport binding element in the binding implements the ITran...

Security Token Service is not available (I fixed it)

After having a fresh installation of SharePoint 2010 i was facing the following error in my Security Token Service. I tired multiple solutions but could not fix my issue. Finally a thread helped me out to solve my problem. Note: This solution worked for me. I had a fresh installation of SharePoint 2010 without SP1 and any update. It was completely OOB. If one tries to visit standard web service such as SecurityTokenServiceApplication ( http://localhost:32843/SecurityTokenServiceApplication/SecurityToken.svc  , or https://localhost:32844/SecurityTokenServiceApplication/SecurityToken.svc  ), the service will respond with System.InvalidOperationException Error: Security policy export failed. The binding contains a TransportSecurityBindingElement but no transport binding element that implements ITransportTokenAssertionProvider. Policy export for such a binding is not supported. Make sure the transport binding element in the binding implements the ITransportTokenAsse...

Applications of Artificial Inteligence

http://www.mediafire.com/?7dbd7gi27efg6qh Download Slides

How to view the list of Installed SharePoint 2010 solutions?

Image
How to view the list of Installed SharePoint 2010 solutions? How to view the list farm level solutions in SharePoint 2010?

Picasa Error : the current user is not allowed to install or update applications

Image
While installing Picasa on my newly installed OS on my machine i got this error " the current user is not allowed to install or update applications". after googling and spending sometime i got that its not actually picasa issue, its because of my OS and i tried a solution that worked for me. Solution 1. Go to Server Manager >> Features >> Add Feature  2. Check Deskop Experiance and install it. 3. Reboot the system and its gone.

How to use Checkbox in Kendo UI open source Grid

You can easily put a checkbox in Kendo UI Grid. Just define its template while defining the columns  See the code below... scrollable: true,                         sortable: true,                         filterable: true,                         columns: [                             {                                 field: "FirstName",                                 title: "Location (City Country)",                                 width: 100       ...

How to Pass a Model in MVC Jquery AJAX call?

I got this simple solution from stackoverflow and it worked for me. Model: public class AddressInfo { public string Address1 { get ; set ; } public string Address2 { get ; set ; } public string City { get ; set ; } public string State { get ; set ; } public string ZipCode { get ; set ; } public string Country { get ; set ; } } Controller: public class HomeController : Controller { public ActionResult Index () { return View (); } [ HttpPost ] public ActionResult Check ( AddressInfo addressInfo ) { return Json ( new { success = true }); } } script in View: < script type = "text/javascript" > var ai = { Address1 : "423 Judy Road" , Address2 : "1001" , City : "New York" , State : "NY" , ZipCode : "10301" , Country : "USA...