If you just want to send data objects and data arrays over the network, you should take a look at the implementation of:<br><br>int vtkCommunicator::Send (vtkDataObject *data, int remoteHandle, int tag)<br>int vtkCommunicator::Send (vtkDataArray *data, int remoteHandle, int tag)<br>
<br>You can search the tests in VTK/Parallel/Testing/Cxx for examples.<br><br>If you need to serialize a full vtk pipeline, and recreate the filters and pipeline connections on the other side of the network connection, that would be a lot more work.<br>
<br>Pat<br><br><br><div class="gmail_quote">On Thu, Jun 17, 2010 at 5:31 PM, Jingyuan Wang <span dir="ltr">&lt;<a href="mailto:jingyuan@lanl.gov">jingyuan@lanl.gov</a>&gt;</span> wrote:<br><blockquote class="gmail_quote" style="margin: 0pt 0pt 0pt 0.8ex; border-left: 1px solid rgb(204, 204, 204); padding-left: 1ex;">
Hi,<br>
<br>
I am currently working on a remote visualization project and writing code<br>
to connect my network caching system to VTK.<br>
<br>
What I want to do is serializing the output of certain section of the vtk<br>
pipeline which processed on server and send the data over network to<br>
client. I know this is some function that Paraview already has. But can<br>
anybody tell me how does Paraview handle this issue or point me to the<br>
part of source code that implement this function?<br>
<br>
Thanks very much,<br>
Jingyuan<br>
_______________________________________________<br>
Paraview-developers mailing list<br>
<a href="mailto:Paraview-developers@paraview.org">Paraview-developers@paraview.org</a><br>
<a href="http://public.kitware.com/mailman/listinfo/paraview-developers" target="_blank">http://public.kitware.com/mailman/listinfo/paraview-developers</a><br>
</blockquote></div><br>