Copyright © 2012 Kaltura Inc.
All Rights Reserved. Designated trademarks and brands are the property of their respective owners.
Use of this web site constitutes acceptance of the Terms of Use and Privacy Policy.
EduVideo.org
Hi All,
I am very new to Kaltura and I am trying to integrate CW in my website using the steps mentioned in Kaltura CW Guide, however, encountering "LoadEntryMRCommand ==> fault, load show/entry faild please try again later..." error. Currently, I have deployed Kaltura CE on the linux box and I am using Java Client w/ SWFObject.js (version 2) to use this service. Anyway, below please find the snnipet of my code implementation....
KalturaClient kClient = new KalturaClient(kConfig);
KalturaSessionService kService = new KalturaSessionService(kClient);
String ks = kService.start(KALTURA_PARTNER_WEB_SERVICE_SECRET);
session.setAttribute( "ks", ks );
... ... ... ...
... ... ... ...
<div id="flashContainer">
<span><input type="button" value="Step 1 - Browse & Select" /></span>
<div id="uploader"></div>
<script language="javascript" type="text/javascript">
var kSession="<%=request.getSession().getAttribute("ks")%>";
alert("Session id: " + kSession);
var flashVars = {
uid : 1,
partnerId: 1,
ks: kSession,
afterAddEntry: "onContributionWizardAfterAddEntry",
close: "onContributionWizardClose",
showCloseButton: false,
Premissions: 1
};
var params = {
allowScriptAccess: "always",
allowNetworking: "all",
wmode: "opaque"
};
swfobject.embedSWF("http://......./kalturaCE/kcw/ui_conf_id/603", "uploader", "900", "700", "9.0.0", false, flashVars, params);
Note: Currently, I am using ui_conf_id = 603 which comes with the Kaltura CE. On one of the posts, someone has suggested to 'clone' the UIConf, I tried do that as well however got "internal server" ... I need to look into that further as well. :))
Anyway, when I deploy the above jsp, I am getting that error. I have attached the screenshot of the same.
I am still in the process of finding the root cause however just posting here to see anybody has encounter the same issue and has any suggestion on debugging/resolving. Any help or suggestion will be greatly appreciated..
Cheers!!