Исключение в службе данных WCF при передаче байта []
Я тестирую недавно установленную Службу данных WCF.
Большинство вещей работает хорошо, есть только одна коллекция, когда я добавляю объект и сохраняю изменения, я получаю это исключение:
System.Data.Services.Client.DataServiceRequestException was unhandled
Message=Une erreur s'est produite lors du traitement de cette requête.
Source=System.Data.Services.Client
StackTrace:
à System.Data.Services.Client.DataServiceContext.SaveResult.HandleBatchResponse()
à System.Data.Services.Client.DataServiceContext.SaveResult.EndRequest()
à System.Data.Services.Client.DataServiceContext.SaveChanges(SaveChangesOptions options)
à System.Data.Services.Client.DataServiceContext.SaveChanges()
à WSTester.Program.AddSomeThings(Entities entities) dans D:\MyPath\MAIN\WSTester\Program.cs:ligne 153
à WSTester.Program.Main(String[] args) dans D:\MyPath\MAIN\WSTester\Program.cs:ligne 26
à System.AppDomain._nExecuteAssembly(RuntimeAssembly assembly, String[] args)
à System.AppDomain.ExecuteAssembly(String assemblyFile, Evidence assemblySecurity, String[] args)
à Microsoft.VisualStudio.HostingProcess.HostProc.RunUsersAssembly()
à System.Threading.ThreadHelper.ThreadStart_Context(Object state)
à System.Threading.ExecutionContext.Run(ExecutionContext executionContext, ContextCallback callback, Object state, Boolean ignoreSyncCtx)
à System.Threading.ExecutionContext.Run(ExecutionContext executionContext, ContextCallback callback, Object state)
à System.Threading.ThreadHelper.ThreadStart()
InnerException: System.Data.Services.Client.DataServiceClientException
Message=BadRequest
Source=System.Data.Services.Client
StatusCode=400
StackTrace:
à System.Data.Services.Client.DataServiceContext.SaveResult.<HandleBatchResponse>d__1e.MoveNext()
InnerException:
Это единственный объект, который содержит файл ( byte[]), поэтому я думаю, что проблема в том, что из-за этого файла (размер? ...?) Ошибка не говорит мне много, даже если я активирую многословный Пороки:
[System.ServiceModel.ServiceBehavior(IncludeExceptionDetailInFaults = true)]
У меня есть все права на эту коллекцию:
config.SetEntitySetAccessRule("OrderFile", EntitySetRights.All);
Вот как я могу добавить свой файл:
OrderFile orderFile = new OrderFile() { BinaryFile = StreamFile("BC0201001.pdf"), DateAdded = DateTime.Now, FileName = "BC0201001.pdf", IDOrder = order.IDOrder};
entities.AddToOrderFile(orderFile);
entities.SaveChanges();
//and this the method which put a file into a byte[]
private static byte[] StreamFile(string filename)
{
FileStream fs = new FileStream(filename, FileMode.Open, FileAccess.Read);
// Create a byte array of file stream length
byte[] ImageData = new byte[fs.Length];
//Read block of bytes from stream into the byte array
fs.Read(ImageData, 0, System.Convert.ToInt32(fs.Length));
//Close the File Stream
fs.Close();
return ImageData; //return the byte data
}
Я пытался добавить
<httpRuntime maxRequestLength="2097152"/>
К моей стихии
Если я отправляю пустой текстовый файл, он работает.
Любая идея?
Спасибо!
1 ответ
Решение
Нашел решение здесь: http://malvinly.com/2011/05/09/wcf-data-services-and-maxreceivedmessagesize/