The problem might be that your xml Input line looks like:<br>&lt;InputProperty name=&quot;Input&quot; command=&quot;SetInput&quot;&gt;<br><br>When all my custom ones are using:<br>&lt;InputProperty name=&quot;Input&quot; command=&quot;SetInputConnection&quot;&gt;
<br><br>Also your CMakeLists looks odd I generally use a format somthing like this<br>PROJECT(Cloud)<br>FIND_PACKAGE(ParaView REQUIRED)<br>INCLUDE(${PARAVIEW_USE_FILE})<br>&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;<div id="1f75" class="ArwC7c ckChnd">
&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;  
<br>ADD_PARAVIEW_PLUGIN(CloudSMPlugin &quot;1.0&quot;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp; <br>&nbsp;&nbsp;&nbsp; &nbsp;&nbsp;&nbsp; &nbsp;&nbsp;&nbsp; SERVER_MANAGER_XML Cloud.xml<br>&nbsp;&nbsp;&nbsp; &nbsp;&nbsp;&nbsp; &nbsp;&nbsp;&nbsp; SERVER_MANAGER_SOURCES vtkCloud.cxx<br>&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp; )<br>#SOURCES can be used to reference other cxx files your server manager sources includes
<br>#like SOURCES realCloud.cxx<br>&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;  <br>target_link_libraries(CloudSMPlugin)</div><br><br><div class="gmail_quote">On Dec 11, 2007 5:08 PM, Kent Eschenberg &lt;<a href="mailto:eschenbe@psc.edu">
eschenbe@psc.edu</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;">Clint: Thanks! Yes and yes; files attached. &nbsp;- Kent<br><div>
<div></div><div class="Wj3C7c"><br><a href="mailto:clinton@elemtech.com">clinton@elemtech.com</a> wrote:<br>&gt; Are your custom filters in the &quot;filters&quot; group in your server manager xml?<br>&gt; &lt;ProxyGroup name=&quot;filters&quot;&gt;
<br>&gt;<br>&gt; And your server manager xml for the filters was added to the build using<br>&gt; PARAVIEW_INCLUDE_SERVERMANAGER_RESOURCES?<br>&gt;<br>&gt; Clint<br>&gt;<br>&gt; On Tuesday 11 December 2007 2:40:22 pm Kent Eschenberg wrote:
<br>&gt;&gt; Using the notes at<br>&gt;&gt;<br>&gt;&gt; &nbsp; &nbsp; <a href="http://www.paraview.org/Wiki/ExtendingParaView" target="_blank">http://www.paraview.org/Wiki/ExtendingParaView</a><br>&gt;&gt;<br>&gt;&gt; I&#39;ve successfully added two custom readers to 
3.2.1. However my custom<br>&gt;&gt; filter does not show up in the pulldown menu for filters. All 3 are<br>&gt;&gt; assigned to<br>&gt;&gt;<br>&gt;&gt; &nbsp; &nbsp;PARAVIEW_EXTRA_EXTERNAL_MODULE<br>&gt;&gt;<br>&gt;&gt; and the &quot;USE&quot; and &quot;ON&quot; CMake options for all 3 are set. The debugger can
<br>&gt;&gt; find the constructor for the custom filter. Is there anything needed to add<br>&gt;&gt; the name of the custom filter to the filter menu?<br>&gt;&gt;<br>&gt;&gt; The Tools-&gt;Manage Plugins menu is empty.<br>
&gt;&gt;<br>&gt;&gt; TIA!<br>&gt;&gt; Kent<br>&gt;&gt; Pittsburgh Supercomputing Center<br></div></div><br>SET (cloud_SRCS<br> &nbsp;${cloud_SOURCE_DIR}/vtkCloud.cxx<br> &nbsp;)<br><br>INCLUDE_DIRECTORIES(${cloud_SOURCE_DIR})<br>INCLUDE_DIRECTORIES(${cloud_SOURCE_DIR}/..)
<br><br>PARAVIEW_INCLUDE_WRAPPED_SOURCES(&quot;${cloud_SRCS}&quot;)<br><br>PARAVIEW_INCLUDE_SERVERMANAGER_RESOURCES(&quot;${cloud_SOURCE_DIR}/cloudSM.xml&quot;)<br><br>_______________________________________________<br>ParaView mailing list
<br><a href="mailto:ParaView@paraview.org">ParaView@paraview.org</a><br><a href="http://www.paraview.org/mailman/listinfo/paraview" target="_blank">http://www.paraview.org/mailman/listinfo/paraview</a><br><br></blockquote>
</div><br>