В процессе разработки может быть очень полезно.
var fileName = "C:\\temp\\trace.txt"; function WritePropertySet(inputPS, fileName) { var fileSvc = TheApplication().GetService("EAI XML Write to File"); var outPS = TheApplication().NewPropertySet(); var tmpProp = inputPS.Copy(); tmpProp.SetProperty("FileName", fileName); fileSvc.InvokeMethod("WritePropSet", tmpProp, outPS); outPS = null; fileSvc = null; tmpProp = null; }