Hello Everyone,
the following error occured while calling a wcf webservice below is my code,
var webClient = new WebClient();
webClient.Headers[HttpRequestHeader.ContentType] = "application/json";
var serviceUrl = "10.20.10.10/.../ProcedureExecuterBatch.svc";
// upload the data using Post mehtod
string response = webClient.UploadString(serviceUrl, memoryStream.ToString());
any help would be appriaciated , thanks in advance.
*This post is locked for comments