WCF サービスを使用してデータベースと通信する Silverlight 3.0 アプリケーションがあり、サービス メソッドから大量のデータが返されると、Service Not Found エラーが発生します。maxItemsInObjectGraph プロパティを更新するだけで解決できると確信していますが、サービス クライアントをプログラムで作成しており、このプロパティを設定する場所が見つかりません。これが私が今していることです:
BasicHttpBinding binding = new BasicHttpBinding(BasicHttpSecurityMode.None)
{
MaxReceivedMessageSize = int.MaxValue,
MaxBufferSize = int.MaxValue
};
MyService.MyServiceServiceClient client = new MyService.MyServiceProxyServiceClient(binding, new EndpointAddress(new Uri(Application.Current.Host.Source, "../MyService.svc")));