I've just downloaded OXF and am trying to get a simple xform working, but the document that OXF returns after the transform is just a default HTML document with none of my content. The problem seems to be with the following XForm component:
<xforms:select ref="ClassSchedule/SchedulingInformation/Days" appearance="compact">
<xforms:label>Days</xforms:label>
<xforms:choices>
<xforms:item>
<xforms:label>Monday</xforms:label>
<xforms:value>Monday</xforms:value>
</xforms:item>
<xforms:item>
<xforms:label>Tuesday</xforms:label>
<xforms:value>Tuesday</xforms:value>
</xforms:item>
<!-- and so forth for the rest of the days -->
</xforms:choices></xforms:select>
When I add this xforms:select element, the only output is the Orbeon copyright notice (with surrounding HTML). When I leave this element out, the output has everything else that I expect from my stylesheet, including a bunch of other xforms elements transformed into HTML.
My question is, OXF seems to use log4j for logging, judging from the jar file in lib, but I can't find any logs anywhere or any property that would turn on logging. Are there logs that I can check to see what the problem is, or does anybody have any idea what the problem could be? I copied this xform directly from the xforms example (I added the label, but the behavior is the same without it), where it works fine.
thanks,
calvin
