Icons in JAR are downloaded but doesn't show up in application

I've tried following all the advice in the Deploying icons on the web guide, but there's just something not quite right.
What goes right:
From java console: "Downloading http://oiatst01.tdk.dk:7778/forms90images/kassimages.jar to JAR cache"
And I can see the file in the Oracle Jar Cache. I can also type in the url and get the kassimages.jar file. It's there and it's accessible.
That also means the virtual folder /forms90images/ works properly:
Alias /forms90images/ "E:\KASSForms\gifer/"
Registry.dat / default.dat has:
default.icons.iconpath=/forms90images/
default.icons.iconextension=gif
In the HTML substitutions are made correctly:
<PARAM NAME="imageBase" VALUE="codeBase">
and
<EMBED ....imageBase="codeBase" ...>
formsweb.cfg has:
archive_jini=f90all_jinit.jar,/forms90images/kassimages.jar
archive_ie=f90all.cab,/forms90images/kassimages.jar
archive=f90all.jar,/forms90images/kassimages.jar
# 3) Values for the Forms applet parameters:
serverURL=/forms90/l90servlet
codebase=/forms90/java
imageBase=codeBase
Errors are:
ORACLE_HOME/Apache/Apache/logs/error_log: "File does not exist: e:/kassforms/gifer/last.gif"
It's as if it's not using the JAR file, and the tricky thing is that if I place the actual "last.gif" file inside the folder e:/kassforms... it shows up! Now, it isn't even supposed to do that as imagebase=codebase. It's not supposed to even LOOK at the files.
# java console start #
Loading http://oiatst01.tdk.dk:7778/forms90/webutil/webutil.jar from JAR cache
Loading http://oiatst01.tdk.dk:7778/forms90/webutil/jacob.jar from JAR cache
Loading http://oiatst01.tdk.dk:7778/forms90/java/f90all_jinit.jar from JAR cache
RegisterWebUtil - Loading Webutil Version 1.0.2 Beta
Loading http://oiatst01.tdk.dk:7778/forms90images/kassimages.jar from JAR cache
Loading http://oiatst01.tdk.dk:7778/forms90/java/SmileyBridge.jar from JAR cache
connectMode=HTTP, native.
MessageManager: key VERSION bundle oracle.forms.engine.RunformBundle exception java.lang.IllegalArgumentException: unknown format type at
[[[Note here: I don't know what the MessageManager is talking about here as the error message isn't complete. I _may_ be related to wrong parameters in formsweb.cfg or some such]]]
# java console end #
Sincerely,
Jesper Vad Kristensen
Aarhus, Denmark

If I change the line:
codebase=/forms90/java
to:
codebase=/forms90images/
Then my iAS stops working, and I guess it's because the other jars can't be found now (jinit for example). Maybe it uses the /forms90/java path for both. It kinda seems that I need a separate instruction that tells the imageBase parameter where to look in the file system. I don't know how to do that?!
Maybe it's simply impossible to locate the image jar file anywhere else but in the standard directory where the other jars are located?
Sincerely,
Jesper Vad Kristensen
Aarhus, Denmark
PS: the html page used is:
<HTML>
<!-- FILE: webutiljini.htm (Oracle Forms) -->
<!-- -->
<!-- This is the a HTML template file for running a form on the -->
<!-- web using JInitiator-style tags to include the Forms applet. -->
<!-- and a certificate regsitration applet for the WebUtil utility -->
<!-- -->
<!-- IMPORTANT NOTES: -->
<!-- Default values for all the variables which appear below -->
<!-- (enclosed in percent characters) are defined in the servlet -->
<!-- configuration file (formsweb.cfg). It is preferable to make -->
<!-- changes in that file where possible, rather than this one. -->
<!-- -->
<!-- This file uses several extra tags that are not present in the -->
<!-- default template files. You should ensure that these are -->
<!-- present in the configuration that uses this template -->
<!-- The extra substitution Tags are: -->
<!-- %webUtilArchive% = jar file containing the WebUtil code -->
<!-- (by default this should be webutil.jar) -->
<!-- %WebUtilLogging% = Defines the current logging mode. -->
<!-- Valid values: off|on|console|server|all -->
<!-- (on == console) -->
<!-- %WebUtilErrorAlert% = Should errors be displayed in an alert -->
<!-- as well as the programmer defined -->
<!-- locations -->
<!-- Valid values: true|yes|false|no -->
<HEAD><TITLE>%pageTitle%</TITLE></HEAD>
<BODY %HTMLbodyAttrs%>
%HTMLbeforeForm%
<!-- Registration applet definition (start) -->
<OBJECT classid="%jinit_classid%"
codebase="/forms90/jinitiator/%jinit_exename%"
WIDTH="0"
HEIGHT="0"
HSPACE="0"
VSPACE="0">
<PARAM NAME="TYPE" VALUE="%jinit_mimetype%">
<PARAM NAME="CODEBASE" VALUE="%codebase%">
<PARAM NAME="CODE" VALUE="oracle.forms.webutil.common.RegisterWebUtil" >
<PARAM NAME="ARCHIVE" VALUE="%webUtilArchive%" >
<COMMENT>
<EMBED SRC="" PLUGINSPAGE="%jinit_download_page%"
TYPE="%jinit_mimetype%"
java_codebase="%codebase%"
java_code="oracle.forms.webutil.common.RegisterWebUtil"
java_archive="%webUtilArchive%"
WIDTH="0"
HEIGHT="0"
HSPACE="0"
VSPACE="0"
>
<NOEMBED>
</COMMENT>
</NOEMBED></EMBED>
</OBJECT>
<!-- Registration applet definition (end) -->
<!-- Forms applet definition (start) -->
<OBJECT classid="%jinit_classid%"
codebase="/forms90/jinitiator/%jinit_exename%"
WIDTH="%Width%"
HEIGHT="%Height%"
HSPACE="0"
VSPACE="0">
<PARAM NAME="TYPE" VALUE="%jinit_mimetype%">
<PARAM NAME="CODEBASE" VALUE="%codebase%">
<PARAM NAME="CODE" VALUE="oracle.forms.engine.Main" >
<PARAM NAME="ARCHIVE" VALUE="%archive_jini%,%webUtilArchive%" >
<PARAM NAME="serverURL" VALUE="%serverURL%">
<PARAM NAME="networkRetries" VALUE="%networkRetries%">
<PARAM NAME="serverArgs"
VALUE="module=%form% userid=%userid% sso_userid=%sso_userid% %otherParams%">
<PARAM NAME="heartBeat" VALUE="5">
<PARAM NAME="separateFrame" VALUE="%separateFrame%">
<PARAM NAME="splashScreen" VALUE="%splashScreen%">
<PARAM NAME="background" VALUE="%background%">
<PARAM NAME="lookAndFeel" VALUE="%lookAndFeel%">
<PARAM NAME="colorScheme" VALUE="%colorScheme%">
<PARAM NAME="serverApp" VALUE="%serverApp%">
<PARAM NAME="logo" VALUE="%logo%">
<PARAM NAME="imageBase" VALUE="%imageBase%">
<PARAM NAME="WebUtilLogging" VALUE="%WebUtilLogging%">
<PARAM NAME="WebUtilLoggingDetail" VALUE="%WebUtilLoggingDetail%">
<PARAM NAME="WebUtilErrorMode" VALUE="%WebUtilErrorMode%">
<PARAM NAME="WebUtilDispatchMonitorInterval" VALUE="%WebUtilDispatchMonitorInterval%">
<COMMENT>
<EMBED SRC="" PLUGINSPAGE="%jinit_download_page%"
TYPE="%jinit_mimetype%"
java_codebase="%codebase%"
java_code="oracle.forms.engine.Main"
java_archive="%archive_jini%,%webUtilArchive%"
WIDTH="%Width%"
HEIGHT="%Height%"
HSPACE="0"
VSPACE="0"
serverURL="%serverURL%"
networkRetries="%networkRetries%"
serverArgs="module=%form% userid=%userid% sso_userid=%sso_userid% %otherparams%"
heartBeat="5"
separateFrame="%separateFrame%"
splashScreen="%splashScreen%"
background="%background%"
lookAndFeel="%lookAndFeel%"
colorScheme="%colorScheme%"
serverApp="%serverApp%"
logo="%logo%"
imageBase="%imageBase%"
WebUtilLogging="%WebUtilLogging%"
WebUtilLoggingDetail="%WebUtilLoggingDetail%"
WebUtilErrormode="%WebUtilErrorMode%"
WebUtilDispatchMonitorInterval="%WebUtilDispatchMonitorInterval%"
>
<NOEMBED>
</COMMENT>
</NOEMBED></EMBED>
</OBJECT>
<!-- Forms applet definition (end) -->
%HTMLafterForm%
</BODY>
</HTML>

Similar Messages

  • HT4539 Why I can download from iCloud on 1 iPod but not the other. It says downloaded but doesn't show up in music...

    I can download from iCloud to one iPod but not the other.  It says downloaded but doesn't show up in music...

    I'm not sure what you mean by the "music library" - are you looking in the Music app?  Or the iTunes app (which is not the one to be looking in)?

  • TS4057 I did this and now my videos are not working. They show the pictures aren't there on some and on others it shows they are there, but doesn't show them in the player. When I try to Share anything it just says Waiting for Processing for hours. What d

    I did this and now my videos are not working. They show the pictures aren't there on some and on others it shows they are there, but doesn't show them in the player. When I try to Share anything it just says Waiting for Processing for hours. What do I do?
    I also got Motion and can't figure out how to use it with Final Cut Pro X. Any help woud be great. Thanks

    I have no idea what may have caused your MacBook to stop working, but from your description it kind of sounds like it may have started before you ran Software Update and installed the new Apps. Just the general slow feeling and bugginess is what tips me off. You said that you weren't sure if you had closed all open windows, that doesn't matter if the computer restarts itself. It automatically closes all other open applications when restarting.
    As to your data being retrievable, if when you take it in they do a fresh install of the OS, then no, it will not be unless you want to pay several thousand dollars to a software retrieval company.
    I am glad to hear that you have taken into the Apple Store to get it fixed, and that you have all of your purchased music backed up to your iPod. You should be able to just transfer it all back to iTunes once you get your computer back should it be necessary.
    As a side note, the proper place for this topic would probably in the MacBook forums, not iTunes since there is no evidence that iTunes started the issue.

  • Content purchased from iTunes store are downloaded but do not show up in library (iTunes 11) even after manual add

    Hi all,
    I upgraded to iTunes 11 recently and have now purchased some additional content from the iTunes store. The files have been downloaded but do not show up in my library. A search yields some results but I cannot access the songs in my library nor can I add them to 'up next' although the option is available from the search results menu.
    First thing I tried was to add them again manually but the problem persists. Any clues?
    Thanks and Best
    Frank

    OK, I found a solution. Here it goes, just in case anybody else comes across this issue:
    I deleted all the relevant entries from the iTunes Libary.xml AND iTunes Music Library.xml files (with iTunes closed, of course) and removed the files on the harddrive library structure to another location. I then restarted iTunes and added the album manually to my library again. In my case, I got iTunes to handle my library and the files were thus copied back to my old structure by the iTunes. To finish I reimported the album artwork and that was that.
    Hope that I won't encounter this issue with future purchases under iTunes11, this workaround IS a bit of a hassle!

  • TS3899 Mail will not download in the other account in email says it is downloading but doesn't show its downloaded

    I had this problem before back in the end of November and all of December mail will stop loading and doesn't show up this in the account settings OTHER . I have deleted the account and reloaded it did a hard restart still the same it starts and says downloading but it doesn't show up on the phone this is doing the same thing on my ipad also . So one would think it is the server for my email account it is not because it works fine on my mack air and also the imac so I'm confused what would be the next step any ideas ?

    Use the links in the iTunes Music Store itself to tell them of the problem. Or the links under the help menu of iTunes.

  • App says it downloaded, but doesn't show up

    I went to the App Store and downloaded an app, and it showed it downloading in the App Store, but it won't display on the home screen. If I hit the open button in the App Store, it does nothing. In the usage menu, I can find its icon, but with no name. When I deleted it, it called it "(null)". But when I re-downloaded, it did the same thing. It even shows that it has 39.7 MB but it's "null". What in the world is going on?

    Try giving your iPad a reset. Hold down the sleep and home keys for about 20 seconds. When you see the silver apple, let go and let it reboot. Once it reboots try again and see if you can see the app.

  • Photoshop showing as downloaded, but its not showing in my applications on my Mac

    Hello,
    Photoshop is showing as downloaded on my CC but its not appearing in my aplications on my Mac OS X (10.9.1)
    Thanks
    james

    Open itunes, connect iphone, click File>Transfer Purchases

  • Iphoto icon bounces in the dock but doesn't open

    iphoto icon bounces in the dock but doesn't open

    Hi Terence, I hope you can help me too. I have a problem with opening iPhoto. It has always worked fine but now as soon as I click on the icon in the Dock or connect my camera I get the enclosed screen (see below). I have tried to re-install from iLife 11 Install Disk with no joy. I have moved my plist file to Trash. Any further suggestions please will be greatly appreciated.
    Many thanks,
    Brian
    Process:         iPhoto [240]
    Path:            /Applications/iPhoto.app/Contents/MacOS/iPhoto
    Identifier:      com.apple.iPhoto
    Version:         ??? (???)
    Build Info:      iPhotoProject-5270000~1
    Code Type:       X86 (Native)
    Parent Process:  launchd [90]
    Date/Time:       2012-03-27 13:00:05.482 +0100
    OS Version:      Mac OS X 10.6.8 (10K549)
    Report Version:  6
    Interval Since Last Report:          155049 sec
    Crashes Since Last Report:           6
    Per-App Crashes Since Last Report:   6
    Anonymous UUID:                      413183FB-E0A0-4D96-A97D-68916344CB13
    Exception Type:  EXC_BREAKPOINT (SIGTRAP)
    Exception Codes: 0x0000000000000002, 0x0000000000000000
    Crashed Thread:  0
    Dyld Error Message:
      Library not loaded: /Library/Frameworks/iLifePageLayout.framework/Versions/A/iLifePageLayout
      Referenced from: /Applications/iPhoto.app/Contents/MacOS/iPhoto
      Reason: image not found
    Binary Images:
    0x8fe00000 - 0x8fe4162b  dyld 132.1 (???) <39AC3185-E633-68AA-7CD6-1230E7F1CEF4> /usr/lib/dyld
    Model: MacBook2,1, BootROM MB21.00A5.B07, 2 processors, Intel Core 2 Duo, 2 GHz, 2 GB, SMC 1.13f3
    Graphics: Intel GMA 950, GMA 950, Built-In, spdisplays_integrated_vram
    Memory Module: global_name
    AirPort: AirPort Extreme, Atheros 5416: 2.1.14.6
    Bluetooth: Version 2.4.5f3, 2 service, 19 devices, 1 incoming serial ports
    Network Service: Built-in Ethernet, Ethernet, en0
    Network Service: AirPort, AirPort, en1
    Serial ATA Device: WDC WD3200BEVT-11ZCT0, 298.09 GB
    Parallel ATA Device: HL-DT-ST DVDRW GWA4080MA
    USB Device: Built-in iSight, 0x05ac  (Apple Inc.), 0x8501, 0xfd400000 / 3
    USB Device: USB2.0 Hub, 0x05e3  (Genesys Logic, Inc.), 0x0608, 0xfd100000 / 2
    USB Device: USB2.0 Hub, 0x05e3  (Genesys Logic, Inc.), 0x0608, 0xfd140000 / 5
    USB Device: USB Audio CODEC, 0x08bb  (Texas Instruments Japan), 0x2900, 0xfd142000 / 7
    USB Device: Hub, 0x05ac  (Apple Inc.), 0x9102, 0xfd141000 / 6
    USB Device: Hub, 0x05ac  (Apple Inc.), 0x9118, 0xfd141100 / 8
    USB Device: Studio Display, 0x05ac  (Apple Inc.), 0x9218, 0xfd141130 / 9
    USB Device: Desktop, 0x0bc2  (Seagate LLC), 0x3300, 0xfd110000 / 4
    USB Device: Apple Internal Keyboard / Trackpad, 0x05ac  (Apple Inc.), 0x021a, 0x1d200000 / 2
    USB Device: IR Receiver, 0x05ac  (Apple Inc.), 0x8240, 0x5d200000 / 2
    USB Device: Bluetooth USB Host Controller, 0x05ac  (Apple Inc.), 0x8205, 0x7d100000 / 2

  • After apple wiped my hard drive, my computer no longer recognizes my iphone 4.  It will charge, but doesn't show up in my sidebar or in itunes.  My computer says there are no software updates available.  I'm running OSX 10.5.8 and itunes is 10.3.1.

    After apple wiped my hard drive, my computer no longer recognizes my iphone 4.  It will charge, but doesn't show up in my sidebar or in itunes.  My computer says there are no software updates available.  I'm running OSX 10.5.8 and itunes is 10.3.1.

    After apple wiped my hard drive, my computer no longer recognizes my iphone 4.  It will charge, but doesn't show up in my sidebar or in itunes.  My computer says there are no software updates available.  I'm running OSX 10.5.8 and itunes is 10.3.1.

  • I download an app. But doesn't show up on my homepage. I go to download it again from the cloud and all I get is a message saying "you already download this application so you will be able to redownload the app free of charge" I press ok.Still don't have

    I download an app. But doesn't show up on my homepage. I go to download it again from the cloud and all I get is a message saying "you already download this application so you will be able to redownload the app free of charge" I press ok. Still don't have it

    What is the app? What "homepage" do you mean?

  • HT201272 When I download a movie I bought on my iPad onto my iPhone it downloads completely but doesn't show up in my videos, what is going wrong?

    When I download a movie I bought on my iPad onto my iPhone it downloads completely but doesn't show up in my videos, what is going wrong?

    Hi adtsalmon,
    You can only watch the movie on the device you rented it on. Here's a snippet from the Apple Support site (italics mine):
    If you download a rented movie on your computer: You can transfer it to a device such as your Apple TV (1st generation), iPhone, iPad, or iPod if it’s a standard-definition film (movies in HD can only be watched on your computer, iPad, iPhone 4 or later, iPod touch (4th generation or later), or Apple TV). Once you move the movie from your computer to a device, the movie will disappear from your computer's iTunes library. You can move the movie between devices as many times as you wish during the rental period, but the movie can only exist on one device at a time.
    If you download a rented movie on your iPhone 4 or later, iPad, iPod touch (4th generation or later), or Apple TV: It is not transferable to any other device or computer.
    Here's the link to the Movie Rentals FAQs site FYI:
    http://support.apple.com/kb/HT1657
    Hope this helps!
    Cheers,
    GB

  • I want to update my ipad2 when i used to download the os it shows error as network timed out and i repeated again and again always it shows that network timed out but the apps are downloading but large apps are't why?

    i want to update my ipad2 when i used to download the os it shows error as network timed out and i repeated again and again always it shows that network timed out but the apps are downloading but large apps are't why?

    Try temporarily turning off all your firewall and antivirus software until the download has completed.

  • TS3297 I have rented a movie on iTunes and it won't download. I don't get an error message.  It looks like it is downloading but doesn't progress

    I have rented a movie on iTunes and it won't download. I don't get an error message.  It looks like it is downloading but doesn't progress

    Try:
    - Reset the iOS device. Nothing will be lost
    Reset iOS device: Hold down the On/Off button and the Home button at the same time for at
    least ten seconds, until the Apple logo appears.

  • SSI shows up correctly in DW but doesn't show up in browser.

    I am trying to update the company website here at work using Dreamweaver 4 and the copyright information at the bottom of the page is in an ssi file. The file shows up fine in Dreamweaver but doesn't show up at all in either of my browers (Safari/Firefox). What am I doing wrong?  

    The file shows up fine in Dreamweaver but doesn't show up at all in either of my browers (Safari/Firefox). What am I doing wrong?  
    SSIs are parsed by the server.  You're probably not doing anything wrong, you simply need to upload the files to your remote server and look at the pages on-line.
    If you want to preview local files, you'll need to install a local testing server on your machine. Get one of the following servers for your OS and follow the installation instructions.
    WAMP for Windows
    http://www.wampserver.com/en/
    XAMPP for Windows
    http://www.apachefriends.org/en/xampp-windows.html
    XAMPP for Mac
    http://www.apachefriends.org/en/xampp-macosx.html
    MAMP for Mac
    http://www.mamp.info/en/downloads/index.html
    Nancy O.
    Alt-Web Design & Publishing
    Web | Graphics | Print | Media  Specialists 
    http://alt-web.com/
    http://twitter.com/altweb

  • ISight works fine in iChat but doesn't show up in Yahoo Messenger nor Skype

    Hello, I was given an iSight webcam that works fine in iChat, but doesn't show up in Yahoo Messenger nor Skype, which are the IM programs I use…
    I search on the Apple Support site a driver to download, but there is only an updater (iSight Updater 1.0.3) which doesn't run on Tiger... Any help please ?? Thx

    You probably don't need it, but the Tiger "iSight Updater" is located in the \System\Library\CoreServices\iSight Updaters\iSight Updater folder.
    (You must look manually because SpotLight does not find it.)
    Double click the "iSight Updater" there to run the Firmware update manually.
    Some options for other readers:
    http://discussions.apple.com/thread.jspa?messageID=10084429&#10084429
    iSight "Product Revision Level" in your Mac's System Profiler shows the installed firmware version for external (Firewire) iSight.
    Firmware 1.0.3 Update offers only "Improved audio performance". It does NOT enable audio or any other function, so that is NOT your problem with Skype or YMM. Search or post in their dedicated help/discussions for best and quickest help with those specific, non-Apple apps.
    Regardless of whether System Profiler utility shows Firewire iSight's Firmware (Product) level of 1.0.2 or 1.0.3, external iSight ought to work. You can test your external iSight using the suggestions on this linked page:
      http://www.ralphjohns.co.uk/EZJim/EZJimpage4.html
    EZ Jim
    “I may receive some form of compensation, financial or otherwise, from my recommendation or link."
    Mac Pro Quad Core (Early 2009) 2.93Ghz w/Mac OS X (10.6.2)  MacBook Pro (13 inch, Mid 2009) 2.26GHz (10.6.2)
    LED Cinema Display  G4 PowerBook 1.67GHz (10.4.11)  iBookSE 366MHz (10.3.9)  External iSight

Maybe you are looking for