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

Similar Messages

  • 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

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

  • Recently downloaded latest version of iTunes software, afterwards, while trying to sync iphone with PC received this error message: Unable to Load Resource not found; SyncUICoreLocalized.dll; please advise, thank you

    Recently upgraded PC with latest edition of iTunes (1/30/2014), afterwards, received this error message while attempting to sync iphone with PC: Unable to load, resource not found, SyncUICoreLocalized.dll

    THIS HAS EVERY APPEARANCE OF A SOFTWARE GLITCH BY APPLE ... So first suggestion is NOT to begin reinstalling various software but to await some answer & fix from Apple.  Too many have same problem on various systems, in my view (I am not an Apple rep but have certainly faced many glitches over the years).
    PS - LOTS of Apple software problems these days, including many people having their Contacts shredded.  What's going on with Apple?

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

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

  • Please : WWC-43273 - ContainerException: Unable to load resource bundle

    Please Help :(
    Development Environment:
    Application : Hello World Portlet
    OAS : 10.1.2.0.2 Installed on LocalHost
    Development Tool : JDeveloper 10.1.3.2.0
    Portal Server : 10.1.4 Installed on LocalHost
    I have followed following Tutorial for the same : http://www.oracle.com/technology/obe/obe1014portal/standards_portlets/stdsplts.htm
    My EAR WSDL (http://localhost/HelloWorld/portlets?WSDL) in OAS is working perfectly fine yeilding following output :
    <?xml version = '1.0' encoding = 'UTF-8'?>
    <wsdl:definitions xmlns="http://schemas.xmlsoap.org/wsdl/" xmlns:soap="http://schemas.xmlsoap.org/wsdl/soap/" xmlns:bind="urn:oasis:names:tc:wsrp:v1:bind" xmlns:wsdl="http://schemas.xmlsoap.org/wsdl/" targetNamespace="urn:oasis:names:tc:wsrp:v1:wsdl">
    <import namespace="urn:oasis:names:tc:wsrp:v1:bind" location="http://www.oasis-open.org/committees/wsrp/specifications/version1/wsrp_v1_bindings.wsdl"/>
    <wsdl:service name="WSRPService">
    <wsdl:port binding="bind:WSRP_v1_Markup_Binding_SOAP" name="WSRPBaseService">
    <soap:address location="http://infra:80/HelloWorld/portlets/WSRPBaseService"/>
    </wsdl:port>
    <wsdl:port binding="bind:WSRP_v1_ServiceDescription_Binding_SOAP" name="WSRPServiceDescriptionService">
    <soap:address location="http://infra:80/HelloWorld/portlets/WSRPServiceDescriptionService"/>
    </wsdl:port>
    <wsdl:port binding="bind:WSRP_v1_Registration_Binding_SOAP" name="WSRPRegistrationService">
    <soap:address location="http://infra:80/HelloWorld/portlets/WSRPRegistrationService"/>
    </wsdl:port>
    <wsdl:port binding="bind:WSRP_v1_PortletManagement_Binding_SOAP" name="WSRPPortletManagementService">
    <soap:address location="http://infra:80/HelloWorld/portlets/WSRPPortletManagementService"/>
    </wsdl:port>
    </wsdl:service>
    </wsdl:definitions>
    However when i try to access the same via Register Provider wizard in Portal Server 10.1.4 i get this exception.
    An error occurred during the call to the WSRP Provider: Java stack trace from root exception:
    java.rmi.ServerException: Internal Server Error (java.lang.RuntimeException: oracle.webdb.wsrp.server.ContainerException: Unable to load resource bundle "portlet.resource.CHelloWorldBundle")
    at com.sun.xml.rpc.client.StreamingSender._raiseFault(StreamingSender.java:384)
    at com.sun.xml.rpc.client.StreamingSender._send(StreamingSender.java:245)
    at oracle.webdb.wsrp.WSRP_v1_ServiceDescription_PortType_Stub.getServiceDescription(WSRP_v1_ServiceDescription_PortType_Stub.java:63)
    at oracle.webdb.wsrp.client.design.v1.OraWSRP_v1_ServiceDescription_PortType.getServiceDescription(Unknown Source)

    Found the solution:
    I needed to choose the Servlet 2.3/JSP 1.2 (J2EE 1.3) when creating my JSR268 Portlet.
    Also the second change I needed to make was to use J2SE ver. 1.4.2_12. To do this change the default j2se ver. of JDeveloper(i.e ver. 1.5) from project properties > libraries node > edit/change j2se definitions screen and select java.exe from j2se1.4.2_12/bin

  • 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?).

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

  • Unable to load report error

    Hi
    This started with an asp.net application which I have been maintaining for several years, on an XP 32-bits box. Alas, the box died, and I have acquired a new Development machine, now with Windows 7/64-bits. I have installed Visual Studio 2010 and Crystal reports (13.0.,9), including runtime for 32 and 64 bits.
    I got the "unable to load report" error, and I think I have tried everything I could find on the web related to solving this issue.
    Finally I got Down to creating a new dummy asp.net application with a dummy report just displying the text TEST. This report Works fine when run from within VS, but if I deploy it to the web server on the Development machine I also get the unable to load report failure.
    I believe this is a configuration issue. The application has run fine for years, I just can't get it to Work on the new development machine.
    Please help
    Peter

    Make sure that process has read / write rights to the %TEMP% folder. Process Monitor may help.
    - Ludek
    Senior Support Engineer AGS Product Support, Global Support Center Canada
    Follow us on Twitter

  • Unable to load GUI error when trying to download newest flash player

    I had deleted the older flash player , 10.0.42.34 and tried to download 10.0.45.2. Went to the adobe site, clicked the link for "get adobe flash player" from the ADOBE home page .
    Got the "Unable to load GUI" error message, so I just went to the bottom of the download page and installed from this link here
    click here to download  (fpdownload.adobe.com/get/flashplayer/current/install_flash_player_ax.exe)
    Is that a legitimate way to download the flash player? I mean it put flash10e.ocx in C:\Windows\System32\macromed\Flash and in the manage add ons and in the add/remove programs version in Vista. Just want to make
    fpdownload.adobe.com/get/flashplayer/current/install_flash_player_ax.exe
    gave me the right and secure flashplayer download.
    thanks

    Hey habnots, like a lot of things in life, there is the hard way and the easy way. Your way just took longer:-)
    Regards,
    eidnolb

  • "Unable to load URL" error when importing VS2008 created WSDL

    One of my developers created a simple web service in Visual Studio 2008 that queries a database on our SQL Server 2005. I can view the web service results in a web browser with no problems. I can also pull up the WSDL in the web browser with no problems (http://<ip address>/Service.asmx?WSDL). However, when I try to load WSDL into a Web Service Connection in Xcelsius 2008, I get the "Unable to load URL" error.
    I've also tried to use the web service as a data source in Crystal Reports 2008, but I get another error:
    Logon failed.
    Details: Schema file is invalid
    error: src-resolve: element 'schema@http://www.w3.org/2001/XMLSchema' not found
    I've seen a post in which it looked like Crystal acknowledged this as a bug in the XML driver used by Crystal products, but it should be fixed in a service pack update. I've got the latest service packs and fix packs installed for both Xcelsius 2008 and Crystal Reports 2008.
    I scanned the information being sent/returned to Xcelsius using Fiddler and it looks like the request is getting through and the actual WSDL file is being returned to Xcelsius, so it shouldn't be an authentication issue. It seems like Xcelsius doesn't like the WSDL file for some reason. However, it is automatically generated by Visual Studio 2008.
    Any ideas as to how I can get Xcelsius to use this test web service?

    Having the same issues here also.
    I can see the wsdl file being accessed successfully in the web access log, but Xcelsius v5.3 return "unable to load URL"
    Only thing I can guess is that the schema is "untyped"
    So, nobody in SAP has a solution?

  • Eclipse Plugin Creation - "Plug-in name was unable to load class " error

    Hi everybody and happy new year to you all,
    i got a little problem again. I have written the first lines of code of my plugin and wanted to test it (run as Eclipse Application). I got the following error-msg, when clickin either on the menu item or toolbar button:
    "Could not create action delegate for id: org.eclipse.tui.inpulse.actions.InpulseStart
    Reason:
    Plug-in org.eclipse.tui.inpulse was unable to load class org.eclipse.tui.inpulse.InpulseStart."
    My project has the following properties (of which i read they are important):
    Source folder: org.eclipse.tui.inpulse/src
    Output folder: org.eclipse.tui.inpulse/bin
    Dependencies: org.eclipse.ui, org.eclipse.core.runtime
    Extensions: org.eclipse.ui.actionSets
    ExtensionsPoints: none
    The following is my plugin xml:
    <plugin>
       <requires>
              <import plugin="org.eclipse.core.resources"/>
            <import plugin="org.eclipse.ui"/>
        </requires>
        <runtime>
              <library name="Inpulse.jar"/>
        </runtime>
        <extension
              id="org.eclipse.tui.inpulse.InpulseActionSet"
              name="org.eclipse.tui.inpulse.InpulseActionSet"
              point="org.eclipse.ui.actionSets">
            <actionSet
                id="org.eclipse.tui.inpulse.InpulseActionSet"
                label="Inpulse"
                  visible="true"
             description="The action set for the Eclipse Hello World example">
             <menu id="org.eclipse.tui.inpulse.InpulseMenu" label="Inpulse">
                   <separator name="samples"/>
             </menu>
             <action id="org.eclipse.tui.inpulse.actions.InpulseStart"
                   menubarPath="org.eclipse.tui.inpulse.InpulseMenu/samples"
                   toolbarPath="Normal"               
                   label="Inpulse"
                   tooltip="Start pattern search."
                   class="org.eclipse.tui.inpulse.InpulseStart"/>
            </actionSet>
       </extension>
    </plugin>The javafile "InpulseStart.java" is in the "org.eclipse.tui.inpulse" package and has the first line "package org.eclipse.tui.inpulse;". The class "InpulseStart" implements "IWorkbenchWindowActionDelegate".
    So the following members are implemented:
    public void run(IAction proxyAction){...};
    public void selectionChanged(IAction proxyAction, ISelection selection){...};
    public void dispose(){...};
    //and some additional ones ;-)I really dont know what i do wrong. If you have an idea, what i just miss out or do wrong, id be glad if you helped me out!
    Cya

    Aye, you are right, i should/could have posted this somewhere else. I just hoped, that i can get a good answer here, cause ppl helped me out very nice before.
    Im sorry if i offended users of this forum...
    The "advice" is recognized and i will post somewhere else in case i have a eclipse specific problem.

Maybe you are looking for