Hi all,
I'm working my brain out here with the following problem:
I want to fill in a structure with multiple levels to RBS lookup table (it has around 10 levels). This is ok.
But I have a big amount of data (13.000 nodes). When I try to insert them using UpdateLookupTables method I get the following exception: "Unhandled Communication Fault occurred".
I've tryed to work with smaller datasets and it worked just fine (10.000) for the creation of entries. But when I've tryed to delete them using the same method i've got the same exception.
I've searched in MSDN and I didn't found any description saying which are the limitations for this method (in terms of number of rows).
I've tryed with different binding parameters:
1. binding.MaxReceivedMessageSize = 500.000.000;
binding.ReaderQuotas.MaxNameTableCharCount = 500.000.000;
for MaxBufferSize is the default value because I didn't set it (but I don't know which is the default value - i assume around 4Mb).
2. binding.MaxReceivedMessageSize = 60.000.000;
binding.ReaderQuotas.MaxNameTableCharCount = 60.000.000;
binding.MaxBufferSize = 60.000.000;
I have no clue which are the maximum values for these parameters used for binding.
For me it doesn't work the solution to call multiple request with max 1.000 rows, because I will run into a performance issue with multuple calls to PSI.
Thank you for your support.Vlad