Copied to clipboard

Flag this post as spam?

This post will be reported to the moderators as potential spam to be looked at


  • Govi 14 posts 35 karma points
    May 15, 2015 @ 02:57
    Govi
    0

    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

  • Govi 14 posts 35 karma points
    May 18, 2015 @ 17:44
    Govi
    0

    Hello,

    Anybody has done this or an integration similar to this? Please let me know. Thanks!!
    

    --Govi

  • Paul de Quant 403 posts 1520 karma points
    Sep 04, 2015 @ 07:20
    Paul de Quant
    0

    Did you find a way to do this in the end?

    Thanks

    Paul

  • Govi 14 posts 35 karma points
    Sep 04, 2015 @ 17:14
    Govi
    0

    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("");
                }
    
  • Paul de Quant 403 posts 1520 karma points
    Sep 07, 2015 @ 07:05
    Paul de Quant
    0

    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

  • Govi 14 posts 35 karma points
    Sep 08, 2015 @ 17:36
    Govi
    0

    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!!

Please Sign in or register to post replies

Write your reply to:

Draft