Hi Markus,<br><br>What you&#39;re trying to do is discouraged, you shouldn&#39;t attempt to access proxies from within the programmable filter.  If you were running paraview in a client-server setup, it would not work because the filter and its proxy would exist on different processes.<br>

<br>Anyway, here&#39;s some code that may work for you:<br><br>
<style type="text/css">
p, li { white-space: pre-wrap; }
</style>
<p style=" margin-top:0px; margin-bottom:0px; margin-left:0px; margin-right:0px; -qt-block-indent:0; text-indent:0px;">import paraview.servermanager as sm</p>
<p style="-qt-paragraph-type:empty; margin-top:0px; margin-bottom:0px; margin-left:0px; margin-right:0px; -qt-block-indent:0; text-indent:0px;"></p>
<p style=" margin-top:0px; margin-bottom:0px; margin-left:0px; margin-right:0px; -qt-block-indent:0; text-indent:0px;">proxies = sm.ProxyManager().GetProxiesInGroup(&quot;sources&quot;).values()</p>
<p style=" margin-top:0px; margin-bottom:0px; margin-left:0px; margin-right:0px; -qt-block-indent:0; text-indent:0px;">selfProxy = [p for p in proxies if p.GetClientSideObject() is self][0]</p><br><br>Hope this helps!<br>

<br><br>Pat<br><br><br><div class="gmail_quote">On Mon, Nov 14, 2011 at 2:07 PM, Markus Fuger <span dir="ltr">&lt;<a href="mailto:m_fuger@hotmail.com">m_fuger@hotmail.com</a>&gt;</span> wrote:<br><blockquote class="gmail_quote" style="margin:0 0 0 .8ex;border-left:1px #ccc solid;padding-left:1ex;">





<div><div dir="ltr">
Hello,<br><br>I do like to program my own plugin based on a Python Programmable filter (PPF).<br>For some feature (I want to get the file directory of the files from the input of the very first proxy in the pipeline) I need the proxy object of the PPF.<br>

<br>If I once would have this object I could then loop the Input until there is none anymore and then read the FileInfo Field. But as described I would need the proxy object of the PPF first.<br>I did several tests with the self object as well as with the proxymanager but could not find a working solution. (I have to say that I am new to ParaView as well)<br>

<br>Perhaps somebody of this mailing list could help me!?<br><br>With kind regards,<br><font color="#888888">Markus<br>                                               </font></div></div>
<br>_______________________________________________<br>
Powered by <a href="http://www.kitware.com" target="_blank">www.kitware.com</a><br>
<br>
Visit other Kitware open-source projects at <a href="http://www.kitware.com/opensource/opensource.html" target="_blank">http://www.kitware.com/opensource/opensource.html</a><br>
<br>
Please keep messages on-topic and check the ParaView Wiki at: <a href="http://paraview.org/Wiki/ParaView" target="_blank">http://paraview.org/Wiki/ParaView</a><br>
<br>
Follow this link to subscribe/unsubscribe:<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>