SharePoint 2010 project that demonstrates how to programatically deploy Nintex Workflow 2010 artifacts (workflow templates, context data)
1. Automating deployment of reusable workflows in Nintex Workflow 2010
2. Designing and deployment of Context Data in Nintex Workflow
Am getting an error while uploading large file its size is more than 2MB,
Error : The request message is too big. The server does not allow messages larger than 2097152 bytes.
Here is the my code,
byte[] Content = fileContent;
FileCreationInformation fci = new FileCreationInformation()
{
Content = Content,
Url = fileRelURL,
Overwrite = true
};
presentFolder.Files.Add(fci);
_context.Load(presentFolder);
_context.ExecuteQuery();
Am getting an error while uploading large file its size is more than 2MB,
Error : The request message is too big. The server does not allow messages larger than 2097152 bytes.
Here is the my code,
byte[] Content = fileContent;
FileCreationInformation fci = new FileCreationInformation()
{
Content = Content,
Url = fileRelURL,
Overwrite = true
};
presentFolder.Files.Add(fci);
_context.Load(presentFolder);
_context.ExecuteQuery();
This Office 365 Sharepoint site.
Please help me.