I would like to know if anybody has done Umbraco integration with Digital Asset Management System, Autonomy Virage MediaBin. We have all the digital assets in MediaBin and want Umbraco backoffice to read & upload to it.
Yes Paul. We're calling the MediaBin API (http://{hostname}:8080/MediaBinWebService/VirageMediaBinServer.asmx?wsdl) from Umbraco solution to read the data.
using (var client = new VirageMediaBinServer())
{
client.CookieContainer = new CookieContainer();
client.MBSession_Logon("{username}", "{password}");
String myPager = client.MBPagerCache_CreateCollectionPager("");
}
Thanks for the reply, may I ask how you integrated it into Umbraco - did you create a custom file browser for the backoffice? If so how did you go about it?
Yes Paul, I created a custom property datatype (Browse MediaBin) through angularJS which calls a view that returns MediaBin assets using the above code. Once an asset is selected, I am saving that asset web path as the value of that datatype.
Integrating with DAM tool Virage MediaBin
Hello there,
I would like to know if anybody has done Umbraco integration with Digital Asset Management System, Autonomy Virage MediaBin. We have all the digital assets in MediaBin and want Umbraco backoffice to read & upload to it.
Any help in this matter is appreaciated!!
Thank you, Govi
Hello,
--Govi
Did you find a way to do this in the end?
Thanks
Paul
Yes Paul. We're calling the MediaBin API (http://{hostname}:8080/MediaBinWebService/VirageMediaBinServer.asmx?wsdl) from Umbraco solution to read the data.
Hi Govi,
Thanks for the reply, may I ask how you integrated it into Umbraco - did you create a custom file browser for the backoffice? If so how did you go about it?
Thanks
Paul
Yes Paul, I created a custom property datatype (Browse MediaBin) through angularJS which calls a view that returns MediaBin assets using the above code. Once an asset is selected, I am saving that asset web path as the value of that datatype.
Hope this helps!!
is working on a reply...