GIF loader

I have found an BMP loader in the internet resource.
It take in BMP value and translate it into ARGB form.
Could I know where to get an example to load the GIF source as ARGB source?
Thank you....
Below is the sample code for BMP loader:
import java.io.FileInputStream;
import javax.swing.JFrame;
import javax.swing.JOptionPane;
import javax.swing.JProgressBar;
public class LoadBitmapBytes {
     private JProgressBar progress;
     private JFrame myFrame;
     private int nwidth;
     private int nheight;
     private int[] ndata;
      * Constructor for LoadBitmapBytes
      * @param progress a reference to the progress bar
      * @param myFrame a reference to the main JFrame
     public LoadBitmapBytes(JProgressBar progress, JFrame myFrame) {
       this.progress = progress;
       this.myFrame = myFrame;
      * Method that reads the bitmap in
      * @param fullPath the path to the bitmap
      * @return the dat bytes from the image (in Alpha, Red, Green, Blue)
     public int[] loadbitmap (String fullPath)
          try
              FileInputStream fs=new FileInputStream(fullPath);
              int bflen=14;  // 14 byte BITMAPFILEHEADER
               byte[] bf = new byte[bflen];
              fs.read(bf,0,bflen);
              int bilen=40; // 40-byte BITMAPINFOHEADER
               byte[] bi = new byte[bilen];
              fs.read(bi,0,bilen);
              // Interperet data.
              int nsize = (((int)bf[5]&0xff)<<24)     | (((int)bf[4]&0xff)<<16)
                          | (((int)bf[3]&0xff)<<8) | (int)bf[2]&0xff;
              //System.out.println("File type is :"+(char)bf[0]+(char)bf[1]);
              //System.out.println("Size of file is :"+nsize);
              int nbisize = (((int)bi[3]&0xff)<<24) | (((int)bi[2]&0xff)<<16)
                             | (((int)bi[1]&0xff)<<8) | (int)bi[0]&0xff;
              //System.out.println("Size of bitmapinfoheader is :"+nbisize);
              nwidth = (((int)bi[7]&0xff)<<24) | (((int)bi[6]&0xff)<<16)
                           | (((int)bi[5]&0xff)<<8) | (int)bi[4]&0xff;
              //System.out.println("Width is :"+nwidth);
              nheight = (((int)bi[11]&0xff)<<24) | (((int)bi[10]&0xff)<<16)
                            | (((int)bi[9]&0xff)<<8) | (int)bi[8]&0xff;
              //System.out.println("Height is :"+nheight);
              int nplanes = (((int)bi[13]&0xff)<<8) | (int)bi[12]&0xff;
              //System.out.println("Planes is :"+nplanes);
              int nbitcount = (((int)bi[15]&0xff)<<8) | (int)bi[14]&0xff;
              //System.out.println("BitCount is :"+nbitcount);
              // Look for non-zero values to indicate compression
              int ncompression = (((int)bi[19])<<24) | (((int)bi[18])<<16)
                                   | (((int)bi[17])<<8) | (int)bi[16];
              //System.out.println("Compression is :"+ncompression);
              int nsizeimage = (((int)bi[23]&0xff)<<24) | (((int)bi[22]&0xff)<<16)
                                | (((int)bi[21]&0xff)<<8) | (int)bi[20]&0xff;
              //System.out.println("SizeImage is :"+nsizeimage);
              int nxpm = (((int)bi[27]&0xff)<<24)     | (((int)bi[26]&0xff)<<16)
                         | (((int)bi[25]&0xff)<<8) | (int)bi[24]&0xff;
              //System.out.println("X-Pixels per meter is :"+nxpm);
              int nypm = (((int)bi[31]&0xff)<<24)     | (((int)bi[30]&0xff)<<16)
                         | (((int)bi[29]&0xff)<<8) | (int)bi[28]&0xff;
              //System.out.println("Y-Pixels per meter is :"+nypm);
              int nclrused = (((int)bi[35]&0xff)<<24)     | (((int)bi[34]&0xff)<<16)
                              | (((int)bi[33]&0xff)<<8) | (int)bi[32]&0xff;
              //System.out.println("Colors used are :"+nclrused);
              int nclrimp = (((int)bi[39]&0xff)<<24) | (((int)bi[38]&0xff)<<16)
                             | (((int)bi[37]&0xff)<<8) | (int)bi[36]&0xff;
              //System.out.println("Colors important are :"+nclrimp);
               if (ncompression != 0) {
                    JOptionPane.showMessageDialog(myFrame  , "Image must not have compression" +
                              ", aborting...", "Error", JOptionPane.ERROR_MESSAGE);
                    progress.setString("Error - Image must not have compression");
                    return null;
              if (nbitcount==24)
                    //No Palatte data for 24-bit format but scan lines are
                    //padded out to even 4-byte boundaries.
                    int npad = (nsizeimage / nheight) - nwidth * 3;
                    if (npad == 4)   // <==== Bug correction
                         npad = 0;     // <==== Bug correction
                    ndata = new int [nheight * nwidth];
                    byte brgb[] = new byte [( nwidth + npad) * 3 * nheight];
                    progress.setValue(0);
                    progress.setMaximum(nsizeimage);
                    int increment = brgb.length / 100;
                    int offset = 0;
                    if (increment < 1) {
                         increment = 1;
                  int numRead = 0;                                                         //bytes.length-offset
                  while (offset < brgb.length && (numRead=fs.read(brgb, offset, increment)) >= 0) {
                      offset += numRead;
                         //progress for reading the data file
                         progress.setValue(offset);
                         //System.out.println("offset : " + offset);
                         if (offset + increment > brgb.length) {
                              increment = brgb.length - offset;
                         //update the progress bar
                         myFrame.update(myFrame.getGraphics());
                           //byte //offset //increment
                    //fs.read (brgb, 0, (nwidth + npad) * 3 * nheight);
                    int nindex = 0;
                    for (int j = 0; j < nheight; j++)
                         for (int i = 0; i < nwidth; i++)
                              ndata [nwidth * (nheight - j - 1) + i] =
                             (255&0xff)<<24 | (((int)brgb[nindex+2]&0xff)<<16)
                             | (((int)brgb[nindex+1]&0xff)<<8) | (int)brgb[nindex]&0xff;
                              //System.out.println("Encoded Color at ("+i+","+j+")is: "+" (R,G,B)= ("+((int)(brgb[2]) & 0xff)+","+((int)brgb[1]&0xff)+","+((int)brgb[0]&0xff)+")");
                              nindex += 3;
                         nindex += npad;
                    //print out the binary to the console
                    for (int i = 0 ; i < ndata.length ; i++) {
                         StringBuffer buf = new StringBuffer( Integer.toBinaryString(ndata) );
                         // 4 bytes
                         while (buf.length()<32)
                         buf.insert(0, '0');
                         System.out.println("ndata[" + i + "] : " + buf);
               //if not a 24 bit bit bitmap
               //WK
               else
                    fs.close();
                    JOptionPane.showMessageDialog(myFrame , "Not a 24-bit Windows Bitmap, aborting...", "Information", JOptionPane.ERROR_MESSAGE);
                    progress.setString("Error - Not a 24-bit Bitmap Image");
                    return null;
          fs.close();
          return ndata;
          catch (Exception e)
               JOptionPane.showMessageDialog(myFrame , "An Error Occurred while Loading the Bitmap!" +
                         "\nPlease choose the Image again", "Error", JOptionPane.ERROR_MESSAGE);
               progress.setString("An Error Occurred while Loading the Bitmap!");
               return null;
     * @return Returns the nheight.
     public int getNheight() {
          return nheight;
     * @param nheight The nheight to set.
     public void setNheight(int nheight) {
          this.nheight = nheight;
     * @return Returns the nwidth.
     public int getNwidth() {
          return nwidth;
     * @param nwidth The nwidth to set.
     public void setNwidth(int nwidth) {
          this.nwidth = nwidth;

Here is some modification on the code to support the loading of GIF into int []
But i face the error of java.lang.IllegalStateException: Input not set!
anyone could tell me , what happen to my code?
Thank you very much .
import java.io.FileInputStream;
import javax.swing.JFrame;
import javax.swing.JOptionPane;
import javax.imageio.*;
import javax.imageio.stream.*;
import java.awt.image.*;
import java.io.*;
import java.util.*;
public class LoadBitmapBytes {
     private JFrame myFrame;
     private int nwidth;
     private int nheight;
     private int[] ndata;
     public LoadBitmapBytes(JFrame myFrame) {
public int [] loadGif(String fullPath){
     // WK 10 March 2008
     try{
               String modifier = "0";
               FileInputStream fin = new FileInputStream(fullPath);
               byte [] imageByte = new byte[fin.available()];// construct the byte array depends on the fin size
               fin.read(imageByte);// read the image into byte array form fin WK 10Mac08
               // here is used to retrieve the pixel value in the int [], which later need to returned
               ImageInputStream iis = ImageIO.createImageInputStream(new File("C:\\" + fullPath));// this input
               Iterator readers = ImageIO.getImageReadersBySuffix("gif");
               ImageReader r = (ImageReader)(readers.next());
               r.setInput(iis, true);
               BufferedImage bi = r.read(0);
               BufferedImage bufImage1 = bi;
               int rgb = 0;
               for(int j = 0 ; j < bi.getHeight() ; j++)     
                    for(int i = 0 ; i < bi.getWidth() ; i++)
                         rgb = bufImage1.getRGB(i,j);
                         int alpha = ((rgb >> 24) & 0xff);
                        int red = ((rgb >> 16) & 0xff);
                        int green = ((rgb >> 8) & 0xff);
                        int blue = ((rgb ) & 0xff);
                         System.out.println("A   ["+i+"]["+j+"] :"+alpha);
                        System.out.println("R   ["+i+"]["+j+"] :"+red);
                       System.out.println("G   ["+i+"]["+j+"] :"+green);
                        System.out.println("B   ["+i+"]["+j+"] :"+blue);             
                       System.out.println("RGB ["+i+"]["+j+"] :"+rgb+"\n");
                        rgb = (alpha << 24) | (red << 16) | (green << 8) | blue;
                         bufImage1.setRGB(i, j, rgb);
               WritableRaster wr = bufImage1.getRaster();
               int [] iArray = new int[wr.getWidth() * wr.getHeight() * 3];
               System.out.println("Width:" + wr.getWidth());
               System.out.println("Height:" + wr.getHeight());
               wr.getPixels(0, 0, wr.getWidth(), wr.getHeight(), iArray);
               for(int i=0; i<iArray.length; i++)
                    iArray[i] += Integer.parseInt(modifier);
                    if(iArray[i] > 255)
                         iArray[i] = 255;
                    if(iArray[i] < 0)
                         iArray[i] = 0;
          //     return the dat bytes from the image (in Alpha, Red, Green, Blue)
                    return iArray;
     catch(Exception e){
               JOptionPane.showMessageDialog(myFrame  , "An Error Occurred while Loading the GIF!" +
                         "\nPlease choose the Image again", "Error", JOptionPane.ERROR_MESSAGE);
               System.out.println(e);
               return null;
      * @return Returns the nheight.
     public int getNheight() {
          return nheight;
      * @param nheight The nheight to set.
     public void setNheight(int nheight) {
          this.nheight = nheight;
      * @return Returns the nwidth.
     public int getNwidth() {
          return nwidth;
      * @param nwidth The nwidth to set.
     public void setNwidth(int nwidth) {
          this.nwidth = nwidth;
}

Similar Messages

  • Gif loader for background image

    I simply want to run an animated gif while my background image loads for a slideshow.
    I've searched the web and this forum for hours and can't get the various bits of code tips (ajax, jquery) to work because I'm a totaly idiot when it comes to code...i've tried cutting and pasting in many different configurations but can't get anything to work properly.
    Can someone help me out to get this to work?
    I have this slideshow:
    http://www.piquecollaborative.com/fox.html
    and want an animated gif to run during load of each page
    gif is this:
    http://www.piquecollaborative.com/images/loading.gif
    here is my code for the page(s)
    <!DOCTYPE html PUBLIC "-//W3C//DTD XHTML 1.0 Transitional//EN" "http://www.w3.org/TR/xhtml1/DTD/xhtml1-transitional.dtd">
    <html xmlns="http://www.w3.org/1999/xhtml">
    <head>
    <meta http-equiv="Content-Type" content="Matthew Fox Residence by PIQUE architecture, Peter Jahnke, Eric Meglasson" />
    <meta name="keywords" content="pique llc, architecture, emerging architects, young architects, northwest, peter jahnke, eric meglasson, keith ballantyne, collective studio, collected design" />
    <title>PIQUE: Fox House</title>
    <style type="text/css">
    .projectpage {
        font-family: "Trebuchet MS", Arial, Helvetica, sans-serif;
        color: #333;
    body,td,th {
        font-family: "Trebuchet MS", Arial, Helvetica, sans-serif;
        color: #333;
        font-size: 12px;
    body {
        background-image: url(images/fox-01.jpg);
        background-repeat: no-repeat;
    #title {
        position:absolute;
        width:350px;
        height:65px;
        z-index:1;
        left: 10px;
        top: 10px;
    #apDiv1 {
        position:absolute;
        width:108px;
        height:161px;
        z-index:2;
        top: 3px;
        left: 8px;
    #apDiv2 {
        position:absolute;
        width:237px;
        height:160px;
        z-index:3;
        left: 118px;
        top: 3px;
        text-align: right;
    #text {
        position:absolute;
        width:351px;
        height:194px;
        z-index:4;
        left: 10px;
        top: 90px;
        background-image: url(images/fox-01.jpg);
    #project-text {
        position:absolute;
        width:355px;
        height:300px;
        z-index:5;
        top: 288px;
        text-align: justify;
        left: 13px;
    #right-arrow {
        position:absolute;
        width:90px;
        height:330px;
        z-index:6;
        left: 915px;
        top: 270px;
    </style>
    <script type="text/javascript">
    function MM_preloadImages() { //v3.0
      var d=document; if(d.images){ if(!d.MM_p) d.MM_p=new Array();
        var i,j=d.MM_p.length,a=MM_preloadImages.arguments; for(i=0; i<a.length; i++)
        if (a[i].indexOf("#")!=0){ d.MM_p[j]=new Image; d.MM_p[j++].src=a[i];}}
    function MM_swapImgRestore() { //v3.0
      var i,x,a=document.MM_sr; for(i=0;a&&i<a.length&&(x=a[i])&&x.oSrc;i++) x.src=x.oSrc;
    function MM_findObj(n, d) { //v4.01
      var p,i,x;  if(!d) d=document; if((p=n.indexOf("?"))>0&&parent.frames.length) {
        d=parent.frames[n.substring(p+1)].document; n=n.substring(0,p);}
      if(!(x=d[n])&&d.all) x=d.all[n]; for (i=0;!x&&i<d.forms.length;i++) x=d.forms[i][n];
      for(i=0;!x&&d.layers&&i<d.layers.length;i++) x=MM_findObj(n,d.layers[i].document);
      if(!x && d.getElementById) x=d.getElementById(n); return x;
    function MM_swapImage() { //v3.0
      var i,j=0,x,a=MM_swapImage.arguments; document.MM_sr=new Array; for(i=0;i<(a.length-2);i+=3)
       if ((x=MM_findObj(a[i]))!=null){document.MM_sr[j++]=x; if(!x.oSrc) x.oSrc=x.src; x.src=a[i+2];}
    </script>
    </head>
    <body class="projectpage" onload="MM_preloadImages('images/arrow-rt-inv.png')">
    <div id="title"><img src="images/fox-title.gif" width="350" height="65" /></div>
    <div class="projectpage" id="text">
      <div id="apDiv2">Fox House<br />
        central Oregon<br />
        single family residence<br />
        4175 sqft<br />
        2010<br />
        Timberline construction, Elemental engineering </div>
      <div id="apDiv1">name:<br />
        location:<br />
        type:<br />
        size:<br />
        year:<br />
        collaborators: </div>
    <img src="images/line-dot-small.png" width="361" height="5" /><br />
    <br />
    <br />
    <br />
    <br />
    <br />
    <br />
    <br />
    <img src="images/line-dot-small.png" width="361" height="5" /> </div>
    <div id="project-text">
      <p> This home sits on a bluff  overlooking rolling sagebrush meadows   in Oregon&rsquo;s  High Desert  with views of the Cascade Mountains dominating    the western horizon. The owners, Matthew and Margherita Fox requested   an  extremely durable and energy efficient home for their family.  The   request  for a net zero house necessitated extensive use of photovoltaic   panels, ground  source heat-pumps, careful consideration of day   lighting and shading  strategies, and a super-insulated structure.  </p>
      <p>Italian architect and  childhood friend Maria Chiara Trevisan   created the original vision for the structure  as a gift to the Foxes.    The three masses, originally conceived as  parallelepipedo (rectangular   cubes) resting at various angles in the earth,  evolved into three   shelled structures clad in stone, a loose reference to the  Three   Sisters mountains which dominate the home&rsquo;s view.</p>
      <p>Photos by Nicole Werner, Bob Woodward, Peter Jahnke</p>
    </div>
    <div id="right-arrow"><a href="fox02.html"><img src="images/arrow-rt.png" alt="" name="Image1" width="48" height="48" border="0" id="Image1" onmouseover="MM_swapImage('Image1','','images/arrow-rt-inv.png',1)" onmouseout="MM_swapImgRestore()" /></a></div>
    </body>
    </html>
    can anyone help me get a leg up on this?  Sorry to be such a noob.  This is not my trade and i have more respect for you all now than ever before!  sorry again,

    You might want to reconsider the use of absolutely positioned div's for layout purposes...
    it often leads to big difficulties.http://www.apptools.com/examples/pagelayout101.php
    Regarding your loading gif, try defining a container for the picture
    and position your loading gif as a centered non-repeating background for container
    and insert your image in the container.

  • Why are animated GIFs still broken?

    https://discussions.apple.com/thread/1229922 <-- this
    'nuff said, this has been a problem ever since Preview lost its ability to animate GIFs. It may be a WebKit problem (i.e. yeah, Apple, just go ahead and let yourself off the hook...right), but regardless, how come it has not been addressed sooner? Safari chokes after about 4 frames of animation; if the GIF loops, it starts over fresh, but it chokes again.
    I am using 10.5.8, but I am aware this is still a problem for all 10.6 OSes and iOSes. I don't know about Safari for Windows; not relevant at the moment.
    Why is this still a problem after three-and-a-half years of Safari development have passed?

    Well, here are the issues I have run into.
    1) Gifs load half way and then animate on the base but not on the top.
    2) Gifs animate waaaaaaay too fast.
    I have found no solution for the 1st issue, and it does not always occur.
    As for the second one it has to do with browsers all reading the "0 delay" setting of the animation at uniquee speeds. Most round it to 10/100th of a sec, while Safari loads it at 3/100th resulting in a faster images, but a non-standard speed. Which ***** since I am running animations that follow using a set time out only to have safari throw everything off. I think one other browser runs at something like 6/100ths so Safari is not the only one. Faster could be nice if they all got on the same page, but as they are it is pointless. Pretty much meaning if you want an animated gif you have to avoid the "0 delay setting at all costs, and pretty much anything under 1/10th because it will not display the same in many browsers. It could be this fast speed in Safari that is causing the loading and instability issues with sime.

  • Will there ever be a fix for Animated Gifs  OS 10.5.8

    I realize this extremely stupid bug which has/had been around for many years was apparently fixed in 10.6, but that upgrade is simply not an option for me (as, 10.6 will not install on this machine.)
    the problem is very well known (and many years old): loading a simple animated gif, even very small files, causes Safari to beachball while the gif is downloading (this can take over a minute even for a file under 250k). it should be almost instant (like it is in Firefox)
    this was never a problem using older OS and older versions of Safari (even very large animated gifs loaded very quickly and did not affect system performance.)
    this problem does not exist (and never did exist) in Firefox. i can load animated gif as expected, and very quickly under firefox.
    why did apple refuse to fix this? why do they continue to refuse? it worked fine, and then apple broke it. and it seems like they are leaving it broken on purpose.

    HI,
    Empty the Safari Cache from the Safari Menu Bar more often.
    Go to the Safari Menu Bar, click Safari/Preferences. Make note of all the preferences under each tab. Quit Safari. Now go to ~/Library/Preferences and move this file com.apple.safari.plist to the Desktop.
    Relaunch Safari and see if that makes a difference. If not, move the .plist file back to the Preferences folder. If Safari functions as it should, move that .plist file to the Trash.
    Carolyn

  • File Load is not working on Mac but Windows

    Hi i'm developing an app which simply load files (images and sounds) and uses binary data. Application is working fine on Windows, but it raises error on Mac.
    Now i dont own Mac so i cant debug it, I also googled but couldnt find anything close to it.
    Please advise
    Thanks
    PS: Its an AIR APP
    Here are snippets to understand the code
    //browse file
    _loadFile.addEventListener(Event.SELECT, selectHandler);
    _loadFile.browseForOpen(title, typeFilter);
    //selectHandler
    _loadFile.addEventListener(Event.COMPLETE, loadCompleteHandler);
    _loadFile.load();
    //loadCompleteHandler
    //works on windows but TypeError on Mac
    switch(file.type.toLowerCase()){
      case ".mp3":
      var sound:Sound = new Sound();
      sound.loadCompressedDataFromByteArray(file.data, file.data.length);
      fileHandler(sound);
      break;
      case ".jpg":
      case ".png":
      case ".jpeg":
      case ".gif":
       loader = new Loader();
      loader.contentLoaderInfo.addEventListener(Event.COMPLETE, loadBytesHandler);
      loader.loadBytes(file.data);
      break;
    //loadBytesHandler
    fileHandler(loader.content);

    I just tried a simple File load test and the type property always traces out null. According to the ASDocs, the type property: "On the Macintosh, this property is the four-character file type, which is only used in Mac OS versions prior to Mac OS X. If the FileReference object was not populated, a call to get the value of this property returns null.".
    Further reading into the FileReference docs, all properties are supposed to be populated once the complete event fires and that is when I ran a trace of the File.type.
    Since the is an AIR app, you might want to consider using the extension property instead to know the file extension to run a switch case against. The ASDocs also say that in reference to Mac's: "You should consider the creator and type properties to be considered deprecated. They apply to older versions of Mac OS.".
    If you choose to use the extension property instead, you don't have to include the "." in your switch statement. The ASDocs do say that "If there is no dot in the filename, the extension is null." So, you may want to run some tests on Windows to make sure that "extension" works. On Mac OS, pretty much every user friendly file (image, movie, document, etc) has a file extension so you shouldn't have any concern of extension returning null on Mac OS.
    You probably got the TypeError on Mac OS because you were trying to run a String method on a null object at the start of the switch statement.
    FileReference.extension

  • Forms not Loading

    Hi,
    I recently upgraded the 11i Apps Database to 11g R2. then i upgraded to jdk6 update 18.
    After JDK upgrade the forms are not loading.
    Java console log :
    Loaded image: http://ServerName/OA_MEDIA/appslogo_new.gif
    Loaded image: jar:http://ServerName/OA_JAVA/oracle/apps/fnd/jar/fndaol.jar!/oracle/apps/media/splash.gif
    Loaded image: jar:http://ServerName/OA_JAVA/oracle/apps/fnd/jar/fndforms.jar!/oracle/forms/icons/oracle_logo_light.gif
    connectMode=Socket
    serverHost=Servername
    serverPort=9000
    Forms Applet version is : 60828
    Loaded image: jar:http://ServerName/OA_JAVA/oracle/apps/fnd/jar/fndforms.jar!/oracle/forms/icons/ellipsis.gif
    Loaded image: jar:http://ServerName/OA_JAVA/oracle/apps/fnd/jar/fndforms.jar!/oracle/forms/icons/frame.gif
    Loaded image: jar:http://ServerName/OA_JAVA/oracle/apps/fnd/jar/fndaol.jar!/oracle/apps/media/afapps.gif
    Loaded image: jar:http://ServerName/OA_JAVA/oracle/apps/fnd/jar/fndaol.jar!/oracle/apps/media/afapps.gif
    Loaded image: jar:http://ServerName/OA_JAVA/oracle/apps/fnd/jar/fndaol.jar!/oracle/apps/media/afapps.gif
    Loaded image: jar:http://ServerName/OA_JAVA/oracle/apps/fnd/jar/fndaol.jar!/oracle/apps/media/afapps.gif
    Loaded image: jar:http://ServerName/OA_JAVA/oracle/apps/fnd/jar/fndaol.jar!/oracle/apps/media/afnav.gif
    Loaded image: jar:http://ServerName/OA_JAVA/oracle/apps/fnd/jar/fndaol.jar!/oracle/apps/media/afapps.gif
    Loaded image: jar:http://ServerName/OA_JAVA/oracle/apps/fnd/jar/fndaol.jar!/oracle/apps/media/afinsrw.gif
    Loaded image: jar:http://ServerName/OA_JAVA/oracle/apps/fnd/jar/fndaol.jar!/oracle/apps/media/affind.gif
    Loaded image: jar:http://ServerName/OA_JAVA/oracle/apps/fnd/jar/fndaol.jar!/oracle/apps/media/afnavig.gif
    Loaded image: jar:http://ServerName/OA_JAVA/oracle/apps/fnd/jar/fndaol.jar!/oracle/apps/media/afsave.gif
    Loaded image: jar:http://ServerName/OA_JAVA/oracle/apps/fnd/jar/fndaol.jar!/oracle/apps/media/afnxtstp.gif
    Loaded image: jar:http://ServerName/OA_JAVA/oracle/apps/fnd/jar/fndaol.jar!/oracle/apps/media/afrsp115.gif
    Loaded image: jar:http://ServerName/OA_JAVA/oracle/apps/fnd/jar/fndaol.jar!/oracle/apps/media/afprint.gif
    Loaded image: jar:http://ServerName/OA_JAVA/oracle/apps/fnd/jar/fndaol.jar!/oracle/apps/media/afclsfrm.gif
    Loaded image: jar:http://ServerName/OA_JAVA/oracle/apps/fnd/jar/fndaol.jar!/oracle/apps/media/afcut.gif
    Loaded image: jar:http://ServerName/OA_JAVA/oracle/apps/fnd/jar/fndaol.jar!/oracle/apps/media/afcopy.gif
    Loaded image: jar:http://ServerName/OA_JAVA/oracle/apps/fnd/jar/fndaol.jar!/oracle/apps/media/afpaste.gif
    Loaded image: jar:http://ServerName/OA_JAVA/oracle/apps/fnd/jar/fndaol.jar!/oracle/apps/media/afclrrw.gif
    Loaded image: jar:http://ServerName/OA_JAVA/oracle/apps/fnd/jar/fndaol.jar!/oracle/apps/media/afclrall.gif
    Loaded image: jar:http://ServerName/OA_JAVA/oracle/apps/fnd/jar/fndaol.jar!/oracle/apps/media/afdelrw.gif
    Loaded image: jar:http://ServerName/OA_JAVA/oracle/apps/fnd/jar/fndaol.jar!/oracle/apps/media/afedit.gif
    Loaded image: jar:http://ServerName/OA_JAVA/oracle/apps/fnd/jar/fndaol.jar!/oracle/apps/media/afzoom.gif
    Loaded image: jar:http://ServerName/OA_JAVA/oracle/apps/fnd/jar/fndaol.jar!/oracle/apps/media/aftrans.gif
    Loaded image: jar:http://ServerName/OA_JAVA/oracle/apps/fnd/jar/fndaol.jar!/oracle/apps/media/afattach.gif
    Loaded image: jar:http://ServerName/OA_JAVA/oracle/apps/fnd/jar/fndaol.jar!/oracle/apps/media/affldtls.gif
    Loaded image: jar:http://ServerName/OA_JAVA/oracle/apps/fnd/jar/fndaol.jar!/oracle/apps/media/afhelp.gif
    Loaded image: jar:http://ServerName/OA_JAVA/oracle/apps/fnd/jar/fndaol.jar!/oracle/apps/media/aflleft.gif
    Loaded image: jar:http://ServerName/OA_JAVA/oracle/apps/fnd/jar/fndaol.jar!/oracle/apps/media/aflright.gif
    Loaded image: jar:http://ServerName/OA_JAVA/oracle/apps/fnd/jar/fndaol.jar!/oracle/apps/media/afclps.gif
    Loaded image: jar:http://ServerName/OA_JAVA/oracle/apps/fnd/jar/fndaol.jar!/oracle/apps/media/afclpsa.gif
    Loaded image: jar:http://ServerName/OA_JAVA/oracle/apps/fnd/jar/fndaol.jar!/oracle/apps/media/afxpnda.gif
    Loaded image: jar:http://ServerName/OA_JAVA/oracle/apps/fnd/jar/fndaol.jar!/oracle/apps/media/afxpnd.gif
    Loaded image: jar:http://ServerName/OA_JAVA/oracle/apps/fnd/jar/fndaol.jar!/oracle/apps/media/afxpndc.gif
    Exception in thread "thread applet-oracle.forms.engine.Main-2" java.lang.IllegalAccessError: class oracle.forms.ui.VTextField$FormsPWAccess cannot access its superclass oracle.ewt.lwAWT.lwText.LWTextField$Access
         at java.lang.ClassLoader.defineClass1(Native Method)
         at java.lang.ClassLoader.defineClassCond(Unknown Source)
         at java.lang.ClassLoader.defineClass(Unknown Source)
         at java.security.SecureClassLoader.defineClass(Unknown Source)
         at java.net.URLClassLoader.defineClass(Unknown Source)
         at java.net.URLClassLoader.defineClass(Unknown Source)
         at sun.reflect.GeneratedMethodAccessor1.invoke(Unknown Source)
         at sun.reflect.DelegatingMethodAccessorImpl.invoke(Unknown Source)
         at java.lang.reflect.Method.invoke(Unknown Source)
         at sun.plugin2.applet.Plugin2ClassLoader.defineClassHelper(Unknown Source)
         at sun.plugin2.applet.Plugin2ClassLoader.access$300(Unknown Source)
         at sun.plugin2.applet.Plugin2ClassLoader$2.run(Unknown Source)
         at java.security.AccessController.doPrivileged(Native Method)
         at sun.plugin2.applet.Plugin2ClassLoader.findClassHelper(Unknown Source)
         at sun.plugin2.applet.Applet2ClassLoader.findClass(Unknown Source)
         at java.lang.ClassLoader.loadClass(Unknown Source)
         at java.lang.ClassLoader.loadClass(Unknown Source)
         at java.lang.Class.forName0(Native Method)
         at java.lang.Class.forName(Unknown Source)
         at oracle.forms.handler.TextFieldItem.class$(Unknown Source)
         at oracle.forms.handler.TextFieldItem.getDefaultClass(Unknown Source)
         at oracle.forms.handler.UICommon.instantiate(Unknown Source)
         at oracle.forms.handler.UICommon.onCreate(Unknown Source)
         at oracle.forms.handler.TextFieldItem.onCreate(Unknown Source)
         at oracle.forms.engine.Runform.onCreateHandler(Unknown Source)
         at oracle.forms.engine.Runform.processMessage(Unknown Source)
         at oracle.forms.engine.Runform.processSet(Unknown Source)
         at oracle.forms.engine.Runform.onMessageReal(Unknown Source)
         at oracle.forms.engine.Runform.sendDeferredMessages(Unknown Source)
         at oracle.forms.engine.Runform.onMessage(Unknown Source)
         at oracle.forms.engine.Runform.sendInitialMessage(Unknown Source)
         at oracle.forms.engine.Runform.startRunform(Unknown Source)
         at oracle.forms.engine.Main.createRunform(Unknown Source)
         at oracle.forms.engine.Main.start(Unknown Source)
         at sun.plugin2.applet.Plugin2Manager$AppletExecutionRunnable.run(Unknown Source)
         at java.lang.Thread.run(Unknown Source)
    Can anyone help me on this?
    Thanks
    H2B

    Hi,
    Did AutoConfig complete successfully?
    Have you tried to regenerate the JAR file via adadmin (with force option)?
    Can you reproduce the issue from other clients using different browsers?
    Thanks,
    Hussein

  • Loading Images with 1.3.1 Problem

    Hi!
    I've got a couple of swing applets that use Images. One uses the images for icons and one just draws the images. The images are loaded from jar files. Using version 1.3.0, everything works fine. When I load the applet using 1.3.1 or 1.4, however, the images do not appear on the screen. According to the Java Console, the images did load. I saw messages like:
    Loaded image: jar:file:/C:/rgajava/MKSLeak/jar/leak.htmlMKSLeak.jar!/images/audiooff.gif
    Loaded image: jar:file:/C:/rgajava/MKSLeak/jar/leak.htmlMKSLeak.jar!/images/audioon.gif
    that were displayed when I upped the trace level. The images still do not appear.
    Does anyone know how to fix this? I am loading the images using getImage(URL,String).
    Thanks,
    Derek

    As a partial answer to my own question, the Java tutorial declares that some browsers cannot load images from jar files. This appears to be the case with IE5.5 and Java 1.3.1, but it is strange that IE5.5 and Java 1.3.0 seem to have no problem. Nevertheless, the applet works well and images load if the images are accessed outside of the jar file.
    Derek

  • Need help to explain these codes!!! Urgently!!!

    Hi anyone who's here to help...I am doing my Final year project report now...i dunno how to explain these codes in word...can anyone tell me what it means? what are these codes for...? what does each paragraph indicate?
    thanks.
    sorry, maybe i only insert pieces of the codes and its vague...ok, in this source code...what i dun understand is....i have cut and paste the sections of codes which i dun understand as below..
    bcoz this codes are passed down from my seniors who had graduated...and my task is to explain these codes in the form of a report without me having any background on programming...i tried asking some frens...its either they dunno or forgotten...this is my last hope...thanks again...thanks..
    * new added code */
         Thread scroller;     //for looping purpose
         int loopcounter,count;
         // thread is to allow the program to be called every and then.
         public void init()
              /*new added code */
              loopcounter=0;[list]
    **like whats does "thread scroller" means? Looping purpose? what's looping then?
    **also, i've tried on changing the "Loopcounter = 0" to other numbers like 2 and 5...and when i run it on the appletviewer..my image simply runs out of my page...
    [list]
    *And this part...what does it mean?
    /*new added code*/                                      
                public void start() {                    
                if (scroller == null) {               
                scroller = new Thread(this);         
                scroller.start();                          
        } [list]
    for this section here, i really dunno what it says.. "public void start"--start what? scroller again? new Thread(this)?
    [list]
        public void stop() {    
            if (scroller != null) { 
                scroller.stop();   
                scroller = null; 
        } [list]
    I dunno about this section also.. stops wat??
    [list]
        public void run() {                                                           
              try {Thread.currentThread().sleep(100);}                
                catch (InterruptedException e){}
            for (count=0; count <= 400; ) {  
              try {Thread.currentThread().sleep(20);} 
                catch (InterruptedException e){}  
              rm.load();       
        } [list]
    wat is it runing here? try? catch? for? wat does it mean?????
    [list]
        public void destroy(){;}                  
        public void update(Graphics g){paint(g);}
    }[list]
    now this.. wat is it destroying?? updateing wat???
    [list]
    this is my whole program like...
    import java.awt.*;     /*Contains all of the classes for creating user
                   interfaces and for painting graphics and images.*/
    import java.applet.*;     /*Provides the classes necessary to create an applet and the
                   classes an applet uses to communicate with its applet context.*/
    /* Loadable is required for RealMedia so that it know that this code
    can load images and sounds and has the startUp() method
    /* HotSpotListener is required to let HotSpot call hotSpotEvent(HotSpot) when it
    has been clicked
    //runnable is for looping purpose ....to animate the text or images.
    public class LibraryTest extends Applet implements Loadable, HotSpotListener, Runnable
         // RealMedia will load and save images and sounds.
         // It will also give information on the loading process.     
         RealMedia rm;
         // Four buttons that can be clicked on.
         HotSpot hs1,hs2,hs3,hs4;
         // 1 will show image 0 and 1 will show image 1.
         int x =0;
    /* new added code */
         Thread scroller;     //for looping purpose
         int loopcounter,count;
         // thread is to allow the program to be called every and then.
         public void init()
              /*new added code */
              loopcounter=0;
              // We'll place the buttons ourselves.
              setLayout(null);
              setBackground(Color.white);
              // create the RealMedia object
              rm = new RealMedia(this);
              //Start adding all image files you will use
              // image0 called pic_black
              rm.add("pic_black.jpg","image0");
              rm.add("EG3165 Tutorial 1.jpg","image0_1");
              rm.add("Question.jpg","image0_2");
              rm.add("Solution.jpg","image0_3");
              rm.add("Exercise.jpg","image0_4");
              //rm.add("cute.gif","image0_5");
              rm.add("mac-win.gif","image0_6");
              rm.add("walking-floppy.gif","image0_7");
              rm.add("eg3165_t001ver03_00.gif","image1");
              rm.add("eg3165_t001ver03_01.gif","image2");
              rm.add("eg3165_t001ver03_02.gif","image3");
              rm.add("eg3165_t001ver03_03.gif","image4");
              rm.add("eg3165_t001ver03_04.gif","image5");
              rm.add("eg3165_t001ver03_05.gif","image6");
              rm.add("eg3165_t001ver03_06.gif","image7");
              rm.add("eg3165_t001ver03_07.gif","image8");
              rm.add("eg3165_t001ver03_08.gif","image9");
              // Start button with 4 images
              // 1 Default state, mouseOver and mouseClick state.
              rm.add("1st.gif");
              rm.add("1st.gif");
              rm.add("1st.gif");
              // 2 Other button
              rm.add("prev.gif");
              rm.add("prev.gif");
              rm.add("prev.gif");
              // 3
              rm.add("next.gif");
              rm.add("next.gif");
              rm.add("next.gif");
              // 4
              rm.add("last.gif");
              rm.add("last.gif");
              rm.add("last.gif");
              // load the images now
              rm.load();
         public void startUp()
              // button 1
              hs1 = new HotSpot(this);
              hs1.setImage(rm.get("1st.gif"),1);
              hs1.setImage(rm.get("1st.gif"),2);
              hs1.setImage(rm.get("1st.gif"),3);
              hs1.setBounds(200,515,40,38);
              // same for button 2
              hs2 = new HotSpot(this);
              hs2.setImage(rm.get("prev.gif"),1);
              hs2.setImage(rm.get("prev.gif"),2);
              hs2.setImage(rm.get("prev.gif"),3);
              hs2.setBounds(250,515,40,38);
              // same for button 3
              hs3 = new HotSpot(this);
              hs3.setImage(rm.get("next.gif"),1);
              hs3.setImage(rm.get("next.gif"),2);
              hs3.setImage(rm.get("next.gif"),3);
              hs3.setBounds(300,515,40,38);
              // same for button 4
              hs4 = new HotSpot(this);
              hs4.setImage(rm.get("last.gif"),1);
              hs4.setImage(rm.get("last.gif"),2);
              hs4.setImage(rm.get("last.gif"),3);
              hs4.setBounds(350,515,40,38);
              // Place them
              add(hs1);
              add(hs2);
              add(hs3);
              add(hs4);
              // Repaint makes sure they are immediately visible.
              hs1.repaint();
              hs2.repaint();
              hs3.repaint();
              hs4.repaint();
         // Here the images are drawn.
         public void paint(Graphics g)
              g.setColor(Color.white);
              // When it is still loading show a loading message.
              if (!rm.isLoaded())
                   g.drawString("loading file "+rm.getCurrent(),20,20);
                   g.drawString("of "+rm.getTotalFiles(),20,40);
                   g.drawString("Percent: "+rm.getPercent(),20,60);
                   g.fillRect(20,80,rm.getPercent(),20);
              // Otherwise draw image1 or 2
              else
                   if (x == 0)
                        //place images using x-coordinates, y-coordinates.
                        g.drawImage(rm.get("image0"),20,20,this);
                        g.drawImage(rm.get("image0_1"),80+loopcounter,100+loopcounter,this);
                        g.drawImage(rm.get("image0_2"),190+loopcounter,175+loopcounter,this);
                        g.drawImage(rm.get("image0_3"),240+loopcounter,220+loopcounter,this);
                        g.drawImage(rm.get("image0_4"),290+loopcounter,265+loopcounter,this);
                        //g.drawImage(rm.get("image0_5"),150+loopcounter,285+loopcounter,this);
                        g.drawImage(rm.get("image0_6"),400,370,200,100,this);
                        g.drawImage(rm.get("image0_7"),100,300,this);
                        loopcounter+=2;
                        if (loopcounter == 50)
                        loopcounter = 0;
         // if loopcounter+=2, coordinate=x+loopcounter, y+loopcounter.
         /* e.g. round 1, loopcounter=0, coordinate=1,3 */
         /* e.g. round 2, loopcounter=2, coordinate=3,5 */
         /* e.g. round 3, loopcounter=4, coordinate=7,9 */
                   else if (x == 1)
                        g.drawImage(rm.get("image1"),20,20,this);
                   else if (x == 2)
                        g.drawImage(rm.get("image2"),20,20,this);
                   else if (x == 3)
                        g.drawImage(rm.get("image3"),20,20,this);
                   else if (x == 4)
                        g.drawImage(rm.get("image4"),20,20,this);
                   else if (x == 5)
                        g.drawImage(rm.get("image5"),20,20,this);
                   else if (x == 6)
                        g.drawImage(rm.get("image6"),20,20,this);
                   else if (x == 7)
                        g.drawImage(rm.get("image7"),20,20,this);
                   else if (x == 8)
                        g.drawImage(rm.get("image8"),20,20,this);
                   else if (x == 9)
                        g.drawImage(rm.get("image9"),20,20,this);
         // This method is called when a button has been clicked.
         public void hotSpotEvent(HotSpot hs)
              // if it was button 1 show image1.
              if (hs == hs1)
                   x = 1;
              // else show image2
              else if (hs == hs2)
                   {x = x - 1;
                   if ( x <= 1 ) x = 1;
              else if (hs == hs3)
                   {x = x + 1;
                   if ( x >= 9 ) x = 9;
              else
                   x = 9;
              // and repaint to show them.
              repaint();
         // Necessary for RealMedia to load your images
         public Image loadImage(String file)
              return getImage(getCodeBase(),file);
         // Also required but not used this time.
         public AudioClip loadAudio(String file)
              return getAudioClip(getDocumentBase(),file);
    /*new added code*/
         public void start() {
                if (scroller == null) {
                scroller = new Thread(this);
                scroller.start();
        public void stop() {
            if (scroller != null) {
                scroller.stop();
                scroller = null;
        public void run() {
              try {Thread.currentThread().sleep(100);}
                catch (InterruptedException e){}
            for (count=0; count <= 400; ) {
              try {Thread.currentThread().sleep(20);}
                catch (InterruptedException e){}
              rm.load();
        public void destroy(){;}
        public void update(Graphics g){paint(g);}
    }

    Thread scroller;//for looping purpose
    **like whats does "thread scroller" means? Looping purpose? what's looping then?So, you don't know what a variable declaration is, and you don't know what looping is, and you're unable to find out other than by having somebody here tell you (your school has no library, no bookstore, and no access to google--only to the Java forums).
    Either your school is absolutely backwards and useless, or you're a stupid lazy git who deserves to fail the course. Either way, somebody here posting an answer for you is not going to help you.
    The following might.
    Sun's basic Java tutorial
    Sun's New To Java Center. Includes an overview of what Java is, instructions for setting up Java, an intro to programming (that includes links to the above tutorial or to parts of it), quizzes, a list of resources, and info on certification and courses.
    http://javaalmanac.com. A couple dozen code examples that supplement The Java Developers Almanac.
    jGuru. A general Java resource site. Includes FAQs, forums, courses, more.
    JavaRanch. To quote the tagline on their homepage: "a friendly place for Java greenhorns." FAQs, forums (moderated, I believe), sample code, all kinds of goodies for newbies. From what I've heard, they live up to the "friendly" claim.
    Bruce Eckel's Thinking in Java (Available online.)
    Joshua Bloch's Effective Java
    Bert Bates and Kathy Sierra's Head First Java. This one has been getting a lot of very positive comments lately.

  • Webutil - java error

    hi,
    I have to tried to use Webutil package to my forms that is mentioned in the Webutil Familiarization Manual.I wrote a section in my formsweb.cfg file.But it gave me the error in the below link:
    [http://img11.imageshack.us/img11/1277/err1.jpg]
    My system is,
    OS : Win Server 2003 R2
    Forms : 11g
    Database :11g R1
    Webutil : 1.0.6
    Java : 1.6.0 update 12
    My formsweb.cfg section is;
    envFile=default.env
    pageTitle=Oracle Forms 11g tutorial
    WebUtilArchive=frmwebutil.jar,jacob.jar
    WebUtilLogging=off
    WebUtilLoggingDetail=normal
    WebUtilErrorMode=Alert
    WebUtilDispatchMonitorInterval=5
    WebUtilTrustInternal=true
    WebUtilMaxTransferSize=16384
    archive=frmall.jar
    baseHTML=webutilbase.htm
    baseHTMLjpi=webutiljpi.htm
    form=WU_TEST_106.fmx
    separateFrame=false
    lookAndFeel=Oracle
    width=1000
    height=650
    logo=no
    userid=kerem/kerem@okul
    webutil.cfg file;
    install.syslib.0.7.1=jacob.dll|94208|1.0|true
    install.syslib.0.9.1=JNIsharedstubs.dll|65582|1.0|true
    install.syslib.0.9.2=d2kwut60.dll|192512|1.0|true
    java Console Log:
    Java Plug-in 1.6.0_12
    Using JRE version 1.6.0_12 Java HotSpot(TM) Client VM
    User home directory = C:\Documents and Settings\keremburak
    c: clear console window
    f: finalize objects on finalization queue
    g: garbage collect
    h: display this help message
    l: dump classloader list
    m: print memory usage
    o: trigger logging
    q: hide console
    r: reload policy configuration
    s: dump system and deployment properties
    t: dump thread list
    v: dump thread stack
    x: clear classloader cache
    0-5: set trace level to <n>
    RegisterWebUtil - Loading WebUtil Version 11.1.1.1
    Loaded image: jar:http://kerem:9001/forms/java/frmall.jar!/oracle/forms/icons/splash.gif
    Loaded image: jar:http://kerem:9001/forms/java/frmall.jar!/oracle/forms/icons/bgnd.gif
    Forms Session ID is ..8
    The proxy host is null, and the proxy port is 0.
    Native HTTP implementation is being used for the connection.
    The connection mode is HTTP.
    Forms Applet version is 11.1.1.1
    Loaded image: jar:http://kerem:9001/forms/java/frmall.jar!/oracle/forms/icons/frame.gif
    Ignored exception: sun.security.validator.ValidatorException: PKIX path validation failed: java.security.cert.CertPathValidatorException: signature check failed
    Also,registry and other environment settings were done.
    In my opinion,it can cause by Jacob.jar file or signature jar files.Have you got any different idea?
    Regards.

    hi,
    I signed both of them with the same batch file.When I signed frmwebutil.jar,extra two files came out as their names are frmwebutil.old and frmwebutil.sig.. When I signed jacob.jar file,extra one files came out as its name is jacob.old but there isnot any .sig file.Also,while it was signing the jacob.jar file,these lines were displayed as below:
    C:\Oracle\Middleware\asinst_1\bin>sign_webu til.bat C:\Oracle\Middleware\as_1\forms\jacob.jar
    Generating a self signing certificate for key=webutil2...
    keytool error: java.lang.Exception: Key pair not generated, alias <webutil2> alr
    eady exists
    There were warnings or errors while generating a self signing certificate. Pleas
    e review them.
    Backing up C:\Oracle\Middleware\as_1\forms\java\jacob.jar as C:\Oracle\Middleware\as_1\forms\java\
    jacob.jar.old...
    1 file(s) copied.
    Signing C:\Oracle\Middleware\as_1\forms\java\jacob.jar using key=webutil2...
    ..successfully done.
    what must I do?
    Edited by: Kerem Burak on 28.Eki.2009 12:12

  • Help..on Next n Previous Button

    hi..can anyone help me...on the "Next" and " previous" button...
    whe i click next or previous, i can view the next n previous picture...
    my picture name is not is sequence(some of the filename missing)...
    now i kept it in a masterList array the filename..so that when i can call it..
    the file name been keept as
    0001.gif
    0002.gif
    0010.gif
    2004.gif
    now im the actionPerforme, i need to code where when i click the button next or previous, it able to view...
    this is the code that i try but i dont have any idea how to view the image..
      else if (e.getSource() == jbtNext)
                   // for loop to read the picture location
                   for(int c=1; c<masterList.length; c++)
                        File f = new File ("D:/nita/eclipse workspace/bufferedReader/image" + c + ".gif");
                        //load
                        try
                                  BufferedImage bufferImage1 =ImageIO.read(f);
                                  //display
                                  //currentIndex = (currentIndex + 1) % totalNumImage;  //check the non-negative
                                  //jlblImageViewer1.setIcon(imageIcon1[currentIndex]);
                                  //JLabel label = new JLabel(new ImageIcon(image_or_url));
                             //imageIcon1 = ImageIO.read(new File("D:/nita/eclipse workspace/bufferedReader/image" + c + ".gif"));
                        catch (IOException eee)
                             }  this code for the masterList[]
           // null value been assign to masterList
              for (int a=0; a<masterList.length; a++)
                   masterList[a] = null;
              //2nd array list -- listOfFiles               
              File folder = new File("D:/nita/eclipse workspace/bufferedReader/image");
             File[] listOfFiles = folder.listFiles();
             for (int u=0; u<listOfFiles.length; u++)
             //for the listOfFiles get the filename
             String aaa = listOfFiles[u].getName();
             char[] bbb =   aaa.toCharArray(); // turn the name to char
             //assign 0-3 index
             char first = bbb[0];
             char second = bbb[1];
             char third = bbb[2];
             char fourth = bbb[3];
             //convert form char to string         
             String s1=String.valueOf(first);
             String s2=String.valueOf(second);
             String s3=String.valueOf(third);
             String s4=String.valueOf(fourth);
             //put all the value of s1-s4 in xxx
             String y = new String (s1 + s2 + s3 + s4 );
                   //validation for the first letter (only digit allow)
                   if (Character.isLetter(first))
                   else
                             int yInt = Integer.parseInt(y);   //convert to integer
                             //  the int will be your index for the list
                             masterList[yInt] = aaa;
              }//end of FOR loop
             //put everything back to masterList ... did not display the null value...
              for (int h=0; h<masterList.length; h++)
                    if (masterList[h] != null)
                         System.out.println(masterList[h]);
                 }  hope someone can help me

    Increment or decrement the index of the array and load the image from the indexed file.
    When you post a code, use code tag pair. Click the CODE icon on the taskbar.

  • How to get jsp page form action this page use ajax

    i want to get form action result editThree div. however, ajaxpage open new window.how to decide it?
    ajaxCallPages.js
    var loadedobjects=""
    var loadingcontainer="loading"
    var loadstatustext="<img src='images/loading.gif' />" //loading
    var rootdomain="http://"+window.location.hostname
    function ajaxpage(url, containerid ){
    var page_request = false
    if (window.XMLHttpRequest) // if Mozilla, Safari etc
    page_request = new XMLHttpRequest()
    else if (window.ActiveXObject){ // if IE
    try {
    page_request = new ActiveXObject("Msxml2.XMLHTTP")
    catch (e){
    try{
    page_request = new ActiveXObject("Microsoft.XMLHTTP")
    catch (e){}
    else
    return false
    document.getElementById(containerid).innerHTML=loadstatustext // loading
    page_request.onreadystatechange=function(){
    loadpage(page_request, containerid)
    page_request.open('GET', url, true)
    page_request.send(null)
    function loadpage(page_request, containerid){
    if (page_request.readyState == 4 && (page_request.status==200 || window.location.href.indexOf("http")==-1))
    document.getElementById(containerid).innerHTML=page_request.responseText
    userEditIformation.jsp
    <script language="JavaScript" src="function/ajaxCallPages.js"></script>...
    <div id="editTwo">
    <table width=100% cellpadding=0 cellspacing=0 border=0>
    <tr>
    <td>
    <form name="myform" action="pages/editUser.jsp" method="post">
    <table width=100% cellpadding=0 cellspacing=0 border=0>
    <tr>
    <td>
    <table width=100% cellpadding=3 cellspacing=1 border=0 bgcolor="#cccccc">
    <tr valign=top>
    <td bgcolor="#666666" width=150 style="color:#FFFFFF;" align="right">User group:</td>
    <td bgcolor="#f5f5f5"> <select name="UserGroup" id="lgroup">
    <option>Administrator</option>
    <option>Editor</option></select>
    </td>
    </tr>
    <tr valign=top>
    <td bgcolor="#666666" width=150 style="color:#FFFFFF;" align="right">User name:</td>
    <td bgcolor="#f5f5f5"><input type="text" id="lname" name="uname" maxlength="20" value=""> </td>
    </tr>
    <tr valign=top>
    <td bgcolor="#666666" width=150 style="color:#FFFFFF;" align="right">E-Mail:</td>
    <td bgcolor="#f5f5f5"><input type="text" id="lmail" name="uemail" value="" onkeypress="return checkEnter(event);" onKeyPress="Comment = false; Email = true; PostalCode = false; Go();" onChange="this.value = ignoreSpaces(this.value);"></td>
    </tr>
    <tr valign=top>
    <td bgcolor="#666666" width=150 style="color:#FFFFFF;" align="right">New password:</td>
    <td bgcolor="#f5f5f5"><input type="password" id="lpass1" name="upass1" maxlength="20" value="" onkeypress="return checkEnter(event);" onKeyPress="Comment = true; Email = false; PostalCode = false; Go();" onChange="this.value = ignoreSpaces(this.value);"></td>
    </tr>
    <tr valign=top>
    <td bgcolor="#666666" width=150 style="color:#FFFFFF;" align="right">Verify password:</td>
    <td bgcolor="#f5f5f5"><input type="password" id="lpass2" name="upass2" maxlength="20" value="" onkeypress="return checkEnter(event);" onKeyPress="Comment = true; Email = false; PostalCode = false; Go();" onChange="this.value = ignoreSpaces(this.value);"></td>
    </tr>
    <tr valign=top>
    <td bgcolor="#666666" width=150 style="color:#FFFFFF;" align="right">Phone:</td>
    <td bgcolor="#f5f5f5"><input type="text" id="lphone" name="uphone" value="" onkeypress="return checkIt(event);" onChange="this.value = ignoreSpaces(this.value);"></td>
    </tr>
    <tr valign=top>
    <td bgcolor="#666666" width=150 style="color:#FFFFFF;" align="right">Block:</td>
    <td bgcolor="#f5f5f5">
    <table cellpadding=0 cellspacing=0 border=0>
    <tr>
    <td><input type="radio" name="ustatus" id="lradio1" value="1"></td><td>Yes </td>
    <td><input type="radio" name="ustatus" id="lradio2" value="0" ></td><td>No </td>
    </tr>
    </table>
    </td>
    </tr>
    <tr valign=top>
    <td bgcolor="#666666" width=150 style="color:#FFFFFF;" align="right">Register date:</td>
    <td bgcolor="#f5f5f5"><%getDateTimeValue valueOne= new getDateTimeValue(); out.println(valueOne.getDateTime());</td>
    </tr>
    <tr valign=top>
    <td bgcolor="#666666" width=150 style="color:#FFFFFF;" align="right">Last visit date:</td>
    <td bgcolor="#f5f5f5"><%getDateTimeValue valueTwo= new getDateTimeValue(); out.println(valueTwo.getDateTime());</td>
    </tr>
    </table>
    </td>
    </tr>
    <tr><td> </td></tr>
    <tr><td><input type="button" onclick="ajaxpage('pages/editUser.jsp', 'editThree')" value="Send"/> </td></tr>
    <tr><td height=18 id="eoncmssend"></td></tr>
    </table>
    </form>
    </td>
    </tr>
    </table></div>
    <div id="editThree">
    </div>
    editUser.jsp
    <html>
    <head>
    <link rel="stylesheet" href="css/editUser.css" type="text/css"></link>
    <meta http-equiv="Content-Type" content="text/html; charset=UTF-8">
    </head>
    <body>
    <%
    String ugroup=null;
    String phone=null;
    String name=null;
    if(request.getParameter("uname")!=null){
    name=request.getParameter("uname");
    if(request.getParameter("uphone")!=null)
    phone=request.getParameter("uphone");
    out.println(name);
    out.println(phone);
    %>
    </body>
    </html>
    ../

    From the HTTP spec (http://www.w3.org/Protocols/rfc2616/rfc2616-sec14.html):
    14.36 Referer
    The Referer[sic] request-header field allows the client to specify, for the server's benefit, the address (URI) of the resource from which the Request-URI was obtained (the "referrer", although the header field is misspelled.) The Referer request-header allows a server to generate lists of back-links to resources for interest, logging, optimized caching, etc. It also allows obsolete or mistyped links to be traced for maintenance. The Referer field MUST NOT be sent if the Request-URI was obtained from a source that does not have its own URI, such as input from the user keyboard.
    Referer = "Referer" ":" ( absoluteURI | relativeURI )
    Example:
    Referer: http://www.w3.org/hypertext/DataSources/Overview.html

  • Icons are not displayed, Weblogic Application server 11 network: Cache entr

    I am using weblogic application server 11g
    operating system windows 64 bit
    I have created jar file, I signed the jar file using sign_webuitl.bat. My jar exist in C:\Oracle\Middleware\as_1\forms\java folder.
    I configured formsweb.cfg file
    archive= myicons.jar,frmall.jar....
    When I run the application , java console shows that jar is loaded but icon is displayed on the form. Java console shows that it does not find cached entry for gif file.
    Java Console Messge:
    Java Plug-in 1.6.0_12
    Using JRE version 1.6.0_12 Java HotSpot(TM) Client VM
    User home directory = C:\Documents and Settings\Administrator
    c: clear console window
    f: finalize objects on finalization queue
    g: garbage collect
    h: display this help message
    l: dump classloader list
    m: print memory usage
    o: trigger logging
    q: hide console
    r: reload policy configuration
    s: dump system and deployment properties
    t: dump thread list
    v: dump thread stack
    x: clear classloader cache
    0-5: set trace level to <n>
    security: property package.access value sun.,com.sun.xml.internal.ws.,com.sun.xml.internal.bind.
    security: property package.access new value sun.,com.sun.xml.internal.ws.,com.sun.xml.internal.bind.,com.sun.javaws
    security: property package.access value sun.,com.sun.xml.internal.ws.,com.sun.xml.internal.bind.,com.sun.javaws
    security: property package.access new value sun.,com.sun.xml.internal.ws.,com.sun.xml.internal.bind.,com.sun.javaws,com.sun.deploy
    security: property package.access value sun.,com.sun.xml.internal.ws.,com.sun.xml.internal.bind.,com.sun.javaws,com.sun.deploy
    security: property package.access new value sun.,com.sun.xml.internal.ws.,com.sun.xml.internal.bind.,com.sun.javaws,com.sun.deploy,com.sun.jnlp
    security: property package.definition value null
    security: property package.definition new value com.sun.javaws
    security: property package.definition value com.sun.javaws
    security: property package.definition new value com.sun.javaws,com.sun.deploy
    security: property package.definition value com.sun.javaws,com.sun.deploy
    security: property package.definition new value com.sun.javaws,com.sun.deploy,com.sun.jnlp
    security: property package.access value sun.,com.sun.xml.internal.ws.,com.sun.xml.internal.bind.,com.sun.javaws,com.sun.deploy,com.sun.jnlp
    security: property package.access new value sun.,com.sun.xml.internal.ws.,com.sun.xml.internal.bind.,com.sun.javaws,com.sun.deploy,com.sun.jnlp,org.mozilla.jss
    security: property package.definition value com.sun.javaws,com.sun.deploy,com.sun.jnlp
    security: property package.definition new value com.sun.javaws,com.sun.deploy,com.sun.jnlp,org.mozilla.jss
    basic: Added progress listener: sun.plugin.util.GrayBoxPainter$GrayBoxProgressListener@fd13b5
    network: Cache entry found [url: http://musetest/forms/java/myicons.jar, version: null]
    network: Connecting http://musetest/forms/java/myicons.jar with proxy=DIRECT
    network: Connecting http://musetest:80/ with proxy=DIRECT
    network: ResponseCode for http://musetest/forms/java/myicons.jar : 304
    network: Encoding for http://musetest/forms/java/myicons.jar : null
    network: Disconnect connection to http://musetest/forms/java/myicons.jar
    network: Cache entry found [url: http://musetest/forms/java/frmwebutil.jar, version: null]
    network: Connecting http://musetest/forms/java/frmwebutil.jar with proxy=DIRECT
    network: ResponseCode for http://musetest/forms/java/frmwebutil.jar : 304
    network: Encoding for http://musetest/forms/java/frmwebutil.jar : null
    network: Disconnect connection to http://musetest/forms/java/frmwebutil.jar
    network: Cache entry found [url: http://musetest/forms/java/frmall.jar, version: null]
    network: Connecting http://musetest/forms/java/frmall.jar with proxy=DIRECT
    network: ResponseCode for http://musetest/forms/java/frmall.jar : 304
    network: Encoding for http://musetest/forms/java/frmall.jar : null
    network: Disconnect connection to http://musetest/forms/java/frmall.jar
    security: Loading Root CA certificates from C:\Program Files\Java\jre1.6.0_12\lib\security\cacerts
    security: Loaded Root CA certificates from C:\Program Files\Java\jre1.6.0_12\lib\security\cacerts
    security: Loading Deployment certificates from C:\Documents and Settings\Administrator\Application Data\Sun\Java\Deployment\security\trusted.certs
    security: Loaded Deployment certificates from C:\Documents and Settings\Administrator\Application Data\Sun\Java\Deployment\security\trusted.certs
    security: Loading certificates from Deployment session certificate store
    security: Loaded certificates from Deployment session certificate store
    security: Loading certificates from Internet Explorer ROOT certificate store
    security: Loaded certificates from Internet Explorer ROOT certificate store
    security: Loading certificates from Internet Explorer TrustedPublisher certificate store
    security: Loaded certificates from Internet Explorer TrustedPublisher certificate store
    security: Validate the certificate chain using CertPath API
    security: Obtain certificate collection in Root CA certificate store
    security: Obtain certificate collection in Root CA certificate store
    security: No timestamping info available
    security: Found jurisdiction list file
    security: No need to checking trusted extension for this certificate
    security: The CRL support is disabled
    security: The OCSP support is disabled
    security: Checking if certificate is in Deployment denied certificate store
    security: Checking if certificate is in Deployment permanent certificate store
    security: Checking if certificate is in Deployment session certificate store
    security: Checking if certificate is in Internet Explorer TrustedPublisher certificate store
    security: User has granted the priviledges to the code for this session only
    security: Adding certificate in Deployment session certificate store
    security: Added certificate in Deployment session certificate store
    security: Saving certificates in Deployment session certificate store
    security: Saved certificates in Deployment session certificate store
    basic: Applet loaded.
    basic: Applet resized and added to parent container
    basic: PERF: AppletExecutionRunnable - applet.init() BEGIN ; jvmLaunch dt 168158 us, pluginInit dt 2734996 us, TotalTime: 2903154 us
    basic: Applet initialized
    basic: Loading Java Applet ...
    basic: Removed progress listener: sun.plugin.util.GrayBoxPainter$GrayBoxProgressListener@fd13b5
    basic: Applet made visible
    basic: Starting applet
    Loaded image: jar:http://musetest/forms/java/frmall.jar!/oracle/forms/icons/bgnd.gif
    Forms Session ID is formsapp.14
    network: Cache entry found [url: http://musetest/forms/registry/oracle/forms/registry/Registry.dat, version: null]
    network: Connecting http://musetest/forms/registry/oracle/forms/registry/Registry.dat with proxy=DIRECT
    network: ResponseCode for http://musetest/forms/registry/oracle/forms/registry/Registry.dat : 304
    network: Encoding for http://musetest/forms/registry/oracle/forms/registry/Registry.dat : null
    network: Disconnect connection to http://musetest/forms/registry/oracle/forms/registry/Registry.dat
    network: Cache entry not found [url: http://musetest/forms/registry/oracle/forms/registry/default.dat, version: null]
    network: Connecting http://musetest/forms/registry/oracle/forms/registry/default.dat with proxy=DIRECT
    The proxy host is null, and the proxy port is 0.
    Native HTTP implementation is being used for the connection.
    The connection mode is HTTP.
    network: Connecting http://musetest/forms/frmservlet?config=amrod&ifsessid=formsapp.14&acceptLanguage=en-us&ifcmd=startsession&iflocale=en-US with proxy=DIRECT
    network: Connecting http://musetest/forms/lservlet;jsessionid=rmQdPfpTrm1fXQ631kJpHRwW5KdCLnggLtC0t2wbYj8Z5m9H0bc0!-1851081780?ifcmd=getinfo&ifhost=Patel&ifip=169.254.25.129 with proxy=DIRECT
    network: Connecting http://musetest/forms/lservlet;jsessionid=rmQdPfpTrm1fXQ631kJpHRwW5KdCLnggLtC0t2wbYj8Z5m9H0bc0!-1851081780 with proxy=DIRECT
    security: Loading certificates from Deployment session certificate store
    security: Loaded certificates from Deployment session certificate store
    security: Loading certificates from Internet Explorer TrustedPublisher certificate store
    security: Loaded certificates from Internet Explorer TrustedPublisher certificate store
    security: Validate the certificate chain using CertPath API
    security: Obtain certificate collection in Root CA certificate store
    security: Obtain certificate collection in Root CA certificate store
    security: No timestamping info available
    security: Found jurisdiction list file
    security: No need to checking trusted extension for this certificate
    security: The CRL support is disabled
    security: The OCSP support is disabled
    security: Checking if certificate is in Deployment denied certificate store
    security: Checking if certificate is in Deployment permanent certificate store
    security: Checking if certificate is in Deployment session certificate store
    security: Checking if certificate is in Deployment session certificate store
    Forms Applet version is 11.1.1.3
    network: Connecting http://musetest/forms/lservlet;jsessionid=rmQdPfpTrm1fXQ631kJpHRwW5KdCLnggLtC0t2wbYj8Z5m9H0bc0!-1851081780 with proxy=DIRECT
    Loaded image: jar:http://musetest/forms/java/frmall.jar!/oracle/forms/icons/ellipsis.gif
    Loaded image: jar:http://musetest/forms/java/frmall.jar!/oracle/forms/icons/frame.gif
    network: Connecting http://musetest/forms/lservlet;jsessionid=rmQdPfpTrm1fXQ631kJpHRwW5KdCLnggLtC0t2wbYj8Z5m9H0bc0!-1851081780 with proxy=DIRECT
    basic: Applet started
    basic: Told clients applet is started
    network: Connecting http://musetest/forms/lservlet;jsessionid=rmQdPfpTrm1fXQ631kJpHRwW5KdCLnggLtC0t2wbYj8Z5m9H0bc0!-1851081780 with proxy=DIRECT
    network: Connecting http://musetest/forms/java/nullda_save.gif with proxy=DIRECT
    Loaded image: http://musetest/forms/java/nullda_save.gif
    network: Connecting http://musetest/forms/java/nullda_exp.gif with proxy=DIRECT
    Loaded image: http://musetest/forms/java/nullda_exp.gif
    network: Connecting http://musetest/forms/java/nullda_exp_o.gif with proxy=DIRECT
    Loaded image: http://musetest/forms/java/nullda_exp_o.gif
    network: Connecting http://musetest/forms/java/nullda_print.gif with proxy=DIRECT
    Loaded image: http://musetest/forms/java/nullda_print.gif
    network: Connecting http://musetest/forms/java/nullafinsrw.gif with proxy=DIRECT
    Loaded image: http://musetest/forms/java/nullafinsrw.gif
    network: Connecting http://musetest/forms/java/nullda_delet.gif with proxy=DIRECT
    Loaded image: http://musetest/forms/java/nullda_delet.gif
    network: Connecting http://musetest/forms/java/nullda_left.gif with proxy=DIRECT
    Loaded image: http://musetest/forms/java/nullda_left.gif
    network: Connecting http://musetest/forms/java/nullda_first.gif with proxy=DIRECT
    Loaded image: http://musetest/forms/java/nullda_first.gif
    network: Connecting http://musetest/forms/java/nullda_up.gif with proxy=DIRECT
    Loaded image: http://musetest/forms/java/nullda_up.gif
    network: Connecting http://musetest/forms/java/nullda_down.gif with proxy=DIRECT
    Loaded image: http://musetest/forms/java/nullda_down.gif
    network: Connecting http://musetest/forms/java/nullda_first.gif with proxy=DIRECT
    Loaded image: http://musetest/forms/java/nullda_first.gif
    network: Connecting http://musetest/forms/java/nullda_right.gif with proxy=DIRECT
    Loaded image: http://musetest/forms/java/nullda_right.gif
    network: Connecting http://musetest/forms/java/nullda_query.gif with proxy=DIRECT
    Loaded image: http://musetest/forms/java/nullda_query.gif
    network: Connecting http://musetest/forms/java/nullda_summ.gif with proxy=DIRECT
    Loaded image: http://musetest/forms/java/nullda_summ.gif
    network: Connecting http://musetest/forms/java/nullda_cal.gif with proxy=DIRECT
    Loaded image: http://musetest/forms/java/nullda_cal.gif
    network: Connecting http://musetest/forms/java/nullda_calc.gif with proxy=DIRECT
    Loaded image: http://musetest/forms/java/nullda_calc.gif
    network: Connecting http://musetest/forms/java/nullda_zoom.gif with proxy=DIRECT
    Loaded image: http://musetest/forms/java/nullda_zoom.gif
    network: Connecting http://musetest/forms/lservlet;jsessionid=rmQdPfpTrm1fXQ631kJpHRwW5KdCLnggLtC0t2wbYj8Z5m9H0bc0!-1851081780 with proxy=DIRECT
    network: Connecting http://musetest/forms/lservlet;jsessionid=rmQdPfpTrm1fXQ631kJpHRwW5KdCLnggLtC0t2wbYj8Z5m9H0bc0!-1851081780 with proxy=DIRECT
    network: Connecting http://musetest/forms/lservlet;jsessionid=rmQdPfpTrm1fXQ631kJpHRwW5KdCLnggLtC0t2wbYj8Z5m9H0bc0!-1851081780 with proxy=DIRECT
    network: Connecting http://musetest/forms/lservlet;jsessionid=rmQdPfpTrm1fXQ631kJpHRwW5KdCLnggLtC0t2wbYj8Z5m9H0bc0!-1851081780 with proxy=DIRECT
    network: Connecting http://musetest/forms/lservlet;jsessionid=rmQdPfpTrm1fXQ631kJpHRwW5KdCLnggLtC0t2wbYj8Z5m9H0bc0!-1851081780 with proxy=DIRECT
    network: Cache entry not found [url: http://musetest/forms/java/nullda_zoom.gif, version: null]
    network: Connecting http://musetest/forms/java/nullda_zoom.gif with proxy=DIRECT
    network: Cache entry not found [url: http://musetest/forms/java/nullda_calc.gif, version: null]
    network: Connecting http://musetest/forms/java/nullda_calc.gif with proxy=DIRECT
    network: Cache entry not found [url: http://musetest/forms/java/nullda_cal.gif, version: null]
    network: Connecting http://musetest/forms/java/nullda_cal.gif with proxy=DIRECT
    network: Cache entry not found [url: http://musetest/forms/java/nullda_summ.gif, version: null]
    network: Connecting http://musetest/forms/java/nullda_summ.gif with proxy=DIRECT
    network: Cache entry not found [url: http://musetest/forms/java/nullda_query.gif, version: null]
    network: Connecting http://musetest/forms/java/nullda_query.gif with proxy=DIRECT
    network: Cache entry not found [url: http://musetest/forms/java/nullda_right.gif, version: null]
    network: Connecting http://musetest/forms/java/nullda_right.gif with proxy=DIRECT
    network: Cache entry not found [url: http://musetest/forms/java/nullda_first.gif, version: null]
    network: Connecting http://musetest/forms/java/nullda_first.gif with proxy=DIRECT
    network: Cache entry not found [url: http://musetest/forms/java/nullda_first.gif, version: null]
    network: Connecting http://musetest/forms/java/nullda_first.gif with proxy=DIRECT
    network: Cache entry not found [url: http://musetest/forms/java/nullda_down.gif, version: null]
    network: Connecting http://musetest/forms/java/nullda_down.gif with proxy=DIRECT
    network: Connecting http://musetest:80/ with proxy=DIRECT
    network: Cache entry not found [url: http://musetest/forms/java/nullda_down.gif, version: null]
    network: Connecting http://musetest/forms/java/nullda_down.gif with proxy=DIRECT
    network: Cache entry not found [url: http://musetest/forms/java/nullda_up.gif, version: null]
    network: Connecting http://musetest/forms/java/nullda_up.gif with proxy=DIRECT
    network: Cache entry not found [url: http://musetest/forms/java/nullda_up.gif, version: null]
    network: Connecting http://musetest/forms/java/nullda_up.gif with proxy=DIRECT
    network: Cache entry not found [url: http://musetest/forms/java/nullda_first.gif, version: null]
    network: Connecting http://musetest/forms/java/nullda_first.gif with proxy=DIRECT
    network: Cache entry not found [url: http://musetest/forms/java/nullda_left.gif, version: null]
    network: Connecting http://musetest/forms/java/nullda_left.gif with proxy=DIRECT
    network: Cache entry not found [url: http://musetest/forms/java/nullda_left.gif, version: null]
    network: Connecting http://musetest/forms/java/nullda_left.gif with proxy=DIRECT
    network: Cache entry not found [url: http://musetest/forms/java/nullda_delet.gif, version: null]
    network: Connecting http://musetest/forms/java/nullda_delet.gif with proxy=DIRECT
    network: Cache entry not found [url: http://musetest/forms/java/nullafinsrw.gif, version: null]
    network: Connecting http://musetest/forms/java/nullafinsrw.gif with proxy=DIRECT
    network: Cache entry not found [url: http://musetest/forms/java/nullda_print.gif, version: null]
    network: Connecting http://musetest/forms/java/nullda_print.gif with proxy=DIRECT
    network: Cache entry not found [url: http://musetest/forms/java/nullda_exp_o.gif, version: null]
    network: Connecting http://musetest/forms/java/nullda_exp_o.gif with proxy=DIRECT
    network: Cache entry not found [url: http://musetest/forms/java/nullda_exp.gif, version: null]
    network: Connecting http://musetest/forms/java/nullda_exp.gif with proxy=DIRECT
    network: Cache entry not found [url: http://musetest/forms/java/nullda_save.gif, version: null]
    network: Connecting http://musetest/forms/java/nullda_save.gif with proxy=DIRECT
    network: Cache entry not found [url: http://musetest/forms/java/nullda_save.gif, version: null]
    network: Connecting http://musetest/forms/java/nullda_save.gif with proxy=DIRECT

    I created Icons folder in Java folder. Moved myicons.jar to Icons folder
    Change my UI_CONS parameter to point to the icons folder. also changed registery.dat
    Regisrery.dat
    default.icons.iconpath=Icons/
    UI_ICONS
    C:\Oracle\Middleware\as_1\reports\plugins\resource;C:\Oracle\Middleware\as_1\forms\java\Icons
    Still I get Cached Entry not found in the java console.
    Java Plug-in 1.6.0_12
    Using JRE version 1.6.0_12 Java HotSpot(TM) Client VM
    User home directory = C:\Documents and Settings\Administrator
    c: clear console window
    f: finalize objects on finalization queue
    g: garbage collect
    h: display this help message
    l: dump classloader list
    m: print memory usage
    o: trigger logging
    q: hide console
    r: reload policy configuration
    s: dump system and deployment properties
    t: dump thread list
    v: dump thread stack
    x: clear classloader cache
    0-5: set trace level to <n>
    security: property package.access value sun.,com.sun.xml.internal.ws.,com.sun.xml.internal.bind.
    security: property package.access new value sun.,com.sun.xml.internal.ws.,com.sun.xml.internal.bind.,com.sun.javaws
    security: property package.access value sun.,com.sun.xml.internal.ws.,com.sun.xml.internal.bind.,com.sun.javaws
    security: property package.access new value sun.,com.sun.xml.internal.ws.,com.sun.xml.internal.bind.,com.sun.javaws,com.sun.deploy
    security: property package.access value sun.,com.sun.xml.internal.ws.,com.sun.xml.internal.bind.,com.sun.javaws,com.sun.deploy
    security: property package.access new value sun.,com.sun.xml.internal.ws.,com.sun.xml.internal.bind.,com.sun.javaws,com.sun.deploy,com.sun.jnlp
    security: property package.definition value null
    security: property package.definition new value com.sun.javaws
    security: property package.definition value com.sun.javaws
    security: property package.definition new value com.sun.javaws,com.sun.deploy
    security: property package.definition value com.sun.javaws,com.sun.deploy
    security: property package.definition new value com.sun.javaws,com.sun.deploy,com.sun.jnlp
    security: property package.access value sun.,com.sun.xml.internal.ws.,com.sun.xml.internal.bind.,com.sun.javaws,com.sun.deploy,com.sun.jnlp
    security: property package.access new value sun.,com.sun.xml.internal.ws.,com.sun.xml.internal.bind.,com.sun.javaws,com.sun.deploy,com.sun.jnlp,org.mozilla.jss
    security: property package.definition value com.sun.javaws,com.sun.deploy,com.sun.jnlp
    security: property package.definition new value com.sun.javaws,com.sun.deploy,com.sun.jnlp,org.mozilla.jss
    basic: Added progress listener: sun.plugin.util.GrayBoxPainter$GrayBoxProgressListener@10ef90c
    network: Cache entry found [url: http://musetest/forms/java/frmwebutil.jar, version: null]
    network: Connecting http://musetest/forms/java/frmwebutil.jar with proxy=DIRECT
    network: Connecting http://musetest:80/ with proxy=DIRECT
    network: ResponseCode for http://musetest/forms/java/frmwebutil.jar : 304
    network: Encoding for http://musetest/forms/java/frmwebutil.jar : null
    network: Disconnect connection to http://musetest/forms/java/frmwebutil.jar
    network: Cache entry found [url: http://musetest/forms/java/frmall.jar, version: null]
    network: Connecting http://musetest/forms/java/frmall.jar with proxy=DIRECT
    network: ResponseCode for http://musetest/forms/java/frmall.jar : 304
    network: Encoding for http://musetest/forms/java/frmall.jar : null
    network: Disconnect connection to http://musetest/forms/java/frmall.jar
    security: Loading Root CA certificates from C:\Program Files\Java\jre1.6.0_12\lib\security\cacerts
    security: Loaded Root CA certificates from C:\Program Files\Java\jre1.6.0_12\lib\security\cacerts
    security: Loading Deployment certificates from C:\Documents and Settings\Administrator\Application Data\Sun\Java\Deployment\security\trusted.certs
    security: Loaded Deployment certificates from C:\Documents and Settings\Administrator\Application Data\Sun\Java\Deployment\security\trusted.certs
    security: Loading certificates from Deployment session certificate store
    security: Loaded certificates from Deployment session certificate store
    security: Loading certificates from Internet Explorer ROOT certificate store
    security: Loaded certificates from Internet Explorer ROOT certificate store
    security: Loading certificates from Internet Explorer TrustedPublisher certificate store
    security: Loaded certificates from Internet Explorer TrustedPublisher certificate store
    security: Validate the certificate chain using CertPath API
    security: Obtain certificate collection in Root CA certificate store
    security: Obtain certificate collection in Root CA certificate store
    security: No timestamping info available
    security: Found jurisdiction list file
    security: No need to checking trusted extension for this certificate
    security: The CRL support is disabled
    security: The OCSP support is disabled
    security: Checking if certificate is in Deployment denied certificate store
    security: Checking if certificate is in Deployment permanent certificate store
    security: Checking if certificate is in Deployment session certificate store
    security: Checking if certificate is in Internet Explorer TrustedPublisher certificate store
    security: User has granted the priviledges to the code for this session only
    security: Adding certificate in Deployment session certificate store
    security: Added certificate in Deployment session certificate store
    security: Saving certificates in Deployment session certificate store
    security: Saved certificates in Deployment session certificate store
    basic: Applet loaded.
    basic: Applet resized and added to parent container
    basic: PERF: AppletExecutionRunnable - applet.init() BEGIN ; jvmLaunch dt 159152 us, pluginInit dt 2683929 us, TotalTime: 2843081 us
    basic: Applet initialized
    basic: Loading Java Applet ...
    basic: Removed progress listener: sun.plugin.util.GrayBoxPainter$GrayBoxProgressListener@10ef90c
    basic: Applet made visible
    basic: Starting applet
    Loaded image: jar:http://musetest/forms/java/frmall.jar!/oracle/forms/icons/bgnd.gif
    Forms Session ID is formsapp.2
    network: Cache entry found [url: http://musetest/forms/registry/oracle/forms/registry/Registry.dat, version: null]
    network: Connecting http://musetest/forms/registry/oracle/forms/registry/Registry.dat with proxy=DIRECT
    network: ResponseCode for http://musetest/forms/registry/oracle/forms/registry/Registry.dat : 304
    network: Encoding for http://musetest/forms/registry/oracle/forms/registry/Registry.dat : null
    network: Disconnect connection to http://musetest/forms/registry/oracle/forms/registry/Registry.dat
    network: Cache entry not found [url: http://musetest/forms/registry/oracle/forms/registry/default.dat, version: null]
    network: Connecting http://musetest/forms/registry/oracle/forms/registry/default.dat with proxy=DIRECT
    The proxy host is null, and the proxy port is 0.
    Native HTTP implementation is being used for the connection.
    The connection mode is HTTP.
    network: Connecting http://musetest/forms/frmservlet?config=amrod&ifsessid=formsapp.2&acceptLanguage=en-us&ifcmd=startsession&iflocale=en-US with proxy=DIRECT
    network: Connecting http://musetest/forms/lservlet;jsessionid=vM0hPvJL2qPGPNRsQpbJn1byrGG0JCbpfmyNZZ2nk3GTrFY0TFJy!1859446588?ifcmd=getinfo&ifhost=Patel&ifip=169.254.25.129 with proxy=DIRECT
    network: CleanupThread used 59744 us
    network: Connecting http://musetest/forms/lservlet;jsessionid=vM0hPvJL2qPGPNRsQpbJn1byrGG0JCbpfmyNZZ2nk3GTrFY0TFJy!1859446588 with proxy=DIRECT
    security: Loading certificates from Deployment session certificate store
    security: Loaded certificates from Deployment session certificate store
    security: Loading certificates from Internet Explorer TrustedPublisher certificate store
    security: Loaded certificates from Internet Explorer TrustedPublisher certificate store
    security: Validate the certificate chain using CertPath API
    security: Obtain certificate collection in Root CA certificate store
    security: Obtain certificate collection in Root CA certificate store
    security: No timestamping info available
    security: Found jurisdiction list file
    security: No need to checking trusted extension for this certificate
    security: The CRL support is disabled
    security: The OCSP support is disabled
    security: Checking if certificate is in Deployment denied certificate store
    security: Checking if certificate is in Deployment permanent certificate store
    security: Checking if certificate is in Deployment session certificate store
    security: Checking if certificate is in Deployment session certificate store
    Forms Applet version is 11.1.1.3
    network: Connecting http://musetest/forms/lservlet;jsessionid=vM0hPvJL2qPGPNRsQpbJn1byrGG0JCbpfmyNZZ2nk3GTrFY0TFJy!1859446588 with proxy=DIRECT
    Loaded image: jar:http://musetest/forms/java/frmall.jar!/oracle/forms/icons/ellipsis.gif
    Loaded image: jar:http://musetest/forms/java/frmall.jar!/oracle/forms/icons/frame.gif
    network: Connecting http://musetest/forms/lservlet;jsessionid=vM0hPvJL2qPGPNRsQpbJn1byrGG0JCbpfmyNZZ2nk3GTrFY0TFJy!1859446588 with proxy=DIRECT
    basic: Applet started
    basic: Told clients applet is started
    network: Connecting http://musetest/forms/lservlet;jsessionid=vM0hPvJL2qPGPNRsQpbJn1byrGG0JCbpfmyNZZ2nk3GTrFY0TFJy!1859446588 with proxy=DIRECT
    network: Connecting http://musetest:80/ with proxy=DIRECT
    network: Connecting http://musetest/Icons/da_save.gif with proxy=DIRECT
    Loaded image: http://musetest/Icons/da_save.gif
    network: Connecting http://musetest/Icons/da_exp.gif with proxy=DIRECT
    network: Connecting http://musetest:80/ with proxy=DIRECT
    Loaded image: http://musetest/Icons/da_exp.gif
    network: Connecting http://musetest/Icons/da_exp_o.gif with proxy=DIRECT
    network: Connecting http://musetest:80/ with proxy=DIRECT
    Loaded image: http://musetest/Icons/da_exp_o.gif
    network: Connecting http://musetest/Icons/da_print.gif with proxy=DIRECT
    network: Connecting http://musetest:80/ with proxy=DIRECT
    Loaded image: http://musetest/Icons/da_print.gif
    network: Connecting http://musetest/Icons/afinsrw.gif with proxy=DIRECT
    network: Connecting http://musetest:80/ with proxy=DIRECT
    Loaded image: http://musetest/Icons/afinsrw.gif
    network: Connecting http://musetest/Icons/da_delet.gif with proxy=DIRECT
    network: Connecting http://musetest:80/ with proxy=DIRECT
    Loaded image: http://musetest/Icons/da_delet.gif
    network: Connecting http://musetest/Icons/da_left.gif with proxy=DIRECT
    network: Connecting http://musetest:80/ with proxy=DIRECT
    Loaded image: http://musetest/Icons/da_left.gif
    network: Connecting http://musetest/Icons/da_first.gif with proxy=DIRECT
    network: Connecting http://musetest:80/ with proxy=DIRECT
    Loaded image: http://musetest/Icons/da_first.gif
    network: Connecting http://musetest/Icons/da_up.gif with proxy=DIRECT
    network: Connecting http://musetest:80/ with proxy=DIRECT
    Loaded image: http://musetest/Icons/da_up.gif
    network: Connecting http://musetest/Icons/da_down.gif with proxy=DIRECT
    network: Connecting http://musetest:80/ with proxy=DIRECT
    Loaded image: http://musetest/Icons/da_down.gif
    network: Connecting http://musetest/Icons/da_first.gif with proxy=DIRECT
    network: Connecting http://musetest:80/ with proxy=DIRECT
    Loaded image: http://musetest/Icons/da_first.gif
    network: Connecting http://musetest/Icons/da_right.gif with proxy=DIRECT
    network: Connecting http://musetest:80/ with proxy=DIRECT
    Loaded image: http://musetest/Icons/da_right.gif
    network: Connecting http://musetest/Icons/da_query.gif with proxy=DIRECT
    network: Connecting http://musetest:80/ with proxy=DIRECT
    Loaded image: http://musetest/Icons/da_query.gif
    network: Connecting http://musetest/Icons/da_summ.gif with proxy=DIRECT
    network: Connecting http://musetest:80/ with proxy=DIRECT
    Loaded image: http://musetest/Icons/da_summ.gif
    network: Connecting http://musetest/Icons/da_cal.gif with proxy=DIRECT
    network: Connecting http://musetest:80/ with proxy=DIRECT
    Loaded image: http://musetest/Icons/da_cal.gif
    network: Connecting http://musetest/Icons/da_calc.gif with proxy=DIRECT
    network: Connecting http://musetest:80/ with proxy=DIRECT
    Loaded image: http://musetest/Icons/da_calc.gif
    network: Connecting http://musetest/Icons/da_zoom.gif with proxy=DIRECT
    network: Connecting http://musetest:80/ with proxy=DIRECT
    Loaded image: http://musetest/Icons/da_zoom.gif
    network: Connecting http://musetest/forms/lservlet;jsessionid=vM0hPvJL2qPGPNRsQpbJn1byrGG0JCbpfmyNZZ2nk3GTrFY0TFJy!1859446588 with proxy=DIRECT
    network: Connecting http://musetest:80/ with proxy=DIRECT
    network: Connecting http://musetest/forms/lservlet;jsessionid=vM0hPvJL2qPGPNRsQpbJn1byrGG0JCbpfmyNZZ2nk3GTrFY0TFJy!1859446588 with proxy=DIRECT
    network: Connecting http://musetest/forms/lservlet;jsessionid=vM0hPvJL2qPGPNRsQpbJn1byrGG0JCbpfmyNZZ2nk3GTrFY0TFJy!1859446588 with proxy=DIRECT
    network: Connecting http://musetest/forms/lservlet;jsessionid=vM0hPvJL2qPGPNRsQpbJn1byrGG0JCbpfmyNZZ2nk3GTrFY0TFJy!1859446588 with proxy=DIRECT
    network: Connecting http://musetest/forms/lservlet;jsessionid=vM0hPvJL2qPGPNRsQpbJn1byrGG0JCbpfmyNZZ2nk3GTrFY0TFJy!1859446588 with proxy=DIRECT
    network: Cache entry not found [url: http://musetest/Icons/da_zoom.gif, version: null]
    network: Connecting http://musetest/Icons/da_zoom.gif with proxy=DIRECT
    network: Cache entry not found [url: http://musetest/Icons/da_calc.gif, version: null]
    network: Connecting http://musetest/Icons/da_calc.gif with proxy=DIRECT
    network: Connecting http://musetest:80/ with proxy=DIRECT
    network: Cache entry not found [url: http://musetest/Icons/da_cal.gif, version: null]
    network: Connecting http://musetest/Icons/da_cal.gif with proxy=DIRECT
    network: Connecting http://musetest:80/ with proxy=DIRECT
    network: Cache entry not found [url: http://musetest/Icons/da_summ.gif, version: null]
    network: Connecting http://musetest/Icons/da_summ.gif with proxy=DIRECT
    network: Connecting http://musetest:80/ with proxy=DIRECT
    network: Cache entry not found [url: http://musetest/Icons/da_query.gif, version: null]
    network: Connecting http://musetest/Icons/da_query.gif with proxy=DIRECT
    network: Connecting http://musetest:80/ with proxy=DIRECT
    network: Cache entry not found [url: http://musetest/Icons/da_right.gif, version: null]
    network: Connecting http://musetest/Icons/da_right.gif with proxy=DIRECT
    network: Connecting http://musetest:80/ with proxy=DIRECT
    network: Cache entry not found [url: http://musetest/Icons/da_first.gif, version: null]
    network: Connecting http://musetest/Icons/da_first.gif with proxy=DIRECT
    network: Connecting http://musetest:80/ with proxy=DIRECT
    network: Cache entry not found [url: http://musetest/Icons/da_first.gif, version: null]
    network: Connecting http://musetest/Icons/da_first.gif with proxy=DIRECT
    network: Cache entry not found [url: http://musetest/Icons/da_down.gif, version: null]
    network: Connecting http://musetest:80/ with proxy=DIRECT
    network: Connecting http://musetest/Icons/da_down.gif with proxy=DIRECT
    network: Connecting http://musetest:80/ with proxy=DIRECT
    network: Cache entry not found [url: http://musetest/Icons/da_down.gif, version: null]
    network: Connecting http://musetest/Icons/da_down.gif with proxy=DIRECT
    network: Cache entry not found [url: http://musetest/Icons/da_up.gif, version: null]
    network: Connecting http://musetest/Icons/da_up.gif with proxy=DIRECT
    network: Connecting http://musetest:80/ with proxy=DIRECT
    network: Connecting http://musetest:80/ with proxy=DIRECT
    network: Cache entry not found [url: http://musetest/Icons/da_up.gif, version: null]
    network: Cache entry not found [url: http://musetest/Icons/da_first.gif, version: null]
    network: Connecting http://musetest/Icons/da_up.gif with proxy=DIRECT
    network: Connecting http://musetest/Icons/da_first.gif with proxy=DIRECT
    network: Cache entry not found [url: http://musetest/Icons/da_left.gif, version: null]
    network: Connecting http://musetest/Icons/da_left.gif with proxy=DIRECT
    network: Connecting http://musetest:80/ with proxy=DIRECT
    network: Connecting http://musetest:80/ with proxy=DIRECT
    network: Connecting http://musetest:80/ with proxy=DIRECT
    network: Cache entry not found [url: http://musetest/Icons/da_left.gif, version: null]
    network: Cache entry not found [url: http://musetest/Icons/da_delet.gif, version: null]
    network: Connecting http://musetest/Icons/da_left.gif with proxy=DIRECT
    network: Connecting http://musetest/Icons/da_delet.gif with proxy=DIRECT
    network: Connecting http://musetest:80/ with proxy=DIRECT
    network: Connecting http://musetest:80/ with proxy=DIRECT
    network: Cache entry not found [url: http://musetest/Icons/afinsrw.gif, version: null]
    network: Connecting http://musetest/Icons/afinsrw.gif with proxy=DIRECT
    network: Connecting http://musetest:80/ with proxy=DIRECT
    network: Cache entry not found [url: http://musetest/Icons/da_print.gif, version: null]
    network: Connecting http://musetest/Icons/da_print.gif with proxy=DIRECT
    network: Connecting http://musetest:80/ with proxy=DIRECT
    network: Cache entry not found [url: http://musetest/Icons/da_exp_o.gif, version: null]
    network: Connecting http://musetest/Icons/da_exp_o.gif with proxy=DIRECT
    network: Connecting http://musetest:80/ with proxy=DIRECT
    network: Cache entry not found [url: http://musetest/Icons/da_exp.gif, version: null]
    network: Connecting http://musetest/Icons/da_exp.gif with proxy=DIRECT
    network: Connecting http://musetest:80/ with proxy=DIRECT
    network: Cache entry not found [url: http://musetest/Icons/da_save.gif, version: null]
    network: Connecting http://musetest/Icons/da_save.gif with proxy=DIRECT
    network: Connecting http://musetest:80/ with proxy=DIRECT
    network: Cache entry not found [url: http://musetest/Icons/da_save.gif, version: null]
    network: Connecting http://musetest/Icons/da_save.gif with proxy=DIRECT
    network: Connecting http://musetest:80/ with proxy=DIRECT

  • FRM-92101 on 10gAS 10.1.2.2 running on Sun solaris 10 (64bit)

    Dear All,
    We have installed and configured 10.1.2.2 and migrated our application from 9.0.4. All forms and libaries have been recompiled. When we access 2 forms out of 15 forms , we get FRM-92101. Errors as follows ....
    JInitiator Console error ---
    Oracle JInitiator: Version 1.3.1.26
    Using JRE version 1.3.1.26-internal Java HotSpot(TM) Client VM
    User home directory = C:\Documents and Settings\margaret
    Proxy Configuration: no proxy
    JAR cache enabled
    Location: C:\Documents and Settings\margaret\Oracle Jar Cache
    Maximum size: unlimited
    Compression level: 0
    c: clear console window
    f: finalize objects on finalization queue
    g: garbage collect
    h: display this help message
    l: dump classloader list
    m: print memory usage
    q: hide console
    s: dump system properties
    t: dump thread list
    x: clear classloader cache
    0-5: set trace level to <n>
    Loading http://eider:7778/forms/java/frmall.jar from JAR cache
    Loading http://eider:7778/forms/java/palmsimages.jar from JAR cache
    proxyHost=null
    proxyPort=0
    connectMode=HTTP, native.
    Forms Applet version is : 10.1.2.2
    Trace level set to 5: basic, net, security, ext, liveconnect ... completed.
    Opening http://eider:7778/forms/lservlet;jsessionid=c0a8622030d69468ba95b36d40a9a4c8b9aadd4ee5e4.e3eLahiSbxyKe34NaxyMa34Lc3b0n6jAmljGr5XDqQLvpAe
    Connecting http://eider:7778/forms/lservlet;jsessionid=c0a8622030d69468ba95b36d40a9a4c8b9aadd4ee5e4.e3eLahiSbxyKe34NaxyMa34Lc3b0n6jAmljGr5XDqQLvpAe with no proxy
    Opening http://eider:7778/forms/lservlet;jsessionid=c0a8622030d69468ba95b36d40a9a4c8b9aadd4ee5e4.e3eLahiSbxyKe34NaxyMa34Lc3b0n6jAmljGr5XDqQLvpAe
    Connecting http://eider:7778/forms/lservlet;jsessionid=c0a8622030d69468ba95b36d40a9a4c8b9aadd4ee5e4.e3eLahiSbxyKe34NaxyMa34Lc3b0n6jAmljGr5XDqQLvpAe with no proxy
    Opening http://eider:7778/forms/lservlet;jsessionid=c0a8622030d69468ba95b36d40a9a4c8b9aadd4ee5e4.e3eLahiSbxyKe34NaxyMa34Lc3b0n6jAmljGr5XDqQLvpAe
    Connecting http://eider:7778/forms/lservlet;jsessionid=c0a8622030d69468ba95b36d40a9a4c8b9aadd4ee5e4.e3eLahiSbxyKe34NaxyMa34Lc3b0n6jAmljGr5XDqQLvpAe with no proxy
    Opening http://eider:7778/forms/lservlet;jsessionid=c0a8622030d69468ba95b36d40a9a4c8b9aadd4ee5e4.e3eLahiSbxyKe34NaxyMa34Lc3b0n6jAmljGr5XDqQLvpAe
    Connecting http://eider:7778/forms/lservlet;jsessionid=c0a8622030d69468ba95b36d40a9a4c8b9aadd4ee5e4.e3eLahiSbxyKe34NaxyMa34Lc3b0n6jAmljGr5XDqQLvpAe with no proxy
    Loaded image: jar:http://eider:7778/forms/java/frmall.jar!/oracle/forms/icons/save.gif
    Loaded image: jar:http://eider:7778/forms/java/frmall.jar!/oracle/forms/icons/print.gif
    Loaded image: jar:http://eider:7778/forms/java/frmall.jar!/oracle/forms/icons/pset.gif
    Loaded image: jar:http://eider:7778/forms/java/frmall.jar!/oracle/forms/icons/exit.gif
    Loaded image: jar:http://eider:7778/forms/java/frmall.jar!/oracle/forms/icons/cut.gif
    Loaded image: jar:http://eider:7778/forms/java/frmall.jar!/oracle/forms/icons/copy.gif
    Loaded image: jar:http://eider:7778/forms/java/frmall.jar!/oracle/forms/icons/paste.gif
    Loaded image: jar:http://eider:7778/forms/java/frmall.jar!/oracle/forms/icons/entqry.gif
    Loaded image: jar:http://eider:7778/forms/java/frmall.jar!/oracle/forms/icons/exeqry.gif
    Loaded image: jar:http://eider:7778/forms/java/frmall.jar!/oracle/forms/icons/canqry.gif
    Loaded image: jar:http://eider:7778/forms/java/frmall.jar!/oracle/forms/icons/prvblk.gif
    Loaded image: jar:http://eider:7778/forms/java/frmall.jar!/oracle/forms/icons/prvrec.gif
    Loaded image: jar:http://eider:7778/forms/java/frmall.jar!/oracle/forms/icons/nxtrec.gif
    Loaded image: jar:http://eider:7778/forms/java/frmall.jar!/oracle/forms/icons/nxtblk.gif
    Loaded image: jar:http://eider:7778/forms/java/frmall.jar!/oracle/forms/icons/insrec.gif
    Loaded image: jar:http://eider:7778/forms/java/frmall.jar!/oracle/forms/icons/delrec.gif
    Loaded image: jar:http://eider:7778/forms/java/frmall.jar!/oracle/forms/icons/lockrec.gif
    Loaded image: jar:http://eider:7778/forms/java/frmall.jar!/oracle/forms/icons/help.gif
    Opening http://eider:7778/forms/lservlet;jsessionid=c0a8622030d69468ba95b36d40a9a4c8b9aadd4ee5e4.e3eLahiSbxyKe34NaxyMa34Lc3b0n6jAmljGr5XDqQLvpAe
    Connecting http://eider:7778/forms/lservlet;jsessionid=c0a8622030d69468ba95b36d40a9a4c8b9aadd4ee5e4.e3eLahiSbxyKe34NaxyMa34Lc3b0n6jAmljGr5XDqQLvpAe with no proxy
    Loaded image: jar:http://eider:7778/forms/java/palmsimages.jar!/images/plusamber.gif
    Opening http://eider:7778/forms/lservlet;jsessionid=c0a8622030d69468ba95b36d40a9a4c8b9aadd4ee5e4.e3eLahiSbxyKe34NaxyMa34Lc3b0n6jAmljGr5XDqQLvpAe
    Connecting http://eider:7778/forms/lservlet;jsessionid=c0a8622030d69468ba95b36d40a9a4c8b9aadd4ee5e4.e3eLahiSbxyKe34NaxyMa34Lc3b0n6jAmljGr5XDqQLvpAe with no proxy
    Opening http://eider:7778/forms/lservlet;jsessionid=c0a8622030d69468ba95b36d40a9a4c8b9aadd4ee5e4.e3eLahiSbxyKe34NaxyMa34Lc3b0n6jAmljGr5XDqQLvpAe
    Connecting http://eider:7778/forms/lservlet;jsessionid=c0a8622030d69468ba95b36d40a9a4c8b9aadd4ee5e4.e3eLahiSbxyKe34NaxyMa34Lc3b0n6jAmljGr5XDqQLvpAe with no proxy
    Opening http://eider:7778/forms/lservlet;jsessionid=c0a8622030d69468ba95b36d40a9a4c8b9aadd4ee5e4.e3eLahiSbxyKe34NaxyMa34Lc3b0n6jAmljGr5XDqQLvpAe
    Connecting http://eider:7778/forms/lservlet;jsessionid=c0a8622030d69468ba95b36d40a9a4c8b9aadd4ee5e4.e3eLahiSbxyKe34NaxyMa34Lc3b0n6jAmljGr5XDqQLvpAe with no proxy
    Opening http://eider:7778/forms/lservlet;jsessionid=c0a8622030d69468ba95b36d40a9a4c8b9aadd4ee5e4.e3eLahiSbxyKe34NaxyMa34Lc3b0n6jAmljGr5XDqQLvpAe
    Connecting http://eider:7778/forms/lservlet;jsessionid=c0a8622030d69468ba95b36d40a9a4c8b9aadd4ee5e4.e3eLahiSbxyKe34NaxyMa34Lc3b0n6jAmljGr5XDqQLvpAe with no proxy
    Loaded image: jar:http://eider:7778/forms/java/palmsimages.jar!/images/monthblue.gif
    Loaded image: jar:http://eider:7778/forms/java/palmsimages.jar!/images/dayred.gif
    Opening http://eider:7778/forms/lservlet;jsessionid=c0a8622030d69468ba95b36d40a9a4c8b9aadd4ee5e4.e3eLahiSbxyKe34NaxyMa34Lc3b0n6jAmljGr5XDqQLvpAe
    Connecting http://eider:7778/forms/lservlet;jsessionid=c0a8622030d69468ba95b36d40a9a4c8b9aadd4ee5e4.e3eLahiSbxyKe34NaxyMa34Lc3b0n6jAmljGr5XDqQLvpAe with no proxy
    Opening http://eider:7778/forms/lservlet;jsessionid=c0a8622030d69468ba95b36d40a9a4c8b9aadd4ee5e4.e3eLahiSbxyKe34NaxyMa34Lc3b0n6jAmljGr5XDqQLvpAe
    Connecting http://eider:7778/forms/lservlet;jsessionid=c0a8622030d69468ba95b36d40a9a4c8b9aadd4ee5e4.e3eLahiSbxyKe34NaxyMa34Lc3b0n6jAmljGr5XDqQLvpAe with no proxy
    Opening http://eider:7778/forms/lservlet;jsessionid=c0a8622030d69468ba95b36d40a9a4c8b9aadd4ee5e4.e3eLahiSbxyKe34NaxyMa34Lc3b0n6jAmljGr5XDqQLvpAe
    Connecting http://eider:7778/forms/lservlet;jsessionid=c0a8622030d69468ba95b36d40a9a4c8b9aadd4ee5e4.e3eLahiSbxyKe34NaxyMa34Lc3b0n6jAmljGr5XDqQLvpAe with no proxy
    oracle.forms.net.ConnectionException: Forms session <4> aborted: unable to communicate with runtime process.
         at oracle.forms.net.ConnectionException.createConnectionException(Unknown Source)
         at oracle.forms.net.HTTPNStream.getResponse(Unknown Source)
         at oracle.forms.net.HTTPNStream.doFlush(Unknown Source)
         at oracle.forms.net.HTTPNStream.flush(Unknown Source)
         at java.io.DataOutputStream.flush(Unknown Source)
         at oracle.forms.net.StreamMessageWriter.run(Unknown Source)
    java.io.EOFException
         at java.io.DataInputStream.readUnsignedByte(Unknown Source)
         at oracle.forms.engine.Message.readDetails(Unknown Source)
         at oracle.forms.engine.Message.readDetails(Unknown Source)
         at oracle.forms.net.StreamMessageReader.run(Unknown Source)
    Trace Details ---
    [Tue Dec 02 16:05:58 2008 GMT]::Client Status [ConnId=0, PID=27422]
    >> ERROR: Abnormal termination of connection, Error Code: 11
    FORM/BLOCK/FIELD: LAUNCHER:NAVIGATION_TREE.NAVIGATOR
    Last Trigger: WHEN-TREE-NODE-SELECTED - (Execution Suspended)
    Msg: <NULL>
    Last Builtin: OPEN_FORM - (Successfully Completed)
    ------------- Call Stack Trace [ConnId = 0, ProcId = 27422] -------------
    calling call entry argument values in hex
    location type point (? means dubious value)
    siehjmpterm()+460 CALL siehDumpStackTraceU 1852F78 ? 0 ? FFBFBE04 ?
    FFBFBE20 ? 0 ? FFBFC37C ?
    __sighndlr()+12 PTR_CALL B ? 0 ? FFBFCFD0 ? 0 ?
    FF262A00 ? FFBFCFD0 ?
    sigpause()+5324 CALL __sighndlr()+0 B ? 0 ? FFBFCFD0 ? 24A1D4 ?
    0 ? 0 ?
    iwitop()+848 PTR_CALL B ? 0 ? 12 ? 0 ? FF262A00 ?
    FFBFCFD0 ?
    iwbacw()+692 CALL iwutssbi()+0 18902E8 ? FEA7F668 ? 49 ?
    10F ? 0 ? 0 ?
    iwitop()+848 PTR_CALL 1 ? 1B2BE90 ? FEA7F668 ?
    16CEE68 ? 1A82088 ?
    FEA7F8D8 ?
    iffiop()+332 CALL iwitop()+0 1B800 ? 1B850 ? FEA7F85C ?
    172B51C ? 18902E8 ? 1 ?
    ifbkop()+600 CALL iffiop()+0 2000 ? 40000 ? 7 ? 80808080 ?
    41 ? 80808080 ?
    iffmop()+896 CALL ifbkop()+0 1000000 ? 4000000 ? 1000 ?
    1 ? 18902E8 ? 1 ?
    iffmrf()+252 CALL iffmop()+0 1A6A200 ? FEA5BD4C ?
    1A7BBC8 ? 1A690A0 ? DD ? 0 ?
    ifzopn()+20 CALL iffmrf()+0 18902E8 ? FFBFDA8C ?
    :q
    I will appreciate if you could comment on the same or some pointers to resolve the issue.
    Thanks & Regards,
    Mgw.

    Did you check you forms application.log for FRM-93000?
    Normally on serverside you receive this error.
    Its is because in some forms the Fill pattern is set to None instead to a value like Transparent.
    Change this in one form and test if your frm is sill coming up.
    regards
    Michel

  • Query on Java Bean Usage in R12 Forms

    Hi,
    I have a scenario,
    There is a Java bean which has been working on Oracle 11i Forms for quite a while now.The bean is used to display two text fields which are populated on selecting a file using the Browse button on the right hand side.
    We have recently migrated this form to R12 and from then, the textfields dissappered.
    I have tried multiple ways, tried changing the background and foreground for the canvas, bean, fields.. I compiled the Bean using Java 1.5, so as to make it compatible to R12, but have not been able to make the fields visible.
    Anyone who could give me more insight in this regard would be of great help!!!
    Regards,
    Prathima.

    Following is the whole log :
    MSBeanArea is the name of my Java Bean.
    I have put some messages in my Java class in order to check if there is any where it is failing, but as you can see, there is no error raised :(
    ====================================================================================
    Loaded image: http://gmsuna.cedarhr.com:7854/forms/cedarhr.gif
    proxyHost=null
    proxyPort=0
    connectMode=HTTP, native.
    Forms Applet version is : 10.1.2.3
    Loaded image: jar:http://gmsuna.cedarhr.com:7854/forms/java/frmall.jar!/oracle/forms/icons/frame.gif
    Entered MSBeanArea
    In msbean class..
    Loaded image: http://gmsuna.cedarhr.com:7854/forms/java/hr.gif
    Loaded image: http://gmsuna.cedarhr.com:7854/forms/java/datalink.gif
    Loaded image: http://gmsuna.cedarhr.com:7854/forms/java/cnc_launch.gif
    Loaded image: http://gmsuna.cedarhr.com:7854/forms/java/dms.gif
    Loaded image: http://gmsuna.cedarhr.com:7854/forms/java/tas.gif
    Loaded image: http://gmsuna.cedarhr.com:7854/forms/java/hsr.gif
    Loaded image: http://gmsuna.cedarhr.com:7854/forms/java/system.gif
    Loaded image: http://gmsuna.cedarhr.com:7854/forms/java/chg_pass.gif
    Loaded image: http://gmsuna.cedarhr.com:7854/forms/java/re_conn.gif
    Loaded image: http://gmsuna.cedarhr.com:7854/forms/java/discover.gif
    Loaded image: http://gmsuna.cedarhr.com:7854/forms/java/tasremid.gif
    Loaded image: http://gmsuna.cedarhr.com:7854/forms/java/k_query.gif
    Loaded image: http://gmsuna.cedarhr.com:7854/forms/java/k_help.gif
    Loaded image: http://gmsuna.cedarhr.com:7854/forms/java/Find.gif
    Loaded image: http://gmsuna.cedarhr.com:7854/forms/java/keys.gif
    Loaded image: http://gmsuna.cedarhr.com:7854/forms/java/save.gif
    Loaded image: http://gmsuna.cedarhr.com:7854/forms/java/list.gif
    Loaded image: http://gmsuna.cedarhr.com:7854/forms/java/addrow.gif
    Loaded image: http://gmsuna.cedarhr.com:7854/forms/java/k_print.gif
    Loaded image: http://gmsuna.cedarhr.com:7854/forms/java/delrow.gif
    Loaded image: http://gmsuna.cedarhr.com:7854/forms/java/exit.gif
    Loaded image: http://gmsuna.cedarhr.com:7854/forms/java/orbup.gif
    Loaded image: http://gmsuna.cedarhr.com:7854/forms/java/orbdwn.gif
    Loaded image: http://gmsuna.cedarhr.com:7854/forms/java/orbscrup.gif
    Loaded image: http://gmsuna.cedarhr.com:7854/forms/java/orbsdwn.gif
    Loaded image: http://gmsuna.cedarhr.com:7854/forms/java/up.gif
    Loaded image: http://gmsuna.cedarhr.com:7854/forms/java/Null.gif
    Loaded image: http://gmsuna.cedarhr.com:7854/forms/java/Null.gif
    Loaded image: http://gmsuna.cedarhr.com:7854/forms/java/Null.gif
    Loaded image: http://gmsuna.cedarhr.com:7854/forms/java/Null.gif
    Loaded image: http://gmsuna.cedarhr.com:7854/forms/java/Null.gif
    Loaded image: http://gmsuna.cedarhr.com:7854/forms/java/Null.gif
    Loaded image: http://gmsuna.cedarhr.com:7854/forms/java/down.gif
    Loaded image: http://gmsuna.cedarhr.com:7854/forms/java/orbup.gif
    Loaded image: http://gmsuna.cedarhr.com:7854/forms/java/orbscrup.gif
    Loaded image: http://gmsuna.cedarhr.com:7854/forms/java/orbsdwn.gif
    Loaded image: http://gmsuna.cedarhr.com:7854/forms/java/orbdwn.gif
    Loaded image: http://gmsuna.cedarhr.com:7854/forms/java/tasmeals.gif
    Loaded image: http://gmsuna.cedarhr.com:7854/forms/java/tasresce.gif
    Loaded image: http://gmsuna.cedarhr.com:7854/forms/java/tasmodr.gif
    Loaded image: http://gmsuna.cedarhr.com:7854/forms/java/tasnomlt.gif
    Loaded image: http://gmsuna.cedarhr.com:7854/forms/java/tasplmts.gif
    Loaded image: http://gmsuna.cedarhr.com:7854/forms/java/tasevent.gif
    Entered MSBeanArea
    In msbean class..
    Loaded image: http://gmsuna.cedarhr.com:7854/forms/java/k_query.gif
    Loaded image: http://gmsuna.cedarhr.com:7854/forms/java/k_help.gif
    Loaded image: http://gmsuna.cedarhr.com:7854/forms/java/Find.gif
    Loaded image: http://gmsuna.cedarhr.com:7854/forms/java/keys.gif
    Loaded image: http://gmsuna.cedarhr.com:7854/forms/java/save.gif
    Loaded image: http://gmsuna.cedarhr.com:7854/forms/java/list.gif
    Loaded image: http://gmsuna.cedarhr.com:7854/forms/java/addrow.gif
    Loaded image: http://gmsuna.cedarhr.com:7854/forms/java/k_print.gif
    Loaded image: http://gmsuna.cedarhr.com:7854/forms/java/delrow.gif
    Loaded image: http://gmsuna.cedarhr.com:7854/forms/java/exit.gif
    Loaded image: http://gmsuna.cedarhr.com:7854/forms/java/orbup.gif
    Loaded image: http://gmsuna.cedarhr.com:7854/forms/java/orbdwn.gif
    Loaded image: http://gmsuna.cedarhr.com:7854/forms/java/orbscrup.gif
    Loaded image: http://gmsuna.cedarhr.com:7854/forms/java/orbsdwn.gif
    Loaded image: http://gmsuna.cedarhr.com:7854/forms/java/up.gif
    Loaded image: http://gmsuna.cedarhr.com:7854/forms/java/Null.gif
    Loaded image: http://gmsuna.cedarhr.com:7854/forms/java/Null.gif
    Loaded image: http://gmsuna.cedarhr.com:7854/forms/java/Null.gif
    Loaded image: http://gmsuna.cedarhr.com:7854/forms/java/Null.gif
    Loaded image: http://gmsuna.cedarhr.com:7854/forms/java/Null.gif
    Loaded image: http://gmsuna.cedarhr.com:7854/forms/java/Null.gif
    Loaded image: http://gmsuna.cedarhr.com:7854/forms/java/down.gif
    Loaded image: http://gmsuna.cedarhr.com:7854/forms/java/tasqlrec.gif
    Loaded image: http://gmsuna.cedarhr.com:7854/forms/java/tasqlwiz.gif
    Loaded image: http://gmsuna.cedarhr.com:7854/forms/java/tasmodr.gif
    Loaded image: http://gmsuna.cedarhr.com:7854/forms/java/tasunkwn.gif
    Loaded image: http://gmsuna.cedarhr.com:7854/forms/java/tasdeldt.gif
    Loaded image: http://gmsuna.cedarhr.com:7854/forms/java/tasplmts.gif
    Loaded image: http://gmsuna.cedarhr.com:7854/forms/java/tasaudit.gif
    Loaded image: http://gmsuna.cedarhr.com:7854/forms/java/tastnote.gif
    Loaded image: http://gmsuna.cedarhr.com:7854/forms/java/tasevlog.gif
    Loaded image: http://gmsuna.cedarhr.com:7854/forms/java/taslettr.gif
    Loaded image: http://gmsuna.cedarhr.com:7854/forms/java/tasplcpy.gif
    Loaded image: http://gmsuna.cedarhr.com:7854/forms/java/tasaccom.gif
    Loaded image: http://gmsuna.cedarhr.com:7854/forms/java/k_query.gif
    Loaded image: http://gmsuna.cedarhr.com:7854/forms/java/k_query.gif
    Loaded image: http://gmsuna.cedarhr.com:7854/forms/java/tasmeals.gif
    Loaded image: http://gmsuna.cedarhr.com:7854/forms/java/tasresce.gif
    Loaded image: http://gmsuna.cedarhr.com:7854/forms/java/tasmodr.gif
    Loaded image: http://gmsuna.cedarhr.com:7854/forms/java/tasnomlt.gif
    Loaded image: http://gmsuna.cedarhr.com:7854/forms/java/tasplmts.gif
    Loaded image: http://gmsuna.cedarhr.com:7854/forms/java/tasevent.gif
    Loaded image: http://gmsuna.cedarhr.com:7854/forms/java/cedarhr.gif
    proxyHost=null
    proxyPort=0
    connectMode=HTTP, native.
    Forms Applet version is : 10.1.2.3
    Entered MSBeanArea
    In msbean class..
    Loaded image: http://gmsuna.cedarhr.com:7854/forms/java/hr.gif
    Loaded image: http://gmsuna.cedarhr.com:7854/forms/java/datalink.gif
    Loaded image: http://gmsuna.cedarhr.com:7854/forms/java/cnc_launch.gif
    Loaded image: http://gmsuna.cedarhr.com:7854/forms/java/dms.gif
    Loaded image: http://gmsuna.cedarhr.com:7854/forms/java/tas.gif
    Loaded image: http://gmsuna.cedarhr.com:7854/forms/java/hsr.gif
    Loaded image: http://gmsuna.cedarhr.com:7854/forms/java/system.gif
    Loaded image: http://gmsuna.cedarhr.com:7854/forms/java/chg_pass.gif
    Loaded image: http://gmsuna.cedarhr.com:7854/forms/java/re_conn.gif
    Loaded image: http://gmsuna.cedarhr.com:7854/forms/java/discover.gif
    Loaded image: http://gmsuna.cedarhr.com:7854/forms/java/tasremid.gif
    Loaded image: http://gmsuna.cedarhr.com:7854/forms/java/k_query.gif
    Loaded image: http://gmsuna.cedarhr.com:7854/forms/java/k_help.gif
    Loaded image: http://gmsuna.cedarhr.com:7854/forms/java/Find.gif
    Loaded image: http://gmsuna.cedarhr.com:7854/forms/java/keys.gif
    Loaded image: http://gmsuna.cedarhr.com:7854/forms/java/save.gif
    Loaded image: http://gmsuna.cedarhr.com:7854/forms/java/list.gif
    Loaded image: http://gmsuna.cedarhr.com:7854/forms/java/addrow.gif
    Loaded image: http://gmsuna.cedarhr.com:7854/forms/java/k_print.gif
    Loaded image: http://gmsuna.cedarhr.com:7854/forms/java/delrow.gif
    Loaded image: http://gmsuna.cedarhr.com:7854/forms/java/exit.gif
    Loaded image: http://gmsuna.cedarhr.com:7854/forms/java/orbup.gif
    Loaded image: http://gmsuna.cedarhr.com:7854/forms/java/orbdwn.gif
    Loaded image: http://gmsuna.cedarhr.com:7854/forms/java/orbscrup.gif
    Loaded image: http://gmsuna.cedarhr.com:7854/forms/java/orbsdwn.gif
    Loaded image: http://gmsuna.cedarhr.com:7854/forms/java/up.gif
    Loaded image: http://gmsuna.cedarhr.com:7854/forms/java/Null.gif
    Loaded image: http://gmsuna.cedarhr.com:7854/forms/java/Null.gif
    Loaded image: http://gmsuna.cedarhr.com:7854/forms/java/Null.gif
    Loaded image: http://gmsuna.cedarhr.com:7854/forms/java/Null.gif
    Loaded image: http://gmsuna.cedarhr.com:7854/forms/java/Null.gif
    Loaded image: http://gmsuna.cedarhr.com:7854/forms/java/Null.gif
    Loaded image: http://gmsuna.cedarhr.com:7854/forms/java/down.gif
    Loaded image: http://gmsuna.cedarhr.com:7854/forms/java/orbup.gif
    Loaded image: http://gmsuna.cedarhr.com:7854/forms/java/orbscrup.gif
    Loaded image: http://gmsuna.cedarhr.com:7854/forms/java/orbsdwn.gif
    Loaded image: http://gmsuna.cedarhr.com:7854/forms/java/orbdwn.gif
    Loaded image: http://gmsuna.cedarhr.com:7854/forms/java/tasmeals.gif
    Loaded image: http://gmsuna.cedarhr.com:7854/forms/java/tasresce.gif
    Loaded image: http://gmsuna.cedarhr.com:7854/forms/java/tasmodr.gif
    Loaded image: http://gmsuna.cedarhr.com:7854/forms/java/tasnomlt.gif
    Loaded image: http://gmsuna.cedarhr.com:7854/forms/java/tasplmts.gif
    Loaded image: http://gmsuna.cedarhr.com:7854/forms/java/tasevent.gif
    Loaded image: http://gmsuna.cedarhr.com:7854/forms/java/cedarhr.gif
    proxyHost=null
    proxyPort=0
    connectMode=HTTP, native.
    Forms Applet version is : 10.1.2.3
    Entered MSBeanArea
    In msbean class..
    Loaded image: http://gmsuna.cedarhr.com:7854/forms/java/hr.gif
    Loaded image: http://gmsuna.cedarhr.com:7854/forms/java/datalink.gif
    Loaded image: http://gmsuna.cedarhr.com:7854/forms/java/cnc_launch.gif
    Loaded image: http://gmsuna.cedarhr.com:7854/forms/java/dms.gif
    Loaded image: http://gmsuna.cedarhr.com:7854/forms/java/tas.gif
    Loaded image: http://gmsuna.cedarhr.com:7854/forms/java/hsr.gif
    Loaded image: http://gmsuna.cedarhr.com:7854/forms/java/system.gif
    Loaded image: http://gmsuna.cedarhr.com:7854/forms/java/chg_pass.gif
    Loaded image: http://gmsuna.cedarhr.com:7854/forms/java/re_conn.gif
    Loaded image: http://gmsuna.cedarhr.com:7854/forms/java/discover.gif
    Loaded image: http://gmsuna.cedarhr.com:7854/forms/java/tasremid.gif
    Loaded image: http://gmsuna.cedarhr.com:7854/forms/java/k_query.gif
    Loaded image: http://gmsuna.cedarhr.com:7854/forms/java/k_help.gif
    Loaded image: http://gmsuna.cedarhr.com:7854/forms/java/Find.gif
    Loaded image: http://gmsuna.cedarhr.com:7854/forms/java/keys.gif
    Loaded image: http://gmsuna.cedarhr.com:7854/forms/java/save.gif
    Loaded image: http://gmsuna.cedarhr.com:7854/forms/java/list.gif
    Loaded image: http://gmsuna.cedarhr.com:7854/forms/java/addrow.gif
    Loaded image: http://gmsuna.cedarhr.com:7854/forms/java/k_print.gif
    Loaded image: http://gmsuna.cedarhr.com:7854/forms/java/delrow.gif
    Loaded image: http://gmsuna.cedarhr.com:7854/forms/java/exit.gif
    Loaded image: http://gmsuna.cedarhr.com:7854/forms/java/orbup.gif
    Loaded image: http://gmsuna.cedarhr.com:7854/forms/java/orbdwn.gif
    Loaded image: http://gmsuna.cedarhr.com:7854/forms/java/orbscrup.gif
    Loaded image: http://gmsuna.cedarhr.com:7854/forms/java/orbsdwn.gif
    Loaded image: http://gmsuna.cedarhr.com:7854/forms/java/up.gif
    Loaded image: http://gmsuna.cedarhr.com:7854/forms/java/Null.gif
    Loaded image: http://gmsuna.cedarhr.com:7854/forms/java/Null.gif
    Loaded image: http://gmsuna.cedarhr.com:7854/forms/java/Null.gif
    Loaded image: http://gmsuna.cedarhr.com:7854/forms/java/Null.gif
    Loaded image: http://gmsuna.cedarhr.com:7854/forms/java/Null.gif
    Loaded image: http://gmsuna.cedarhr.com:7854/forms/java/Null.gif
    Loaded image: http://gmsuna.cedarhr.com:7854/forms/java/down.gif
    Loaded image: http://gmsuna.cedarhr.com:7854/forms/java/orbup.gif
    Loaded image: http://gmsuna.cedarhr.com:7854/forms/java/orbscrup.gif
    Loaded image: http://gmsuna.cedarhr.com:7854/forms/java/orbsdwn.gif
    Loaded image: http://gmsuna.cedarhr.com:7854/forms/java/orbdwn.gif
    Loaded image: http://gmsuna.cedarhr.com:7854/forms/java/tasmeals.gif
    Loaded image: http://gmsuna.cedarhr.com:7854/forms/java/tasresce.gif
    Loaded image: http://gmsuna.cedarhr.com:7854/forms/java/tasmodr.gif
    Loaded image: http://gmsuna.cedarhr.com:7854/forms/java/tasnomlt.gif
    Loaded image: http://gmsuna.cedarhr.com:7854/forms/java/tasplmts.gif
    Loaded image: http://gmsuna.cedarhr.com:7854/forms/java/tasevent.gif
    Entered MSBeanArea
    In msbean class..
    Loaded image: http://gmsuna.cedarhr.com:7854/forms/java/k_query.gif
    Loaded image: http://gmsuna.cedarhr.com:7854/forms/java/k_help.gif
    Loaded image: http://gmsuna.cedarhr.com:7854/forms/java/Find.gif
    Loaded image: http://gmsuna.cedarhr.com:7854/forms/java/keys.gif
    Loaded image: http://gmsuna.cedarhr.com:7854/forms/java/save.gif
    Loaded image: http://gmsuna.cedarhr.com:7854/forms/java/list.gif
    Loaded image: http://gmsuna.cedarhr.com:7854/forms/java/addrow.gif
    Loaded image: http://gmsuna.cedarhr.com:7854/forms/java/k_print.gif
    Loaded image: http://gmsuna.cedarhr.com:7854/forms/java/delrow.gif
    Loaded image: http://gmsuna.cedarhr.com:7854/forms/java/exit.gif
    Loaded image: http://gmsuna.cedarhr.com:7854/forms/java/orbup.gif
    Loaded image: http://gmsuna.cedarhr.com:7854/forms/java/orbdwn.gif
    Loaded image: http://gmsuna.cedarhr.com:7854/forms/java/orbscrup.gif
    Loaded image: http://gmsuna.cedarhr.com:7854/forms/java/orbsdwn.gif
    Loaded image: http://gmsuna.cedarhr.com:7854/forms/java/up.gif
    Loaded image: http://gmsuna.cedarhr.com:7854/forms/java/Null.gif
    Loaded image: http://gmsuna.cedarhr.com:7854/forms/java/Null.gif
    Loaded image: http://gmsuna.cedarhr.com:7854/forms/java/Null.gif
    Loaded image: http://gmsuna.cedarhr.com:7854/forms/java/Null.gif
    Loaded image: http://gmsuna.cedarhr.com:7854/forms/java/Null.gif
    Loaded image: http://gmsuna.cedarhr.com:7854/forms/java/Null.gif
    Loaded image: http://gmsuna.cedarhr.com:7854/forms/java/down.gif
    Loaded image: http://gmsuna.cedarhr.com:7854/forms/java/tasqlrec.gif
    Loaded image: http://gmsuna.cedarhr.com:7854/forms/java/tasqlwiz.gif
    Loaded image: http://gmsuna.cedarhr.com:7854/forms/java/tasmodr.gif
    Loaded image: http://gmsuna.cedarhr.com:7854/forms/java/tasunkwn.gif
    Loaded image: http://gmsuna.cedarhr.com:7854/forms/java/tasdeldt.gif
    Loaded image: http://gmsuna.cedarhr.com:7854/forms/java/tasplmts.gif
    Loaded image: http://gmsuna.cedarhr.com:7854/forms/java/tasaudit.gif
    Loaded image: http://gmsuna.cedarhr.com:7854/forms/java/tastnote.gif
    Loaded image: http://gmsuna.cedarhr.com:7854/forms/java/tasevlog.gif
    Loaded image: http://gmsuna.cedarhr.com:7854/forms/java/taslettr.gif
    Loaded image: http://gmsuna.cedarhr.com:7854/forms/java/tasplcpy.gif
    Loaded image: http://gmsuna.cedarhr.com:7854/forms/java/tasaccom.gif
    Loaded image: http://gmsuna.cedarhr.com:7854/forms/java/k_query.gif
    Loaded image: http://gmsuna.cedarhr.com:7854/forms/java/k_query.gif
    ====================================================================================
    Regards,
    Prathima.

  • Ubuntu 10.04 (build 16.3-b01, mixed mode) - Applet Fails (log inside)

    I am looking for some advice on what to try next.
    ---- java console ----
    Java Plug-in 1.6.0_20
    Using JRE version 1.6.0_20-b02 Java HotSpot(TM) 64-Bit Server VM
    User home directory = /home/cprofitt
    c: clear console window
    f: finalize objects on finalization queue
    g: garbage collect
    h: display this help message
    l: dump classloader list
    m: print memory usage
    o: trigger logging
    q: hide console
    r: reload policy configuration
    s: dump system and deployment properties
    t: dump thread list
    v: dump thread stack
    x: clear classloader cache
    0-5: set trace level to <n>
    Loaded image: jar:https://10.120.254.13/vtd150p02.jar!/com/hp/ilo2/virtdevs/cdstart.gif
    Loaded image: jar:https://10.120.254.13/vtd150p02.jar!/com/hp/ilo2/virtdevs/cdstop.gif
    Loaded image: jar:https://10.120.254.13/vtd150p02.jar!/com/hp/ilo2/virtdevs/active.gif
    Loaded image: jar:https://10.120.254.13/vtd150p02.jar!/com/hp/ilo2/virtdevs/inactive.gif
    Loaded image: jar:https://10.120.254.13/vtd150p02.jar!/com/hp/ilo2/virtdevs/fdstart.gif
    Loaded image: jar:https://10.120.254.13/vtd150p02.jar!/com/hp/ilo2/virtdevs/fdstop.gif
    Loaded image: jar:https://10.120.254.13/vtd150p02.jar!/com/hp/ilo2/virtdevs/fistart.gif
    Exception: java.io.FileNotFoundException: /home/cprofitt/.java/hp.properties (No such file or directory)
    Checking for /tmp/cpqma-3d5b89c
    DLL not present
    Loading /tmp/cpqma-3d5b89c
    Exception in thread "thread applet-com.hp.ilo2.virtdevs.virtdevs.class-1" java.lang.UnsatisfiedLinkError: /tmp/cpqma-3d5b89c: /tmp/cpqma-3d5b89c: wrong ELF class: ELFCLASS32 (Possible cause: architecture word width mismatch)
         at java.lang.ClassLoader$NativeLibrary.load(Native Method)
         at java.lang.ClassLoader.loadLibrary0(ClassLoader.java:1803)
         at java.lang.ClassLoader.loadLibrary(ClassLoader.java:1699)
         at java.lang.Runtime.load0(Runtime.java:770)
         at java.lang.System.load(System.java:1003)
         at com.hp.ilo2.virtdevs.DirectIO.<clinit>(DirectIO.java:87)
         at com.hp.ilo2.virtdevs.MediaAccess.devices(MediaAccess.java:183)
         at com.hp.ilo2.virtdevs.virtdevs.ui_init(virtdevs.java:363)
         at com.hp.ilo2.virtdevs.virtdevs.start(virtdevs.java:142)
         at sun.plugin2.applet.Plugin2Manager$AppletExecutionRunnable.run(Plugin2Manager.java:1639)
         at java.lang.Thread.run(Thread.java:619)
    ---- end java console ----
    My humble uneducated guess is this is an issue due to my using a 64bit version of Java and browser... but I did not get the same results on an OS X machine.

    In what way is hp software involved in this? Looks like it's failing due to something that is related to that.

Maybe you are looking for