This may be me being stubborn, but I&#39;d rather encapsulate the way I handle large and/or remote data away from the rest of my application.<br><br>Is there a c++ example anywhere that is like this python example:<br><br>
from paraview import servermanager<br>servermanager.Connect(&quot;kamino&quot;)<br>&gt;&gt;&gt;Connection (kamino:11111)<br>s = servermanager.sources.SphereSource()<br>s.UpdatePipeline()<br># Get the whole sphere. DO NOT DO THIS IF THE DATA IS LARGE otherwise<br>
# the client will run out of memory.<br>allsphere = servermanager.Fetch(s)<br>&gt;&gt;&gt;getting appended<br>&gt;&gt;&gt;use append poly data filter<br>allsphere.GetNumberOfPolys()<br><br>(page 17 of <a href="http://paraview.org/Wiki/images/f/f9/Servermanager2.pdf">http://paraview.org/Wiki/images/f/f9/Servermanager2.pdf</a> )<br>
Basically I want to create a pipeline to shrink my data, then either fetch the whole thing to the client or hook that into my local pipeline&#39;s Image Plane Widget.&nbsp; At this point I don&#39;t want to use Paraview&#39;s views.<br>
<br><div class="gmail_quote">On Jan 25, 2008 7:25 AM, Clinton Stimpson &lt;<a href="mailto:clinton@elemtech.com">clinton@elemtech.com</a>&gt; wrote:<br><blockquote class="gmail_quote" style="border-left: 1px solid rgb(204, 204, 204); margin: 0pt 0pt 0pt 0.8ex; padding-left: 1ex;">
<br>You might also want to have a look at the simple clients in<br>ParaView3/Qt/Core/Testing.<br><br>Clint<br><div><div></div><div class="Wj3C7c"><br>Moreland, Kenneth wrote:<br>&gt;<br>&gt; Doxygen for Server Manager classes (and everything else in the<br>
&gt; ParaView source) can be found at<br>&gt;<br>&gt; <a href="http://www.paraview.org/ParaView3/Doc/Nightly/html/index.html" target="_blank">http://www.paraview.org/ParaView3/Doc/Nightly/html/index.html</a><br>&gt;<br>&gt; If you look under the Applications directory in the ParaView source,<br>
&gt; you will find a couple examples of "custom clients."<br>&gt;<br>&gt; I'll leave the details of using 3D widgets to someone else. There are<br>&gt; conventions in the representation/view SM classes to handle widgets.<br>
&gt; You might want to look at vtkSMImplicitPlaneRepresentationProxy as an<br>&gt; example.<br>&gt;<br>&gt; I am not aware of any problems with 32/64 bit issues between client<br>&gt; and server. I added some fixes to the socket communicator before the<br>
&gt; ParaView 3.2 release. I now connect from a 32 bit client to a 64 bit<br>&gt; server all the time without problems. If you are having a specific<br>&gt; issue, please let me know.<br>&gt;<br>&gt; -Ken<br>&gt;<br>&gt; ------------------------------------------------------------------------<br>
&gt;<br>&gt; *From:* paraview-bounces+kmorel=<a href="mailto:sandia.gov@paraview.org">sandia.gov@paraview.org</a><br>&gt; [mailto:<a href="mailto:paraview-bounces+kmorel=sandia.gov@paraview.org">paraview-bounces+kmorel=sandia.gov@paraview.org</a>] *On Behalf Of<br>
&gt; *jonathan grimm<br>&gt; *Sent:* Thursday, January 24, 2008 3:32 PM<br>&gt; *To:* <a href="mailto:paraview@paraview.org">paraview@paraview.org</a><br>&gt; *Subject:* [Paraview] Server Manager<br>&gt;<br>&gt; I&#39;m replacing an application that previously used<br>
&gt; vtkInputPort/vtkOutputPort.<br>&gt;<br>&gt; I&#39;m still using client server because I have large datasets (10-12GB),<br>&gt; and the GUI toolkits I&#39;m using isn&#39;t 64 bit.<br>&gt; So I&#39;m planning to use a 32bit client/64bit server.<br>
&gt;<br>&gt; I&#39;m considering using Paraview&#39;s ServerManager, and I have a few<br>&gt; questions:<br>&gt; Is there Doxygen posted somewhere for the ServerManager Library?<br>&gt; Are there c++ examples posted anywhere?<br>
&gt; Can I connect an ImagePlaneWidget to a proxied server pipeline and<br>&gt; have the result work well if the server is local?<br>&gt; vtkParallel still has warnings about 32 bit/64 bit communications. Am<br>&gt; I fine so long as I compile with vtkIdType 64 bit and don&#39;t use longs?<br>
&gt;<br>&gt; --<br>&gt; Sometimes it&#39;s hard to tell the dancer from the dance - Corwin in CoC<br>&gt;<br></div></div>&gt; ------------------------------------------------------------------------<br>&gt;<br>&gt; _______________________________________________<br>
&gt; ParaView mailing list<br>&gt; <a href="mailto:ParaView@paraview.org">ParaView@paraview.org</a><br>&gt; <a href="http://www.paraview.org/mailman/listinfo/paraview" target="_blank">http://www.paraview.org/mailman/listinfo/paraview</a><br>
&gt;<br><br></blockquote></div><br><br clear="all"><br>-- <br>Sometimes it&#39;s hard to tell the dancer from the dance - Corwin in CoC