Suggestion on C++
-
Hi Guys, I have a small problem i hope you guys can help. Actually i have an Win32 application which contacts to a cloud server and the communication between my client and server code is both the XML and json formats. But can u suggest me some other formats where size of my code should be less and communication should be fast and reliable. Any suggestions please. Thanks in advance.
-
Hi Guys, I have a small problem i hope you guys can help. Actually i have an Win32 application which contacts to a cloud server and the communication between my client and server code is both the XML and json formats. But can u suggest me some other formats where size of my code should be less and communication should be fast and reliable. Any suggestions please. Thanks in advance.
There is bson which is a binary json. Many software products use sqlite3 and sync it to their server. For example Skype. You can also create yourself a small TCP/IP based protocol.
- Michael Haephrati מיכאל האפרתי
-
There is bson which is a binary json. Many software products use sqlite3 and sync it to their server. For example Skype. You can also create yourself a small TCP/IP based protocol.
- Michael Haephrati מיכאל האפרתי
Thanks Michael actually we are thinking of writing our own binary format will it be a good idea ?
-
Thanks Michael actually we are thinking of writing our own binary format will it be a good idea ?
That seems to be the best idea but it is also important to structure the data properly and sdqlite3 can be great for doing so. You can ofcourse encrypt the sqlite3 database file then.
- Michael Haephrati מיכאל האפרתי
-
Hi Guys, I have a small problem i hope you guys can help. Actually i have an Win32 application which contacts to a cloud server and the communication between my client and server code is both the XML and json formats. But can u suggest me some other formats where size of my code should be less and communication should be fast and reliable. Any suggestions please. Thanks in advance.