I am developing a REST API and currently client sends data in QueryString. For one method client need to send relatively large data (XML content). Due to query string size limitation I am looking for alternatives.
What are ways to send data in HttpGet request other than query string?
Even though you are correct about using the
@GETyou are facing a practical limitation(Section 5.2) of implementations. You would have to go with@POSTfor your method if your queryString is considerabily big.