INFO messages are not errors, they are meant to help debug the LFC.
This message is indicating what may be a hazard. In swf, this case
was silently ignored, and in DHTML we are emulating that behavior, but
it is unclear what the original designer of the code intended here.
In this particular case, it seems to imply that a xpath operation is
being attempted on a datapath that does not have any data (yet). Most
likely this is innocuous and just has to do with the order in which
constraints are evaluated.
On 2008-01-29, at 21:59 EST, Fernando Germano wrote:
I need to work with some large dataset, an XML having links to
images that I
must show, basically a gallery like many around there, so I want to
do some
paging and of course lazy replication, so, the basic code looks like
this:
<view clip="true" width="540" id="cont">
<view id="list">
<simplelayout axis="x"/>
<image>
<datapath xpath="s:/items[1]/item/img_url/
text()"
replication="lazy"/>
</image>
</view>
</view>
But when I try this I get the following error:
INFO: __LZprocessOperator: p is null in Datapath for image
What am I missing?
Thank you!!