Dear Expert(s),
I am encountering an issue due to which I am getting delay to my client for product delivery. If any one can help.
I have a Desktop Application based on Client Object Model which is running at Client's Machine. The utility reads file path and metadata from excel sheets and upload them to the document library specified. Well this all works fine. but initially it wasn't able to upload files greater than 3 MB. than I came to know about Client Side File Upload Limit and ran the following PS script on my server machine.
get-PSSnapin - Registered
Add-PSSnapin Microsoft.SharePoint.Powershell
$ws = [Microsoft.SharePoint.Administration.SPWebService]::ContentService
$ws.ClientRequestServiceSettings.MaxReceivedMessageSize = 81943040
$ws.Update()
As per this script my file upload limit should be set to 80 MB now but when i upload files it allows me files upto 38 MB only. And gives me error : [ Unexpected response from the server. The content type of the response is "". The status code is "OK". ]
I need to increase the size upto 250 MB . Is there any solution to it. This is urgent. your prompt responses will be quite helpful.
Regards,
Haris Bilal