Problem with XML to add a record to a table I have created in Creator

Problem with XML to add a record to a table I have created in Creator

Can you please tell me if there is anything obviously wrong wit the xml below.

<form method="POST" action="https://creator.zoho.com/api/xml/write" >
 <input type="hidden" name ="authtoken" value="**********************************">
 <input type="hidden" name ="scope" id="scope" value="creatorapi">
 <textarea name="XMLString" >
  <ZohoCreator>
    <applicationlist>
        <application name='moreland-umbrella'>
            <formlist>
                <form name='Workers'>
                    <add>
                        <field name='Reference'>
                            <value>1</value>
                        </field>
                        <field name='Works_Number'>
                            <value>Works No. 1</value>
                        </field>
                        <field name='Name'>
                            <value>Fred Bloggs</value>
                        </field>
                        <field name='Status'>
                            <value>OK</value>
                        </field>
                    </add>
                </form>
            </formlist>
        </application>
    </applicationlist>
</ZohoCreator>
</textarea>

<input type="hidden" name="peterstanesby" value="sampleapps">
<input type="submit" value="Add Record">
</form>

I have changed it a number of times but it always comes up with a 500 Internal Server Error.

Thanks for your help.

Regards

Peter