LoadEntryMRCommand error

No replies
Joined: 10/20/2009
Points: 11
kaltura_kcw_603.JPG

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

  ... ... ... ...
  ... ... ... ...
                String KALTURA_PARTNER_WEB_SERVICE_SECRET = "xxxxxxxxxxxxxxxxxxxxxxxxxxx";
        KalturaConfiguration kConfig = new KalturaConfiguration();
        kConfig.setPartnerId(1);
        kConfig.setEndpoint("http://..................../kalturaCE");

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