XML Document

I’m having a problem uploading this XML document in WMS_Administrator_Integration_B2B_Document Types Administration_Document Type.

<?xml version="1.0"?>

ns:WesbankResponse
ns:TransactionHeader
ns:TransactionIDTOYOTA</ns:TransactionID>
ns:TransactionDateTime20110403</ns:TransactionDateTime>
ns:TransactionTypecreditCheck</ns:TransactionType>
</ns:TransactionHeader>
ns:ResponseStatus
ns:ResponseCode13</ns:ResponseCode>
ns:ResponseMessagesuccess</ns:ResponseMessage>
</ns:ResponseStatus>
</ns:WesbankResponse>

I’m getting Error:
You uploaded a sample document that is not valid. Provide a sample document with a valid root node

Please Any suggestions.
Thanks

hi stahorse,

the xml you r using is not a valid one. you haven’t done the namespace declaration and using it…try it in this way first declare it in the root node then only u can use it in subsequent nodes.

<?xml version="1.0"?>

ns:TransactionHeader
ns:TransactionIDTOYOTA</ns:TransactionID>
ns:TransactionDateTime20110403</ns:TransactionDateTime>
ns:TransactionTypecreditCheck</ns:TransactionType>
</ns:TransactionHeader>
ns:ResponseStatus
ns:ResponseCode13</ns:ResponseCode>
ns:ResponseMessagesuccess</ns:ResponseMessage>
</ns:ResponseStatus>

Thanks Man Thanks