I am unable to see icons.

I am unable to see icons(.png) in a website developed in GWT 2.4 Framework, when viewing it in ipad(6.1.3) in safari. I am unable to see any icons whatsoever when I have hosted my application in Jboss 7. But on hosting it on Jetty server, I could see them all. I have tried clearing the cache, cookies etc, and also reoving website data. But I can view the website well when it is hosted in Jetty but not the same while hosting it in Jboss. Can you please help me out?

Hi, after trying for a bit I found the solution. The key is to use ClientBundle for image resource instead of specifying the images directly in your code. It is cleaner. Works perfectly in Jboss now! Still, I feel this should'nt have arised in the first place. When the same code works in chrome, why should safari be any different? Food for thought.

Similar Messages

  • I am unable to see the airplay icon on my macbook air, iphone or iPad which would enable me to use my Bose speaker through airplay. I set this up in the UK but have taken my macbook and bose speaker travelling with through Thailand. Ive wifi in my room an

    I am unable to see the airplay icon on my macbook air, iphone or iPad which would enable me to use my Bose speaker through airplay. I set this up in the UK but have taken my macbook and bose speaker travelling with through Thailand. Ive wifi in my room and am able to access the internet on my laptop, Ive also been able to through the Bose Soundlink air wifi set application connect the bose speaker to the Wifi too.
    I am only able to play my itunes through my macbook speakers and cannot find the airplay button which should be next to the volume slide once turned down to less than 1/3 of the volume..

    Thanks for your help.  Since I'm uninterested in loading all my photos (the only option) into photostream, I won't be able to use the settings in ATV.  I guess I'm just stuck with using iPhoto on my MB Air.  Thanks again.
    paul

  • When my z2 is locked unable to see notification icons

    Hi all
    when my z2 is locked I am unable to see notification icons, like missed calls, messages and emails. Please help me

    Hi Andy1374, welcome to the community!
    If you can't remember your passcode then you can do one of the following:
    Run a software repair on the handset (this will delete all user data)
    or Log into my Xperia (if you have previously set it up) > Locate the device > Press Lock > Enter code > now a different unlock box should appear on your screen > enter the code. 
    To run a software repair: 
    Download PC Companion or Bridge for Mac.
    Running the software repair on PC Companion:
    1. Install and open PC Companion then select Support Zone.
    2. Phone Software Update.
    3. Start.
    4. Repair Phone
    5. Continue
    6. Accept data removal
    7. Next
    8. Wait for prepare
    9. Select Phone
    10. Follow the connection steps
    Running the software repair on Bridge for Mac:
    1. Launch Bridge for MAC without the handset connected.
    2. On the Main Window select "Xperia > Repair Xperia
    Device".
    3. Ensure the phone is charged and select "Ok" in the
    following window.
    4. Select Continue on the following page.
    5. Wait until the initialising step is finished the
    continue as below.
    6 . Select your model of phone from the list that appears
    7. Follow the connection steps that appear, ensuring that
    you are holding the relevant button down before during and
    after the connection phase until the update/repair begins.
     - Official Sony Xperia Support Staff
    If you're new to our forums make sure that you have read our Discussion guidelines.
    If you want to get in touch with the local support team for your country please visit our contact page.

  • Unable to see other writer's checked check boxes in comments of shared review

    I'm using Acrobat 3D Version 8 in a Windows XP environment.  We are using SharePoint for shared reviews.
    We are able to see developer's comments, and we can respond back to the comments with a reply.  However, when we use the checkbox to indicate that a comment has been addressed, each writer can only see the checkmarks that she makes.  We cannot see checkmarks made by other writers.
    We have tried selecting the check box, and we have also used the check box icon to select the check box.  We then publish and the the action is accepted as a comment and is published.  But we are unable to see each other's check boxes.
    Why?
    Thanks!

    Solved on my own.
    Simply close BEx Analyzer and restart it again. If still it doesn't work then restart your computer and then run BEx Analyzer again, it will definitely work.
    TR.

  • Unable to see a column of a table in portal for a particular User

    Hi,
    A particular user is unable to see a particular column of a table in the portal . The application is developed in Webdynpro ABAP. The table contains two columns. Both the columns contain text type fields. What appears to the user is that the left column has disappeared and the right hand column has shifted to the left.
    This is occuring for a particular user only. We have checked in our development and quality systems but we are unable to replicate the issue. Please help.
    Thanks and regards,
    Satya.

    Hi Vikas.
    You can use BAPI in LSMW to craete Material or You can use direct input method. Both methods as follows below:
    Using BAPI in LSMW:
    First maintain IDOC Inbound Processing steps by giving PORT and Partner Type and Partner Numberby clicking 'settings' icon in menu path in LSMW Screen.
    Adn then execute LSMW and maintain the values as below in the first step.
    BusinessObject Method(BAPI)
    Business Object       BUS1001006                      Standard material
    Method                     SAVEDATA                        Create and change materia
    Message Type         MATMAS_BAPI                   Create and change materia
    Basic Type               MATMAS_BAPI03               Create and Change Materia.
    For the selecting of views, you can maintain fields for all views(From Basic view to costing view) in your excel and populate with 'X' in respective fields for activating views.
    In the 6th step (Maintain field mapping and conversion rules). you can map those fields for views which you want to activate since we have all views are in the standard structure.
    Using Direct Input Method:
    Standard Batch/Direct Input
    Object                      0020                                             Material master
    Method                     0000
    Program Name          RMDATIND
    Program Type           D                                                  Direct Input
    For the selecting of views, you can maintain fields for all views(From Basic view to costing view) in your excel and populate with 'X' in respective fields for activating views.
    In the 6th step (Maintain field mapping and conversion rules). you can map those fields for views which you want to activate since we have all views are in the standard structure.

  • Unable to see the uploaded file using gos object

    Hi Experts,
    I uploaded the file to server by using the below code. But I am unable to see the uploaded file. Please help me out hot to view the uploaded files (list the file name and view the content) (i want to upload the file by getting the url as input and by clicking the button)
    Code to upload the file.
    DATA: wa_zqtc_gos_request TYPE zqtc_gos_request.
      DATA: l_attachment        TYPE swo_typeid.
      DATA: lo_gos_service      TYPE REF TO cl_gos_document_service.
      obj-objkey  = req_num.
      obj-objtype = objtype.
      CREATE OBJECT lo_gos_service.
      CALL METHOD lo_gos_service->create_attachment
        EXPORTING
          is_object     = obj
        IMPORTING
          ep_attachment = l_attachment.
    I tyied with this to view the files but the attachement link is disabled. (i want to view the files by clicking the icon-GOS icon in tool bar)
      DATA: wa_zqtc_gos_request TYPE zqtc_gos_request.
      DATA: l_attachment        TYPE swo_typeid.
      DATA: lo_gos_service      TYPE REF TO cl_gos_document_service.
      obj-objtype = objtype.
      obj-objkey = req_num.
      CREATE OBJECT manager
        EXPORTING
          is_object = obj
        EXCEPTIONS
          OTHERS    = 1.
    Please help me out how to view the file and list.
    thanks & regards
    T.Tamodarane
    Edited by: T.Tamodarane on Oct 23, 2009 9:55 AM
    Edited by: T.Tamodarane on Oct 23, 2009 9:56 AM

    Hi,
    Please post ur thred below:
    PL/SQL
    Regards
    Meher Irk

  • After updating to the newest update when I type messages in Facebook or gmail I am unable to see at what am typing as I am unable to move the message up..is there a fix?

    I Have updated to the newest update which is 8.1.2 after updating anytime I try to type up a message in Facebook or gmail I am unable to see my screen where I type my message, so am typing my messages blindly. Is there a fix for this?

    The Split Keyboard feature may have been enabled accidentally when you updated.
    If the keyboard is up on the middle of the screen, or covering text and the text is not moving up as expected - tap and hold down on the little keyboard and icon and select - Dock
    You can turn the split keyboard off in Settings>General>Keyboard>Split Keyboard>Off.

  • When in dark mode, I'm unable to see the definitions on the screen when I'm looking up a word.  Is there a fix for this?

    When in dark mode, I'm unable to see the definitions on the screen when I'm looking up a word.  Is there a fix for this?

    Looking up definitions on the screen using Apple Dictionary? What application? Using shift+command+4, capture what you are referring to, and then use the camera icon in this posting toolbar to include it in your response.

  • Info.plist: Unable to verify icon demenstions, no icon found.

    Here's a weird problem:
    If I build the app for ad-hoc distribution, it runs fine on the iphone 4. I see the icons, everything is good.
    Now I do a app-store-distirbution, and this error comes up :
    Iphone/ Ipod Touch: info.plist: Unable to verify icon dimenstions, no icon found. You must define CFBundleIcons, CFBundleIconFiles, CFBundleIcondFile or provide a default Icon.png that is 57x57
    Ipad: info.plist: Unable to verify icon dimensions, no icon found. You must define CFBundleIcons, CFBundleIconFiles, CFBundleIcondFile or provide a default Icon.png that is 72x72
    If I open up the IPA file with Winzip, I can see all the icons in the correct directory.
    I have tried this on a new empty FlashBuilder project where I changed nothing except the Application ID and the ICON files.
    I have the app set to high-resolution, so there should be no need for a 57x57 icon.
    I'm using the Windows version of FlashBuilder 4.5
    What is up Adobe?

    Which program are you using to develop in? If it's Flash Pro then you go into the iOS settings     and under Icons you choose the icons to use for each size that it lists. The one used for the iPhone icon is 57x57 in size. The one used by a Retina display is 114x114.

  • MBP Mail "Unable to Connect" Icon keeps showing

    My mail on MBP 2011: The "Unable to Connect" icon shows up every time I open mail InBox and I have to shut down and reopen to get the mail to come in. What port should Icloud have? It constantly shows up for icloud, and then only appears by "Blackfoot" my current service, after I quit and open again. Very frustrating. Have reset all settings, reloaded. Help, thanks.

    You posted in the iPad forum instead of the MBP forum. To get answers to your question, next time post in the proper forum. See https://discussions.apple.com/index.jspa  I'll request that Apple relocate your post.
     Cheers, Tom

  • Unable to see To Do list in iCal

    Any time I attempt to look at my To Do list in ical by clicking on the pin icon in the lower rt corner of the ical screen, the application freezes. I am unable to see my to do list at all. How can I fix this
    Thank you all.

    Hi,
    In VF04 , In the SD document field , fill it with delivery document  number and then check the check box Delivery related  and execute..
    Plz try this way and see......
    Regards,
    Nagaraj

  • The very top of my 13" macbook pro screen, above the browser or application frame, goes black sometimes and I'm unable to see the choices

    the very top of my 13" macbook pro screen, above the browser or application frame, goes black sometimes and I'm unable to see the choices, any ideas?

    Back up all data.
    I've tested these instructions only with the Safari web browser. If you use another browser, they may not work as described.
    Triple-click anywhere in the line below on this page to select it:
    defaults delete -g NSFullScreenDarkMenu
    Copy the selected text to the Clipboard by pressing the key combination command-C.
    Launch the Terminal application in any of the following ways:
    ☞ Enter the first few letters of its name into a Spotlight search. Select it in the results (it should be at the top.)
    ☞ In the Finder, select Go ▹ Utilities from the menu bar, or press the key combination shift-command-U. The application is in the folder that opens.
    ☞ Open LaunchPad. Click Utilities, then Terminal in the icon grid.
    Paste into the Terminal window by pressing the key combination command-V.
    Wait for a new line ending in a dollar sign (“$”) to appear. You can then quit Terminal. Log out and log back in.

  • Wordpress blog editor can't see icons...

    Hi there,
    I'm not too computer savvy but since I updated Firefox I am unable to see the icons on my Wordpress blog. I can see them in Internet Explorer.
    I have tried everything clearing the cache and cookies....
    Hope you can shed a light on my problem.
    Thank in advance,
    BubblesRFun

    You're welcome

  • Unable to see interface on ASA 5510 Firewall

    Hi All,
    I am unable to see 4th interface on my firewall i.e fastether0/3 on my firewall ASA 5510.
    Below is the output.
    ciscoasa# sh int ip br
    Interface                  IP-Address      OK? Method Status                Protocol
    Ethernet0/0                x.x.x.x           YES CONFIG up                    up
    Ethernet0/1                x.x.x.x           YES CONFIG up                    up
    Ethernet0/2                unassigned      YES unset  administratively down down
    Internal-Control0/0        127.0.1.1       YES unset  up                    up
    Internal-Data0/0           unassigned      YES unset  up                    up
    Management0/0              192.168.1.1     YES CONFIG up                    up
    Please suggest what could be the reason.
    Regards
    Pankaj

    Hi Ramraj,
    Even i have the base license for my ASA 5510 which is showing all the 4 interfaces in sh ver. I don't think so license would be an issue. There should be some IOS code bug that needs to be upgraded. If this goes for an OS upgrade it should get resolved.
    Its not showing up in sh ver . As Karsten said he might be running on old IOS version.
    fy-a# sh ver
    Cisco Adaptive Security Appliance Software Version 8.4(4)1
    Device Manager Version 6.4(5)
    Compiled on Thu 14-Jun-12 11:20 by builders
    System image file is "disk0:/asa844-1-k8.bin"
    Config file at boot was "startup-config"
    fy-a up 1 day 1 hour
    Hardware:   ASA5510, 1024 MB RAM, CPU Pentium 4 Celeron 1600 MHz
    Internal ATA Compact Flash, 256MB
    BIOS Flash M50FW016 @ 0xfff00000, 2048KB
    Encryption hardware device : Cisco ASA-55x0 on-board accelerator (revision 0x0)
                                 Boot microcode   : CN1000-MC-BOOT-2.00
                                 SSL/IKE microcode: CNLite-MC-SSLm-PLUS-2.03
                                 IPSec microcode  : CNlite-MC-IPSECm-MAIN-2.06
                                 Number of accelerators: 1
    0: Ext: Ethernet0/0         : address is 2c54.2d0c.8f1a, irq 9
    1: Ext: Ethernet0/1         : address is 2c54.2d0c.8f1b, irq 9
    2: Ext: Ethernet0/2         : address is 2c54.2d0c.8f1c, irq 9
    3: Ext: Ethernet0/3         : address is 2c54.2d0c.8f1d, irq 9
    4: Ext: Management0/0       : address is 2c54.2d0c.8f1e, irq 11
    5: Int: Not used            : irq 11
    6: Int: Not used            : irq 5
    Licensed features for this platform:
    Maximum Physical Interfaces       : Unlimited      perpetual
    Maximum VLANs                     : 50             perpetual
    Inside Hosts                      : Unlimited      perpetual
    Failover                          : Disabled       perpetual
    VPN-DES                           : Enabled        perpetual
    VPN-3DES-AES                      : Enabled        perpetual
    Security Contexts                 : 0              perpetual
    GTP/GPRS                          : Disabled       perpetual
    AnyConnect Premium Peers          : 2              perpetual
    AnyConnect Essentials             : Disabled       perpetual
    Other VPN Peers                   : 250            perpetual
    Total VPN Peers                   : 250            perpetual
    Shared License                    : Disabled       perpetual
    AnyConnect for Mobile             : Disabled       perpetual
    AnyConnect for Cisco VPN Phone    : Disabled       perpetual
    Advanced Endpoint Assessment      : Disabled       perpetual
    UC Phone Proxy Sessions           : 2              perpetual
    Total UC Proxy Sessions           : 2              perpetual
    Botnet Traffic Filter             : Disabled       perpetual
    Intercompany Media Engine         : Disabled       perpetual
    This platform has a Base license.
    Serial Number: JMX1AXXXXX
    Running Permanent Activation Key: XXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXX
    Configuration register is 0x1
    Configuration has not been modified since last system restart.
    fy-a#
    Ramraj please do correct me if am wrong.
    Please do rate if the given information helps.
    By
    Karthik

  • Any way to see ICONS in Open and Close Dialog boxes?

    Is there any way to see ICONS in Open and Close Dialog boxes, instead of just lists of items names?
    I know you can preview one at a time, but I'd love to see all my artwork as picture icons, just as you can in a finder window.
    Windows does this, but not OSX that I know of. Is there a third party app that enables you to see icon view in the Open and Close Dialogs?

    Thank you Steve Jobs. I guess that feature has been added in Leopard. Now there really is nothing that I'll miss from Windoze.

Maybe you are looking for

  • SOAP Adapter (Ports and Interfaces)

    Is it true that for every single interface, a new soap adapter needs to be configured? Can one soap adapter handle many interfaces? Do I need one port for each interface or can I use one port for multiple interfaces. (note, I am using Soap Adapter) T

  • Music videos from itunes onto dvd

    How can i make a cd that will play my music videos so that i can play them on a dvd player instead of using my ipod?

  • I0s7 itunes not detecting iphone

    Since I updated my iphone 5 and my itunes after ios7 update, my itunes does show my iphone under the device column. I've tried everything, from restarting my macbook pro and my iphone, as well as uninstallig and installing itunes. I have no idea what

  • Case studie

    Hello, I'm a beginner in Adobe Interactive Forms. I know that I can use Adobe Interactive Forms with Web Dynpro and SAP Portal to search and update SAPR3 data. But that you tell me if the following case is possible. I want SAPR3 to create and send vi

  • SIM card error - Brand new iPhone 4

    Hi, I bought a brand new (SEALED) and unlocked iPhone 4 today from someone and also picked up a microsim card from Rogers too. I popped the simcard into the phone and called Rogers to activate it over the phone. The microsim was activated but when I