How do you send Image data to a WCF Service
-
I've searched and tried all previous posted suggested solutions and have not had any luck. I am obviously doing something wrong which I just can't figure out and I'm hoping someone will be able to help me here.My problem is this: I have a WCF Service, and a WCF client. When I call the service and try to pass a byte array (uploading an image to the service), I get a Target Invokation exception error which is very vague. So, I hooked up tracing and the trace log is telling me the message quota size exceeded the limit, but I have modified the configs on both ends (app.config & web.config) to contain a really large limit. The problem is, it's telling me that the limit of 65536 was exceeded, but as you can see from my configs below it's way larger than that amount, so it's as if my client is using some other configuration values or I just didn't configure it right and it's ignoring what I have. Can someone help me? App.Config: Web.Config: Any help you guys could offer would be greatly appreciated. I've been stuck on this problem now for two days. Thanks everyone. Here's the actual configuration code: <system.serviceModel> <bindings> <wsHttpBinding> <binding name="WSHttpBinding_IDataSyncService" closeTimeout="00:01:00" openTimeout="00:01:00" receiveTimeout="00:10:00" sendTimeout="00:01:00" bypassProxyOnLocal="false" transactionFlow="false" hostNameComparisonMode="StrongWildcard" maxBufferPoolSize="2147483647" maxReceivedMessageSize="2147483647" messageEncoding="Text" textEncoding="utf-8" useDefaultWebProxy="true" allowCookies="false"> <readerQuotas maxDepth="2147483647" maxStringContentLength="2147483647" maxArrayLength="2147483647" maxBytesPerRead="2147483647" maxNameTableCharCount="2147483647" /> <reliableSession ordered="true" inactivityTimeout="00:10:00" enabled="false" /> <security mode="Message"> <transport clientCredentialType="Windows" proxyCredentialType="None" realm="" /> <message clientCredentialType="Windows" negotiateServiceCredential="true" algorithmSuite="Default" /> </security> </binding> </wsHttpBinding> </bindings> <client> <endpoint address="http://localhost/DataSyncWCF/DataSyncService.svc" binding="wsHttpBinding" bindingConfiguration="WSHttpBinding_IDataSyncService" contract="IDataSyncService" name="WSHttpBinding_IDataSyncService"> <identity> <dns value="localhost" /> </identity> </endpoint> </client> </system.serviceModel> Web.Config: <services> <service behaviorConfiguration="DataSyncWCF.Service1Behavior" name="DataSyncWCF.DataSyncService"> <endpoint address="" binding="wsHttpBinding" bindingName="WSHttpBinding_IDataSyncService" contract="DataSyncWCF.IDataSyncService"> <identity> <dns value="localhost" /> </identity> </endpoint> <endpoint address="mex" binding="mexHttpBinding" contract="IMetadataExchange" /> </service> </services> <bindings> <wsHttpBinding> <binding name="DataSyncWCF.Service1Binding" maxBufferPoolSize="2147483647" maxReceivedMessageSize="2147483647" allowCookies="true"> <readerQuotas maxDepth="2147483647" maxStringContentLength="2147483647" maxArrayLength="2147483647" maxBytesPerRead="2147483647" maxNameTableCharCount="2147483647" /> <security mode="None"> </security> </binding> </wsHttpBinding> </bindings> <behaviors> <serviceBehaviors> <behavior name="DataSyncWCF.Service1Behavior"> <serviceMetadata httpGetEnabled="true"/> <serviceDebug includeExceptionDetailInFaults="true"/> </behavior> </serviceBehaviors> </behaviors> Here's my code calling the WCF Service: VehicleImage vi = new VehicleImage(); System.IO.FileStream fs = new System.IO.FileStream(@"C:\images\1FAHP35N18W1589_01.jpg", System.IO.FileMode.Open, System.IO.FileAccess.Read); int len = (int)fs.Length; vi = new VehicleImage(); vi.Image = new Byte[len]; fs.Read(vi.Image, 0, len); // Here's the call to the WCF Service. It never makes it to the Service because of the message size limit error. ResponseContract rc = client.SyncImage(vi);
-
Answer:
Everything in WCF is heavily limited (throttled), with reason. I see a lot of 2G numbers in your config, that would not be a good idea in general. And you may have missed a few, I can't spot a SerializationLimit (approx name) so quickly. There are 2 basic ways to deal with large messages in WCF: http://msdn.microsoft.com/en-us/library/ms733742.aspx and streaming.
RZulfekar at Stack Overflow Visit the source
Other answers
In your web.config wsHttpBinding, set the maxReceivedMessageSize: <binding name="www" maxReceivedMessageSize="2147483647">
competent_tech
Related Q & A:
- How to deal with timeout when accessing a web service?Best solution by Stack Overflow
- How to display Android database data in a ListView?Best solution by Stack Overflow
- How to connect to a WCF Service?Best solution by Stack Overflow
- How to call the WCF service from silverlight application?Best solution by Stack Overflow
- How much is 1MB of data on a cell phone?Best solution by Yahoo! Answers
Just Added Q & A:
- How many active mobile subscribers are there in China?Best solution by Quora
- How to find the right vacation?Best solution by bookit.com
- How To Make Your Own Primer?Best solution by thekrazycouponlady.com
- How do you get the domain & range?Best solution by ChaCha
- How do you open pop up blockers?Best solution by Yahoo! Answers
For every problem there is a solution! Proved by Solucija.
-
Got an issue and looking for advice?
-
Ask Solucija to search every corner of the Web for help.
-
Get workable solutions and helpful tips in a moment.
Just ask Solucija about an issue you face and immediately get a list of ready solutions, answers and tips from other Internet users. We always provide the most suitable and complete answer to your question at the top, along with a few good alternatives below.