Questions tagged [webrequest]

In the .NET Framework, WebRequest is a versatile abstract class designed for sending requests to various URIs, such as those using HTTP, HTTPS, FTP, and FILE protocols. Additional tags associated with this class include [httpwebrequest] and [ftpwebrequest].

Capturing a web request in C# by converting it into JSON and then serializing it into a C

Currently, I am attempting to communicate with a restful API and retrieve the response using a c# object. In the past, I have successfully captured responses using WebRequest and Get methods. However, when trying to use Post and Streamreader, I suspect th ...

Encountering a java.lang.OutOfMemoryError when trying to construct a JSON object in Java/Android development

For my project, I am fetching JSON data from a public database through the URI , and this dataset contains up to 445454 rows. The code snippet below outlines how I'm constructing the JSON object for this extensive dataset. HttpGet get = new HttpGet(uri ...