Hello,
I am trying to upload file into MT Cloud via Mongoose. I am testing success upload just by showing message with uploaded file path.
When file has extension like .txt or .xml everything is working fine. But I often need to process text files with extension like .940 or .bai2 or even without extension.
When I try to do this, I receive this error message:

And my upload .NET code is:
using System;
using System.IO;
using System.Text;
using Mongoose.Core.Cloud;
using Mongoose.IDO.Protocol;
using Mongoose.Scripting;
namespace Mongoose.FormScripts
{
public class PMTestFileImport : FormScript
{
public void UploadFile()
{
string filePath = string.Empty;
string caption = "Select Statement File";
string filter = "*.*";
Application.ShowOpenFileDialog(ref filePath, caption, filter);
if (filePath != "")
{
Application.ShowMessage("File: " + filePath + " was uploaded");
}
}
}
}
Please how can I upload such file?