context.runExternalMethod(params)
return
'OK'
When the external method
causes NO errors, the Extfiles are made. But when the Extrenal method causes
an error, zope shows up the
standard_error_message and the ExtFiles are not made.....
I then executed the script
from another script [Script2]:
try:
context.Script1()
except:
return
'ERROR'
else:
return
'OK!'
When Script1 causes an
error (from the extrernal method) the extfiles are made. Zope shows
'ERROR'.
Why does this happen. When
I execute Script1 from Script2 without try-except the extfiles are not
made
when the script causes an
error...
What must i add
to undo all actions made in Script1?
Thanks for the
support!
Marco.