I want to generate an Excel File with SharePoint. I can make a refernce to ExcelServices an want to use the funtion NewWorkbook. But i get the error : Soap Exception: You do not have appropriate permissions to create a new workbook in the specified location
ExcelService es = new ExcelService(); Status[] outStatus; es.Credentials = System.Net.CredentialCache.DefaultCredentials; string sessionId = es.NewWorkbook(@"http://Site/Libary/test.test", null, null, out outStatus);
The libary http:/Site/Libary is an trusted file location.
