Dear all,

I've already worked with TANGO + C++, but I've very little experience with
TANGO+Python.
I'm working on a project that uses Pogo + PythonHL to generate a set of
TANGO device classes.
Using POGO, I experienced some problems related to the configuration of the
polling/events/properties for an attribute. When I try to generate the code after an attribute configuration for events/properties Pogo throws the error:

 PogoException: java.io.FileNotFoundException:
/home/user/test/org/tango/test/Test.java (No such file or directory)

The xmi file is updated and after some new error messages the code too. But
the code does not contain any information regarding polling and events setting.

Here the xmi section for the attribute:


<attributes name="test_attr" attType="Scalar" rwType="READ" displayLevel="OPERATOR" polledPeriod="3000" maxX="" maxY="" allocReadMember="true" isDynamic="false">
<dataType xsi:type="pogoDsl:ShortType"/>
<changeEvent fire="false" libCheckCriteria="false"/>
<archiveEvent fire="false" libCheckCriteria="false"/>
<dataReadyEvent fire="false" libCheckCriteria="true"/>
<status abstract="false" inherited="false" concrete="true" concreteHere="true"/>
<properties description="Variabile di test" label="" unit="" standardUnit="" displayUnit="" format="" maxValue="15
00" minValue="10" maxAlarm="1300" minAlarm="8" maxWarning="1100" minWarning="9" deltaTime="" deltaValue=""/>
<eventCriteria relChange="" absChange="" period="4000"/>
</attributes>


Here the generate code for the attribute


# ———-
# Attributes
# ———-

test_attr = attribute(
dtype='int16',
max_value=1500,
min_value=10,
max_alarm=1300,
min_alarm=8,
max_warning=1100,
min_warning=9,
doc="Variabile di test",
)


Thanks in advance for your help

Elisabetta