Hello,
I am trying to insert an asset into MediaBin by calling it through the web service from a .NET application. However I am getting a server error back that says "You are currently not logged into the MediaBin server".
I added a web reference to the MB web service, Visual Studio generated the proxy SoapHttpClientProtocol class (called VirageMediaBinServer), and I am calling it with the following code:
using (var client = new VirageMediaBinServer()) {
return client.MBContainer_InsertFile(assetUncPath, "Test Asset", null, null, 850);
}
I've also tried adding a call to MBSession_LogOnCurrentUser(), and that call succeeds but the MBContainer_InsertFile call still fails. I've also tried methods other than MBContainer_InsertFile (e.g. MBSession_GetMBObject) and they fail as well.
Does anybody have any ideas?
Thanks