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

Is there a better way to structure post methods in Class Based Views -

performance - Why is XCHG reg, reg a 3 micro-op instruction on modern Intel architectures? -

jquery - Responsive Navbar with Sub Navbar -