jph: XForms & Xpath

Hallo,

Habe gerade beim experimentieren mit Xforms wohl den XML Knoten im Kopf.

ich will eigentlich nicht nur auf die instanzen meiner source sonderen auch auf die html elemente (hier titel) zugreifen. In allen Büchern steht es geht nur leider klappts nicht.

Benutze Fireox mit XForms plugin. Hat da jemand ne Idee ?

grusz
jph

------------------
<html xmlns="http://www.w3.org/1999/xhtml" xmlns:xf="http://www.w3.org/2002/xforms">
   <head>
      <title>Hello World in XForms</title>
      <xf:model id="mm">
         <xf:instance xmlns="">
            <data>
               <PersonGivenName>Herr MeierMüller</PersonGivenName>
                                        <wupp>
                                <bla>Herr Halmakenreuter</bla>
                                        </wupp>
            </data>
         </xf:instance>
      </xf:model>
   </head>
   <body>
      <p>Type your first name in the input box. <br/>
        If you are running XForms, the output should be displayed in the output area.</p>
         <xf:input ref="PersonGivenName" incremental="true">
            xf:labelPlease enter your first name: </xf:label>
         </xf:input>
         <br />
         <xf:output value="concat('Hello ', PersonGivenName , '. We hope you like XForms!')">
            xf:labelOutput: </xf:label>
         </xf:output><br/>
         <xf:output value="'Hello World !'">
            xf:labelWorld: </xf:label>
         </xf:output><br/>

<xf:output value="/html/head/title">
            xf:labelMy Title:(</xf:label>
         </xf:output>)<br/>

<xf:output value="wupp/bla" model="mm">
            xf:labelblawupp:(</xf:label>
         </xf:output>)<br/>
   </body>
</html>