I had to create an application which connects to Sharepoint. The interested Sharepoint Application is set to work ONLY with claim based Authentication, so I cannot use the classic:
NetworkCredential Cred = new NetworkCredential("administrator", "Password", "domain");
How can i connect by Claim Based?
I know I must contact STS, get a Token, contact SP STS, get another token and then contact Sharepoint...
Is there any tutorial or hint to do this in the right way?
Thank you very much!!!