Silverlight は、basicHttpBindingで WCF を使用します
<basicHttpBinding>
<binding name="BasicHttpBinding_BugsService"
maxBufferSize="2147483647"
maxReceivedMessageSize="2147483647">
<security mode="None"/>
</binding>
</basicHttpBinding>
画像を として送信しましたがbyte[]
、画像が 20KB 未満であれば機能しています
しかし、それが大きくなるとエラーが発生します:
リモート サーバーがエラーを返しました: NotFound
Reference.cs で
public bool EndSave(System.IAsyncResult result)
{
object[] _args = new object[0];
bool _result = ((bool)(base.EndInvoke("Save", _args, result))); // error
return _result;
}