Error: A document processed by the JRC engine cannot be opened in the C++

Hi,
I developed a Web Application, wich have some Crystal Reports. I am using VS2010, C#, Framework 4 and I installed the last version of CR.
The thing is that if I run the application with Visual Studio it works fine, it show the reportes without errors, but when I deploy it (in the same machine, just to try), I am getting the error:
Unsupported Operation. A document processed by the JRC engine cannot be opened in the C++ stack
[COMException (0x80041811): Unsupported Operation. A document processed by the JRC engine cannot be opened in the C+ stack+
   +CrystalDecisions.ReportAppServer.ClientDoc.ReportClientDocumentClass.Open(Object& DocumentPath, Int32 Options) 0
   +CrystalDecisions.ReportAppServer.ReportClientDocumentWrapper.Open(Object& DocumentPath, Int32 Options) 147
   +CrystalDecisions.ReportAppServer.ReportClientDocumentWrapper.EnsureDocumentIsOpened() 422
[CrystalReportsException: Could not load the report.]
   +CrystalDecisions.ReportAppServer.ReportClientDocumentWrapper.EnsureDocumentIsOpened() 549
   +CrystalDecisions.CrystalReports.Engine.ReportDocument.Load(String filename, OpenReportMethod openMethod, Int16 parentJob) 1613
   +CrystalDecisions.CrystalReports.Engine.ReportClass.Load(String reportName, OpenReportMethod openMethod, Int16 parentJob) 161
   +CrystalDecisions.CrystalReports.Engine.ReportDocument.EnsureLoadReport() 168
   +CrystalDecisions.CrystalReports.Engine.ReportDocument.get_ReportDefinition() 73
   +AplicacionWeb.Shared.PrintReports.ImprimirReservaEvento(Int32 idEvento, Int32 idTipoEvento, String rutaNombreReporte) 143
   +System.Web.UI.WebControls.Button.RaisePostBackEvent(String eventArgument) 154
   +System.Web.UI.Page.ProcessRequestMain(Boolean includeStagesBeforeAsyncPoint, Boolean includeStagesAfterAsyncPoint) 3707
This is the portion of code that calls the report.
        protected void btnImprimirReserva_Click(object sender, EventArgs e)
        {            PrintReports printReports = new PrintReports();
            string ruta = string.Empty;
            int idEvento = int.Parse(hdnIdEvento.Value);
            int idTipoEvento= int.Parse(ddlTipoDeEvento.SelectedValue);
                ruta = Server.MapPath("/Reportes
rptEvento.rpt");
                printReports.ImprimirReservaEvento(idEvento, idTipoEvento, ruta);
public void ImprimirReservaEvento(int idEvento, int idTipoEvento, string rutaNombreReporte)
        {            int cantCopias = (idTipoEvento == TiposEvento.Egreso.GetHashCode() ? 3 : 2);
            TextObject originalDuplicado;
            rptEvento oReporte = new rptEvento();
            oReporte.FileName = rutaNombreReporte;
            originalDuplicado = (TextObject)oReporte.ReportDefinition.ReportObjects["txtOriginalDuplicado"];
            for (int i = 0; i < cantCopias; i++)
                oReporte.SetParameterValue("@id_evento", idEvento);
                if (i == 0)
                    originalDuplicado.Text = "Original";
                if (i == 1)
                    originalDuplicado.Text = "Duplicado";
                if (i==2)
                    originalDuplicado.Text = "Triplicado";   
                oReporte.PrintToPrinter(1, false, 0, 0);
I tried several things but I can not solve the problem. Could you please help me with that issue?
Edited by: frangambino on Feb 15, 2012 4:20 AM

Hi,
Take a look at below threads where this issue is discussed,
[http://forums.sdn.sap.com/thread.jspa?threadID=2011850|http://forums.sdn.sap.com/thread.jspa?threadID=2011850]
[http://forums.sdn.sap.com/thread.jspa?threadID=1975259|http://forums.sdn.sap.com/thread.jspa?threadID=1975259]
[http://forums.sdn.sap.com/thread.jspa?threadID=2031409|http://forums.sdn.sap.com/thread.jspa?threadID=2031409]\
Also, is it a 64 bit machine? check the target platform of the application and set it accordingly.
Few things to try
- Check if the reports exist and are accessible by the application (permissions, filepath,)
- Do not publish the report using the publish option, just as a test copy them manually.
See if this helps,
- Bhushan.

Similar Messages

  • A document processed by the JRC engine cannot be opened in the C++ stack.

    I keep getting this error message after I deploy a Visual Studio 2010 .net web application to my server.  The application works perfectly in the development environment but it will not work on my Win 2003 32bit IIS6.0 web server.  Below is also the error logged into the windows application log file.
    Event Type:     Warning
    Event Source:     ASP.NET 4.0.30319.0
    Event Category:     Web Event
    Event ID:     1309
    Date:          8/5/2011
    Time:          9:38:39 AM
    User:          N/A
    Computer:     IM-WEB1
    Description:
    Event code: 3005
    Event message: An unhandled exception has occurred.
    Event time: 8/5/2011 9:38:39 AM
    Event time (UTC): 8/5/2011 2:38:39 PM
    Event ID: f247f1c1b10745cabfad5864403ef15f
    Event sequence: 11
    Event occurrence: 1
    Event detail code: 0
    Application information:
        Application domain: /LM/W3SVC/1922464104/Root-2-129570287010549171
        Trust level: Full
        Application Virtual Path: /
        Application Path: E:\websites\enmarkscanning\
        Machine name: IM-WEB1
    Process information:
        Process ID: 8048
        Process name: w3wp.exe
        Account name: NT AUTHORITY\NETWORK SERVICE
    Exception information:
        Exception type: CrystalReportsException
        Exception message: Load report failed.
       at CrystalDecisions.ReportAppServer.ReportClientDocumentWrapper.EnsureDocumentIsOpened()
       at CrystalDecisions.ReportAppServer.ReportClientDocumentWrapper.get_ProductLocaleID()
       at CrystalDecisions.ReportSource.CachedObjectReportSource.GetReport(RequestContext context, Boolean bAddToCacheWhenCreated)
       at CrystalDecisions.Web.CrystalReportSource.get_ReportDocument()
       at Reports_POD.Page_Load(Object sender, EventArgs e)
       at System.Web.UI.Control.OnLoad(EventArgs e)
       at System.Web.UI.Control.LoadRecursive()
       at System.Web.UI.Page.ProcessRequestMain(Boolean includeStagesBeforeAsyncPoint, Boolean includeStagesAfterAsyncPoint)
    Unsupported Operation. A document processed by the JRC engine cannot be opened in the C++ stack.
       at CrystalDecisions.ReportAppServer.ClientDoc.ReportClientDocumentClass.Open(Object& DocumentPath, Int32 Options)
       at CrystalDecisions.ReportAppServer.ReportClientDocumentWrapper.Open(Object& DocumentPath, Int32 Options)
       at CrystalDecisions.ReportAppServer.ReportClientDocumentWrapper.EnsureDocumentIsOpened()
    Request information:
        Request URL: http://scanning/Rpt_POD.aspx?ID=169663
        Request path: /Rpt_POD.aspx
        User host address: 10.69.11.3
        User: wills
        Is authenticated: True
        Authentication Type: Forms
        Thread account name: NT AUTHORITY\NETWORK SERVICE
    Thread information:
        Thread ID: 6
        Thread account name: NT AUTHORITY\NETWORK SERVICE
        Is impersonating: False
        Stack trace:    at CrystalDecisions.ReportAppServer.ReportClientDocumentWrapper.EnsureDocumentIsOpened()
       at CrystalDecisions.ReportAppServer.ReportClientDocumentWrapper.get_ProductLocaleID()
       at CrystalDecisions.ReportSource.CachedObjectReportSource.GetReport(RequestContext context, Boolean bAddToCacheWhenCreated)
       at CrystalDecisions.Web.CrystalReportSource.get_ReportDocument()
       at Reports_POD.Page_Load(Object sender, EventArgs e)
       at System.Web.UI.Control.OnLoad(EventArgs e)
       at System.Web.UI.Control.LoadRecursive()
       at System.Web.UI.Page.ProcessRequestMain(Boolean includeStagesBeforeAsyncPoint, Boolean includeStagesAfterAsyncPoint)
    Edited by: Don Williams on Aug 5, 2011 12:35 PM

    Here is the error details in the web browser
    Unsupported Operation. A document processed by the JRC engine cannot be opened in the C++ stack.
    Description: An unhandled exception occurred during the execution of the current web request. Please review the stack trace for more information about the error and where it originated in the code.
    Exception Details: System.Runtime.InteropServices.COMException: Unsupported Operation. A document processed by the JRC engine cannot be opened in the C++ stack.
    Source Error:
    An unhandled exception was generated during the execution of the current web request. Information regarding the origin and location of the exception can be identified using the exception stack trace below.
    Stack Trace:
    [COMException (0x80041811): Unsupported Operation. A document processed by the JRC engine cannot be opened in the C++ stack.]
       CrystalDecisions.ReportAppServer.ClientDoc.ReportClientDocumentClass.Open(Object& DocumentPath, Int32 Options) +0
       CrystalDecisions.ReportAppServer.ReportClientDocumentWrapper.Open(Object& DocumentPath, Int32 Options) +95
       CrystalDecisions.ReportAppServer.ReportClientDocumentWrapper.EnsureDocumentIsOpened() +270
    [CrystalReportsException: Load report failed.]
       CrystalDecisions.ReportAppServer.ReportClientDocumentWrapper.EnsureDocumentIsOpened() +333
       CrystalDecisions.ReportAppServer.ReportClientDocumentWrapper.get_ProductLocaleID() +31
       CrystalDecisions.ReportSource.CachedObjectReportSource.GetReport(RequestContext context, Boolean bAddToCacheWhenCreated) +438
       CrystalDecisions.Web.CrystalReportSource.get_ReportDocument() +201
       Reports_POD.Page_Load(Object sender, EventArgs e) +54
       System.Web.UI.Control.OnLoad(EventArgs e) +91
       System.Web.UI.Control.LoadRecursive() +74
       System.Web.UI.Page.ProcessRequestMain(Boolean includeStagesBeforeAsyncPoint, Boolean includeStagesAfterAsyncPoint) +2207
    Any help is greatly appreciated.
    Thanks!

  • Load report failed - document cannot be opened in the c++ stack

    I am now receiving an error when trying to load a report into the report viewer. The error I am recieving is "Load report failed ... Unsupported operation. A document processed by the JRC engine cannot be opened in the C++ stack"
    <br />
    Here is the error stack:
    <br /><br/ />
    See the end of this message for details on invoking
    just-in-time (JIT) debugging instead of this dialog box.
    <br />
    Exception Text **************
    CrystalDecisions.Shared.CrystalReportsException: Load report failed. ---> System.Runtime.InteropServices.COMException (0x80041811): Unsupported Operation. A document processed by the JRC engine cannot be opened in the C++ stack.
       at CrystalDecisions.ReportAppServer.ClientDoc.ReportClientDocumentClass.Open(Object& DocumentPath, Int32 Options)
       at CrystalDecisions.ReportAppServer.ReportClientDocumentWrapper.Open(Object& DocumentPath, Int32 Options)
       at CrystalDecisions.ReportAppServer.ReportClientDocumentWrapper.EnsureDocumentIsOpened()
       --- End of inner exception stack trace ---
       at CrystalDecisions.ReportAppServer.ReportClientDocumentWrapper.EnsureDocumentIsOpened()
       at CrystalDecisions.CrystalReports.Engine.ReportDocument.Load(String filename, OpenReportMethod openMethod, Int16 parentJob)
       at CrystalDecisions.CrystalReports.Engine.ReportDocument.Load(String filename)
       at IPAM_Reporting.frmCrystalReport.frmCrystalReport_Load(Object sender, EventArgs e)
       at System.EventHandler.Invoke(Object sender, EventArgs e)
       at System.Windows.Forms.Form.OnLoad(EventArgs e)
       at System.Windows.Forms.Form.OnCreateControl()
       at System.Windows.Forms.Control.CreateControl(Boolean fIgnoreVisible)
       at System.Windows.Forms.Control.CreateControl()
       at System.Windows.Forms.Control.WmShowWindow(Message& m)
       at System.Windows.Forms.Control.WndProc(Message& m)
       at System.Windows.Forms.ScrollableControl.WndProc(Message& m)
       at System.Windows.Forms.ContainerControl.WndProc(Message& m)
       at System.Windows.Forms.Form.WmShowWindow(Message& m)
       at System.Windows.Forms.Form.WndProc(Message& m)
       at System.Windows.Forms.Control.ControlNativeWindow.OnMessage(Message& m)
       at System.Windows.Forms.Control.ControlNativeWindow.WndProc(Message& m)
       at System.Windows.Forms.NativeWindow.Callback(IntPtr hWnd, Int32 msg, IntPtr wparam, IntPtr lparam)
    Loaded Assemblies **************
    mscorlib
        Assembly Version: 2.0.0.0
        Win32 Version: 2.0.50727.5444 (Win7SP1GDR.050727-5400)
        CodeBase: file:///C:/Windows/Microsoft.NET/Framework/v2.0.50727/mscorlib.dll
    IPAM_Reporting
        Assembly Version: 1.1.0.0
        Win32 Version: 1.0.0.0
        CodeBase: file:///C:/Program%20Files%20(x86)/Microsoft/IPAM%20Reporting%20System/IPAM_Reporting.exe
    System.Windows.Forms
        Assembly Version: 2.0.0.0
        Win32 Version: 2.0.50727.5420 (Win7SP1.050727-5400)
        CodeBase: file:///C:/Windows/assembly/GAC_MSIL/System.Windows.Forms/2.0.0.0__b77a5c561934e089/System.Windows.Forms.dll
    System
        Assembly Version: 2.0.0.0
        Win32 Version: 2.0.50727.5420 (Win7SP1.050727-5400)
        CodeBase: file:///C:/Windows/assembly/GAC_MSIL/System/2.0.0.0__b77a5c561934e089/System.dll
    System.Drawing
        Assembly Version: 2.0.0.0
        Win32 Version: 2.0.50727.5420 (Win7SP1.050727-5400)
        CodeBase: file:///C:/Windows/assembly/GAC_MSIL/System.Drawing/2.0.0.0__b03f5f7f11d50a3a/System.Drawing.dll
    Infragistics2.Win.v10.3
        Assembly Version: 10.3.20103.1000
        Win32 Version: 10.3.20103.1000
        CodeBase: file:///C:/Program%20Files%20(x86)/Microsoft/IPAM%20Reporting%20System/Infragistics2.Win.v10.3.DLL
    System.Xml
        Assembly Version: 2.0.0.0
        Win32 Version: 2.0.50727.5420 (Win7SP1.050727-5400)
        CodeBase: file:///C:/Windows/assembly/GAC_MSIL/System.Xml/2.0.0.0__b77a5c561934e089/System.Xml.dll
    Infragistics2.Shared.v10.3
        Assembly Version: 10.3.20103.1000
        Win32 Version: 10.3.20103.1000
        CodeBase: file:///C:/Program%20Files%20(x86)/Microsoft/IPAM%20Reporting%20System/Infragistics2.Shared.v10.3.DLL
    Infragistics2.Win.UltraWinExplorerBar.v10.3
        Assembly Version: 10.3.20103.1000
        Win32 Version: 10.3.20103.1000
        CodeBase: file:///C:/Program%20Files%20(x86)/Microsoft/IPAM%20Reporting%20System/Infragistics2.Win.UltraWinExplorerBar.v10.3.DLL
    Infragistics2.Win.UltraWinToolbars.v10.3
        Assembly Version: 10.3.20103.1000
        Win32 Version: 10.3.20103.1000
        CodeBase: file:///C:/Program%20Files%20(x86)/Microsoft/IPAM%20Reporting%20System/Infragistics2.Win.UltraWinToolbars.v10.3.DLL
    Infragistics2.Win.UltraWinDock.v10.3
        Assembly Version: 10.3.20103.1000
        Win32 Version: 10.3.20103.1000
        CodeBase: file:///C:/Program%20Files%20(x86)/Microsoft/IPAM%20Reporting%20System/Infragistics2.Win.UltraWinDock.v10.3.DLL
    System.Configuration
        Assembly Version: 2.0.0.0
        Win32 Version: 2.0.50727.5420 (Win7SP1.050727-5400)
        CodeBase: file:///C:/Windows/assembly/GAC_MSIL/System.Configuration/2.0.0.0__b03f5f7f11d50a3a/System.Configuration.dll
    Infragistics2.Win.Misc.v10.3
        Assembly Version: 10.3.20103.1000
        Win32 Version: 10.3.20103.1000
        CodeBase: file:///C:/Program%20Files%20(x86)/Microsoft/IPAM%20Reporting%20System/Infragistics2.Win.Misc.v10.3.DLL
    Accessibility
        Assembly Version: 2.0.0.0
        Win32 Version: 2.0.50727.4927 (NetFXspW7.050727-4900)
        CodeBase: file:///C:/Windows/assembly/GAC_MSIL/Accessibility/2.0.0.0__b03f5f7f11d50a3a/Accessibility.dll
    Infragistics2.Win.UltraWinEditors.v10.3
        Assembly Version: 10.3.20103.1000
        Win32 Version: 10.3.20103.1000
        CodeBase: file:///C:/Program%20Files%20(x86)/Microsoft/IPAM%20Reporting%20System/Infragistics2.Win.UltraWinEditors.v10.3.DLL
    SQLDatabaseConnectivity
        Assembly Version: 1.0.0.0
        Win32 Version: 1.0.0.0
        CodeBase: file:///C:/Program%20Files%20(x86)/Microsoft/IPAM%20Reporting%20System/SQLDatabaseConnectivity.DLL
    System.Data
        Assembly Version: 2.0.0.0
        Win32 Version: 2.0.50727.5420 (Win7SP1.050727-5400)
        CodeBase: file:///C:/Windows/assembly/GAC_32/System.Data/2.0.0.0__b77a5c561934e089/System.Data.dll
    System.Transactions
        Assembly Version: 2.0.0.0
        Win32 Version: 2.0.50727.4927 (NetFXspW7.050727-4900)
        CodeBase: file:///C:/Windows/assembly/GAC_32/System.Transactions/2.0.0.0__b77a5c561934e089/System.Transactions.dll
    System.EnterpriseServices
        Assembly Version: 2.0.0.0
        Win32 Version: 2.0.50727.5420 (Win7SP1.050727-5400)
        CodeBase: file:///C:/Windows/assembly/GAC_32/System.EnterpriseServices/2.0.0.0__b03f5f7f11d50a3a/System.EnterpriseServices.dll
    System.Core
        Assembly Version: 3.5.0.0
        Win32 Version: 3.5.30729.5420 built by: Win7SP1
        CodeBase: file:///C:/Windows/assembly/GAC_MSIL/System.Core/3.5.0.0__b77a5c561934e089/System.Core.dll
    CrystalDecisions.Windows.Forms
        Assembly Version: 13.0.2000.0
        Win32 Version: 13.0.0.99
        CodeBase: file:///C:/Windows/assembly/GAC_MSIL/CrystalDecisions.Windows.Forms/13.0.2000.0__692fbea5521e1304/CrystalDecisions.Windows.Forms.dll
    CrystalDecisions.Shared
        Assembly Version: 13.0.2000.0
        Win32 Version: 13.0.0.99
        CodeBase: file:///C:/Windows/assembly/GAC_MSIL/CrystalDecisions.Shared/13.0.2000.0__692fbea5521e1304/CrystalDecisions.Shared.dll
    CrystalDecisions.ReportSource
        Assembly Version: 13.0.2000.0
        Win32 Version: 13.0.0.99
        CodeBase: file:///C:/Windows/assembly/GAC_MSIL/CrystalDecisions.ReportSource/13.0.2000.0__692fbea5521e1304/CrystalDecisions.ReportSource.dll
    log4net
        Assembly Version: 1.2.10.0
        Win32 Version: 1.2.10.0
        CodeBase: file:///C:/Windows/assembly/GAC_32/log4net/1.2.10.0__692fbea5521e1304/log4net.dll
    System.Web
        Assembly Version: 2.0.0.0
        Win32 Version: 2.0.50727.5420 (Win7SP1.050727-5400)
        CodeBase: file:///C:/Windows/assembly/GAC_32/System.Web/2.0.0.0__b03f5f7f11d50a3a/System.Web.dll
    CrystalDecisions.CrystalReports.Engine
        Assembly Version: 13.0.2000.0
        Win32 Version: 13.0.0.99
        CodeBase: file:///C:/Windows/assembly/GAC_MSIL/CrystalDecisions.CrystalReports.Engine/13.0.2000.0__692fbea5521e1304/CrystalDecisions.CrystalReports.Engine.dll
    CrystalDecisions.ReportAppServer.CommLayer
        Assembly Version: 13.0.2000.0
        Win32 Version: 13.0.0.99
        CodeBase: file:///C:/Windows/assembly/GAC_MSIL/CrystalDecisions.ReportAppServer.CommLayer/13.0.2000.0__692fbea5521e1304/CrystalDecisions.ReportAppServer.CommLayer.dll
    CrystalDecisions.ReportAppServer.ClientDoc
        Assembly Version: 13.0.2000.0
        Win32 Version: 13.0.0.99
        CodeBase: file:///C:/Windows/assembly/GAC_MSIL/CrystalDecisions.ReportAppServer.ClientDoc/13.0.2000.0__692fbea5521e1304/CrystalDecisions.ReportAppServer.ClientDoc.dll
    CrystalDecisions.ReportAppServer.Controllers
        Assembly Version: 13.0.2000.0
        Win32 Version: 13.0.0.99
        CodeBase: file:///C:/Windows/assembly/GAC_MSIL/CrystalDecisions.ReportAppServer.Controllers/13.0.2000.0__692fbea5521e1304/CrystalDecisions.ReportAppServer.Controllers.dll
    CrystalDecisions.ReportAppServer.DataDefModel
        Assembly Version: 13.0.2000.0
        Win32 Version: 13.0.0.99
        CodeBase: file:///C:/Windows/assembly/GAC_MSIL/CrystalDecisions.ReportAppServer.DataDefModel/13.0.2000.0__692fbea5521e1304/CrystalDecisions.ReportAppServer.DataDefModel.dll
    CrystalDecisions.ReportAppServer.DataSetConversion
        Assembly Version: 13.0.2000.0
        Win32 Version: 13.0.0.99
        CodeBase: file:///C:/Windows/assembly/GAC_MSIL/CrystalDecisions.ReportAppServer.DataSetConversion/13.0.2000.0__692fbea5521e1304/CrystalDecisions.ReportAppServer.DataSetConversion.dll
    CrystalDecisions.ReportAppServer.CubeDefModel
        Assembly Version: 13.0.2000.0
        Win32 Version: 13.0.0.99
        CodeBase: file:///C:/Windows/assembly/GAC_MSIL/CrystalDecisions.ReportAppServer.CubeDefModel/13.0.2000.0__692fbea5521e1304/CrystalDecisions.ReportAppServer.CubeDefModel.dll
    CrystalDecisions.ReportAppServer.ReportDefModel
        Assembly Version: 13.0.2000.0
        Win32 Version: 13.0.0.99
        CodeBase: file:///C:/Windows/assembly/GAC_MSIL/CrystalDecisions.ReportAppServer.ReportDefModel/13.0.2000.0__692fbea5521e1304/CrystalDecisions.ReportAppServer.ReportDefModel.dll
    JIT Debugging **************
    To enable just-in-time (JIT) debugging, the .config file for this
    application or computer (machine.config) must have the
    jitDebugging value set in the system.windows.forms section.
    The application must also be compiled with debugging
    enabled.
    For example:
    <configuration>
        <system.windows.forms jitDebugging="true" />
    </configuration>
    When JIT debugging is enabled, any unhandled exception
    will be sent to the JIT debugger registered on the computer
    rather than be handled by this dialog box.
    <br /><br /><br /><br />
    What could be the problem now.
    Edited by: mcontri on Apr 15, 2011 6:49 PM
    Edited by: mcontri on Apr 15, 2011 6:49 PM
    Edited by: mcontri on Apr 15, 2011 6:51 PM

    Hi Rama,
    Please search, this issue has been discussed many times before.
    For starter, see below doc.
    Troubleshooting error: "Unsupported Operation. A document processed by the JRC engine cannot be opened in the C++ stack…
    Thanks,
    Bhushan

  • I cannot open Pages from the app or from a saved document on the desk top.  I get an error: "The application Pages cannot be opened  -1712"  Any suggestions?

    I cannot open Pages from the app or from a saved document on the desk top.  I get an error: "The application Pages cannot be opened  -1712"  Any suggestions?

    The following previous discussion has a solution that worked for a variety of people with the -1712 error on a variety of applications and may help: The application Safari can't be opened -1712

  • HT3775 unable to get quicktime movies to play on my imac. This is the error message I always get. "The document "4-20130701090400-5.mp4" could not be opened. The movie is not in a format that QuickTime Player understands.You may need to install additional

    Unable to get Quick time movies to play on my imac. This is the error message I allways get.
    "The document “4-20130701090400-7.mp4” could not be opened. The movie is not in a format that QuickTime Player understands.You may need to install additional software to open this type of file."

    Download and install VLC Player. It plays more formats and is free and highly regarded.
    http://vlc-media-player.en.softonic.com/mac
    Cheers
    Pete

  • Not able to install Logic on mac with OSX.  10.8.2. Error message: Logic Studio.mpkg cannot be opened as the power pc programs are no longer supported. I have logic studio 8 software purchased in 2007 and upgraded with logic studio 9 (purchased in 2009)

    After an earlier attempt to move Logic from my other mac (OSX 10.6.8) with the migration assistant to my new mac with OSX 10.8.2. I've re-started the whole start up process by erasing the hard drive from the new machine and build it up from scratch. After a new "out of the box" start, I decided to install LOGIC from my disks : starting with my 2007 package Logic Studio 8 and upgrading with my Logic 9 package from 2009. When trying to start to install 2008 I got the error message : Logic Studio.mpkg cannot be opened as the power pc programs are no longer supported.
    What does this mean? HOw do I get this working under 10.8.2 as it works flawlessly under OSX 10.6.8. For sure I didn't buy a new machine to have OSX 10.8.2 but I suspect this is the roadblock to installing my logic package.
    Help!

    Mark,
    Sorry...
    I completely lost the thread (I actually got confused between you and another poster on a another forum that was asking the same basic question) and somehow ended up thinking you were trying to install on a PPC Mac
    My apologies and please ingnore those parts of my last post relating to the PPC Macs...
    You have an Intel Mac and therefore Logic Studio 2 Boxed Upgrade set should install/run on your Mac without issue. As I said earlier.. you do not need to try and install from the original Logic Studio 1 /Logic 8 Boxed set...(It won't work anyhow because you have an Intel Mac and that version had a PPC installer)  but just install from the Logic Studio 2 / Logic Pro 9 Upgrade Boxed setof DVDs instead...
    Have you tried the "Make Disk Image" solution I gave earlier? That normnally works under such circumstances as what you are describing can happen when your DVD drive cannot read the DVDs correctly... I have had this situation myself where one drive read them okay and another failed to do so for whatever reason. Making and then installing from Disk images of those exact same disks resolved the issue for me...
    You can try to reinstall directly from the DVDs of course though under some circumstances it may not allow you to reinstall Logic Pro itself if that part of the original installation attempt was successful... in which case you can also try this... (It's probably the easiest method if Logic 9 was already installed and present in your Apps Folder)
    If the Logic Pro App is in your applications folder..
    Run Software Updates to update Logic Pro to a version that will run under 10.8.2 (The initially installed version of Logic will not)
    Run Logic
    Go to the menu bar in Logic and select Logic Pro/Install Additional Content and select all content in there..
    This content is basically exactly the same as what is stored on the remaining DVDs of the boxed set so you might not need to use the rest of the DVDs to install from but download it all instead from Apple Servers...

  • What is the best way to copy aperture library on to external hard drive? I am getting a message that say's "There was an error opening the database. The library could not be opened because the file system of the library's volume is unsupported".

    What is the best way to copy aperture library on to external hard drive? I am getting a message that say's "There was an error opening the database. The library could not be opened because the file system of the library's volume is unsupported". What does that mean? I am trying to drag libraries (with metadata) to external HD...wondering what the best way to do that is?

    Kirby Krieger wrote:
    Hi Shane.  Not much in the way of thoughts - - but fwiw:
    How is the drive attached?
    Can you open large files on the drive with other programs?
    Are you running any drive compression or acceleration programs (some drives arrive with these installed)?
    Can you reformat the drive and try again?
    Hi Kirby,
    I attached the UltraMax Plus with a USB cable. The UltraMax powers the cable so power is not an issue. I can open other files. Also, there is 500GB of files on the drive so I cannot re-format it. Although, I noted I could import the entire Aperture Library. However, I do not want to create a duplicate on my machine because that would be defeating the purpose of the external drive.
    Thanks,
    Shane

  • Error when uploading "The bundle identifier cannot be changed from the previous version"

    I have an app on the App Store created with DPS, Single Edition a long time ago, shortly after DPS SE became available. Now I've updated the app, built a new version with DPS App Builder, created a new version of the app in iTunes Connect, and tried to upload the Distribution zip file using application loader. I'm getting 2 error messages:
    "This bundle is invalid. The bundle identifier cannot be changed from the previous version. If you want to change your bundle identifier, you will need to create a new application in iTunes Connect..."
    and
    "This app contains an embedded provisioning profile that is not associated with your account. Please use a provisioning profile associated with Team ID ..."
    I've done this several times before with other apps, and never got these errors before. Any ideas of what is going on?
    I'm able to view the developer ipa file just fine on my iPad.

    Nevermind. I left for lunch, returned, took a fresh look at it, and discovered that it was a stupid human error on my part.

  • The workbook that you selected cannot be opened. The workbook may be in an unsupported file format, or it may be corrupt.

    Hello folk,
    I am trying to create pivot tables from an SSAS cube, in excel (Windows Authentication being used) and publishing the same to a document library in sharepoint. I am publishing only 'Pivot1'(the default name of the pivot table you create) using the Excel Services options. Similar excel sheets (containing pivot tables) are getting published to the same document library in sharepoint  - the only difference being that the data is not being imported from anywhere.  The error :
    The workbook that you selected cannot be opened.
    The workbook may be in an unsupported file format, or it may be
    corrupt.
    Would you like to try and
    open this file in Excel?   which opens perfectly when opened back in Excel.
    P.S. :
    The event viewer also shows a file missing event logged by sharepoint i.e. - Console Configuration File Error: File Not Found: The system cannot find the file specified. (Exception from HRESULT: 0x80070002)
    Any idea?
    -Khyati

    iqbalkmk and vijaynats:
    Do NOT propose your own posts as answers.
    The function is there so that *other people* can propose good posts as answers - not for you to propose your own posts.
    (Moderator)
     iqbalkmk:
    Your post was in any case not an answer. Also Project Server 2010 is NOT even close to be covered in these forums. There are separate forums for SP 2010 questions but Project Server 2010 questions go in any case to the Project Server forums.
    SP 2010 "FAQ" (mainly useful links):
    http://wssv4faq.mindsharp.com/default.aspx
    WSS3/MOSS FAQ (FAQ and Links) http://wssv3faq.mindsharp.com/default.aspx
    Both also have links to extensive book lists and to (free) on-line chapters

  • The Server Instance cannot be started because the Integrated Weblogic domai

    I am newbie to Jdeveloper .When i try to run my jsp file it gives me this error....
    The Server Instance cannot be started because the Integrated Weblogic domain was not built successfully.
    and the log file shows..
    Log File: C:\Users\Jignesh\AppData\Roaming\JDeveloper\system11.1.1.2.36.55.36\o.j2ee.adrs\CreateDefaultDomain.log
    Label: JDEVADF_11.1.1.2.0_GENERIC_091029.2229.5536
    Product Home: C:\Oracle\Middleware\jdeveloper\jdev\
    Domain: C:\Users\Jignesh\AppData\Roaming\JDeveloper\system11.1.1.2.36.55.36\DefaultDomain
    "C:\Oracle\Middleware\oracle_common\common\bin\wlst.cmd" "C:\Users\Jignesh\AppData\Roaming\JDeveloper\system11.1.1.2.36.55.36\o.j2ee.adrs\CreateDefaultDomain.py"
    Process started
    wlst > The system cannot find the path specified.
    Elapsed time: 293 ms

    Before you delete the full system directory you try deleting just this one:
    C:\Users\Jignesh\AppData\Roaming\JDeveloper\system11.1.1.2.36.55.36\DefaultDomain
    and restart JDev
    If this doesn't help then delete the C:\Users\Jignesh\AppData\Roaming\JDeveloper\system11.1.1.2.36.55.36\ and restart

  • I saved docs from a iMac to a flashdrive but when I plug the flashdrive into an iBookG4 and try to open the docs on the flashdrive, I get this message: Doc 2 cannot be opened. The required index.xml file is missing.

    I saved docs from a iMac to a flashdrive but when I plug the flashdrive into an iBookG4 and try to open the docs on the flashdrive, I get this message: Doc 2 cannot be opened. The required index.xml file is missing. Does this mean that I can't use the info on the flashdrive with the iBookG4 or can I do something to get the required index.xml file?
    Thanks
    jt

    It appears if you write the document with newer version Pages and try to open it older version Pages.

  • The ipod "IPOD" cannot be updated. The disk could not be read or written to

    "The iPod "IPOD" cannot be updated. The disk could not be read or written to"
    "The iPod "IPOD" cannot be updated. An unknown error occurred. (-50)"
    I have been dealing with this ever since I installed iTunes 7. I had been getting this message with my previous version, but at least the files would load onto the iPod once I deleted the files in the library and reloaded them. Now, nothing works.
    I attempted to restore the iPod, but guess what? I got this message every time:
    "The iPod "IPOD" could not be restored. An unknown error occurred (1418)"
    When I checked drive E on the Device Manager on My Computer, it said the device was working fine.
    Desperate to fix the problem, I began searching online for other solutions when I stumbled upon someone mentioning the option to format the iPod with fat32, suggesting that as a way to solve the problem, so I did so. After that, nothing has worked. The device manager now says that there are no drivers for drive E and iTunes won't let me restore the iPod.
    I'm plumb out of ideas. What's left to do? I'm not rich enough to just say, "Oh well! La dee da! Let me go buy another iPod shuffle." Is there any way to fix this?

    I finally reinstalled iTunes and my 2G Shuffle on my another station (PC portable + Windows XP) and that functions without trouble.
    As I followed exactly the same procedure of installation, it's difficult to me to explain differences.
    For each pc :
    - No iPod or iTunes previously installed before this one
    - All the rights (administrator)
    Differences :
    - The OS (Windows XP and Windows XP Pro)
    - A lot of USB peripherics declared on my first PC.
    I tend to think that the problem comes from the detection or the declaration of the port usb, but I'm not at all an expert.
    So my trouble is solved, but not with a satisfactory solution.
    Patrick
      Windows XP Pro  

  • The ipod "IPOD" cannot be updated.  The disk could not be read from or.....

    The ipod "IPOD" cannot be updated. The disk could not be read from or written to. First, what disk is this talking about. Also, when i "update" my ipod none of my videos get transfered to the ipod any more. Couple weeks ago the series "Monk" was always transferred from itunes to the ipod, but now, it doesnt show up on my ipod. When i go to the ipod options and select the videos tab, it doesnt let me choose to manually update the videos or automatically do it.

    It's referring to the iPod's hard drive, see if any of the troubleshooting steps in this article help: "-36 or "Disk cannot be read from or written to" when syncing iPod or "Firmware update failure" error when updating or restoring iPod

  • Syncing iCloud with contacts and calendar in MS Outlook 2007, will get message that "the set of folders cannot be opened.  The information store could not be opened."

    I install the iCloud Control Panel and information is uploaded from my Outlook Contact folder to iCloud.  ICloud folders are created and syncing process between my iPhone, iCloud, and Outlook works for a while (day or 2).  Then, when I open Outlook after a day of 2, I get the above message that "The set of folders cannot be opened.  The information store could not be opened."  The only resolve that I have found is to uninstall the iCloud Control Panel, the reboot my Windows computer, then reinstall the iCloud Control Panel and resync contacts and calendar to icloud.  This is getting to be very cumbersome to use this feature.  What is the cause of the problem that it keeps on disconnecting to iCloud?

    I have also fixed it by uninstalling and then reinstalling iCloud, but as you have experienced, the problem recurs without reason.  Apple would/could not help as they say that the problem is with Microsoft's Outlook and that I should talk to them.  Microsoft's techies won't help without me paying some £200 as I have a Professional - a student's - version of Office 2007.  This is scandalous.  It is obvious, from the many who have reported the same problem n this forum, that Microsoft should look into this urgently and create a fix

  • The iPod "iPod" cannot be updated. The required file cannot be found.

    it won't let me put picture or videos on my ipod!! it keeps telling me that "The iPod 'iPod' cannot be updated. The required file cannot be found."

    Welcome to Apple Discussions! I'd be glad to help you
    Let's see...iTunes doesn't recognize your iPod?
    http://docs.info.apple.com/article.html?artnum=61711
    Have you updated everything?
    http://www.apple.com/ipod/download
    http://www.apple.com/itunes/download
    Repost if this doesn't work. Also-are there any error messages with numbers? We'd need all specific info around this if you can give any
    rjl

Maybe you are looking for

  • Return values from Web services

    I want to return an array of objects that contain only the allowed Java Types. Is it possible to return an array of objects as xml for example from a WL web service? Thanks, George

  • Updates not getting detected by some servers

    We have a couple of servers our of 250 which did not receive updates since we approve them All other servers installed the updates fine. The logs on both of these server state different things,. It seems that they did not even detect any updates were

  • Problem in android runtime

    I have install officials 10.3.1.1779 but after using some months, it has problem in android running on mobile data just show no network connection while blackberry application run softly!

  • Where is the serial number located?

    I was just wondering where the serial number can be located for the G2, I have looked everywhere and I can not seem to find.

  • Local zones do not start when rebooting gobal zone

    HMy solaris host had been working well. Then all in a sudden, all local zones do not start automatically after I reboot the system. Did anybody see this before? Thanks.