Cesium as a data viewer

Hi all,

I'm a newbee. I saw Cesium and it looks nice but I want to check with you if it's possible to do my project.
I'm receiving symbols and it's update (status, position,...) throught the network. I want to display this information in Cesium. Is it possible ?

I know I'll have maybe to translate it. I saw for the CZML format. Is possible to use it ?
Thank you in advance for your suggestion.

- Jérôme

I checked more and In fact I need to stream the CZML but I did'nt find any information. Can someone help me ?

If you just want to use your existing format, you can implement your own data source (http://cesium.agi.com/Cesium/Build/Documentation/DataSource.html) rather than converting to CZML. You can checkout out the code to our GeoJSON converter for an example: https://raw.github.com/AnalyticalGraphicsInc/cesium/master/Source/DynamicScene/GeoJsonDataSource.js

If you control the server, than spitting out CZML is certainly another option, it all depends on what your architecture/requirements are.

Thank you for your answwer Matthew.
I'm receiving protobuf message through the network (TCP) in a specific format (no standard) I developp the libs in C# to read these message
I can add an applciation to transform these messages.

I prefere to have something light from the client side. Which solution do you suggest ?
I did a prototyp for another system using a REST API, it was easy. Is there a solution like this with Cesium ?

Link is not working ........

https://raw.github.com/AnalyticalGraphicsInc/cesium/master/Source/DynamicScene/GeoJsonDataSource.js

New link: https://raw.githubusercontent.com/AnalyticalGraphicsInc/cesium/master/Source/DataSources/GeoJsonDataSource.js