Hello, I am writing an application which parses PDML and PSML XML files (then using their content). These files could be created on Windows or Linux, with Wireshark or Tshark. Will PDML and PSML files created with Wireshark on Linux, Wireshark on Windows and Tshark on Linux all be exactly the same, or will there be any differences between them? I am using regular expressions on the content so it is vital to my application that there are no differences. Many thanks. asked 05 Oct '16, 07:54 Lobster |
One Answer:
The only measure of stability guaranteed is PDML / PSML schema compliance, so a more flexible parser would be more future proof. Other than that the programs use the same routines to output these files, so you should be good. answered 05 Oct '16, 14:56 Jaap ♦ |
Thanks for your answer :)
What do you mean by 'a more flexible parser would be more future proof'?
And will there be any differences due to character encoding on different platforms?