Hi,
I need to send XML file from Mongoose to IDM via ION API in MT Cloud.
I have this FormScript in which I am downloading XML file from url:
//<Ref>System.Net.Http.dll</Ref>
using System;
using System.IO;
using System.Net;
using System.Text;
using System.Xml;
using Mongoose.IDO.Protocol;
using Mongoose.Scripting;
namespace Mongoose.FormScripts
{
public class PMSendFileIDM : FormScript
{
public void DownloadFile()
{
XmlDocument xmlDoc = new XmlDocument();
xmlDoc.Load(new StreamReader(WebRequest.Create("<a href="https://www.nbp.pl/kursy/xml/LastA.xml">">www.nbp.pl/.../LastA.xml").GetResponse().GetResponseStream()</a>, Encoding.GetEncoding(28592)));
Application.ShowMessage(xmlDoc.OuterXml);
}
public void SendToIDM()
{
}
}
}
But I don't know how to fill up parameters in this ION API for IDM:

Thanks for any help.