see these webserver libraries for C/C++:
Server - Socket to receive XML messages
Noah Aas
985
Reputation points
I'm looking for a good server in a dialog-based MFC application that will send me a request.
Does anyone know a good example? The request comes from the client based on the event.
The server sends the response or timeout within 20 seconds.
Like this.
<ROOT>
<book id="bk101">
<author>Gambardella, Matthew</author>
<title>XML Developer's Guide</title>
<Computer attri1="Test" attri2="6.4Eur" />
<price>44.95</price>
<publish_date>2000-10-01</publish_date>
</book>
</ROOT>
The server must read until the message is complete.
<ROOT> .... </ROOT>
Request from Client to Server
Response Server to Client.
good or bad result.
<ROOT>
<Result good="false"/>
</ROOT>
<ROOT>
<Result good="true" Percent="100"/>
</ROOT>