c# - .Net Core BadGateway Error when huge data in post response -


i trying soaprequest webservice, runs little data badgateway error when trynig huge data,

here code

var content = new stringcontent(soapenveloprequest, encoding.utf8, "text/xml"); using (var response = await client.postasync(action, content)) {   var soapresponse = await response.content.readasstringasync();   return soapresponse; } 


Comments

Popular posts from this blog

angular - DownloadURL return null in below code -

python 2.7 - Given three nested dictionaries, sort the top two nested dictionaries from a value in the innermost dictionary? -