I'm testing one of the wcf services published with BizTalk with biz unit, and using following code,
WebServiceStep wsStep = new WebServiceStep();
wsStep.ServiceUrl = //service url;
wsStep.FailOnError = true;
wsStep.Action = //service method name;
wsStep.RequestBody = new FileDataLoader() { FilePath = "request.xml");
testCase.ExecutionSteps.Add(wsStep);
The given method usually return a lot of data which exceeds the maximum message size quota for incoming messages (65536), the problem is how can I set the MaxReceivedMessageSize
in above test code?