R – XForm in debian

debianxformsxmpp

I have a debian server with openfire.

I want to use xform mainly for bot development.I have executed following command.

apt-get install apt-file
apt-file update
apt-file search xforms

When I do "apt-file search xforms", I get several results.

I have searched for the example and found out following code.

<message from="sender@wonderland.lit/foo" to="receiver@wonderland.lit/bar">
<x xmlns="jabber:x:data" type="form">
<title>My Special Form</title>   
<field label="Text Input" type="text-single" var="field-1"/>
</x>
</message>

But it is not displaying anything and there is no error.

Please guide me on this.

Regards,
Pankaj

Best Answer

You've to interface your webserver with an xslt processor.
If you not using apache-cocoon, you probably can use apache+php (with php-xsl module).
Please follow the XForms doc on php site.

Related Topic