That&#39;s it !<br><br>And what you purpose should work well, but I would like to do a simple plugin, that doesn&#39;t need to compile Paraview, and could work with the paraview executables. <br><br>My xml file looks like this : <br>

<div style="margin-left: 40px;">&lt;ServerManagerConfiguration&gt;<br>  &lt;ProxyGroup name=&quot;sources&quot;&gt;<br><br>  &lt;!-- server manager xml for a python script that read a v3d file.<br>       the auto generated panel for this exposes everything more than we want so<br>

       a custom panel would be good --&gt;<br>    &lt;SourceProxy name=&quot;ReaderV3D&quot; class=&quot;vtkPythonProgrammableFilter&quot;<br>                 label=&quot;ReaderV3D&quot;&gt;<br>      &lt;Documentation<br>

         long_help=&quot;&quot;<br>         short_help=&quot;&quot;&gt;<br>      &lt;/Documentation&gt;<br>      <br>      &lt;!-- data set type --&gt;<br>      &lt;IntVectorProperty <br>        name=&quot;OutputDataSetType&quot; <br>

        command=&quot;SetOutputDataSetType&quot; <br>        number_of_elements=&quot;1&quot;<br>        default_values=&quot;13&quot;&gt;<br>        &lt;!-- value of 13 means MultiBlockDataSet -- Thanks Utkarsh !--&gt;<br>

      &lt;/IntVectorProperty&gt;<br>      <br>      &lt;!-- the script --&gt;<br>     &lt;StringVectorProperty <br>        name=&quot;Script&quot; <br>        command=&quot;SetScript&quot;<br>        number_of_elements=&quot;1&quot;<br>

        default_values=&quot;import pyturbo; &amp;#xa;pdo = self.GetOutput();&amp;#xa;exec &#39;Simu = pyturbo.%s&#39;%(NomSimulation)&amp;#xa;data = pyturbo.MultiBlocFromV3D(Simu, [DebutNomMai, FinNomMai], [DebutNomAero, FinNomAero], NumerosBlocs);&amp;#xa;&amp;#xa;pdo.DeepCopy(data);&amp;#xa;&quot;&gt;<br>

     &lt;/StringVectorProperty&gt;<br><br>     &lt;!-- python script references a variable &quot;NomSimulation&quot; <br>          we expose this as a property allowing the user to set it --&gt;<br>     &lt;StringVectorProperty<br>

       name=&quot;NomSimulation&quot;<br>       command=&quot;SetParameter&quot;<br>       number_of_elements=&quot;2&quot;<br>       default_values_delimiter=&quot;;&quot;<br>       default_values=&quot;NomSimulation;&#39;s&#39;&quot;&gt;<br>

     &lt;/StringVectorProperty&gt;<br><br>................ etc.<br></div><br>There isn&#39;t a  simple xml command that&#39;s looks like StringVectorProperty/SetParameter, but returning a character, isn&#39;t it ?<br>