Hello,
We have developed a MediaBin connector from a .Net solution to browse VMBA assets and link them in the content the publishers create. I have attached the MediaProvider.cs code file for this purpose.
I am opening a connection using:
VirageMediaBinServer client = new VirageMediaBinServer
{
CookieContainer = new CookieContainer()
};
client.MBSession_Logon(_vmbUsername, _vmbPassword);
and logging off:
client.MBSession_Logoff();
for every click on the folder(s)/sub-folder(s). Instead of this, can I have the session open based on a authentication cookie? Please let me know.
Thanks,