A gear intended for wireless output needs to have the wml device output specified in the gear manifest for each gear mode the gear uses, as illustrated in the following code sample:

<gear-modes>
  <gear-mode name="content">
    <display-modes>
      <display-mode name="shared">
        <device-output name="html">/html/DocExchShared.jsp</device-output>
        <device-output name="wml">/wml/DocExchShared.jsp</device-output>
      </display-mode>
      <display-mode name="full">
        <device-output name="html">/html/DocExchFull.jsp</device-output>
        <device-output name="wml">/wml/DocExchFull.jsp</device-output>
      </display-mode>
    </display-modes>
  </gear-mode>
  <gear-mode name="userConfig">
    <display-modes>
      <display-mode name="full">
        <device-output name="html">/html/UserConfig.jsp</device-output>
        <device-output name="wml">/wml/UserConfig.jsp</device-output>
      </display-mode>
    </display-modes>
  </gear-mode>

<!-- ADDITIONAL GEAR MODES GO HERE --!>

</gear-modes>
 
loading table of contents...