The XForms specification is still in flux. Instead of <xforms:label>, try using <xforms:caption>. We are aware that this is an issue. Make sure you use elements documented on the following page:
http://www.orbeon.com/oxf/doc/processors-xforms
The exceptions are logged with log4j. Do you see anything in your application server console or logs?
You can configure log4j by modifying config/log4j.xml. By default, you should see the exceptions though.
Regards,
-Erik
Calvin Smith wrote: > Hi, > > 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
