Unable to view applet in internet page

I am using office pc and is forced to set up proxy server in order view the outside internet. I found that when I view pages with Java Applet inside, none of them can be displayed with the same error:
An example is:
network: Cache entry not found [url: http://java.sun.com/docs/books/tutorial/deployment/applet/examples/dist/applet_HelloWorld/applet_HelloWorld.jar, version: null]
network: Connecting http://java.sun.com/docs/books/tutorial/deployment/applet/examples/dist/applet_HelloWorld/applet_HelloWorld.jar with proxy=DIRECT
network: Connecting http://java.sun.com:80/ with proxy=DIRECT
java.net.ConnectException: Connection refused: connect
Is there a "way" to solve this? I googled it but seemed no answer for my situation.

Applets run client side - which means the relevant class files need to be downloaded to the client.
Anything under the WEB-INF directory is not directly accessible by the client. Nothing under WEB-INF can be downloaded.
ergo, specifying the WEB-INF directory as part of your applet codebase is a bad idea.
I would suggest try copying the applet classes from under WEB-INF to some other place in your application.
Also, you should probably specify the full class name of your Applet in the plugin tag.
<%@ page import="com.util.MyApplet" %>
<jsp:plugin type="applet" code="com.util.MyApplet" codebase="/classes" width="250" height="100" jreversion="1.6">
     <jsp:fallback>
          <B>Unable to start plugin!</B>
     </jsp:fallback>
</jsp:plugin>cheers,
evnafets

Similar Messages

  • Unable to view SCCM 2007 reporting page.

    unable to view sccm 2007 reporting page it's showng blank.

    It is working fine now issue was with the internet explorer and proxy. Thanks to all.

  • WVC80N - Internet Gateway UPnP discovery failure message \ unable to view over the internet

    I have the WVC80N.  I recently got the new Comcast modem \ wifi but the Wifi is junk and had a lot of problems (loss connection, range etc) so I had Comcast "bridge" it so I just use my old wifi (LinkSys E1200).   I have TZO to handle remote viewing.  Everything was working great for about two weeks and we had a power outage.  Since then, I have been getting UPnP discovery message (in the status tab of the WVC80N camera site) and I am unable to view over the internet.  I get a 502 error usually but today I got extra info: "The socket connection to www.dfgehring.mylinksyscam.com failed.
    ErrorCode: 10060.  A connection attempt failed because the connected party did not properly respond after a period of time, or established connection failed because connected host has failed to respond."
    I had Comcast do a "repair / reset" transmission to the modem and still get the problem.
    I found these step on the forum:
      1. Home Wirless Rounter administration page, find the UnPn settings and Turn off UnPn and save it. Wait for atleast 30 sec  and go the same page and Turn it back on.
      2. On your wireless camera Adminstraion page, go to "Options" and find the UnPn if it is already disabled go ahead and "enable" it also "enable" the "Alternate web connection" and save it. If it was already enable please disable it save the settings and enable back on.
     The above 2 steps resolved my issue and I could able to view my camera from outside of my home network.
    Still no luck.  Tried it several times.
    Could the power outage reset something on the modem or router to change this? 
    Thanks
    Darren

    That's what I thought. The power outage may have set the modem, router or camera settings back to factory defaults causing it to loose connection. First thing first, call comcast and check if the modem is still on bridge mode. The modem may have been set back to a modem/router mode due to power outage.
    You may test if the remote access is properly set up in the network by going to http://ping.eu. In that site, you will see your internet ip address, take note of that. Click on port check, enter your internet ip address and the port number you used in the alternate web access port then click Go. If it says closed, there something wrong in the settings of either the router or camera. In that case, I suggest you reset the router and camera and then reconfigure them.
    I found these articles online which could help you reconfigure your router and camera settings:
    How to set up your router
    How to set up router wireless setting
    Connecting camera to wireless network
    How to set up remote access on linksys camera
    How to set up TZO on the linksys camera
    Hope these helps.

  • Unable to View Applet -Error message

    I have installed JRE 5 in my system but still when i try to acces a web page iam unable to view the applets present in it. I have set the IE settings to use JRE 1.5 for applets.Still iam unable to view it.
    i Get the "java.lang.ClasssnotFoundException " when i right clicket the place where applet should be found and click the "Java Console" link present there.
    Can anyone please help me? Follwing is the error message i receive.
    load: class com.gotnla.MOTS13.LoginMenu not found.
    java.lang.ClassNotFoundException: com.gotnla.MOTS13.LoginMenu
    at sun.applet.AppletClassLoader.findClass(Unknown Source)
    at java.lang.ClassLoader.loadClass(Unknown Source)
    at sun.applet.AppletClassLoader.loadClass(Unknown Source)
    at java.lang.ClassLoader.loadClass(Unknown Source)
    at sun.applet.AppletClassLoader.loadCode(Unknown Source)
    at sun.applet.AppletPanel.createApplet(Unknown Source)
    at sun.plugin.AppletViewer.createApplet(Unknown Source)
    at sun.applet.AppletPanel.runLoader(Unknown Source)
    at sun.applet.AppletPanel.run(Unknown Source)
    at java.lang.Thread.run(Unknown Source)
    Caused by: java.io.IOException: open HTTP connection failed.
    at sun.applet.AppletClassLoader.getBytes(Unknown Source)
    at sun.applet.AppletClassLoader.access$100(Unknown Source)
    at sun.applet.AppletClassLoader$1.run(Unknown Source)
    at java.security.AccessController.doPrivileged(Native Method)
    ... 10 more

    Just a guess: maybe you're behind a firewall, and you haven't configured your JVM to use the same firewall as the browser.

  • Unable to view Applets due to class not found error. Urgent

    We are currently facing issues in our upgrade to Java JRE 1.6 & above from JRE 1.4 on displaying certain information. Our applets are built in a way like at runtime it will access certain jar files ( tibco jar files) and use them to parse the incoming messages. The following will give a summary of the issue.
    We were using Jre 1.4 in our systems previously. With JRE 1.4, we have a system where we use java applets to display data over the network in the websites. The java applets will use a jar file (TIBRVJ.jar file available in C:\TIBCO\TIBRV\8.3\LIB\) folder. The way we facilitate this is by including –cp “C:\TIBCO\TIBRV\8.3\LIB\TIBRVJ.JAR in the Java runtime parameter settings. However post upgrade to JRE 1.6, we are getting errors in our systems due to the upgrade as specified below. the only way we are able to avoid this issue is by placing the Jar file in JRE/lib/ext folder. it also requires changes in our Java.policy file to provide access to this.
    Error Codes
    ‘java.lang.NoClassDefFoundError: com/tibco/tibrv/TibrvMsgCallback”
    We would like to know why the tibrv. jar file is not picked from the classpath set on the Java Runtime Parameters, but being picked only after placing it in the ext/bin directory and changing Java policy files in JRE 1.6 and higher versions.

    Hi Can anyone please share your views on this issue.

  • Unable to view Applet in client machine.

    I have one jsp (Main.jsp) in which i am embedding One.Class file by using the following tag:
    <applet codebase = "http://localhost:8080/ExceleRATE/" code="One" height="350" width="650" alt="Applet Not Supported by this Browser" archive="http://localhost:8080/ExceleRATE/dom4j-1.6.1.jar,http://localhost:8080/ExceleRATE/One.jar">
    This applet (One.java) reads the XML file and displays the data in tree structure.
    I kept the One.class file, and all the jar files in the same folder where jsp is there. All the files are in tomcat/webapps/ExceleRATE (project folder).
    This is working fine in the machine where i am running tomcat(for running applets separate setting neet to be made for java.policy file ..that i did in my machine and client machine....), but not working from the different machine, i.e client machine (here my machine will act as server).
    I am getting the following error in client machine:
    load: class One not found.
    java.lang.ClassNotFoundException: One
         at sun.plugin2.applet.Applet2ClassLoader.findClass(Unknown Source)
         at java.lang.ClassLoader.loadClass(Unknown Source)
         at java.lang.ClassLoader.loadClass(Unknown Source)
         at sun.plugin2.applet.Plugin2ClassLoader.loadCode(Unknown Source)
         at sun.plugin2.applet.Plugin2Manager.createApplet(Unknown Source)
         at sun.plugin2.applet.Plugin2Manager$AppletExecutionRunnable.run(Unknown Source)
         at java.lang.Thread.run(Unknown Source)
    Caused by: java.net.ConnectException: Connection refused: connect
         at java.net.PlainSocketImpl.socketConnect(Native Method)
         at java.net.PlainSocketImpl.doConnect(Unknown Source)
         at java.net.PlainSocketImpl.connectToAddress(Unknown Source)
         at java.net.PlainSocketImpl.connect(Unknown Source)
         at java.net.SocksSocketImpl.connect(Unknown Source)
         at java.net.Socket.connect(Unknown Source)
         at sun.net.NetworkClient.doConnect(Unknown Source)
         at sun.net.www.http.HttpClient.openServer(Unknown Source)
         at sun.net.www.http.HttpClient.openServer(Unknown Source)
         at sun.net.www.http.HttpClient.<init>(Unknown Source)
         at sun.net.www.http.HttpClient.New(Unknown Source)
         at sun.net.www.http.HttpClient.New(Unknown Source)
         at sun.net.www.protocol.http.HttpURLConnection.getNewHttpClient(Unknown Source)
         at sun.net.www.protocol.http.HttpURLConnection.plainConnect(Unknown Source)
         at sun.net.www.protocol.http.HttpURLConnection.connect(Unknown Source)
         at sun.net.www.protocol.http.HttpURLConnection.getInputStream(Unknown Source)
         at java.net.HttpURLConnection.getResponseCode(Unknown Source)
         at sun.plugin2.applet.Applet2ClassLoader.getBytes(Unknown Source)
         at sun.plugin2.applet.Applet2ClassLoader.access$000(Unknown Source)
         at sun.plugin2.applet.Applet2ClassLoader$1.run(Unknown Source)
         at java.security.AccessController.doPrivileged(Native Method)
         ... 7 more
    Exception: java.lang.ClassNotFoundException: One
    Can you please help me where I am doing wrong.
    Thank in Advance..

    Wherever you use http://localhost:8080 in your applet tag, it means:
    "Browser, would you please download the applet from the web server running on the same machine as yourself on port 8080".
    But you want it to come from the web server from where you downloaded the page. All the details here: [http://java.sun.com/j2se/1.4.2/docs/guide/misc/applet.html].

  • Unable to view files or web pages

    Hello,
    Can anyone help me out? I am using OS X 10.4.11 and I cant open certain files such as .docx nor can I view certain web pages.
    Thank you...

    Hello FM750,
    The article linked below details a number of steps that can help restore your ability to share items from your Mac.
    If sharing options and Markup are missing after you install OS X Yosemite
    http://support.apple.com/en-us/HT6545
    Cheers,
    Allen

  • For the past week, I am unable to view videos. The page comes up with this comment: "Blocked plug-in" and it suggests that I download the latest version of Flash player. I have downloaded that and still get the same comment. Please help.

    I have an iMac11.2 and am running Mac OS 10.6.8. I have not had a problem viewing videos until the past week or so. Now I cannot view videos on my news, facebook or in email messages at all. A message pops up in the window that says "Blocked plug-in". I have downloaded the latest version of Flash Player for which it asks and still no luck. Can anyone here help me with this? Thank you. Grace

    TThere have been 3 updates to flash player ink the past month.
    download and install the latest.
    this warning seems to be a part of the newer security updates.

  • Downloaded JVM-still unable to view web page

    Downloaded Java Virtual Machine; still unable to view web page. Directed to Microsoft Updates...updated...still not able to view page. Help. THX

    dons magic helmet
    Try this:
    Tools > Internet Options > Advanced
    Uncheck the box that says "Use Java 2 <version> for applet (requires restart)". Restart your browser.
    HTH

  • Unable to view captivate 8 preview project in internet explorer

    unable to view captivate 8 preview>project in internet explorer.  I get 404 web page can't be found.  I haven't built an extensive layout.  I just changed the title text and subtitle text to preview in a browser.  It doesn't want to show any result.  I notice the web address is http://localhost:4932/HTML5Temp5276756792Pre/rindex.html, how do I ensure I'm pulling information from the correct location?  How do I set the parameters to get the file from the proper folder?  I have changed the cache folder location to an external hard drive and I need to know how to let internet explorer recognize where to search for the preview of a project.

    Nothing wrong with the web address. But this is a temporary address which gets generated while previewing.
    After making the changes, did you just hit a Refresh in the browser to preview the updated version? If yes, this won't work as the web address would be different for every preview. Every time you need to preview, you have to initiate it from within Captivate (shortcut for HTML5 preview is F11).
    Sreekanth

  • I wrote a document in the Pages app months ago, and I am now unable to locate it on my computer.  Moreover, someone emailed me the document and I am unable to view it in Google Drive or Pages.  HELP

    I wrote a document in the Pages app months ago, and I am now unable to locate it on my computer.  Moreover, someone emailed me the document and I am unable to view it in Google Drive or Pages.  HELP

    Have you searched for it using the Spotlight? That's the loop icon on the right side of the upper menu bar.

  • I am unable to view some (but not all) videos in Firefox. But I can view ALL videos when I use Internet Explorer. Please help. I do not want to use IE.

    as stated, I am unable to view some videos in Firefox, but I am able to view them when I use Internet Explorer. How can I view all videos when using Firefox. Thank you.

    That is Flash.
    You do have the Flash player installed according to your More system details list, so Flash should be working.
    *Shockwave Flash 10.3 r183
    *http://www.adobe.com/software/flash/about/
    Start Firefox in <u>[[Safe Mode]]</u> to check if one of the extensions is causing the problem (switch to the DEFAULT theme: Firefox (Tools) > Add-ons > Appearance/Themes).
    *Don't make any changes on the Safe mode start window.
    *https://support.mozilla.com/kb/Safe+Mode
    *https://support.mozilla.com/kb/Troubleshooting+extensions+and+themes

  • (X230) Connected to Wifi with excellent signal but unable to load internet pages:

    Hey everyone,
    Hoping for the community to help me figure out a problem of mine.
    Trying to connect my X230 to internet through a new router (Asus - security type WPA-Personal) and although the laptop connects without a problem (98% signal strength), internet pages are not loading. The diagnosis tool isn't finding anything and I could add that other laptops do not have the same problem when connecting to this router.
    My tech level is rather low so I don't know what more I could add to help you guys get a clear view of the situation/problem so if more info is needed, let me know. I won't be far.
    Thanks a lot,
    Patrick 

    Thanks for your help jdhurst,
    To answer your questions:
    1. The machine connects fine on other routers. For example Starbucks (Unsecured), friends house (Linksys on WPA2-Personal), two different schools (WPA-Enterprise and WPA2-Enterprise).
    Maybe it's a coincidence but its the first time the machine tries to connect to a WPA-Personal...
    2. Several other computers connect well to this router. Which leads me to believe that the problem is with the X230.
    3. How do I do this if I can't access internet with the said machine? (sorry, a bit of a noob).
    Extra notes:
    A) When I open up the Wireless Network Connction Status, it says ''No Internet Access'' next to IPv6 Connectivity.
    B) Although this router is set on WPA-Personnal, the Lenovo Access Connections manager seems to think that specific router is in fact a WPA2-PSK
    Hopefully this will generate more thoughts on the subject.

  • I am unable to view thumbail images in google search results page

    When performing a search on Google I am unable to view thumbnails on the main search page. If I click on the placeholder the image will open, I am also able to view thumbnails on the images / videos results page.
    Firefox version 3.6.13
    Running Windows 7, 32 bit professional.
    Addons: Adblock Plus
    Flashblock
    Googlehancer (used to prevent autocomplete.)
    Web of Trust (WOT)
    All addons updated today.
    Cleared cache, cleared history, cleared cookies.
    Able to view results thumbnails on Bing and other search providers.
    Tools > Content > Load Images checked, exceptions are cleared, so all sites should be available.
    Tools > Content > Enable Javascript also checked.
    I suspect, though cannot be sure, that something I did to disable the forced autocomplete function in Google searches also disabled the thumbnail view.

    If you use extensions (Tools > Add-ons > Extension) like <i>Adblock Plus</i> or <i>NoScript</i> or <i>Flash Block</i> that can block content then make sure that such extensions aren't blocking content.
    Start Firefox in [[Safe Mode]] to check if one of the add-ons is causing the problem (switch to the DEFAULT theme: Tools > Add-ons > Themes).
    * Don't make any changes on the Safe mode start window.
    See:
    * [[Troubleshooting extensions and themes]]
    See also http://kb.mozillazine.org/Images_or_animations_do_not_load

  • Unable to view images in my document in the new Maverick Pages!

    Unable to view images in my document in the new Maverick Pages!
    Opened an old doc which had about a hundred placed jpegs in it and when I opened it, Pages said that it wasn't including the background color nor the placed images. Why?

    Hi Suresh,
    Please check that you have crystalreportviewers11 (for version XI) or crystalreportviewers115 ( for version XI R2) folder in your BO installation and your web.xml has correct reference to it. You can copy this folder over in your web application and
    Add an entry in web.xml as follows ( if it doesn't exist)
    <context-param>
      <param-name>crystal_image_uri</param-name>
      <param-value>/<your application name>/crystalreportviewers115</param-value>
    </context-param>
    crystalreportviewers11\115 have images folder which contain all the images for Logo and toolbar. Check the images folder in viewers and make sure that they exist.
    -Aasavari

Maybe you are looking for