I have been working mostly on get requests and generally use RestClient to test any web service. Usually perform a GET for object.
Now I am attempting to do my first POST. For the GET requests, I have been passing a query string and parsing that way Now this web service is accepting many field. Ordin
Does a POST always have to receive an object versus a string or even a query string? Probably a dumb question.
When the object comes in since one of the fields is a byte array do I have to do anything special in terms of catching the field in a bytearray converter. Can the post accept multiple variables such as String, MultiPart