Virtual Business Card


A Jack of all trades is a master of integration, as such an individual who knows enough from many learned trades and skills to be able to bring their disciplines together in a practical manner, and is not a specialist but can be an expert in many fields. Such a person is known as a polymath or a renaissance man; a typical example is someone like Leonardo da Vinci.
Showing posts with label SharPoint 2010. Show all posts
Showing posts with label SharPoint 2010. Show all posts

Friday, June 8, 2012

Error When Creating an Appointment in Nintex Workflow 2010

When you run the workflow, you get the error:




Failed to invoke web service. Error returned from server: The underlying connection was closed: Could not establish trust relationship for the SSL/TLS secure channel



To solve the problem:

1.) Add the root certificate of the web service. For more details look at:

http://connect.nintex.com/forums/thread/1433.aspx

2.) Run



foreach ($cert in (Get-ChildItem cert:\LocalMachine\Root)) { if (!$cert.HasPrivateKey) {New-SPTrustedRootAuthority -Name $cert.Thumbprint -Certificate $cert } }



For more details: http://connect.nintex.com/forums/post/19080.aspx