PDF download in 3.1 fails with "could not open" error

Just created a couple interactive reports and was truly dazzled by the functionality. But when I try to download to PDF, Acrobat Reader 8.1.1 errors with msg "... could not open <file> because it's either not a supported file type or because the file has been damaged...."
No problem with CSV download.
Is there some special Acrobat plugin that's needed?

Its true its not required, but the instructions for deploying the war file advise you to use enterprise manager console, which you won't have if you have just got XE or if you have installed a database without Enterprise manager.
Ideally we need a method of deploying the war file directly
Step 1: Installing the WAR file
Place the fop.war file (located in apex_install_directory/utlities/fop) in an accessible location on your local machine. You then follow the directions below or can view the process by running this viewlet.
Navigate to your OC4J Oracle Enterprise Manager Console eg: http://localhost:8888/em/
Select the Applications Tab
Select Deploy Button
On the "Deploy: Select Archive" page use the option "Archive is present on local host. Upload the archive to the server where Application Server Control is running." Use the file browse to select the fop.war file and click "Next" button
On the "Deploy: Application Attributes" page set the "Application Name" option to "fop" and clear the "Context Root " option and click "Next" Button
On the Deploy: Deployment Settings click the "Deploy" button Message was edited by:
Keith Jamieson

Similar Messages

  • Win 8.1 Pro, iTunes install fails with "could not open key"

    Have tried complete uninstall as required by "Remove and reinstall" Did not work.

    Okay ... although you've got a Windows 8 (rather than a 7 or a Vista), let's try the following user tip:
    "Could not open key: UNKNOWN\Components\[LongStringOfLettersAndNumbers]\[LongStringOfLettersAndNumbe rs]" error messages when installing iTunes for Windows

  • Could not open error log file ''. Operating system error = 5(failed to retrieve text for this error. Reason: 15105).

    Hello
    When I try to start the SQl server service i get the following error:
    Event id 17058
    Could not open error log file ''. Operating system error = 5(failed to retrieve text for this error. Reason: 15105).
    As a test I have made sure the errorlog file ,and the entire drive it is, has everyone full control permissions, but to no avail. Does anyone have any ideas to resolve this issue?
    Thank you

    Hi,
    Try running:
    SELECT SERVERPROPERTY('ErrorLogFileName')
    Then verify that the account being used to run the SQL Server service account has access to the path output above.  If possible, you could try logging onto the server with the same account used to run SQL Server then navigate to the errorlog folder.
    Thanks,
    Andrew Bainbridge
    SQL Server DBA
    Please click "Propose As Answer" if a post solves your problem, or "Vote As Helpful" if a post has been useful to you

  • SQL Server not Starting Up - Could not open error log file system error = 5(Access is denied.)

    Hi guys,
     I am working on issue with SQL Server 2008 R2 .. we rebooted the server and after that all SQL services is not coming up. below is the error from eventlog...
    SQL Server running under NetworkService account and has full control on this files..
    from Config Manager ....
    The request failed or the service did not respond in a timely fashion....
    From Event log..
    initerrlog: Could not open error log file 'C:\Program Files\Microsoft SQL Server\MSSQL10_50.MSSQLSERVER\MSSQL\Log\ERRORLOG'. Operating system error = 5(Access is denied.).
    Any idea or workaround..?
    Thanks..
    Please Mark As Answer if it is helpful. \\Aim To Inspire Rather to Teach

    Finally I found solution and was able to bring back online the SQL Services...
    I had a very similar issue with the following error (event log):
    Description:
    The SQL Server (MSSQLSERVER) service terminated with service-specific error 17058 (0x42A2).
    For more information, see Help and Support Center at http://go.microsoft.com/fwlink/events.asp.
    Event Type:      Error
    Event Source:      MSSQLSERVER
    Event Category:      (2)
    Event ID:      17058
    Date:            19/05/2012
    Time:            10:20:14
    User:            N/A
    Computer:      NSQLXX
    Description:
    initerrlog: Could not open error log file 'C:\Program Files\Microsoft SQL Server\MSSQL.1\MSSQL\LOG\ERRORLOG'.
    Operating system error = 5(error not found).
    In this case the ERRORLOG file had been marked as read only. This was following a scheduled automated boot.  -This
    was culprit
    MSSQL wouldn't not start until this file had been changed.
    http://www.experts-exchange.com/Database/MS-SQL-Server/Q_23951723.html
    Thanks everyone for your kind replies and time...
    Please Mark As Answer if it is helpful. \\Aim To Inspire Rather to Teach

  • Force Download PDF code - getting "could not open" error

    Hello I am having some trouble with some "force download" code. I have spent many days on google looking for a good tutorial / script but there appears to be issues with everyone of them that I try.
    I came across a simple one that I got sort-of working, however the PDFs that it downloads error for some reason. The PDF when trying to open (in adobe reader) produces the following error:
    Could not open '3GLG534WW.pdf' because it is either not a supported file type or because the file has been damaged (for example, it was sent as an email attachment and wasn't correctly decoded).
    My website with an example download link is: http://www.reese-test2.co.uk/3GLG534WWc.php - click on the green button on the download tab
    Does anyone know what I need to alter to get it to work? code below on my script (downloadSPECS.php) and underneath that the code on the actual link to the PDF
    The script code (downloadSPECS.php) :
    <?php
    $pdf = substr($_SERVER['PATH_INFO'], 1);
    if(preg_match('/^[a-zA-Z0-9_\-]+.pdf$/', $pdf) == 0) {
      print "Illegal name: $pdf";
      return;
    header('Content-type: application/pdf');
    header('Content-disposition: attachment; filename=' . $pdf);
    readfile('http://www.reese-test2.co.uk/Downloads/Specs' . $pdf);
    ?>
    The code on the green button / PDF link:
                  <p><a href="http://www.reese-test2.co.uk/scripts/downloadSPECS.php/3GLG534WW.pdf" onmouseout="MM_swapImgRestore()" onmouseover="MM_swapImage('SpecDL','','images/specDLB.jpg',1)"><img src="images/specDL.jpg" alt="Download Spec Sheet" width="196" height="71" id="SpecDL" /></a></p>
                  <p> </p>

    Hi thanks all for your answers.
    The PDF is def ok. you can see it fine when you put the PDFs address in the browser:
    http://www.reese-test2.co.uk/Downloads/Specs/3GLG534WW.pdf
    I changed the 1 to a 0 but got a "illegal name" error
    I have tried a few other things like adding the extra parts to the script (see code below - ob_clean and flush): Still not working though!
    I have tried changing the readfile location - adding public_html and tried a few other things, but cant make it work! Could there be a file size problem maybe? is there a code to allow for this?
    thanks
    Sara
    <?php
    $pdf = substr($_SERVER['PATH_INFO'], 1);
    if(preg_match('/^[a-zA-Z0-9_\-]+.pdf$/', $pdf) == 0) {
      print "Illegal name: $pdf";
      return;
    header("Cache-Control:  maxage=1");
    header("Pragma: public");
    header('Content-type: application/pdf');
    header('Content-disposition: attachment; filename=' . $pdf);
    readfile('http://www.reese-test2.co.uk/public_html/Downloads/Specs' . $pdf);
    ob_clean();
    flush();
    readfile($file);
    ?>

  • APEX 3.0 Printing fails Acrobat could not open file

    I like the new printing tab in Apex 3.0 but I have already stumbled across a problem.
    If I put text in the "Page Header" with a page item:
    REPORT for &P9_USER
    The report errors when opening in Acrobat:
    Acrobat Reader could not open 'Report[1].pdf because it is either not a supported file type or because the file has been damaged (for example, it was sent as a email attachemnt and wasn't correclty decoded).
    The report opens fine with just
    Report
    P9_USER is a valid page item.
    The "Page Header" help text: Enter text to appear in the header section of the document. To show values of application and page items, use the &ITEM_NAME. syntax.
    So, why does it fail?
    Thanks,
    Drew

    Have you tried a period at the end of &P9_USER ?
    => REPORT for &P9_USER.
    I'm able to reproduce your behavior if I skip the period at the end. Looks like the reporting engine has a problem is the header contains a &
    Patrick
    Check out my APEX-blog: http://inside-apex.blogspot.com
    Check out the ApexLib Framework: http://apexlib.sourceforge.net

  • Install of SAP HANA Studio Dev Ed v1.00.80 fails with "Could not create the Java Virtual Machine"

    Hello,
    Scope: JVM error during initial install of SAP HANA Studio Developer Edition v1.00.80, Win86/32bit
    Source: installation files pulled from HANA Studio tab at https://hanadeveditionsapicl.hana.ondemand.com/hanadevedition/, which is a link from the main HANA site of http://scn.sap.com/community/developer-center/hana.  zip folder: "sap_hana_win32_studio_rev80"
    Targeted O/S: Windows 7, 32-bit, local Java is SE 7, update 67.   Java environment has been confirmed via checks provided at http://www.java.com/en/download/manual.jsp
    Actions taken:
    Attempted to update the installation's eclipse.ini file by reducing the -Xmx value; see details below.
    Read thru postings such as http://scn.sap.com/thread/3390626 and the threads it recommended.
    Checked OSS (ie Note 1859686 - HANA Studio does not start)
    Description of installation error:
    Shortly after executing "hdbinst", it fails with the error "Could not create the Java Virtual Machine".  I've verified that there is nearly 3G of memory free.  What I did notice, as shown in the attached files, is that Eclipse is part of this installation and it's pre-loaded with the "eclipse.ini".  I firmly believe the solution could be to reduce parameter "-Xmx1024m" to "-Xmx512m" but it's a catch-22 because even after updating eclipse.ini (in installation folder C:\Program Files\SAP\hdbstudio\tmp_p2director2014.08.13_13.36.44\director), the install program requires that the "hdbstudio" folder to be empty upon restarting it.
    Since the installation is basically a package with a lot of .jar files, there is no eclipse.ini file available in the source install folder; otherwise, updating it there would be the easiest solution if that option were available. The file is only available in the targeted deployment folder above.
    If you have encountered this same error and were able to resolve it, I would be grateful to know of your solution.  Thanks very much.
    FYI: the HANA Client installed with no issues.
    Jim Cleek
    FYI: the images below reflect the sequence of images produced during the installation.
    after clicking OK above, the screen below gets updated (see the "is not empty" msg).
    Below is the eclipse.ini file located in the deployed/target folder:
    Message was edited by: Jim Cleek
    FYI: Using information from the SAP HANA Database - Studio Installation and Update Guide, I tried to override the installation's use of its eclipse.ini file by passing my own modified version (with "-Xmx512m") of that file that was placed in a separate folder.  The cmd used via DOS window was "hdbsetup.exe -a studio --configfile=C:\Users\Admin\Downloads\eclipse.ini" and even though it successfully launched the SAP HANA Lifecycle Management gui, it failed on the first step with the same JVM create error as above because it appears to have used its own eclipse.ini file, which has "-Xmx1024m".

    Update: a message was opened with SAP but unfortunately they could not provide a resolution for this particular scenario.  They admitted that the eclipse.ini file cannot be updated since it is bundled as part of the installation package.  One point to make that I did not make before was that this was being attempted on an Oracle VirtualBox (4.3.10); the SAP HANA contact said he assumed that SAP has not tested this particular scenario, thus it could not be supported.
    Resolution: the end result was to abort trying to install SAP HANA Client and Studio on the Oracle VirtualBox but to install it locally on my own desktop, which runs on Windows 7 Enterprise 64-bit with 8G of memory.  The SAP HANA files below were downloaded, extracted and installed successfully in the order shown.
    FYI: the Studio installation detected that a 64-bit version of Java was not installed so I installed that and then adjusted the User environmental variable JAVA_HOME to point to that new path, leaving the System variable still pointing to the pre-existing 32-bit Java path.
    SAPCAR 7.20 -> Windows on x64 64bit:  SAPCAR_315-20010453.EXE
    IMDB_CLIENT100_80_0-10009664.SAR   Revision 80 for SAP HANA CLIENT 1.00
    Support Package SAP HANA CLIENT 1.00 Windows on x64 64bit
    IMC_STUDIO100_80_0-20007647.SAR   Revision 80 for SAP HANA STUDIO 1.00
    Support Package SAP HANA STUDIO 1.00 Windows on x64 64bit
    jre-7u67-windows-x64.exe - http://www.oracle.com/technetwork/java/javase/downloads/jre7-downloads-1880261.html
    Jim Cleek
    HP Enterprise Services

  • RSEOUT00 failing with "Could not write IDoc to file" TPRI_DEF table

    Outbound Idoc processing fail with the following error:
    Could not write IDoc to file
    Message no. EA299
    Diagnosis
    The system could not convert data from the data record 000027.
    Procedure
    Check the port definition of the receiver port.
    You can use the "Continue despite conversion error" option to write the IDoc to the file from transaction BD87 with replacement characters.
    Short dump indicate that there is a some junk character in th e TPRI_DEF for program SAPLSPRI that it is unable to convert.
    I have set the flag on the we21 port to "continue despite conversion error" and that seem to help, but I would like to figure out how to fix the junk characters from coming through from the TPRI_DEF table.  
    This is what shows up in the short dump after RSEOUT00 is run.
    TPRI_DEF                                   /  /       :  :     00002932
        010GV21            \0\0\0\0\x0006āȂ耀㐱〲\0\0嬇\0ሟ鴂푎眩\x0802儔잏퉓
    I do not see any entries for area "GV" in the table, there is one for "GF".  which has no user assigned to it and it is of key version 21.
    I am not sure if the table is supposed to have an entry with no user assigned?
    thank you for looking at this issue .

    HI Jurgen,
    we have the same issue, chinese charecter is in PO text header. so facing error. If we click unicode format then it works fine as my testing in development.
    I just want to knom what is the impact if i clicked directly unicode format ?( with refernce to your reply above " have you set the Unicode format flag directly above in WE21?" )
    I doc is going from SAP sytem - (PO information )
    Pls adivce..
    waiting for your reply..
    Thanks in advance

  • Configuring OS X Server 3.1.2 :  server.app fails with "Could Not Connect to the Server"

    Hi All,
    I am trying to install OS X Server using server.app 3.1.2. but after installation when i try to connect it is giving "Could Not Connect to the Server" error. is there any way to find out the logs or debug this problem. Since the error isn't giving any indication of the reason of the failure.

    Hi Linc,
    Thanks for you prompt reply, below are the logs....
    9/15/14 7:56:58.229 AM apsd[250]:  SecOSStatusWith error:[-25291] The operation couldn’t be completed. (com.apple.security.xpc error 3 - <connection: 0x7ffb9960a330> { name = com.apple.securityd.xpc, listener = false, pid = 0, euid = 4294967295, egid = 4294967295, asid = 4294967295 }: Connection invalid)
    9/15/14 7:57:28.287 AM apsd[250]:  SecOSStatusWith error:[-25291] The operation couldn’t be completed. (com.apple.security.xpc error 3 - <connection: 0x7ffb9960a330> { name = com.apple.securityd.xpc, listener = false, pid = 0, euid = 4294967295, egid = 4294967295, asid = 4294967295 }: Connection invalid)
    9/15/14 7:57:58.315 AM apsd[250]:  SecOSStatusWith error:[-25291] The operation couldn’t be completed. (com.apple.security.xpc error 3 - <connection: 0x7ffb9960a330> { name = com.apple.securityd.xpc, listener = false, pid = 0, euid = 4294967295, egid = 4294967295, asid = 4294967295 }: Connection invalid)
    9/15/14 7:58:24.653 AM netbiosd[125]: findReachableAddress: Using port 139 family = 33
    9/15/14 7:58:28.379 AM apsd[250]:  SecOSStatusWith error:[-25291] The operation couldn’t be completed. (com.apple.security.xpc error 3 - <connection: 0x7ffb9960a330> { name = com.apple.securityd.xpc, listener = false, pid = 0, euid = 4294967295, egid = 4294967295, asid = 4294967295 }: Connection invalid)
    9/15/14 7:58:58.428 AM apsd[250]:  SecOSStatusWith error:[-25291] The operation couldn’t be completed. (com.apple.security.xpc error 3 - <connection: 0x7ffb9960a330> { name = com.apple.securityd.xpc, listener = false, pid = 0, euid = 4294967295, egid = 4294967295, asid = 4294967295 }: Connection invalid)
    9/15/14 7:59:13.752 AM netbiosd[125]: findReachableAddress: Using port 139 family = 33
    9/15/14 7:59:28.496 AM apsd[250]:  SecOSStatusWith error:[-25291] The operation couldn’t be completed. (com.apple.security.xpc error 3 - <connection: 0x7ffb9960a330> { name = com.apple.securityd.xpc, listener = false, pid = 0, euid = 4294967295, egid = 4294967295, asid = 4294967295 }: Connection invalid)
    9/15/14 7:59:58.568 AM apsd[250]:  SecOSStatusWith error:[-25291] The operation couldn’t be completed. (com.apple.security.xpc error 3 - <connection: 0x7ffb9960a330> { name = com.apple.securityd.xpc, listener = false, pid = 0, euid = 4294967295, egid = 4294967295, asid = 4294967295 }: Connection invalid)
    9/15/14 8:00:06.460 AM netbiosd[125]: findReachableAddress: Using port 139 family = 33
    9/15/14 8:00:16.854 AM Console[369]: setPresentationOptions called with NSApplicationPresentationFullScreen when there is no visible fullscreen window; this call will be ignored.
    9/15/14 8:00:28.567 AM apsd[250]:  SecOSStatusWith error:[-25291] The operation couldn’t be completed. (com.apple.security.xpc error 3 - <connection: 0x7ffb9960a330> { name = com.apple.securityd.xpc, listener = false, pid = 0, euid = 4294967295, egid = 4294967295, asid = 4294967295 }: Connection invalid)
    9/15/14 8:00:58.623 AM apsd[250]:  SecOSStatusWith error:[-25291] The operation couldn’t be completed. (com.apple.security.xpc error 3 - <connection: 0x7ffb9960a330> { name = com.apple.securityd.xpc, listener = false, pid = 0, euid = 4294967295, egid = 4294967295, asid = 4294967295 }: Connection invalid)
    9/15/14 8:01:16.101 AM netbiosd[125]: findReachableAddress: Using port 139 family = 33
    9/15/14 8:01:28.668 AM apsd[250]:  SecOSStatusWith error:[-25291] The operation couldn’t be completed. (com.apple.security.xpc error 3 - <connection: 0x7ffb9960a330> { name = com.apple.securityd.xpc, listener = false, pid = 0, euid = 4294967295, egid = 4294967295, asid = 4294967295 }: Connection invalid)
    9/15/14 8:01:53.596 AM WindowServer[95]: CGXGetConnectionProperty: Invalid connection 42003
    9/15/14 8:01:53.752 AM ocspd[84]:  SecOSStatusWith error:[-25291] The operation couldn’t be completed. (com.apple.security.xpc error 3 - <connection: 0x7fa6c9e102a0> { name = com.apple.securityd.xpc, listener = false, pid = 0, euid = 4294967295, egid = 4294967295, asid = 4294967295 }: Connection invalid)
    9/15/14 8:01:53.954 AM com.apple.serveralertproxy[386]: ApplePushService: APSConnection being used without a delegate queue
    9/15/14 8:01:58.666 AM apsd[250]:  SecOSStatusWith error:[-25291] The operation couldn’t be completed. (com.apple.security.xpc error 3 - <connection: 0x7ffb9960a330> { name = com.apple.securityd.xpc, listener = false, pid = 0, euid = 4294967295, egid = 4294967295, asid = 4294967295 }: Connection invalid)
    9/15/14 8:02:14.303 AM netbiosd[125]: findReachableAddress: Using port 139 family = 33
    9/15/14 8:02:28.669 AM apsd[250]:  SecOSStatusWith error:[-25291] The operation couldn’t be completed. (com.apple.security.xpc error 3 - <connection: 0x7ffb9960a330> { name = com.apple.securityd.xpc, listener = false, pid = 0, euid = 4294967295, egid = 4294967295, asid = 4294967295 }: Connection invalid)
    9/15/14 8:02:58.697 AM apsd[250]:  SecOSStatusWith error:[-25291] The operation couldn’t be completed. (com.apple.security.xpc error 3 - <connection: 0x7ffb9960a330> { name = com.apple.securityd.xpc, listener = false, pid = 0, euid = 4294967295, egid = 4294967295, asid = 4294967295 }: Connection invalid)
    9/15/14 8:03:10.186 AM netbiosd[125]: findReachableAddress: Using port 139 family = 33
    9/15/14 8:03:28.699 AM apsd[250]:  SecOSStatusWith error:[-25291] The operation couldn’t be completed. (com.apple.security.xpc error 3 - <connection: 0x7ffb9960a330> { name = com.apple.securityd.xpc, listener = false, pid = 0, euid = 4294967295, egid = 4294967295, asid = 4294967295 }: Connection invalid)
    9/15/14 8:03:58.726 AM apsd[250]:  SecOSStatusWith error:[-25291] The operation couldn’t be completed. (com.apple.security.xpc error 3 - <connection: 0x7ffb9960a330> { name = com.apple.securityd.xpc, listener = false, pid = 0, euid = 4294967295, egid = 4294967295, asid = 4294967295 }: Connection invalid)
    9/15/14 8:04:06.022 AM netbiosd[125]: findReachableAddress: Using port 139 family = 33
    9/15/14 8:04:28.782 AM apsd[250]:  SecOSStatusWith error:[-25291] The operation couldn’t be completed. (com.apple.security.xpc error 3 - <connection: 0x7ffb9960a330> { name = com.apple.securityd.xpc, listener = false, pid = 0, euid = 4294967295, egid = 4294967295, asid = 4294967295 }: Connection invalid)

  • Workflow Manager - Add-WFHost fails with "Could not load file" error

    Hello! I'm not sure that its Sharepoint related topic but..
    I'm trying to install Workflow Manager using Powershell. I'm successfully created ServiceBus farm, create namespace, Add-SBhost etc. Also, i created WF Farm using New-WFFarm.
    Now i'm got SB Configuration and try to add my first host to WF Farm using standard cmdlets:
    $SBClientConfiguration = Get-SBClientConfiguration -Namespaces 'WorkflowDefaultNamespace'
    (it successfuly gives me some endpoint definitions)
    Add-WFHost -WFFarmDBConnectionString $WFFarmDBConStr -RunAsPassword $ServiceAccountPassword -EnableFirewallRules $true -SBClientConfiguration $SBClientConfiguration -CertificateAutoGenerationKey $CertificateAutoGenerationKey
    where
    $WFFarmDBConStr is typical connection string, i also used this to Get-WFFarm with no errors.
    $ServiceAccountPassword and $CertificateAutoGenerationKey are secure strings.
    But trouble appears with SBClientConfiguration, cmdlet returns error:
    "Cannot validate argument on parameter 'SBClientConiguration'. Could not load file or assebly 'Microsoft.ServiceBus, Version=1.8.0.0, Culture=neutral, PublicKeyToken=<SomeTokenSymbolsHere> or one of its dependencies. The system cannot
    find the file specified."
    What file it tries to load? I've installed all WorkflowManager binaries with
    webpicmd /Install /Product:WorkflowManagerRefresh key and don't know, what can be cause.

    Hi lehus,
    According to your description, my understanding is that you got an error when you configured Workflow Manager using PowerShell.
    Please try to use the following PowerShell command, compare the result:
    Add-WFHost -WFFarmDBConnectionString $WFFarmDBConStr -RunAsPassword $ServiceAccountPassword -EnableFirewallRules $true -SBClientConfiguration $SBClientConfiguration
    –EnableHttpPort -CertificateAutoGenerationKey $CertificateAutoGenerationKey
    -Verbose
    Check your process as:
    http://lennytech.wordpress.com/2013/06/02/configuring-workflow-manager-1-0-using-powershell/
    In addition, whether you could install and configure Workflow Manager with Workflow Manager Configuration Wizard. Please have a try as:
    http://prabathf.blogspot.com/2013/02/installing-and-configuring-workflow-for.html
    I hope this helps.
    Thanks,
    Wendy
    Forum Support
    Please remember to mark the replies as answers if they help and unmark them if they provide no help. If you have feedback for TechNet Subscriber Support, contact
    [email protected]
    Wendy Li
    TechNet Community Support

  • Adding secondary ADFS server to farm fails with Could Not Load Assembly error

    Hi all,
    I have two servers running Server 2012 R2.
    There are two AD sites, in site 1, I have the primary ADFS server running on a member server.  In site 2 I have a secondary ADFS server running on the only DC in the site.  There will be WAP servers publishing these servers in either site.
    I successfully set up the first ADFS server in site 1, and this is working ok.  However, when I set up the server in site 2 I get the following error during the prerequisite checker:
    Could not load file or assembly 'System.ServiceModel, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089' or one of its dependencies. Access is denied.
    Unable to retrieve configuration from the primary server. Could not load file or assembly 'System.ServiceModel, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089' or one of its dependencies. Access is denied.
    I ran this as my domain admin account and also as domain\administrator which is seldom used.
    When I run the resulting PowerShell script, I get errors relating to the GSMA, so not sure if that is where my issue lies.  Here is the script:
    # Windows PowerShell script for AD FS Deployment
    Import-Module ADFS
    # Get the credential used for performaing installation/configuration of ADFS
    $installationCredential = Get-Credential -Message "Enter the credential for the account used to perform the configuration."
    Add-AdfsFarmNode `
    -CertificateThumbprint:"Thumbprint Here" `
    -Credential:$installationCredential `
    -GroupServiceAccountIdentifier:"DOMAIN\STSSvc`$" `
    -PrimaryComputerName:"machine.domain.net"
    I tried using the FQDN of the ADFS server as well as the common name of sts.domain.net, neither worked.
    Any suggestions?
    Andrew Hodgson

    Hi,
    Thanks for your post.
    According to the error message, it is more about permission issue.
    Please refer to this artile about how to resolve the error "Could not load file or assembly or one of its dependencies. Access is denied"
    http://blogs.msdn.com/b/sayanghosh/archive/2007/04/21/solution-to-could-not-load-file-or-assembly-or-one-of-its-dependencies-access-is-denied.aspx
    Regards.
    Vivian Wang

  • I have downloaded CC desktop on mac but could not open and install apps

    I have paid for annual subscription today and downloaded CC desktop. It shows in my desktop but i could not install apps.

    Spinge do you receive any specific error message?

  • Compressor fails with Codec not installed error after 10.5.7 update

    Problem: Compressor fails on submission to standard codecs such as H.264, Apple Intermediate Codec, Motion JPEG, etc. Codecs do exist on system as playback from QuickTime is unaffected. This is new behavior as of update to OS 10.5.7.
    Specs: 17" MackBook Pro, Compressor 3.0.5, QuickTime 7.6, OS X 10.5.7
    Attempt to resolve: Tried completely uninstalling Compressor/QMaster and reinstalling from the FCStudio disc as per "Compressor: Troubleshooting basics" (Article: TS1888 - Old Article: 302845). This installed Compressor 3.0 which compressed a single mov then began failing on subsequent submissions. Updated 3.0 to 3.0.5 with no favorable results. Submissions continue to fail.
    Any ideas?

    From my personal experience, the troubleshooting article which you mention in your original post does not constitute a "full uninstall". There are files missing from that list which are required for a full install.
    Using the instructions in the link provided, I've been able to do multiple uninstalls & reinstalls successfully, not only with Compressor & QMaster, but with other Studio apps as well.
    However, since there are codecs missing, you may need to do a full uninstall of Final Cut Studio. I personally haven't upgraded to 10.5.7 yet, since I'm currently in the middle of some projects, but it would be worth mentioning that before any kind of software upgrades, all of our system drives get a full backup. This allows us a way to "undo" any bad upgrade.

  • Fails with codec not installed error

    Hello all of a sudden Compressor fails to produce ProRes 422 encodes with the error (in the log) "*Processing service request error: Codec not installed*". It is installed as I can use and have used ProRes elsewhere. Running Compressor 3.0.5.

    I've tried the trashing of user prefs and Qmaster cache as mentioned here http://support.apple.com/kb/TS1888 as well as running the utility Compressor Repair http://www.digitalrebellion.com/compressor_repair.htm. Also, after testing I see that Compressor is actually having troubles reading 1 particular ProRes file and re-encoding it as ProRes. (I'm running a multi-step conversion using ProRes for all intermediary steps). I don't see anything wrong with this file (plays in QT, displays in the Compressor Preview window, etc.), but I'll remake it and see how Compressor does.

  • I have just brough office 365 and trying to download but it keeps saying Safari could not open this page becuse the server stopped repsonding.  What next

    I have just brought office 365 and it is telling me to mange my accout to ba able to download the office app bit it keeps telling me the server has stopped responding.  What is the next move?

    Usually it's because you are not making internet connection via wifi.
    Look at iOS Troubleshooting Wi-Fi networks and connections  http://support.apple.com/kb/TS1398
    iPad: Issues connecting to Wi-Fi networks  http://support.apple.com/kb/ts3304
    Additional things to try.
    Try this first. Turn Off your iPad. Then turn Off (disconnect power cord) the wireless router & then back On. Now boot your iPad. Hopefully it will see the WiFi.
    Change the channel on your wireless router. Instructions at http://macintoshhowto.com/advanced/how-to-get-a-good-range-on-your-wireless-netw ork.html
    How to Quickly Fix iPad 3 Wi-Fi Reception Problems
    http://osxdaily.com/2012/03/21/fix-new-ipad-3-wi-fi-reception-problems/
    If none of the above suggestions work, look at this link.
    iPad Wi-Fi Problems: Comprehensive List of Fixes
    http://appletoolbox.com/2010/04/ipad-wi-fi-problems-comprehensive-list-of-fixes/
    Fix iPad Wifi Connection and Signal Issues  http://www.youtube.com/watch?v=uwWtIG5jUxE
     Cheers, Tom

Maybe you are looking for

  • Attachment size client object model in sahrepoint 2010

    hI     Here is my code  ExecuteOrDelayUntilScriptLoaded(getWebProperties, "SP.js"); var  attachmentFiles; function getWebProperties()  var itemId=5;  var list; var item;  var file;                var ctx = SP.ClientContext.get_current();            

  • Dynamic Actions in Report Fields

    Hello, i am upgrading my apps with dyn. actions. so my question. I want to enable or disable Fields in my report based on the value of a field in my report. example report shows: checkbox_|__name__|__ value ____ X __|__Mark__| <enable field> ________

  • How to clear G/L account posting made through MM documents/movements

    Hi Gurus, How to clear G/L account posting made through MM documents/movements. This is issue related to open item clearance .I want to clear all MM related postiongs happened through MM movements.( From PO,invoice etc) Regards, nitin

  • Multiple ipods one library

    I may have posted this elsewhere in the wrong forum. but let me try it here in the right spot. I have a nano and itunes. everything works great. I'm getting a new touch in a week or so. I want to keep my nano as both a back up and something to carry

  • Hyperion Workspace performance on IE browsers

    Hi, When i try to set preferences for WA using workspace, Workspace->view->preferences->WebAnalysis->Default Formatting, application hangs. It is 11.1.1.3. It was working fine. Suddenly started prompting error. Please advice. Thanks, Meenakshi