Logging in JCAPS

Hi,

First of all, sorry for my English but I will try to make my best!

I'm new to JCAPS.

I'm doing a simple BPEL flow in eEnsight. When i open a window property of an activity, i read Logger Propertyes. How I can use it?

Where the Logger write ?

Thanks for your help,

bye,

Diana

[329 byte] By [diana78Italy] at [2007-11-26 11:03:49]
# 1
Click on the far right of the "Logger" property value field, on the"...". A dialog box will open where you can construct a log messageusing string concatenation and values in OTD fields. Assign the resultto "Information". The message will show up in the server.log.
mczapski at 2007-7-7 3:17:44 > top of Java-index,Java Enterprise System,Java Composite Application Platform Suite -- General Discussion...
# 2
Thanks for your help. I have two questions: when I assign a String to Information , I receive a warning message of Conversion Problem. Which type is Information?My OTD is composite of array. How i Can acces to one element of array in dialog
diana78Italy at 2007-7-7 3:17:44 > top of Java-index,Java Enterprise System,Java Composite Application Platform Suite -- General Discussion...
# 3
Treat these targets as strings. You cannot just assign an OTD to a string and expect it to be formatted for display. There is no nice toString() method to do that. You can concatenate a bunch of fields and assign the result to Information to see what is going on.
mczapski at 2007-7-7 3:17:44 > top of Java-index,Java Enterprise System,Java Composite Application Platform Suite -- General Discussion...
# 4

I run ahead of myself.

To access an element in an array/repeating node you need to create a predicate on the repeating node that uses a fixed or a variable index. This will insert an additonal node into the OTD node tree you see in the Business Process Editor canvas. You then use the values by referencing the specific node or its subnodes in an expression.

see eInsight User Guide, 5.1.2, section 5.3.1 Using Repeating Nodes, pp. 71-73

mczapski at 2007-7-7 3:17:44 > top of Java-index,Java Enterprise System,Java Composite Application Platform Suite -- General Discussion...