I'm new to networking so hopefully I will be able to explain my issue.
My boss recently made a dummy server for me to test my application's networking and I ran into issue regarding java to c++. His server was written in c++ and when run, it waits and listens for a particular c++ data struct named "RemoteMsgStruct" to be passed:
typedef struct
{
unsigned int Length;
unsigned int BoardType;
unsigned int MsgType;
unsigned char Msg[MAX_MSG_SIZE];
} RemoteMsgStruct;
The problems lies in the fact that my program is written in java. How would I go about passing a similar message through java for the server to process?
Thanks ahead of time for the help. If anything isn't explained well enough or appears to be missing let me know. Like I said, I'm new to both networking and stackoverflow :)