What is Sun referering to in the following?

Hi,
I was looking through the Sun tutorial for firewall related material (i'm having problems getting my applet to talk to a servlet on the other side of a firewall) and came accross this:
"Point the browser at the applets linked to by this page. You should be able to see at least the first applet. The second one might not show up, or might show up without images, due to firewall issues with the way it's packaged. "
This is at the following url:
http://java.sun.com/docs/books/tutorial/uiswing/start/swingApplet.html
Near the bottom of the page. What are they talking about?
Thanks
Andre

They simply mean that you should see two applets on that page, this shows you have successfully installed the java plug-in.

Similar Messages

  • HT3275 What if my error message is the following:  The backup disk image "/Volumes/********'s Time Capsul/****'s MacBook Pro.sparsebundle" is already in use. (I have redacted the name of the computer with asterixes)

    What if my error message is the following:  The backup disk image “/Volumes/********'s Time Capsul/****’s MacBook Pro.sparsebundle” is already in use. (I have redacted the name of the computer with asterixes)

    This is a complex procedure.  
    Pull the power cord from the back of the Time Capsule
    Wait a minute or two
    Plug the power cord back in to the back of the Time Capsule
    This will fix the issue 98% of the time. If you are in the unlucky 2% category, more help is here from Pondini, the Time Machine guru:
    The Backup disk image ... sparsebundle ... is already in use.

  • What does Customer refer to in  the following script?

    What does Customer refer to in the following script? Is it a class name?
    What does return refer to?
    public class Order
    +{+
    +// ...+
    public Customer getCustomer()
    +{+
    return (Customer)m_cacheCustomers.get(m_customerId);
    +}+
    +// ...+
    +}+
    Thank you

    jetq wrote:
    What does Customer refer to in the following script? Is it a class name?
    What does return refer to?
    public class Order
    +{+
    +// ...+
    public Customer getCustomer()
    +{+
    return (Customer)m_cacheCustomers.get(m_customerId);
    +}+
    +// ...+
    +}+
    Thank youHi Frank,
    in this example the Customer is the Java class of objects which are put into a cache and is not Coherence specific at all. This is just the return type similarly to how a (stored) function in Oracle may return a row-type containing multiple values.
    The return is a Java keyword which in a non-void method instructs the JVM to return the value of the expression following it from the method as the method return value if an expression follows it, and in a void method it simply returns from the method (no return value in this case, similarly to stored procedures).
    Sorry for my saying so, really no offense intended, but judging from your questions you might want to attend at least a beginners Java course.
    Best regards,
    Robert

  • What can I do after receiving the following message: "An error occurred while contacting the radio tuning service. Check your internet connection, or try again later". This is the message I have received the last 3 days, can anyone help. Thanks

    What can I do after receiving the following message: "An error occurred while contacting the radio tuning service. Check your internet connection, or try again later".
    I have received this message the last 3 days, is itune radio down or am I the only one experiencing this type of problem?
    Need help.
    Thanks
    Sam3

    Ok.. Apparently it's not just me
    Apple needs to make a statement or something on this issue.  I'm running Lion OS X 10.7.3

  • I am unable to find the Firefox button referred to in the following: At the top of the Firefox window, click on the Firefox button and then select Options

    Every instruction Mozilla offers to find or to do something contains a term or a phrase that is indeciphrable.
    I have been trying to change "Cookie Settings" so of course Mozilla advises me to click the Mozilla button at the top of the page. And of course there is no Mozilla button at the top of the page. Then after wading through Mozilla's arcane and moronic help sections I end up at the following:
    Display the Firefox button menu instead of the menu toolbar.
    Why don't I see it? (the Firefox button)
    Apparently the Firefox button is a new feature added in Firefox 4 to replace the Menu Bar. The menu bar is displayed instead of the Firefox button to make Firefox look like other Windows XP programs. Windows XP? Are you kidding me? Windows XP. Earth to Mozilla: Have you heard of Windows 8 or Windows 8.1?
    Then your instructions go on to refer to Windows Vista and Windows 7. JFC!
    Then, under "How to get it?" Mozilla offers the following gem:
    Right click on an empty section of the "Tab Strip" and uncheck "Menu Bar" om the pop-up menu.
    WHAT IS A TAB STRIP; and WHERE IS THE TAB STRIP? Again, JFC!
    Since these instructions refer to Windows XP, Windows Vista, and Windows 7, apparently these instructions haven't been upgraded for more than 2 years. No wonder Mozilla is a non-profit organization. There is no way that this organization could ever be profitable under any other structure.
    Mozilla's instructions on how to turn off the Menu Bar in order to get

    What do you currently see?
    Can you attach a screenshot?
    *http://en.wikipedia.org/wiki/Screenshot
    *https://support.mozilla.org/kb/how-do-i-create-screenshot-my-problem
    Use a compressed image type like PNG or JPG to save the screenshot.
    Do you have the menu bar?
    *Press the F10 key or tap the Alt key to bring up the hidden Menu bar.
    Do you have any toolbars visible at all?
    Start Firefox in <u>[[Safe Mode|Safe Mode]]</u> to check if one of the extensions (Firefox/Tools > Add-ons > Extensions) or if hardware acceleration is causing the problem (switch to the DEFAULT theme: Firefox/Tools > Add-ons > Appearance).
    *Do NOT click the Reset button on the Safe Mode start window.
    *https://support.mozilla.org/kb/Safe+Mode
    *https://support.mozilla.org/kb/Troubleshooting+extensions+and+themes
    Make sure that you do not run Firefox in full screen mode (press F11 or Fn + F11 to toggle; Mac: Command+Shift+F).
    *https://support.mozilla.org/kb/how-to-use-full-screen
    You can check for problems caused by a corrupted localstore.rdf file.
    *http://kb.mozillazine.org/Corrupt_localstore.rdf

  • What does this name mean in the following form

    Hi guys,
    Can anyone please tell me abt the name field and also other field onSubmit does in the following form
    <form method="post" action="IAFDispatcher" name="mainForm2" onSubmit="return checkCustomer()">
    Thanks in advance.

    Hi guys,
    Can anyone please tell me abt the name
    abt the name field and also other field onSubmit does
    in the following form
    <form method="post" action="IAFDispatcher"
    name="mainForm2" onSubmit="return checkCustomer()">
    Thanks in advance.The name field is used for identifying this form on the client side, such as through javascript DOM operations (like document.forms.mainForm2 would locate the form in question).
    The onSubmit attribute defines a javascript function that will occur when the 'onsubmit' event of the form is given. The 'onsubmit' event occurs when a submit button is pushed or when a javascript .submit() method is called on the form. The function called my the onsubmit event should return a boolean value: "true" means that submission should continue, and "false" means that the form should not be submitted.
    http://www.w3schools.com/tags/tag_form.asp
    http://www.w3schools.com/tags/eventattributes.asp

  • What result would I get for the following?

    Assume we have Image object, width and height already.
    public int[][] getRedArray()
    int values[] = new int[imageWidth * imageHeight];
    PixelGrabber grabber = new PixelGrabber(imageobj.getSource(), 0, 0, imageWidth, imageHeight, values, 0, imageWidth);
    try
    if(grabber.grabPixels() != true)
    try
    throw new AWTException("Grabber returned false: " + grabber.status());
    catch (Exception e) {};
    catch (InterruptedException e) {};
    int r[][] = new int[imageWidth][imageHeight];
    int index = 0;
    for (int y = 0; y < imageHeight; ++y)
    for (int x = 0; x < imageWidth; ++x)
    r[x][y] = ((values[index] & 0x00ff0000) >> 16);
    index++;
    return r;
    Could you please please explain how this code works? brief step-by-step explaination would be satisfied.
    Please explain explicitly how "r[x][y] = ((values[index] & 0x00ff0000) >> 16);" this works.
    Thank you so much!! :)

    Consider the following :
    In this case a color is stored as 4 bytes. Each byte holds a color component, namely Alpha, Red, Green and Blue. In that order.
    Now, 4 bytes = 1 int. The color is stored in an int, so bits 16-23 hold the red component. If you want to isolate that byte you'll need to do two things :
    1) Isolate the "red" bits
    2) Move them from bits 16-23 to 0-7
    So, if we take the color value in bits, where A, R G and B signify a single bit reserved for an alpha, red, green or blue color component respectively :
    AAAAAAAARRRRRRRRGGGGGGGGBBBBBBBBStep 1) is isolating the red :
    00000000RRRRRRRR0000000000000000You do this by doing a bitwise AND with operand 1 being the color int, and operands 2 being an integer whose 16-23 bits are set :
    color & 0x00ff0000Step 2) is moving the red bits to 0-7 :
    (color & 0x00ff0000) >> 16
    000000000000000000000000RRRRRRRRNow it's a valid integer value ranging from 0-255 and you can use it, as done in your code snippet.

  • What solutions would be needed for the following scenario

    I have a client who operates two companies.
    One company manufactures a specific piece of equipment.
    The other company rents, sells and services this piece of equipment.  This equipment consists of three major interchangeable components.
    They need to track:
    Customer information u2013 company name, contact person, start date, end date, sold or rental unit, service schedule on the three major components.
    Equipment information u2013 where it is, which components it consists of, service records, forecast of service requirement, data on each specific component.
    Job information u2013 field tickets, work orders, distance traveled for installations and service work, how long  units have been running.
    Revenue information u2013 all pertinent information as well as what was billed and when.
    Inventory information u2013 all pertinent information as well as which parts have been used by manufacturing and which parts have been used to maintain the rental assets or service on sold equipment.
    They also want to automatically contact operators and client about upcoming service dates.
    My expertise is in SAP HR.  Which SAP modules would they need to accomplish this?  Is there another solution they should consider?

    They need to track:
    Customer information u2013 company name, contact person, start date, end date, sold or rental unit, service schedule on the three major components.
    SD Modules
    Equipment information u2013 where it is, which components it consists of, service records, forecast of service requirement, data on each specific component.
    PM Modules
    Job information u2013 field tickets, work orders, distance traveled for installations and service work, how long units have been running.
    PM Modules
    Revenue information u2013 all pertinent information as well as what was billed and when.
    SD Modules
    Inventory information u2013 all pertinent information as well as which parts have been used by manufacturing and which parts have been used to maintain the rental assets or service on sold equipment.
    MM Module
    They also want to automatically contact operators and client about upcoming service dates.
    CS Module

  • What can i do to fix the following : You may need an additional audio decoder to play the soundtrack of this file. This file contains a track in the Dolby AC3 Audio (code "8192") format. You may need to install a DirectShow decoder for this audio format i

    You may need an additional audio decoder to play the soundtrack of this file.
    This file contains a track in the Dolby AC3 Audio (code "8192") format. You may need to install a DirectShow decoder for this audio format in order to hear the soundtrack of this file.

    Luckily, there are DOZENS of video/media players and extensions avaliable for the Mac. Many of them are FREE, some of the better FREE ones are...
    PERIAN (quicktime extension)
    http://perian.org/
    QUICKTIME 7.6.6
    http://support.apple.com/kb/DL923
    VLC media player
    http://www.videolan.org/vlc/
    NICEPLAYER
    https://code.google.com/p/niceplayer/
    And if none of those work, there is a possibility that those video files may be corrupted.

  • Importing - Exporting Tables, What is best to do with the following;

    This is purely down to my general interest, I can do both but just wondered which is best to do?
    Export a table / import table / drop table
    Export table (truncated)/ import table
    Any adverse effects?
    To Truncate or not Truncate?
    Any advice or comments gratefully received.
    Message was edited by:
    Jamie Gadong

    Hi,
    If your table is going to be the same, you may go for the TRUNCATE approach.
    Pros: all blocks assigned to the segment/table are not released (DROP releases space)
    that will free the DB of that activity when loading data.
    Cons: importing data reorganizes data, usually defragmenting space allocated...therefore you may get some empty extents (that may be used later), this is not preciselly a minus if your table is going to grow: you'll have space preallocated.
    Regards
    Ignacio
    http://oracledisect.blogspot.com

  • Hashtables: What on earth is wrong with the following code!?

    I'm loosing my mind here:
    [jdk1.4.2]
    //random code...
            Hashtable threads = new Hashtable(20);
            threads.put(portNum, ipThread); //portNum is of type int
                                            //ipThread is of type ThreadX, ThreadX extends Thread
    //other code...
            ThreadX t;
            t = (ThreadX)threads.get(packet.getPort());  //packet.getPort() returns an INTAnd the compiler returns this:
    path>javac *.java
    IPServer.java:58: cannot resolve symbol
    symbol : method put (int,ThreadX)
    location: class java.util.Hashtable
    threads.put(destinationPort, ipThread);
    ^
    IPServer.java:67: cannot resolve symbol
    symbol : method get (int)
    location: class java.util.Hashtable
    t = (ThreadX)threads.get(packet.getPort());
    ^
    2 errors
    Thanks ahead of time.

    From the JDK 1.4.2 documentation
    "This class implements a hashtable, which maps keys to values. Any non-null object can be used as a key or as a value.
    To successfully store and retrieve objects from a hashtable, the objects used as keys must implement the hashCode method and the equals method. "
    I assumed from that an int or double or any other primitive, which implements both the hashCode and equals method, would work.

  • I updated my Itunes to the latest version(11.1.4) and it isn't running on my laptop. The current OS is a W7 ultimate 64bits, when i try to run it, opens a message box with the following error message: error 7 (windows error 1114) . What should I do?

    I updated my Itunes to the latest version(11.1.4) and it isn't running on my laptop. The current OS is a W7 ultimate 64bits, when i try to run it, opens a message box with the following error message: error 7 (windows error 1114) . What should I do?

    Try the following user tip:
    Troubleshooting issues with iTunes for Windows updates

  • TS2580 I am attempting to use a 3rd party host to publish web site designed from I-web. The main page of the site is asking for host IP address, etc.  I've got all that, except it is asking for Directory/Path.  To what is this referring?  Thanks!

    I am attempting to publish a web site designed on i-web using a 3rd party host.  The main page of my web site is asking for IP address of host, etc.  I have all that, but it is asking for Directory/Path.  To what is this referring?
    Thanks.

    The directory/path is the path to the root folder and, in most cases, should be left blank...
    http://www.iwebformusicians.com/iWeb/Publish-Website.html

  • Ojc will compile the following class. A bug?

    I thought that in Java classes cannot be declared protected. ojc will however compile the following class:
    protected class aclass
    The Sun java compiler prints the following error:
    aclass.java:1: modifier protected not allowed here
    protected class aclass
    Is this a known bug in the Oracle Java compiler?

    Yes, it seems we have a little bug in OJC, the protected access modifier should only be allowed for member classes. I filed a bug report and I'll fix it.
    Thanks!
    Keimpe Bronkhorst
    JDev Team

  • Wuc-15 form must contain the following bean

    hi
    i am trying to use the client_text_io api's in a form but i keep getting the wuc-15 error (your form must contain the following bean for this function to be available - oracle.forms.webutil.file.FileFunctions). i do have the webutil object group in the form, i added it after attaching the library but i did go back and recompile all the pl/sql code just in case. forms90_path does include webutil/forms.
    the only thing that i can see that might be a problem is that because of utf8 issues i have to use the sun jdk. i have the following block in my formsweb.cfg file to force the form to use the sun jdk instead of jinitiator
    [jdk_plugin]
    basehtmljinitiator=basejpi.htm
    basehtmlie=basejpi.htm
    baseHTMLjpi=basejpi.htm
    jpi_download_page=http://java.sun.com/j2se/1.4.2/download.html
    jpi_classid=clsid:CAFEEFAC-0014-0002-0004-ABCDEFFEDCBA
    jpi_codebase=http://java.sun.com/products/plugin/autodl/jinstall-142-windows-i586.cab#Version=1,4,2,0
    jpi_mimetype=application/x-java-applet;version=1.4.2
    i have left it this way since when i change the basehtml entries to use the webutil templates i get thrown back into jinitiator. is this causing the wuc-15 error? if it is how do i use the webutil templates with the sun jdk?
    thanks
    penny svetlik

    the forms90_path variable contains less than 100 characters.
    i ran the form with increased trace level but did not get anything additional in the way of errors (just the usual 'unable to attach library' error in the alert box). here is the trace information. by the way why do the findlocalhost and getipaddress calles repeat 8 times?
    Registered modality listener
    Registered modality listener
    Referencing classloader: sun.plugin.ClassLoaderInfo@17431b9, refcount=1
    Referencing classloader: sun.plugin.ClassLoaderInfo@12884e0, refcount=1
    Loading applet ...
    Initializing applet ...
    Starting applet ...
    Loading applet ...
    Initializing applet ...
    Starting applet ...
    Connecting http://epn-svetlikp-3.nci.nih.gov:8888/forms90/webutil/webutil.jar with no proxy
    Connecting http://epn-svetlikp-3.nci.nih.gov:8888/forms90/java/f90all.jar with no proxy
    Loading http://epn-svetlikp-3.nci.nih.gov:8888/forms90/java/f90all.jar from cache
    Loading http://epn-svetlikp-3.nci.nih.gov:8888/forms90/webutil/webutil.jar from cache
    Certificates for http://epn-svetlikp-3.nci.nih.gov:8888/forms90/webutil/webutil.jar is read from JAR cache
    Certificates for http://epn-svetlikp-3.nci.nih.gov:8888/forms90/java/f90all.jar is read from JAR cache
    Modality pushed
    Modality pushed
    Modality popped
    Modality popped
    User selected: 0
    RegisterWebUtil - Loading Webutil Version 1.0.2 Beta
    Loaded image: jar:http://epn-svetlikp-3.nci.nih.gov:8888/forms90/java/f90all.jar!/oracle/forms/icons/splash.gif
    Loaded image: jar:http://epn-svetlikp-3.nci.nih.gov:8888/forms90/java/f90all.jar!/oracle/forms/icons/oracle_logo.gif
    Loaded image: jar:http://epn-svetlikp-3.nci.nih.gov:8888/forms90/java/f90all.jar!/oracle/forms/icons/bgnd.gif
    Connecting http://epn-svetlikp-3.nci.nih.gov:8888/forms90/java/oracle/forms/registry/Registry.dat with no proxy
    Connecting http://epn-svetlikp-3.nci.nih.gov:8888/forms90/java/oracle/forms/registry/default.dat with no proxy
    proxyHost=null
    proxyPort=0
    connectMode=HTTP, native.
    Connecting http://epn-svetlikp-3.nci.nih.gov:8888/forms90/f90servlet?config=jdk_plugin&form=C:\OraHome1\forms90\webutil\Webutil_demo\WU_TEST.fmx&buffer_records=NO&debug_messages=NO&array=YES&query_only=NO&quiet=NO&RENDER=YES&acceptLanguage=en-us,en;q=0.5&ifcmd=startsession with no proxy
    Connecting http://epn-svetlikp-3.nci.nih.gov:8888/forms90/l90servlet;jsessionid=7de1dca002db47ac915d9a2dfdbf1eae?ifcmd=getinfo&ifhost=epn-svetlikp-3&ifip=156.40.35.44 with no proxy
    Connecting http://epn-svetlikp-3.nci.nih.gov:8888/forms90/l90servlet;jsessionid=7de1dca002db47ac915d9a2dfdbf1eae with no proxy
    Forms Applet version is : 902122
    Connecting http://epn-svetlikp-3.nci.nih.gov:8888/forms90/l90servlet;jsessionid=7de1dca002db47ac915d9a2dfdbf1eae with no proxy
    Loaded image: jar:http://epn-svetlikp-3.nci.nih.gov:8888/forms90/java/f90all.jar!/oracle/forms/icons/frame.gif
    2004-Apr-08 08:43:50.544 WUI[VBeanCommon.findLocalHost()] obtaining LocalHost info from InetAddress
    2004-Apr-08 08:43:50.604 WUI[VBeanCommon.getIPAddress()] 156.40.35.44
    2004-Apr-08 08:43:50.654 WUF[VBeanCommon.findLocalHost()] obtaining LocalHost info from InetAddress
    2004-Apr-08 08:43:50.684 WUF[VBeanCommon.getIPAddress()] 156.40.35.44
    2004-Apr-08 08:43:50.724 WUH[VBeanCommon.findLocalHost()] obtaining LocalHost info from InetAddress
    2004-Apr-08 08:43:50.764 WUH[VBeanCommon.getIPAddress()] 156.40.35.44
    2004-Apr-08 08:43:50.784 WUS[VBeanCommon.findLocalHost()] obtaining LocalHost info from InetAddress
    2004-Apr-08 08:43:50.804 WUS[VBeanCommon.getIPAddress()] 156.40.35.44
    2004-Apr-08 08:43:50.835 WUT[VBeanCommon.findLocalHost()] obtaining LocalHost info from InetAddress
    2004-Apr-08 08:43:50.855 WUT[VBeanCommon.getIPAddress()] 156.40.35.44
    Connecting http://epn-svetlikp-3.nci.nih.gov:8888/forms90/webutil/jacob.jar with no proxy
    Loading http://epn-svetlikp-3.nci.nih.gov:8888/forms90/webutil/jacob.jar from cache
    Certificates for http://epn-svetlikp-3.nci.nih.gov:8888/forms90/webutil/jacob.jar is read from JAR cache
    2004-Apr-08 08:43:51.415 WUO[VBeanCommon.findLocalHost()] obtaining LocalHost info from InetAddress
    2004-Apr-08 08:43:51.435 WUO[VBeanCommon.getIPAddress()] 156.40.35.44
    2004-Apr-08 08:43:51.495 WUL[VBeanCommon.findLocalHost()] obtaining LocalHost info from InetAddress
    2004-Apr-08 08:43:51.505 WUL[VBeanCommon.getIPAddress()] 156.40.35.44
    2004-Apr-08 08:43:51.536 WUB[VBeanCommon.findLocalHost()] obtaining LocalHost info from InetAddress
    2004-Apr-08 08:43:51.556 WUB[VBeanCommon.getIPAddress()] 156.40.35.44
    Connecting http://epn-svetlikp-3.nci.nih.gov:8888/forms90/java/oracle/ewt/alert/resource/AlertBundle_en_US.class with no proxy
    Connecting http://epn-svetlikp-3.nci.nih.gov:8888/forms90/java/oracle/ewt/alert/resource/AlertBundle_en_US.properties with no proxy
    Connecting http://epn-svetlikp-3.nci.nih.gov:8888/forms90/l90servlet;jsessionid=7de1dca002db47ac915d9a2dfdbf1eae with no proxy
    Connecting http://epn-svetlikp-3.nci.nih.gov:8888/forms90/l90servlet;jsessionid=7de1dca002db47ac915d9a2dfdbf1eae with no proxy
    2004-Apr-08 08:43:54.630 WUI[VBeanCommon.destroy()] WebUtil GetClientInfo Utility being removed..
    2004-Apr-08 08:43:54.640 WUF[VBeanCommon.destroy()] WebUtil Client Side File Functions being removed..
    2004-Apr-08 08:43:54.660 WUH[VBeanCommon.destroy()] WebUtil Client Side Host Commands being removed..
    2004-Apr-08 08:43:54.680 WUS[VBeanCommon.destroy()] WebUtil Session Monitoring Facilities being removed..
    2004-Apr-08 08:43:54.700 WUT[VBeanCommon.destroy()] WebUtil File Transfer Bean being removed..
    2004-Apr-08 08:43:54.720 WUO[VBeanCommon.destroy()] WebUtil Client Side Ole Functions being removed..
    2004-Apr-08 08:43:54.730 WUL[VBeanCommon.destroy()] WebUtil C API Functions being removed..
    2004-Apr-08 08:43:55.381 WUB[VBeanCommon.destroy()] WebUtil Browser Functions being removed..
    Connecting http://epn-svetlikp-3.nci.nih.gov:8888/forms90/l90servlet;jsessionid=7de1dca002db47ac915d9a2dfdbf1eae with no proxy

Maybe you are looking for

  • Use of Ant in OAF

    Hello, Pls someone explain me that, what is the use of ANT in OAF?? Any link will also be helpful!!! Thanks, UKJ

  • This content cannot be selected at this time.

    when I will go in to the store, I can see the special offers and so on, but when I shall go in to see all games, this comes up "This content cannot be selected at this time" it have been like this in several hours now, and I am tierd of it....I live

  • How many GB do I need

    Hello - how far might the 16GB size take me if I am mostly a word processing, booke reading video conferencing and music user?  Some video and photos, but not intensive? thanks!

  • Query about converting XML

    Hello All, I have two XML files. I want to know the technical name for each file and how to convert from file1 to file2. Answer will be rewarded. Thank you. File 1 <?xml version="1.0"?> <SAP_MAT>      <MAT_LIST>           <CLIENTDATA>                

  • The Creative MuVo 2 FM quest

    I was considering buying a The Creative MuVo 2 FM and I had a couple of questions. Can you create on the fly playlists on this unit, and will this unit ever be upgradable to subscription services or is it too old to upgrade. Also, is there any headph