Custom splash screen not appearing in the Dynamic created jnlp()

Hi,
I am not able to show my custom splash screen while starting the webstart application, instead getting the "sun webstart logo". I am dynamically generating the jnlp file using jsp (struts application). Application is working perfectly except custom splash screen. Below is my jsp which will generate the jnlp on fly. The test.gif file is in place.
<% response.setContentType("application/x-java-jnlp-file");
  response.setHeader( "Pragma", "no-cache");
  response.setDateHeader( "Expires", 0 );%>
<%@ page import="java.io.*" %> 
<%String baseURL = WebUtil.webUrlParser(request.getRequestURL().toString(),request.getContextPath(),request.getServerPort());%>
<jnlp      spec="1.0+" codebase="<%=baseURL%>/cs_jnlp">
<information>
    <title>Launching JNLP</title>
    <vendor>Satyasai</vendor>
    <icon href="/images/test1.jpg"/>
    <homepage href="docs/help.html"/>
   <description>test</description>
        <icon kind="splash" href="images/test.gif" />
   </information>
      <security>
        <all-permissions/>
     </security>
     <resources>
   <j2se version="1.6+"/>
   <jar href="<%=baseURL%>/cs_jnlp/AppLaunch.jar"/>
  </resources>
       <application-desc main-class="Launch" >
       <%
       int roleId = (Integer)session.getAttribute(Constant.USER_TYPE);
       String sessionID=(String)request.getAttribute("SELECTION_SESSION_ID");
       String action=(String)request.getAttribute("action");
       String userID = (String)session.getAttribute(Constant.LOGIN_ID);       
       String sessionType=(String)request.getAttribute("sessionType");        
       %>
       <argument><%=sessionID%></argument>
       <argument><%=action%></argument>
       <argument><%=userID%></argument>
       <argument><%=sessionType%></argument> 
</application-desc>
</jnlp>If I use normal servlet - jsp using RequestDispatcher to forward request to a jsp which on fly creates jnlp, it shows the my custom splash screen. I am not very sure where is the difference. If I look at both generated jnlps they are almost one and the same. Can any one throw some insight on this.
Thanks & Regards,
Satyasai

Hi Andrew,
Thanks for your response.
1. I have launched it number of times but no luck.
2. I have written a jsp (using servlet + jsp no struts frame work) which will create jnlp on fly, which is showing my custom splash screen. If you refer in the initial post, it is not working with struts kind of framework. See the below jsp which shows custom splash screen. It worked without href.
3. All jnlps are well formed and perfectly working in my development environment. For security purposes I have not shown some of the texts and logos.
<% response.setContentType("application/x-java-jnlp-file");
  response.setHeader( "Pragma", "no-cache");
  response.setDateHeader( "Expires", 0 );%>
<%@page import="java.util.ArrayList" %>
<%
String client = (String)request.getAttribute("clientLocation");
String fileNames = (String)request.getAttribute("filenames");
String url= (String)request.getAttribute("serverFilesLocation");
String baseURL = "http://"+request.getLocalAddr()+":"+request.getServerPort()+request.getContextPath();
%>
<jnlp spec="1.0+" codebase="<%=baseURL%>/sw_jnlp"> 
  <information>
    <title>Softwares Download</title>
    <vendor>test</vendor>
    <icon href="/images/test1.jpg"/>
    <homepage href="docs/help.html"/>
   <description>Software Downloads </description>
        <icon kind="splash" href="images/logo_small.gif" />
   </information>
   <update check="timeout" policy="always"/>
      <security>
      <all-permissions/>
  </security>
  <resources>
    <j2se version="1.6+"/>        
    <jar href="mod.jar"/>  
  </resources> 
  <application-desc main-class="InstallSW">
  <argument><%=client%></argument>
  <argument><%=fileNames%></argument>
  <argument><%=url%></argument>
  </application-desc>
</jnlp>Thanks & Regards,
Satyasai

Similar Messages

  • Invoking the Dynamically Created JNLP

    Unfortunately I do not seem to be getting any responses to my questions in this group:( However, I am still hoping that someone may know the answer to this.
    I have a portlet that is forwarding the request to a JSP file that creates the dynamic JNLP file.
    I see the contents of this JNLP file in the source of the page served, but I was hoping that the forwarding of the request will launch Java Web Start.
    The contents of the JSP file are
    <%@ page session="false"%>
    <%@ page contentType="application/x-java-jnlp-file" info="My JNLP"%>
    <%
    StringBuffer codebaseBuffer = new StringBuffer();
    codebaseBuffer.append(!request.isSecure() ? "http://" : "https://");
    codebaseBuffer.append(request.getServerName());
    if (request.getServerPort() != (!request.isSecure() ? 80 : 443))
    codebaseBuffer.append(':');
    codebaseBuffer.append(request.getServerPort());
    codebaseBuffer.append('/');
    %>
    <?xml version="1.0" encoding="UTF-8"?>
    <jnlp spec="1.0+"
    codebase="<%= codebaseBuffer.toString() %>"
         href="<%= request.getRequestURI() %>">
         <information>
              <title>Sample</title>
              <vendor>Sample Web Start Application</vendor>
              <offline-allowed/>
              <icon href="salpro-icon.gif"/>
         </information>
         <resources>
              <j2se version="1.4+"/>
              <jar href="resources/JNLPTime.jar"/>
         </resources>
    <application-desc main-class="J2.ws.TheTime"/>
    </jnlp>
    A portion of the source page that is served :
    <?xml version="1.0" encoding="UTF-8"?>
    <jnlp spec="1.0+"
    codebase="http://mharidasa.almaden.ibm.com:8421/"
         href="/ibm/PA_1_0_2B4/resources/J2JWS.jsp">
         <information>
              <title>Sample</title>
              <vendor>Sample Web Start Application</vendor>
              <offline-allowed/>
              <icon href="salpro-icon.gif"/>
         </information>
         <resources>
              <j2se version="1.4+"/>
              <jar href="resources/JNLPTime.jar"/>
         </resources>
    <application-desc main-class="J2.ws.TheTime"/>
    </jnlp>
    How can I make the server invoke the JNLP as opposed to serving it back?
    Your suggestions are very much appreciated.
    thank you - Minnie

    Hi! I am doing a similar project where I have a jsp
    that calls the jnlp using this url:
    http://c37ts014/myserver/server/servlet/WebStartUpload.
    nlp?documentid=123&documentname=test
    How can I get the values of my parameters namely
    documentid and documentname inside my app? Is there a
    way where I need not have to create my jnlp
    dynamically then? If not, would it be ok to ask how
    you did your dynamic loading through jsp?
    Hope you can help me. Thanks.I experimented with this heavily yesterday (using oracle app server , but it is the same idea) and could not get it to work with parameters on both the jnlp and jar resource hrefs, however it can work with parameters on the homepage href. Too bad, there seems to be no reason why it shouldn't work with parameters in all situations unless it has some security implication that I'm not aware of.

  • Alv is not appearing in the same Selection Screen

    Hi people..
    First time using  cl_gui_docking_container.
    I have a problem, my alv is not appearing in the same Selection Screen.
    is there somethign wrong with my code? it doesnt even show a dump or catch.
    Regards
    DATA: lo_dock TYPE REF TO cl_gui_docking_container,
           lo_cont TYPE REF TO cl_gui_container.
    DATA: gr_table      type ref to cl_salv_table,
           gr_functions  type ref to cl_salv_functions,
           gr_display    type ref to cl_salv_display_settings,
           gr_columns    type ref to cl_salv_columns_table,
           gr_column     type ref to cl_salv_column_table,
           gr_sorts      type ref to cl_salv_sorts,
           gr_agg        type ref to cl_salv_aggregations,
           gr_filter     type ref to cl_salv_filters,
           gr_layout     type ref to cl_salv_layout,
           color         type lvc_s_colo,
           key           type salv_s_layout_key.
       SELECT * INTO TABLE tbl_datos_items FROM zsd_micros_bd.
    CHECK lo_dock IS INITIAL.
      CREATE OBJECT lo_dock
           EXPORTING
             repid = sy-cprog
             dynnr = sy-dynnr
             ratio = 70
             side  = cl_gui_docking_container=>dock_at_bottom
             name  = 'DOCK_CONT'.
         IF sy-subrc <> 0.
           MESSAGE 'Error in the Docking control' TYPE 'S'.
         ENDIF.
    TRY.
    lo_cont ?= lo_dock.
    cl_salv_table=>factory(
    exporting r_container      = lo_cont
                 container_name = 'DOCK_CONT'
                 list_display   = if_salv_c_bool_sap=>false
    importing r_salv_table = gr_table
    changing t_table = tbl_datos_items  ).
    CATCH cx_salv_msg .
    ENDTRY.
    gr_functions = gr_table->get_functions( ).
    gr_functions->set_all( abap_true ).
      gr_display = gr_table->get_display_settings( ).
      gr_display->set_striped_pattern( cl_salv_display_settings=>true ).
      gr_display->set_list_header( 'Items de Ventas' ).
      gr_table->display( )

    Hi ,
    First you have to create you own screen ( dynpro )  with a screen number ( 0101 for exemple )  , you need to pu a custom control in it , name the custom control ( lo_cont )
    For the screen created you need to create a module for the PBO , in this module you sould put you code for displaying the liste :
    Module STATUS_0101 output.
    TRY.
    lo_cont ?= lo_dock.
    cl_salv_table=>factory(
    exporting r_container      = lo_cont
                 container_name = 'DOCK_CONT'
                 list_display   = if_salv_c_bool_sap=>false
    importing r_salv_table = gr_table
    changing t_table = tbl_datos_items  ).
    CATCH cx_salv_msg .
    ENDTRY.
    gr_functions = gr_table->get_functions( ).
    gr_functions->set_all( abap_true ).
      gr_display = gr_table->get_display_settings( ).
      gr_display->set_striped_pattern( cl_salv_display_settings=>true ).
      gr_display->set_list_header( 'Items de Ventas' ).
      gr_table->display( ).
    Endmodule.
    and give the screen number when calling  lo_dock 
    CREATE OBJECT lo_dock 
           EXPORTING
             repid = sy-cprog
             dynnr = '0101'.
    tested
    Regards

  • HT1414 HOw do I back up and restore If I plug my ipod in and it does not appear in the devices column. I have a white screen and i'm trying to fix it and nothing is working :(

    How do I back up and restore my ipod touch if when i connect it to itunes It does not appear in the devices column? I have a white screen and have tried holding down the wake/sleep and home buttons and that is not working. Please help

    Take it in for repair/replace to your local Apple retailer.

  • I can´t sync my iphone, it do not appears on the itunes screen, what can i do?

    i can´t sync my music to my iphone beacause it do not appears on the itunes screen, i have do all the itunes support but it doesn´t help me.

    Please Click on the 'Print Screen' for better view.

  • Facebook notifications not appearing on the Blackberry screen

    Hi!
    I faced a 2404 error on facebook yesterday. Today after troubleshootinh it in the settings menu facebook's working fine on the device however Facebook notifications are not appearing on the home screen where email and sms notifications do appear.
    Please advise that what needs to be done. Facebook is connected to Blackberry in settings and I use a BB Curve 9360.
    Solved!
    Go to Solution.

    Hi samra-vishal,
    Sorry to hear you're having an issue with your Facebook for BlackBerry smartphones application.
    To clarify, you are not getting a notification icon on the main screen of your device? 
    Does your device play a tone or vibrate to indicate a notification? Does the icon have an asterisk to indicate a new notification? 
    What's the software version on your Curve and the Facebook app version? 
    -HMthePirate
    Come follow your BlackBerry Technical Team on twitter! @BlackBerryHelp
    Be sure to click Kudos! for those who have helped you.Click Solution? for posts that have solved your issue(s)!

  • DVD drive does not appear on the "Computer" drive screen

    I have lost access to the DVD drive. It does not appear on the "Computer" drive screen.
    It will start up with a disk inserted but shuts down after a approx 20 seconds without having opened any files.
    The DVD light comes on when it first starts up and then goes off within a few seconds.
    I have re-installed the Toshiba driver and still no access.
    I believe it started when I installed a new WD 1Tb external drive which setup its virtual CD drive on the E: drive which was used by the DVD drive. I have moved the external drive to G: and left the E: drive letter vacant but still not working.
    Any ideas how I can solve this? It would be greatly appreciated.

    I don't know if this will help you but check it anyway
    http://aps2.toshiba-tro.de/kb0/FAQ8101LA0000R01.htm

  • Since changing to OS 10.7.1. my touch ipod does not appear on the screen or in itunes

    Since upgrading to OS 10.7.1, my touch Ipod (version 4.2.1, model PB528LL) does not appear on the iTunes as a device on the computer screen. It also seems that the ipod is no longer being charged via the USB connection.
    Any assistance would be appreciated.

    I think you mean iTunes 10.4.1. That is the lastes version. Try here:
    iPhone, iPad, or iPod touch: Device not recognized in iTunes for Windows

  • Been using an Avastor HDX-800 for storage and backup, also a SUPERDISK for smaller stuff; recently the SUPERDISK does not appear on the screen, and the light blinks while you hear it spin, also the Avastor has started to have the same problem, both USB

    Been using an Avastor HDX-800 for storage and backup, also a SUPERDISK for smaller stuff; recently the SUPERDISK does not appear on the screen, and the light blinks while you hear it spin, also the Avastor has started to have the same problem, both USB conncected, both worked well before, but both now spinning, blinking, and not showing up on the screen as before,
    Interestingly they both appear in the System Profiler, but just not working the same as before
    I have tried other USB ports, but the same responce,

    yes I did reset the PRAM, but no benefit, still the same problem
    my usb devices are:  keyboard, mouse, printer, SD-USB-M3, and LaCie d2 DVDRW:
    the mouse and printed are plugged into the keyboard: i have tried to move, these around, and have even tried just the mouse, printer and SD-USB-M3, but still the same problem
    here is a cut and paste of the current  "System Profiler>Hardware>USB"   (usb device tree)
    USB Bus:
      Host Controller Location:          Built In USB
      Host Controller Driver:          AppleUSBOHCI
      PCI Device ID:          0x0026
      PCI Revision ID:          0x0000
      PCI Vendor ID:          0x106b
      Bus Number:          0x18
    Hub in Apple Pro Keyboard:
      Version:          1.22
      Bus Power (mA):          500
      Speed:          Up to 12 Mb/sec
      Manufacturer:          Mitsumi Electric
      Product ID:          0x1002
      Vendor ID:          0x05ac  (Apple Computer, Inc.)
    HL-1270N series:
      Version:          1.00
      Bus Power (mA):          100
      Speed:          Up to 12 Mb/sec
      Manufacturer:          Brother
      Product ID:          0x0008
      Serial Number:          L9J286292
      Vendor ID:          0x04f9
    Basic Optical Mouse:
      Version:          0.00
      Bus Power (mA):          100
      Speed:          Up to 1.5 Mb/sec
      Manufacturer:          Microsoft
      Product ID:          0x0084
      Vendor ID:          0x045e
    Apple Pro Keyboard:
      Version:          1.22
      Bus Power (mA):          250
      Speed:          Up to 12 Mb/sec
      Manufacturer:          Mitsumi Electric
      Product ID:          0x0204
      Vendor ID:          0x05ac  (Apple Computer, Inc.)
    SuperDisk USB 120MB drive:
      Version:          0.0e
      Bus Power (mA):          500
      Speed:          Up to 12 Mb/sec
      Manufacturer:          Imation
      Product ID:          0x0002
      Vendor ID:          0x0718
    Hub in Apple Pro Keyboard:
      Version:          1.22
      Bus Power (mA):          500
      Speed:          Up to 12 Mb/sec
      Manufacturer:          Mitsumi Electric
      Product ID:          0x1002
      Vendor ID:          0x05ac  (Apple Computer, Inc.)
    HL-1270N series:
      Version:          1.00
      Bus Power (mA):          100
      Speed:          Up to 12 Mb/sec
      Manufacturer:          Brother
      Product ID:          0x0008
      Serial Number:          L9J286292
      Vendor ID:          0x04f9
    Basic Optical Mouse:
      Version:          0.00
      Bus Power (mA):          100
      Speed:          Up to 1.5 Mb/sec
      Manufacturer:          Microsoft
      Product ID:          0x0084
      Vendor ID:          0x045e
    Apple Pro Keyboard:
      Version:          1.22
      Bus Power (mA):          250
      Speed:          Up to 12 Mb/sec
      Manufacturer:          Mitsumi Electric
      Product ID:          0x0204
      Vendor ID:          0x05ac  (Apple Computer, Inc.)
    HL-1270N series:
      Version:          1.00
      Bus Power (mA):          100
      Speed:          Up to 12 Mb/sec
      Manufacturer:          Brother
      Product ID:          0x0008
      Serial Number:          L9J286292
      Vendor ID:          0x04f9
    Basic Optical Mouse:
      Version:          0.00
      Bus Power (mA):          100
      Speed:          Up to 1.5 Mb/sec
      Manufacturer:          Microsoft
      Product ID:          0x0084
      Vendor ID:          0x045e
    Apple Pro Keyboard:
      Version:          1.22
      Bus Power (mA):          250
      Speed:          Up to 12 Mb/sec
      Manufacturer:          Mitsumi Electric
      Product ID:          0x0204
      Vendor ID:          0x05ac  (Apple Computer, Inc.)
    SuperDisk USB 120MB drive:
      Version:          0.0e
      Bus Power (mA):          500
      Speed:          Up to 12 Mb/sec
      Manufacturer:          Imation
      Product ID:          0x0002
      Vendor ID:          0x0718
    USB Bus:
      Host Controller Location:          Built In USB
      Host Controller Driver:          AppleUSBOHCI
      PCI Device ID:          0x0026
      PCI Revision ID:          0x0000
      PCI Vendor ID:          0x106b
      Bus Number:          0x19
    LaCie d2 DVDRW USB:
      Capacity:          451.76 MB
      Removable Media:          Yes
      Detachable Drive:          Yes
      BSD Name:          disk2
      Version:          0.00
      Bus Power (mA):          500
      Speed:          Up to 12 Mb/sec
      Manufacturer:          LaCie
      OS9 Drivers:          No
      Product ID:          0x1011
      Serial Number:          FFFFFFFFFFFF
      S.M.A.R.T. status:          Not Supported
      Vendor ID:          0x059f
    LaCie d2 DVDRW USB:
      Capacity:          451.76 MB
      Removable Media:          Yes
      Detachable Drive:          Yes
      BSD Name:          disk2
      Version:          0.00
      Bus Power (mA):          500
      Speed:          Up to 12 Mb/sec
      Manufacturer:          LaCie
      OS9 Drivers:          No
      Product ID:          0x1011
      Serial Number:          FFFFFFFFFFFF
      S.M.A.R.T. status:          Not Supported
      Vendor ID:          0x059f

  • Recently when I install apps, the icon does not appear on the menu screen, also, it shows that it is down loading at the app store and when complete, I can not open it or reinstall it.  Help Please   o,

    Recently when I install apps, the icon does not appear on the menu screen, also, it shows that it is downloading at the app store and when complete, I can not open it or reinstall it. Has happened on the last 4 free apps. Help Please

    Reset your iPad. Press and hold both the power and home buttons for 10-15 seconds till the Apple logo appears. Release both buttons. Wait 15-20 seconds till you iPad starts on it's own. Now try and download an app.

  • HT202213 I own toshiba laptops. Both computers have the latest itunes software. However the 'show menu' does not appear on the screen?

    I own toshiba laptops. Both computers have the latest itunes software. However the 'show menu' does not appear on the screen?

    Thanks for the response diesel. I dont think I clarified my question very well. I'm trying to do home sharing between mine and my wifes computers. The intructions say:
    Log in as the same user on each computer.
    Ensure both are current version.
    Choose the correct list in sharing ie Music
    Then in the 'show menu' at the bottom of the screen, choose items not in my library.
    I do not have the show menu to select any songs.
    Any help appreciated.
    Cheers

  • Ipod restore failed  can see on the screen is the cable connection symbom and the ipod does not appear in the LH panel of itunes is there an easy solution to this

    ipod restore failed  can see on the screen is the cable connection symbom and the ipod does not appear in the LH panel of itunes is there an easy solution to this

    To get iTunes to see your iPod try:
    - Placing the iPod in recovery mode.  See:
    iPhone and iPod touch: Unable to update or restore
    - Placing it in recovery DFU mode:
    How to put iPod touch / iPhone into DFU mode « Karthik's scribblings
    - Sometimes this program will get th iPod in recovery mode:
    RecBoot iPod-1.0.2-Mac-Jaxov.zip - File Shared from Box.net - Free Online File Storage

  • How can I cancel my subscription if the "Cancel Plan" link does not appear in the screen?

    From your manual, you instruct the users to cancel the plan by accessing the manage plan screen and then click on the Cancel Plan button.
    However, how can the user cancel the plan if the Cancel link does not appear in the membership details screen?

    You need Adobe support to cancel a subscription
    -cancel http://helpx.adobe.com/x-productkb/policy-pricing/return-cancel-or-change-order.html
    -or http://helpx.adobe.com/x-productkb/policy-pricing/cancel-membership-subscription.html
    -or by telephone http://helpx.adobe.com/x-productkb/global/phone-support-orders.html

  • IF YOU HELP MY NANO upgraded when you install PERFECT BUT DOES NOT APPEAR ON THE SCREEN NOTHING BUT as if you were OFF if turned PLEASE HELP OR MORE AND HAS THE NEW UPDATE

    IF YOU HELP MY NANO upgraded when you install PERFECT BUT DOES NOT APPEAR ON THE SCREEN NOTHING BUT as if you were OFF if turned PLEASE HELP OR MORE AND HAS THE NEW UPDATE

    iPod not recognized in 'My Computer' and in iTunes for Windows

  • Excise Tab is not  appear in the MIGO display  --- Import Process

    Hi Experts ,
    Excise tab is not appear in the display of the material document in Import process.
    Process flow.
    1. Import Po.
    2. Customs clearing (MIRO)
    3. Capture excise invoice against the Import Po.(Reference to MIRO document )
    4.MIGO with movement type 103, in excise tab i selected only refer the excise invoice , here excise ta is coming . Lot is also generated .
    after posting the material document , excise tab is not appearing against  the material document .
    5. post excise against the excise invoice .
    Please help.
    Thanks
    SAP MM
    Edited by: Subbas on Aug 16, 2010 11:58 AM

    Excise captured & posted using J1IEX using 2 step procedure won't appear in MIGO screen.
    Display excise invoice using J1IEX(using vendor excise inv. no. or internal document no)
    Only excise captured & posted in MIGO(Single step) will be appear in display of MIGO screeen.
    Check SAP Note 952287 - CIN: Limited Functionalities in Country Version India -CIN -Q.no.5
    5. Incoming Excise Invoice capture at Blocked stock 103 is not
    supported in CIN.
    The capture of incoming excise invoice is strictly advised to carryout at
    unrestricted stock and not at blocked stock(103/105) due to architectural
    issues. The capture at blocked stock may cause wrong excise posting.

Maybe you are looking for

  • How to handle errors in data templates

    Hi What is the recommended way to handle errors for example if one of your SQL statement in a data template returned no data how and where would you be able to create an error message for the user to find and read. Thanks, Mark

  • Podcast help itunes doesnt open

    Please help my itunes doesnt open when i put itunes to open it open but it close inmidiatly. before this whas happening i tried to subcribe to a podcast at: "http://technicallytech.com/" i put in the itunes logo a it mees up my itunes. that when i pu

  • Unable to view adf query panel in jsf page

    hi i cannot view the Query > ADF Query Panel when i click the query button to load the page but i can see the page in design. i can only see the search with drop down arrow but cannot see other part of ADF Query Panel . i did this by 9.Expand the Emp

  • Don't see the entries in esb_error database jms queue (XA-backed error)

    Hi, I succesfull made the esb database persistent and patch the soa suite to 10.1.3.3.1 but I don't see the errors in the esb_error queue. I can see the esb_monitor entries when I set dequeue off. I got this error in the log.xml <MSG_TEXT>Failed to e

  • Can anybody send ALE/IDOC sample steps fot MATMAS?

    Hi friends, Can anybody send ALE/IDOC sample steps fot MATMAS?