Hi,<br><br>I am having some basic problems getting Paraview to use my simple reader plugin. After loading the two plugins (one  for the server side and one for the client side) in my GUI, if I try to open a new file with my new extension (txt or txts) it neither recognizes the extension, nor displays my new reader as a choice among the selection of possible readers for unrecognized extensions.<br>
<br>I followed the process for writing a reader plugin  in chapter 19.4 of the Paraview guide, creating the files TxtReader.qrc, TxtReaderGUI.xml, and TxtReaderSM.xml along with the code vtkTxtReader.cxx and vtkTxtReader.h (which are identical to vtkSimplePointsReader with the only the class name changed). The both client and server side build without problems. I then load both the server side plugin and the client side plugin, in that order, in my Paraview GUI, which also goes without problems or errors. But after all this neither my new file extension nor my new reader are displayed when I go to open a sample .txt file.<br>
<br>Any ideas how to debug? Below I have included my .qrc, .xml, and CMakeLists.txt files<br><br>Thanks,<br>Christine<br><br>CMakeLists.txt:<br>cmake_minimum_required(VERSION 2.4)<br>FIND_PACKAGE(ParaView REQUIRED)<br>INCLUDE(${PARAVIEW_USE_FILE})<br>
#define the server-side portion of the reader plugin<br>ADD_PARAVIEW_PLUGIN(TxtReaderSMPlugin &quot;1.0&quot;<br>        SERVER_MANAGER_SOURCES vtkTxtReader.cxx<br>        SERVER_MANAGER_XML  TxtReaderSM.xml)<br>#define the client-side portion of the reader plugin<br>
ADD_PARAVIEW_PLUGIN(TxtReaderGUIPlugin &quot;1.0&quot;<br>        GUI_RESOURCES TxtReader.qrc)<br><br> TxtReader.qrc:<br>&lt;RCC&gt;<br>        &lt;qresource&gt;<br>                &lt;file&gt;TxtReaderGUI.xml&lt;/file&gt;<br>
        &lt;/qresource&gt;<br>&lt;/RCC&gt;<br><br>TxtReaderSM.xml:<br>&lt;ServerManagerConfiguration&gt;<br>        &lt;ProxyGroup name=&quot;sources&quot;&gt;<br>                &lt;SourceProxy name=&quot;TxtReader&quot; class=&quot;vtkTxtReader&quot;&gt;<br>
                        &lt;StringVectorProperty<br>                                name=&quot;FileName&quot;<br>                                command=&quot;SetFileName&quot;<br>                                number_of_elements=&quot;1&quot;&gt;<br>
                                &lt;FileListDomain name=&quot;files&quot;/&gt;<br>                                &lt;Documentation&gt;<br>                                        Reads in points from ascii file.<br>                                &lt;/Documentation&gt;<br>
                        &lt;/StringVectorProperty&gt;<br>                &lt;/SourceProxy&gt;<br>        &lt;/ProxyGroup&gt;<br>&lt;/ServerManagerConfiguration&gt;<br><br>TxtReaderGUI.xml:<br>&lt;ParaViewReaders&gt;<br>        &lt;Reader name=&quot;TxtReader&quot;<br>
                        extensions=&quot;txt txts&quot;<br>                        file_description=&quot;reads in ascii, one point per line&quot;&gt;<br>        &lt;/Reader&gt;<br>&lt;ParaViewReaders&gt;<br>