I have two Java applications in my network that talk to each other over socket connections on a fixed port. Is there any software out there that can log all the messages sent between the two applications for testing purposes?
Share
Sign Up to our social questions and Answers Engine to ask questions, answer people’s questions, and connect with other people.
Login to our social questions & Answers Engine to ask questions answer people’s questions & connect with other people.
Lost your password? Please enter your email address. You will receive a link and will create a new password via email.
Please briefly explain why you feel this question should be reported.
Please briefly explain why you feel this answer should be reported.
Please briefly explain why you feel this user should be reported.
If the protocol is not encrypted, you can use a protocol analyzer like Wireshark to monitor the conversation. If it is, you might want to hook the encryption/decryption routine to log to a file or similar.