vote up 0 vote down star

silverlight uses wcf with basicHttpBinding




i send the image as an byte[], and it's working as long as the image has less than 20KB

but when it's bigger i get the error: The remote server returned an error: NotFound

in the Reference.cs

public bool EndSave(System.IAsyncResult result) { object[] _args = new object[0]; bool _result = ((bool)(base.EndInvoke("Save", _args, result))); // error return _result; }

flag

3 Answers

vote up 0 vote down

Please catch the exception on the wcf side in the interface implementation and post that.

The error may be related to this problem: "WCF Message Size Issue"

link|flag
vote up 0 vote down

Check the "maxReceivedMessageSize" property (representing the size in bytes) on the binding configuration. If your data exceeds that size, the message is discarded.

link|flag
vote up 0 vote down

Question: How did you convert image to byte[] in Silverlight client?

link|flag

Your Answer

Get an OpenID
or

Not the answer you're looking for? Browse other questions tagged or ask your own question.