GWTMSTMP - Unable to load resource file

I'm working on getting a script up and running for Groupwise 2012 and I need gwtmstmp to work. Whenever it's called, this error message is generated:
Load of Resource File (/opt/novell/groupwise/agents/bin/../lib/gwtsaxce.fil) failed - error - 8209 for lang 'ce'
Trying 'us' Resource File.
Load of Resource File (/opt/novell/groupwise/agents/bin/../lib/gwtsaxce.fil) failed - error - 8209 for lang 'en'
I'm running SLES-10 SP3 with Groupwise 2012 at the latest patch level.
Any one with an idea of how I might resolve this problem?
Thanks.

In article <[email protected]>, Ssmusupport
wrote:
> I'm running SLES-10 SP3 with Groupwise 2012 at the latest patch level.
>
> Any one with an idea of how I might resolve this problem?
>
By any chance was this installed at one level of 2012 and then patched?
It does feel like perhaps one was the Multilingual and the other was
English only.
The English only install I am looking at only has
/opt/novell/groupwise/agents/lib/gwtsaxen.fil, not the ce one your
system is looking for
And while /opt/novell/groupwise/agents/bin/../lib/ does map to
/opt/novell/groupwise/agents/bin/lib/ it does look odd, is it actually
doing that?
On a pair of GW 2012 sp2 English systems I am looking at right now.
.agents/bin/gwtmstmp and .agents/lib/gw*en.fil are all dated March 25,
2013 There are no .agents/lib/gw*??.fil other than the en ones.
Andy of
KonecnyConsulting.ca in Toronto
Knowledge Partner
http://forums.novell.com/member.php/75037-konecnya
If you find a post helpful and are logged in the Web interface, please
show your appreciation by clicking on the star below. Thanks!

Similar Messages

  • Getting JNLP error: "exception: Unable to load resource:-"

    I've posted this question in Stackoverflow... but didn't get any answer...
    Hi Guys,
    I'm brand new to JNLP.
    I've been trying to fix this for straight 2 days... I have no clue...
    I've a dynamic web project in eclipse. And I wanted to append an Applet in html. It works fine, if I append it without using jnlp. But if I use jnlp, its throws exception...
    Please help me....
    Here is my package structure:
    DaaS
    DaaS\WebContent
    \WebContent\AppletToJS.html
    \WebContent\appletToJS.jnlp
    \WebContent\FirstApplet.jar
    "FirstApplet.jar" contains the Applet class - AppletToJS.java
    Here is my `jnlp` file:
    <?xml version="1.0" encoding="UTF-8"?>
    <jnlp href="appletToJS.jnlp">
    <information>
    <title>Dynamic Tree Demo</title>
    <vendor>Dynamic Team</vendor>
    </information>
    <resources>
    <!-- Application Resources -->
    <j2se version="1.6+" href="http://java.sun.com/products/autodl/j2se" />
    <jar href="FirstApplet.jar" main="true" />
    </resources>
    <applet-desc
    name="Applet To JS"
    main-class="acid.AppletToJS"
    width="300"
    height="300">
    </applet-desc>
    <update check="background"/>
    </jnlp>
    Here is my `html` file:
    <html lang="en-US">
    <head>
    <meta http-equiv="Content-Type" content="text/html; charset=windows-1252"/>
    <body>
    <script src="http://www.java.com/js/deployJava.js"></script>
    <script>
    var attributes = { code:"acid.AppletToJS",  width:100, height:100} ;
    var parameters = {jnlp_href: "appletToJS.jnlp"} ;
    deployJava.runApplet(attributes, parameters, "1.6");
    </script>
    <!-- <applet codebase="./jars" archive="FirstApplet.jar" Code="acid.appletToJS.class" width=200 Height=100></applet> -->
    <p id="summary"/>
    </body>
    </html>
    while I run my html page I got following error:
    <code>
    exception: Unable to load resource: http://localhost:8080/jars/FirstApplet.jar.
    com.sun.deploy.net.FailedDownloadException: Unable to load resource: http://localhost:8080/jars/FirstApplet.jar
         at com.sun.deploy.net.DownloadEngine.actionDownload(Unknown Source)
         at com.sun.deploy.net.DownloadEngine.getCacheEntry(Unknown Source)
         at com.sun.deploy.net.DownloadEngine.getCacheEntry(Unknown Source)
         at com.sun.deploy.net.DownloadEngine.getResourceCacheEntry(Unknown Source)
         at com.sun.deploy.net.DownloadEngine.getResourceCacheEntry(Unknown Source)
         at com.sun.deploy.net.DownloadEngine.getResource(Unknown Source)
         at com.sun.javaws.LaunchDownload$DownloadTask.call(Unknown Source)
         at java.util.concurrent.FutureTask$Sync.innerRun(Unknown Source)
         at java.util.concurrent.FutureTask.run(Unknown Source)
         at java.util.concurrent.ThreadPoolExecutor$Worker.runTask(Unknown Source)
         at java.util.concurrent.ThreadPoolExecutor$Worker.run(Unknown Source)
         at java.lang.Thread.run(Unknown Source)
    Caused by:
    java.io.FileNotFoundException: http://localhost:8080/jars/FirstApplet.jar
         at sun.net.www.protocol.http.HttpURLConnection.getInputStream(Unknown Source)
         at com.sun.deploy.net.HttpUtils.followRedirects(Unknown Source)
         at com.sun.deploy.net.BasicHttpRequest.doRequest(Unknown Source)
         at com.sun.deploy.net.BasicHttpRequest.doRequest(Unknown Source)
         at com.sun.deploy.net.BasicHttpRequest.doGetRequest(Unknown Source)
         at com.sun.deploy.net.DownloadEngine.actionDownload(Unknown Source)
         at com.sun.deploy.net.DownloadEngine.getCacheEntry(Unknown Source)
         at com.sun.deploy.net.DownloadEngine.getCacheEntry(Unknown Source)
         at com.sun.deploy.net.DownloadEngine.getResourceCacheEntry(Unknown Source)
         at com.sun.deploy.net.DownloadEngine.getResourceCacheEntry(Unknown Source)
         at com.sun.deploy.net.DownloadEngine.getResource(Unknown Source)
         at com.sun.javaws.LaunchDownload$DownloadTask.call(Unknown Source)
         at java.util.concurrent.FutureTask$Sync.innerRun(Unknown Source)
         at java.util.concurrent.FutureTask.run(Unknown Source)
         at java.util.concurrent.ThreadPoolExecutor$Worker.runTask(Unknown Source)
         at java.util.concurrent.ThreadPoolExecutor$Worker.run(Unknown Source)
         at java.lang.Thread.run(Unknown Source)
    Exception: com.sun.deploy.net.FailedDownloadException: Unable to load resource: http://localhost:8080/jars/FirstApplet.jar
    </code>
    **http://localhost:8080/jars/FirstApplet.jar**
    - I really don't understand where the hell "/jars" coming from???
    - My project name is "DaaS" and my jar, html page and jnlp page are in same directory. And I'm running my html page on tomcat-7 server.
    Edited by: user1202074 on Feb 7, 2012 4:24 PM
    Edited by: user1202074 on Feb 7, 2012 4:24 PM

    It must be coming from the commented-out <applet> tag somehow.
    You aren't specifying an 'id' element. See the Deploy Java Toolkit documentation.

  • Unable to load resource error while starting Integration Repository

    Hi all,
    Kindly help me with this...
    following is my situation :
    installed jre1.4.2_08 & jws from sunsite....
    i'm getting into XI Start page but repository & directory link is not operational with 'Unable to load resource : <some jar file> '...
    in my JWS : File->preferences-->java tab ....there is only one version  which is 1.4.2_08....
    Pls advise me what should i do ?
    surprisingly i've got other people working in different location on the same server which is working FINE
    Thanks in advance

    Hi Udo,
    I just did what that URL advised...but still getting the same error ?
    An error occurred while launching/running the application.
    Title: Integration Builder
    Vendor: SAP AG
    Category: Download Error
    Unable to load resource: http://in-ccuapp003:50000/rep/repository/aii_ibrep_client.jar
    Kindly help....
    Thanks

  • PC Suite Error message - "Unable to load resources...

    Hi I have just updated to PC Suite 7.0.9.2 and constantly get the following error message popping up - Unable to load resources - c:/program files\nokia\nokia pc suite\Lang\PcSynch2_eng.nir.
    Has this been reported before? Cheers
    Details as follows:
    PC Connectivity Solution:
    Version 8.22.4.0
    [Nokia Connectivity Cable Driver:]
    Version 7.0.2.1
    Operating system:
    Microsoft Windows Vista 32-bit Edition, Service Pack 1
    Language: English
    Language for non-Unicode programs: English
    Detected Internet browsers:
    - Microsoft Internet Explorer 7.0
    - Mozilla Firefox
    Detected Bluetooth stacks:
    - Microsoft (Version: 6.0.6000, Build: 16386)

    This has been reported, yes. It would seem a previous the regitry points PCSuite to install the 'lang' files from an old folder, and therefore cannot locate them. Can you make sure that this file 'PcSynch2_eng.nlr' is in the folder nokia\nokia pc suite\Lang and not in 'nokia pc suite 7' which it probably is. If so, create a folder 'nokia pc suite' (without the 7) and copy the contents of 'nokia pc suite 7' to it. It will resolve the issue.

  • PC Suite 7.0.7.0 Error: Unable to load resources

    When my Nokia N95 8Gb connects to PC Suite by bluetooth I get a pop-up error message which says:
    Unable to load resources:
    C:\Program Files\Nokia\Nokia PC Suite 6\Lang\PcSync2_eng.nlr
    How do I fix this problem?
    My PC is running Windows Vista Home Premium with SP 1.

    Go to C:\Program Files\Nokia, right-click (mouse) on a blank area then left-click on "New" & "Folder". This creates a 'directory' called "New Folder". Right click on this new folder and select 'rename' and rename it to "Nokia PC Suite 6". Next, open this folder, and repeat the process to create a new folder and rename it to "Lang".
    Hope this helps.

  • FailedDownloadException: Unable to load resource

    I'm having a problem where only a certain class of users (Ubuntu Jaunty) get an exception when trying to run my webstart app. They are presented with the following error:
    com.sun.deploy.net.FailedDownloadException: Unable to load resource: https://host/chatterbox/xmltalk.jnlp
    at com.sun.deploy.net.DownloadEngine.actionDownload(DownloadEngine.java:1325)users java environment:
    $ java -version
    java version "1.6.0_13"
    Java(TM) SE Runtime Environment (build 1.6.0_13-b03)
    Java HotSpot(TM) Client VM (build 11.3-b02, mixed mode, sharing)JNLP file is as follows:
    <?xml version="1.0" encoding="utf-8"?>
    <jnlp spec="1.0+"
      codebase="https://host/chatterbox"
      href="xmltalk.jnlp">
    <information>
      <title>chatterbox</title>
      <vendor>chatterbox</vendor>
      <homepage href="." />
      <description>Chatterbox News Reader</description>
    </information>
    <security>
      <all-permissions/>
    </security>
    <resources>
      <j2se version="1.4+" href="http://java.sun.com/products/autodl/j2se"/>
      <jar href="xmltalk.jar" main="true" download="eager"/>
      <jar href="lib/commons-logging-1.1.jar" download="eager"/>
      <jar href="lib/ws-commons-util-1.0.2.jar" download="eager"/>
      <jar href="lib/xmlrpc-client-3.1.1.jar" download="eager"/>
      <jar href="lib/xmlrpc-common-3.1.1.jar" download="eager"/>
      <extension name="Bouncy Castle Security" href="bcprov.jnlp" />
    </resources>
    <application-desc main-class="XmlTalk" />
    </jnlp>any help would be much appreciated.

    Use wireshark or any other http sniffer to find out what your server returns.
    From the log it seems that java is not getting well formed header at least (mime type is wrong, size missing, date is weird):
    network: Sever response: (length: -1, lastModified: Wed Dec 31 16:00:00 PST 1969, downloadVersion: null, mimeType: text/html)May be the way you download it from direct link is different (e.g. your server is sensitive to browser's user agent string?).

  • Quicktime: Unable to load nib file: MainMenu, exiting.

    Recently updated OS X to 10.6.8
    Ever since the upgrade, my system quicktime player is completely dead.   Will not launch, displays generic icon in the application folder.
    iMac:QuickTime Player.app ryan$ pwd
    /Applications/QuickTime Player.app
    iMac:QuickTime Player.app ryan$ ls
    Contents
    iMac:QuickTime Player.app ryan$ cd C*
    iMac:Contents ryan$ ls
    Info.plist    MacOS        Resources    _CodeSignature    version.plist
    iMac:Contents ryan$ cd M*
    iMac:MacOS ryan$ ls
    QuickTime Player
    iMac:MacOS ryan$ ./Q*
    2011-12-16 13:40:05.201 QuickTime Player[30859:903] Unable to load nib file: MainMenu, exiting
    iMac:MacOS ryan$
    I've run the repair permissions utility, within the disk utility several times on the volume.
    I've run the verify disk utility on the volume - no problems reported.
    No other application issues that I've noticed; only quicktime is broken.
    Not sure what to do next.   If it gave me a clue about which "nib" file it was after I could go check it.
    iMac:English.lproj ryan$ pwd
    /Applications/QuickTime Player.app/Contents/Resources/English.lproj
    iMac:English.lproj ryan$ ls -lrt
    total 0
    -rw-r--r--  1 root  wheel  5143 Aug  8 06:39 ExportRefMovieForWebTemplate.html
    -rw-r--r--  1 root  wheel   350 Aug  8 06:39 SaveForWebiFrameTemplate.html
    drwxr-xr-x  2 root  wheel   102 Aug  8 06:41 MGRemoteHUDView.nib
    iMac:English.lproj ryan$  cd *nib
    iMac:MGRemoteHUDView.nib ryan$ ls -lrt
    total 0
    -rw-r--r--  1 root  wheel  4208 Aug  8 06:39 keyedobjects.nib
    Am I missing files in that directory structure??

    Did you repair permissions & restart after the
    update?
    I tried repairing the permissions and QuickTime still failed to launch; however, I didn't think to restart the machine. But then I fired up TechTool and it found problems with the volume structure, repaired it, and all is good now. So I'm not sure if TechTool fixed the problem or if it was eventually restarting after repairing the permissions.

  • WebStart Unable to load resource/ZipException

    Hello,
    I am trying to get webStart to work and cannot seem to get around the following issue:
    Upon clicking my go.jnlp file in Firefox, the "Java Loading" screen appears and then the webstart reports a download error.
    The errors are:
    Exception
    com.sun.deploy.net.FailedDownloadException: Unable to load resource: http://www.otomotion.org/test/frame.jar
         at com.sun.deploy.net.DownloadEngine.actionDownload(Unknown Source)
         at com.sun.deploy.net.DownloadEngine.getCacheEntry(Unknown Source)
         at com.sun.deploy.net.DownloadEngine.getResourceCacheEntry(Unknown Source)
         at com.sun.deploy.net.DownloadEngine.getResourceCacheEntry(Unknown Source)
         at com.sun.deploy.net.DownloadEngine.getResource(Unknown Source)
         at com.sun.javaws.LaunchDownload.downloadJarFiles(Unknown Source)
         at com.sun.javaws.LaunchDownload.downloadEagerorAll(Unknown Source)
         at com.sun.javaws.Launcher.downloadResources(Unknown Source)
         at com.sun.javaws.Launcher.prepareLaunchFile(Unknown Source)
         at com.sun.javaws.Launcher.prepareToLaunch(Unknown Source)
         at com.sun.javaws.Launcher.launch(Unknown Source)
         at com.sun.javaws.Main.launchApp(Unknown Source)
         at com.sun.javaws.Main.continueInSecureThread(Unknown Source)
         at com.sun.javaws.Main$1.run(Unknown Source)
         at java.lang.Thread.run(Unknown Source)
    Wrapped Exception
    java.util.zip.ZipException: ZIP file must have at least one entry
         at java.util.zip.ZipOutputStream.finish(Unknown Source)
         at java.util.zip.DeflaterOutputStream.close(Unknown Source)
         at java.util.zip.ZipOutputStream.close(Unknown Source)
         at com.sun.deploy.net.HttpDownloadHelper.download(Unknown Source)
         at com.sun.deploy.cache.Cache.downloadResourceToCache(Unknown Source)
         at com.sun.deploy.net.DownloadEngine.actionDownload(Unknown Source)
         at com.sun.deploy.net.DownloadEngine.getCacheEntry(Unknown Source)
         at com.sun.deploy.net.DownloadEngine.getResourceCacheEntry(Unknown Source)
         at com.sun.deploy.net.DownloadEngine.getResourceCacheEntry(Unknown Source)
         at com.sun.deploy.net.DownloadEngine.getResource(Unknown Source)
         at com.sun.javaws.LaunchDownload.downloadJarFiles(Unknown Source)
         at com.sun.javaws.LaunchDownload.downloadEagerorAll(Unknown Source)
         at com.sun.javaws.Launcher.downloadResources(Unknown Source)
         at com.sun.javaws.Launcher.prepareLaunchFile(Unknown Source)
         at com.sun.javaws.Launcher.prepareToLaunch(Unknown Source)
         at com.sun.javaws.Launcher.launch(Unknown Source)
         at com.sun.javaws.Main.launchApp(Unknown Source)
         at com.sun.javaws.Main.continueInSecureThread(Unknown Source)
         at com.sun.javaws.Main$1.run(Unknown Source)
         at java.lang.Thread.run(Unknown Source)
    I've tried quite a few different things (recompiling/jaring on other platform), I've tried different browsers on differents OS'. My jar file is signed.
    Here is my jnlp file:
    <?xml version="1.0" encoding="utf-8"?>
    <jnlp spec="1.5+" codebase="http://www.otomotion.org/test ">
            <information>
                    <title>Broken</title>
                    <vendor>otomotion</vendor>
                    <homepage href="www.otomotion.org"/>
                    <description>Webstart Swing Test</description>
            </information>
            <offline-allowed/>
            <resources>
                    <j2se version="1.5+" java-vm-args="-esa -Xnoclassgc"/>
                    <jar href="frame.jar" />
            </resources>
            <application-desc>
                    <argument>otomotion.org</argument>
            </application-desc>
    </jnlp>My code (simple enough)
    import javax.swing.*;
    import java.awt.*;
    public class rFrame extends JPanel {
        public rFrame() {
            super(new BorderLayout());
            JLabel hw = new JLabel("Hello World!");
            this.setPreferredSize(new Dimension(400,400));
            this.add(hw,BorderLayout.CENTER);
        private void createAndShowGui() {
            //Create and set up the window.
            JFrame frame = new JFrame("Test Frame");
            frame.setDefaultCloseOperation(JFrame.EXIT_ON_CLOSE);
            //Create and set up the content pane.
            frame.setContentPane(this);
            //Display the window.
            frame.pack();
            frame.setVisible(true);
        public static void main(String[] args) {
            new rFrame().createAndShowGui();
    }Thank you for your help.
    Files are available at www.otomotion.org/test

    .. I can
    download the jar and run it locally.I tried running it locally, and it worked for me as well,
    so I took a closer look at the Wrapped Exception
    in the console and noted it mentioned ..
    java.util.zip.ZipException: ZIP file must have at least one entryOK.. so I checked it using ..
    jar -t frame.jar..the console just sat there doing nothing!
    When I opened it using WinZip, I could see the
    class, manifest and RSA/SF files, but WinZip will
    handle any old junk, so that does not really help
    us.
    I suggest you generate the jar fresh, and check it
    using the 'jar -t' command (if Jar cannot understand
    it alright, I expect JWS won't either - perhaps when
    'launching the jar' from the file system, such checks
    are unnecessary).
    The only two other things I have noted that were
    'suspicious' were the lack of href attribute in the
    jnlp element, and the fact that I am sometimes
    getting slightly different URL's quoted (by the server)
    for the address of the jar file.

  • JavaFX application deployment problem - Error: Unable to load resource

    I am developing my first JavaFX application. When I install the jnlp and jar files on my web server I have no problems using the application from either my development machine (Windows XP) or my test machines (Windows XP & Mac OS X). However, one person evaluating the application reports getting the following error:
    Error: Unable to load resource: http://dl.javafx.com/1.3/javafx-rt-windows-i586__V1.3.0_b412.jar
    What are the possible causes of this problem and how can they be resolved?

    If being able to redistribute the JavaFX runtime is important to you, make sure you let Oracle know. Personally I'd prefer to host it myself or bundle it with an application installer. Being forced to rely on dl.javafx.com isn't acceptable for me.
    [http://javafx.uservoice.com/forums/33584-official-javafx-feedback-forum/suggestions/403105-allow-us-to-distribute-the-javafx-runtime-binary?ref=title]
    Edited by: jptech on Jun 18, 2010 8:36 PM

  • Unable to load resource - error

    This is my first attempt at using java web start. I'm using JDeveloper to generate my jnlp which I've included below.
    However I get the following error which I cannot see a solution for. I'm sure there must be a simple solution.
    The exception is:
    JNLPException[category: Download Error : Exception: java.net.ConnectException: Connection refused: connect : LaunchDesc: null ]
         at com.sun.javaws.cache.DownloadProtocol.doDownload(Unknown Source)
         at com.sun.javaws.cache.DownloadProtocol.isLaunchFileUpdateAvailable(Unknown Source)
         at com.sun.javaws.LaunchDownload.getUpdatedLaunchDesc(Unknown Source)
         at com.sun.javaws.Launcher.downloadResources(Unknown Source)
         at com.sun.javaws.Launcher.handleApplicationDesc(Unknown Source)
         at com.sun.javaws.Launcher.handleLaunchFile(Unknown Source)
         at com.sun.javaws.Launcher.run(Unknown Source)
         at java.lang.Thread.run(Unknown Source)
    <?xml version = '1.0' encoding = 'windows-1252'?>
    <jnlp spec="1.0+" codebase="http://my ip address was here:8988" href="/RichMon-RichMonV15-context-root/test.jnlp">
    <information>
    <title>testing deployment of RichMon</title>
    <vendor>just testing</vendor>
    <homepage href="test.html"/>
    <description>more testing</description>
    <offline-allowed/>
    </information>
    <security>
    <all-permissions/>
    </security>
    <resources>
    <j2se version="1.4+"/>
    <jar href="/RichMon-RichMonV15-context-root/apps/RichMonV1504.jar" main="true" download="eager"/>
    </resources>
    <application-desc main-class="RichMon.RichMonitor"/>
    </jnlp>
    Any help is much appreciated.
    Thanks,
    Richard

    Hi Udo,
    I just did what that URL advised...but still getting the same error ?
    An error occurred while launching/running the application.
    Title: Integration Builder
    Vendor: SAP AG
    Category: Download Error
    Unable to load resource: http://in-ccuapp003:50000/rep/repository/aii_ibrep_client.jar
    Kindly help....
    Thanks

  • Unable to load resource: Web Start

    I have a server called BIServer running on mds9021.sas-frontiers.com. Using jboss. And there is a database called dictionary also running on that machine. Both are up. Then I have a person that started up Web Start and is trying to connect to the mds9021.sas-frontiers.com. machine. But I get the following error.
    An error occured while launching/running the application.
    Title: jhfkskas
    Vendor: sdjkfhjksdhfk
    Category: Download Error
    Unable to load resource: http://mds9021.sas-frontiers.com/webstart/...jretriever.jnlp
    If anybody knows what this means please let me know.
    Thanx

    Thank you for the advise. But I got it sorted. The problem was jre related. The links got mixed up one way or the other and was using the wrong jre version.

  • Unable to load prn file in LedgerLink

    I am working with HE641 and having to use LedgerLink to load files since there is some account translation. For some reason I am unable to load the file. This is through Citrix. During the load process, the files appears to load because the status bar appears to increment upward but when I look at Data Entry in the app, I can not see any results. Cany anyone help me with this?

    I had to get security to the translation file through Citrix.

  • Firefox cannot be closed; the following message appears: "Can't load resource file, can not run". How to solve this problem; I am using Windows XP SP3

    Whwn I want to close Firefox 9.x , a pop-up appears with the message: "Can't load resource file ......" . First I have to close this pop-up, then Firefox is closed. Also with other versions of Firefox I had this problem.

    i deleted the rdf and now the first window only (and any tabs in it) are maximised. i found this in the rdf
    <RDF:Description RDF:about="chrome://browser/content/browser.xul#main-window"
    screenX="4"
    screenY="4"
    width="1008"
    height="461"
    sizemode="Normal" />
    i tried changing normal to maximised; no effect. either i need also to change the numbers (to match a maximised window) or ff ignores this. i want to be able to open different sites in different windows, and not have to maximise them manually. ff never used to be broken, why break this? what possible security flaw was fixed by screwing up ff to never open maximised unless u hack it or delete certain config files?

  • Acrobat 9.5.5 unable to find resource files

    I am using Windows Vista und with the upgrade to Adobe Acrobat 9.5.5, I lost the administrative privileges on my own computer and Acrobat is unable to find resource files. I reinstalled Acrobat 9.5.5, went through the repair option, but have been unsuccessful in converting Windows files to PDF. Any suggestions? do I need professional help?

    It is most likely looking for the job settings files. It may be that they are locked for some reason. I would look for those files and then be sure the folder is not restricted. I might be able to find the location based on my AA8 installation on VISTA at work, but that may be a while off. Seems strange that the update would do this change. The AA9 update that I did on Win7 had no such problems.

  • Crystal Xcelsius is unable to load this file...  no upgrade 4.5 to 2008 :(

    Post Author: jezbraker
    CA Forum: Xcelsius and Live Office
    Anyone else having problems getting 4.5 files to open in 2008? I create a nice simple new xlf with a simple xls behind it and a just a grid component in 4.5, then try open the file in 2008 and i get... Crystal Xcelsius is unable to load this file. This file may be corrupt or have features that cannot be supported by this version of Crystal Xcelsius.im on the following versions...Version 4.5Application Version 4.2.4.3File Version 1.1.0.2Version 2008Application Version 5.0.0.99Build Number 12,0,0,121 I'm hoping that this is just a version issue with what was on ESD... the help file seem to suggest upgrade is simple so would but good to here of folks having sucess - and if so what versions your on thanks!jez.

    Post Author: jezbraker
    CA Forum: Xcelsius and Live Office
    well i hope thats the case... but its a bit strange that neither the beta versions i tested or this ESD version (its not very clear as to if its pre-release - nothing on the splashscreen/about to indicate its not the full thing) can open 4.5 files...  suggests that the beta did not cover backward compatability which is a bit concerning :(hopefully im just missing something simple!from the help file in the '08 version i have here...Xcelsius supports the ability to import a visualization created
    with Xcelsius 4.5. This import ability lets Xcelsius 4.5 customers upgrade their
    existing visualizations to take advantage of the new features of Xcelsius 2008.
    Backup your current XLF, JPEG, and external SWF files before upgrading your
    visualization.
    Note: Xcelsius 3.0, 3.5, and 4.0 files cannot be
    imported into Xcelsius 2008. To use these files in Xcelsius 2008 you must first
    import them into Xcelsius 4.5, then import the files into Xcelsius 2008.

Maybe you are looking for

  • How can I reimplement a standar BADI?

    I need to do this: The error reported occurs from a BAdI: 'BADI_CONTRACTPARTRNER_DETAIL' under the Enhancement spot: 'ES_BCA_DIM_LOANS_RFC'. This has an implementation class:CL_BADI_CONTPARTRNER_DTL_IMPL and method: IF_BADI_CONTRTPARTRNER_DETAIL~FILL

  • Why can't I get any sound to come from my phone unless I put it on speaker phone?

    Why can't I get any sound to come from my phone unless I put it on speaker?

  • Help sharing files over internet between two Macs

    Hi, I'm trying to share some files with my sister over an internet connection and cannot get it to work! Basically, I'm trying to have her connect to my computer and get the files out of my public drop box folder, where I've put them. I turned on Fil

  • Wallet Manager not Installed?

    For some reason, I can't seem to find the 'owm' executable on an Oracle 10.1.0.2 Standard Edition database. I have searched in the standard spots 'ORACLE_HOME/bin/owm' as well as all throughout the ORACLE_HOME but it does not seem to exist. I don't k

  • ProgressBar Popup with bytesloaded,bytestotal

    Team,         i)I want to create a ProgressBar popup with bytesloaded,bytestotal.         ii)After that i want to call this progressbar from my services ActionScript class file once, my http request was initialized.        iii) i can able to do this