|
#1
|
|||
|
|||
Network format
Hello, I am writing a C# application that communicates with a vizard program, and looking at the message sent from the vizard program, the format looks pretty complex! I am not too worried about parsing the vizard message in C#, but am not so sure about writing the code to send a UDP packet from C# to Vizard that the vizard networking accepts.
So, I was wondering, is there any documentation on the format? Thank, Christian |
#2
|
|||
|
|||
I looked into it further, and it turns out the message format is pickled - that is why it looks so odd. So I am working with IronPython to try to reverse the process and get at the data.
Christian |
#3
|
|||
|
|||
The data that is transmitted by Vizard is pickled using the cPickle module. To get access to the data on your end you can use the following code:
Code:
data = cPickle.loads(rawData)
|
|
|
Similar Threads | ||||
Thread | Thread Starter | Forum | Replies | Last Post |
Using 5DT plug-in with the data coming through network... | mcicek | Vizard | 1 | 05-18-2009 05:17 PM |
continually losing network license | ad_astra | Vizard | 1 | 11-30-2007 02:48 PM |
Best image format | Pastscapian | Vizard | 2 | 10-09-2006 10:44 AM |
White Fullscreen crash when running network version | Dbuckland | Vizard | 6 | 04-19-2006 02:49 PM |
more advanced network examples? | halley | Vizard | 0 | 04-05-2006 07:07 AM |