I need to implement the following WebAPI method: /api/books?author=XXX&title=XXX&isbn=XXX&somethingelse=XXX&date=XXX All of the query string parameters can be null. That is, the caller can specify from 0 to all of...
  • May 25, 2022
  • 0 Comments
Dave Ward says, It’s not exactly light reading, but section 4.2 of RFC 3986 provides for fully qualified URLs that omit protocol (the HTTP or HTTPS) altogether. When a...
  • May 23, 2022
  • 0 Comments
I am trying to send a GET message that contains strings with ampersands and can’t figure how to escape the ampersand in the URL. Example: http://www.example.com?candy_name=M&M result => candy_name...
  • May 22, 2022
  • 0 Comments