HTTP Server in CBuilder
I am a new user in CBuilder Programming. I am writing HTTP Server application, which receives mixed data:both text and a binary data at a time. But I don't know which component and how to use to parse incoming request. My aim is to separate a text data from开发者_如何学Go binary one. Can anybody show examples in Cbuilder or Delphi?
Try using indy, check the TIdHTTPServer
component and the OnCommandGet
event to process the GET, POST, and HEAD requests.
精彩评论