Images-charts on 9ias R2 are not shown.

We developped an application with dynamically build
charts on 0C4J (stand alone) on linux(suse). The chartsoftware is from Netcharts
After we installed the Xvfb-Server it works fine.
When we deployed the application on 9ias (suse linux) no charts are shown.
We run the Xvfb-Server as root.
Xvfb runs on DISPLAY:1.0
We only get that error message.
Has anybody ecperiences in that matter or any idea?
Thanks in advance
Peter Eisert
Problem with constructor javax.swing.plaf.FontUIResource and args {Dialog,0,12} : and types {class java.lang.String,int,int} : java.lang.reflect.InvocationTargetException
java.lang.Exception: Stack trace
at java.lang.Thread.dumpStack(Thread.java:997)
at javax.swing.UIDefaults$ProxyLazyValue.createValue(UIDefaults.java:663)
at javax.swing.UIDefaults.get(UIDefaults.java:145)
at javax.swing.MultiUIDefaults.get(MultiUIDefaults.java:46)
at javax.swing.UIDefaults.getFont(UIDefaults.java:223)
at javax.swing.UIManager.getFont(UIManager.java:456)
at javax.swing.LookAndFeel.installColorsAndFont(LookAndFeel.java:90)
at javax.swing.plaf.basic.BasicPanelUI.installDefaults(BasicPanelUI.java:51)
at javax.swing.plaf.basic.BasicPanelUI.installUI(BasicPanelUI.java:42)
at javax.swing.JComponent.setUI(JComponent.java:322)
at javax.swing.JPanel.updateUI(JPanel.java:107)
at javax.swing.JPanel.<init>(JPanel.java:67)
at javax.swing.JPanel.<init>(JPanel.java:97)
at netcharts.pro.common.NFGraph.<init>(Unknown Source)
at netcharts.pro.common.NFGraph.<init>(Unknown Source)
at netcharts.pro.charts.pie.NFPiechart.<init>(Unknown Source)
at java.lang.reflect.Constructor.newInstance(Native Method)
at netcharts.pro.common.NFGraph.a(Unknown Source)
at netcharts.pro.common.NFGraph.getGraphFromTemplate(Unknown Source)
at de.vdma.statistik.Chart16Erstellen.chartErstellen(Chart16Erstellen.java:79)
at de.vdma.statistik.Modul16Servlet.doGet(Modul16Servlet.java:32)
at javax.servlet.http.HttpServlet.service(HttpServlet.java:244)
at javax.servlet.http.HttpServlet.service(HttpServlet.java:336)
at com.evermind.server.http.ResourceFilterChain.doFilter(ResourceFilterChain.java:66)
at oracle.security.jazn.oc4j.JAZNFilter.doFilter(JAZNFilter.java:284)
at com.evermind.server.http.ServletRequestDispatcher.invoke(ServletRequestDispatcher.java:539)
at com.evermind.server.http.ServletRequestDispatcher.forwardInternal(ServletRequestDispatcher.java:285)
at com.evermind.server.http.ServletRequestDispatcher.forward(ServletRequestDispatcher.java:231)
at de.vdma.statistik.VdmaServlet.gotoPage(VdmaServlet.java:137)
at de.vdma.statistik.VdmaServlet.doGet(VdmaServlet.java:120)
at javax.servlet.http.HttpServlet.service(HttpServlet.java:244)
at javax.servlet.http.HttpServlet.service(HttpServlet.java:336)
at com.evermind.server.http.ResourceFilterChain.doFilter(ResourceFilterChain.java:66)
at oracle.security.jazn.oc4j.JAZNFilter.doFilter(JAZNFilter.java:284)
at com.evermind.server.http.ServletRequestDispatcher.invoke(ServletRequestDispatcher.java:539)
at com.evermind.server.http.ServletRequestDispatcher.forwardInternal(ServletRequestDispatcher.java:285)
at com.evermind.server.http.HttpRequestHandler.processRequest(HttpRequestHandler.java:771)
at com.evermind.server.http.AJPRequestHandler.run(AJPRequestHandler.java:170)
at com.evermind.server.http.AJPRequestHandler.run(AJPRequestHandler.java:72)
at EDU.oswego.cs.dl.util.concurrent.PooledExecutor$Worker.run(PooledExecutor.java:802)
at java.lang.Thread.run(Thread.java:484)

Hi Peter
It should run. we also have same dynamic chart displayed by an applicaiton deployed at 9ias, the difference is we have Solrais.
We also have xvfb
For just sack of correctness, check the DISPLAY setting that u have set for the OC4J, where u have deployed the application, in opmn.xml file.
This is what opmn.xml for my 9ias is
<oc4j instanceName="PGBU" gid="PGBU">
<config-file path="/ora9ias/home/ora9iapps/j2ee/PGBU/config/server.xml"/>
<oc4j-option value="-properties"/>
<port ajp="3001-3100" rmi="3101-3200" jms="3201-3300"/>
<environment>
<prop name="DISPLAY" value="localhost:1.0"/>
</environment>
</oc4j>
PGBU is the OC4J instance where my application is deployed
Regards,
Samir

Similar Messages

  • Images of other user profiles are not shown on extended FBA site

    Hi.
    We have extended our main Web Application and configured FBA authentication. The proble is then we access the extended site we can not see picture from Users' Profiles. I tried to configre FBA for my site by adding role and membership providers and change site
    collection secondary administrator for My Site Web Application to FBA User, but unsuccessfully. 
    Is any way to fix this? 
    Thanks

    Hi,
    If you get the error message, please check the SharePoint ULS log to find more information about this error, the ULS log file is in the location: C:\Program Files\Common Files\Microsoft
    Shared\Web Server Extensions\14\LOGS
    You can check the ULS log by the methods here:
    http://blogs.msdn.com/b/opal/archive/2009/12/22/uls-viewer-for-sharepoint-2010-troubleshooting.aspx
    Best Regards,
    Linda Li
    Linda Li
    TechNet Community Support

  • Sometimes, some images are not shown...

    Hi!
    Out applet shows (or loads?) all images correctly, but sometimes, one or more images are not shown (or loaded?). What can it be?

    I am having a similar problem so maybe someone can help me too.
    I find that my images load correctly most of the time, but once in a while (say 1 in 4 attempts), some of them dont load. The reliability of this is much better now that I have moved the images out of the jar, but its still not right
    I also find that sometimes the classes do not load. I get classdef.not.found for a file that really should be there. I can see that the jar containing it has been downloaded to the temp dir. I have been clearing my cache out manually for now between every attempt.
    I am not sure what code to show. I dont think its necessarily a problem with images since classes dont always load either, but here is the code for loading images anyway.
            MediaTracker tracker = new MediaTracker(applet);
            for (int i = 0; i < img.length; i++) {
              img[i] = applet.getImage(urlCodeBase, imagePath + images);
    tracker.addImage(img[i], i);
    tracker.waitForID(i);
    if (tracker.isErrorAny()) {
    System.err.println("Error loading image " + images[i]);
    My web content is being delivered by 3rd party hardware which might be rather slow - its hard to tell. My entire web content is approx 200KB. Results are the same using IE or Mozilla.
    Any ideas would be a great help!

  • Placed PNG images which are made in 3ds max are not shown correctly in Ilustrator

    Hello,
    Why placed PNG images (renders) which are made in 3ds max (and then photoshoped) are not shown correctly in Ilustrator. Images appear very noise so you can't see almost a thing. the same pictures (renders) made in Revit appear ok.
    Is there a solution to solve this issue?
    Thanks.

    You would have to provide screenshots of how it looks in PS, including the channels visible. MAX may have embedded extra channels that throw off AI. And of course check whether your PNG is actually 8bit, not 16bit.
    Mylenium

  • Some of Photo (JPEG)-compressed images by Flash Pro are not shown in AIR app (3.7/3.8)

    Does anyone see this issue happening? In Flash Pro it's OK, but in AIR, it's broken.
    https://bugbase.adobe.com/index.cfm?event=bug&id=3558175
    Problem Description:
    Some JPEG-compressed images in swc produced by Flash Pro CS6 is not shown in AIR.
    Steps to Reproduce:
    1. Create a fla with Flash Pro CS6
    2. Put a png image in it and open the property of the image to make sure its compression option is Photo (JPEG)
    3. Produce an swc out of the fla
    4. Create an AIR app that shows the contents in the swc
    Actual Result:
    All images are shown
    Expected Result:
    Some of the images are not shown (nothing is shown where they are supposed to be)
    Any Workarounds:
    Use Lossless (PNG/GIF) for all images

    i was able to get it to work from a suggestion in another thread: if you write a JSFL that goes through all your bitmaps and makes sure they do not uset he default compression of the document, but instead use custom compression (it can match the default however). this worked for me

  • Button Images are not shown

    Dear All,
    In one of our test instance, some button images are not shown, whereas some are.
    They are shown as grey button.
    I searched metalink, according to them patch 1238573 should be installed, which is already installed.
    What could be the reason?
    Also, is there any way to find out which images are missing?
    Regards,
    Ashish Shah

    Hi
    I've seen this happen a few times. The solution is usually to synchronise something called 'the X-Server' with the middle tier. I'm afraid that the technology is over my head, but it does work!
    The X-Server controls how images are rendered in the e-Business Suite. Your DBA should know what this is and it's a simple matter of stopping and restrating the X-server.
    That should do the trick!
    Regards
    Tim

  • Images in mail are not shown after ios8 update

    After update iOS8 the images attached in mails are not shown constantly, I configured my iPhone and iPad to show the images in mails but it is not working all time.
    The issue is with photos sent from my ip cameras, these are showing for one mail and for other not.
    Thanks in advance.

    Actually yes!
    I'm not familiar with fuse, but I found the action in line one of your third frame (on the main timeline) dubious, and a quick search lead me to try "portfolio._brightness = 0;" as first line (and I commented out the original line) that worked.
    My quess is that whatever template or original file you've been modifing/adjusting used some kind of color-fade in at that point, and you somehow broke it.
    To me it looks ok without it, but you let me know if you need further guesswork from me.
    cheers
    M

  • Pictures which were found in shared folder are not shown as thumbnails

    Hi,
    I'm indexing SharePoint sites and  File Shared folder with Pictures.
    In the search results page the pictures from SharePoint are shown as thumbnails (there is a preview of the picture) but the pictures from fileshare are not shown that way (it is shown as a preview of a video but empty, without preview image).
    What should i set?
    I added a refiner of "Content Type" and it seems that the content type is "image/jpeg".
    keren tsur

    Hi,
    First create a custom display template which will read the image using the Path property as a thumbnail. Make it smaller etc using CSS. Next up create a custom Result Type which triggers on:
    ContentType Equals any of... image/jpeg
    ContentSource Equals and of... <name of file share content source>
    and pick your custom display template in the dropdown on the Result Type page.
    Depending on policy settings the browser will or will not read the image from the file share and display it inline.
    Thanks,
    Mikael Svenson
    Search Enthusiast - SharePoint MVP/MCT/MCPD - If you find an answer useful, please up-vote it.
    http://techmikael.blogspot.com/
    Author of Working with FAST Search Server 2010 for SharePoint

  • Certain symbols are not shown ( see screen shot) How to resolve?

    From this website the logo and arrows are not shown whereas when I am using internet explorer they do show up. What is wrong in my settings and how to adjust these?

    Hello,
    As I can see it is a narrow box with two rows of two characters? Firefox displays that code when it cannot find the corresponding character in any available font. The most common reason to see this is that some sites are now replacing image icons with font characters that Firefox has to download. If you have set Firefox to:
    * use only your preferred fonts instead of the page's preferred fonts
    * not download fonts (either in about:config or using the NoScript extension)
    then you would need to change that in order to see the icons.
    First check your font settings here:
    "3-bar" menu button (or Tools menu) > Options > Content
    Click the Advanced button and make sure there is a check in the box for "Allow pages to choose their own fonts".
    If you change that, try reloading the page. Does Firefox load the missing icons?
    If that doesn't fix the issue then do the following:
    You can check the '''gfx.downloadable_fonts.enabled''' pref on the '''about:config''' page (you can go to it by typing about:config in your address bar) and make sure that it is set to true (if necessary double-click the line to toggle its value).
    Sometimes it also happens because of the slow connection. Due to slow connection the text which takes less space are somehow downloaded but the image couldn't get downloaded within the connection time frame.
    Hope it helps.

  • Bridge New keywords are not shown on startup

    Hi,
    I have some images, (in folder X) which I tagged with NEW keywords I created.
    When I reopen bridge, these new keywords are not shown by default.
    In ordert to see the above keyword, in the keyword panned, i have to navigate to folder X.
    Is this a normal behavoure for bridge?
    Is there a way to show all the new user ekywords on startup?
    I am working with bridgew CS6, win7 x64.

    I have some images, (in folder X) which I tagged with NEW keywords I created.
    When I reopen bridge, these new keywords are not shown by default.
    I think you use Photoshop or other application to add keywords?
    The Bridge keyword panel offers you the option to create your own keyword list with parent keywords and sub keywords in it. You can also import an existing keyword list using the little menu icon top right in the keyword panel. And export for back up or new version and/or computer.
    If you have Bridge pointed to a file the keywords do show in the list but as italic instead of normal. This means the file has a keyword that is not in the list of Bridge itself. You can make it persistent by using right mouse click on the keyword and after this it shows always in the panel regardless if you point to the file with the keyword or not.
    So if you want to make the most of your search function and using keywords you should start to build your own list. This can be done in Bridge but also in a simple text application. Just try to add some different keywords with a couple of sub keywords to the metadata panel and when done use the export function. This provides you with a good example of how to make your own list in a text application that you then cam import again.
    Off course before staring to create a long list in a text application be sure to start with a short list and see if importing succeeds…

  • Console apps are not shown properly

    Hi! 
    I'm a new Arch convert, and so far I have (only!) one problem, but It's about to drive me crazy. console apps such as - mc, mp3blaster, elinks, are not shown corectly. (just in case you haven't understood me - I'm talking here when X not working) For example, in MC the two panels are mixing one onto the other. I hope someone is understanding what the hell I'm talking about...
    My first thought was it has something to do with the consolefont. So I swithced back to default8x16.
    setfont /usr/share/kbd/consolefont/default8x16.gz
    it was my font on my old distro, gentoo, and there I didn't have any problems. It did not help.
    I would love to try and google this, but due to my somewhat crappy English, I don't think it's possible. I simply don't know how to put this.
    So, I hope someone in here will be able to help.

    they work fine in a terminal window. But I do a lot of work without X runing, so it really bugs me.
    I don't think there is any way for me to post a screen shot. I don't have a digital camera.
    I think I heard once that you can do something with /dev/fb and convert it to jpeg. Is it true? if so, will someone please tell me how, so I can share my problems with the world. 
    ================
    UPDATE: I just found out about fbgrab.
    Here is how it looks when I start working. It's not so bad actually.
    [URL=http://img11.imageshack.us/my.php?image=pic6ff.png][/URL]
    But when I start to move around, things gets messy.
    [URL=http://img14.imageshack.us/my.php?image=pic25dk.png][/URL]
    It's not an fbsplash issue as well.
    [URL=http://img4.imageshack.us/my.php?image=pic37iu.png][/URL]
    Elinks menus.
    [URL=http://img4.imageshack.us/my.php?image=pic41uc.png][/URL]
    Any ideas?

  • In my Apple Macbook Air, most of the USB Flash/Thumb Drives are not shown in the Finder Window. Only a few Brands of USB /Flash Thumb Drives are shown or compatible or shown in the Finder. How do I use any Flash/Thumb Drive with my Apple MacAir?

    In my Apple Macbook Air, most of the USB Flash/Thumb Drives are not shown in the Finder Window. Only a few Brands of USB /Flash Thumb Drives are shown or compatible or shown in the Finder. How do I use any Flash/Thumb Drive with my Apple MacAir?

    Yes, junker thumb drives pour like rain in the market.  
    Which makes are working on your Air, and which arent?
    Stick to Sandisk and a couple of other reliable mfg. of memory sticks

  • Approved and published items are not shown in the catalog search

    Hello all,
    We are implementing SRM 4.0 SSP scenario .
    To support shopping of EBP we are also implementing CCM 2.0 as an add on.
    Please note CCM and EBP are on same client and CAT & CSE are also on the same client.
    No XI is involved. The catalog scheme was uploaded as CSV 2.0. The items for the catalog was created manually in CAT.
    Although the item has the status "approved" and the procurement catalog which is also the master catalog was published successfully the item is not shown after searching by CSE in EBP. Also the categories of the scheme are not shown in the catalog search.
    Do i have to approve the categories too and if yes can you  explain me how to do this?
    I think you see that I'm a newbie at srm and ccm and this problem is probably no real problem but I have not found any similar topics in the forum. So please can you help.
    Thanks a lot for your help.
    Best regards,
    Bernd

    Bernd: the reason I asked about views is that you don't have any error messages. This might indicate that (a) you have no items in the view, or (b) there's something wrong with view-role-user assignment.
    To check for (a), please go to the published procurement catalog, and go to Views tab. Check that your View is Active. Click on your View ID link to display view details. You should see a list of characteristics assigned to your view in Assign Characteristics sub-tab (the list should not be blank!). Go to Assign Items sub-tab. Navigate in your schema to find items that are supposed to be assigned to your view. You should see "Yes" in the "Assigned" column for those products. If you don't, then you simply don't have any items in your view.
    Another thing I'd like you to check: when the user calls your procurement catalog for search, do you see the name of the catalog displayed just below the drop-down "Select Categories Hierarchically"?
    Cheers,
    Serguei

  • I'm on a windows laptop using iTunes sharing through the family to connect with Apple TV. After choosing the folder of photos to be shared and displayed on the appletv and when I choose to show on screen, they are not shown in the order they are in the or

    I'm on a windows laptop using iTunes sharing through the family to connect with Apple TV.
    After choosing the folder of photos to be shared and displayed on the appletv and when I choose to show on screen, they are not shown in the order they are in the original folder.
    How to pair show in a certain order, for example, sorted by name.
    grateful
    Julio Cesar

    Not that I'm aware of. You just export JPEG copies to a folder that you can point iTunes to. For instance, I have created a folder in my Pictures folder called Apple TV. And within that folder I have other folders of pictures that I can choose from in iTunes to share with Apple TV. But there doesn't seem to be any way to share a Lightroom slideshow. If you have laid to create a video file that would probably work. Apple TV is a little clunky in my opinion. Some things are a little more difficult to do now than they were a while back. I probably haven't provided you with much help, but just keep experimenting and I think you will figure it out.

  • File Systems are not shown in CCMS Monitoring

    Hi Gurus,
    We have installed all SAP components in Solaris 10 zones including Solution Manager.
    Solaris File Systems are not shown in CCMS Monitoring under FileSystem. It looks like SAPOSCOL is not sending the OS data to CCMS. It does not show file systems in OS06 also.
    The probles exists on Systems runnig in Solaris 10 zones only and NOT on systems running on individual Servers. [without Solaris zones]
    Thanks,
    Pj

    Hi,
    You need take some special considerations while installing SOLMAN on SOLARIS 10 zones. Check these notes
    Note 870652 - Installation of SAP in a Solaris 10 zone
    Note 724713 - parameter settings for Solaris 10
    Hope this will solve your problem.
    --Ragu

Maybe you are looking for

  • Line Graph Question: Compare different values thru time ...

    Hi, hope someone can help me I've been looking at examples, but I cant get this to work: Here is a link to what the data looks like: http://primolandia.com/line_problem.jpg As you can see, I have a table with columns: Team, Date, CriteriaNum1, Criter

  • N80 v5 firmware and dire battery life

    Updated to the v5 firmware for the N80 (5.0719.0.2) and apart from the annoying loud warning tones, the biggest problem I have with this is the extremely short battery life now. Charged last night, left on standby for maybe 10 hours, and the thing is

  • Sender sending data through XML, How to process it in ECC (No PI involve)?

    Hi, The sender system sending data through XML tag and that need to be processed in SAP side. How it can be done without involving XI or IDoc? Is it possible through HTTP post? Sample XML Transactions 1. SAP Availability Transaction (Request) <?xml v

  • Using Jar file images with READ_IMAGE_FILE built-in

    Hello, I was wondering if it is possible to utilize images in a JAR file with the READ_IMAGE_FILE built-in. The Oracle Forms Configuration guide seems to indicate that I should be able to do this by using 'URL' with READ_IMAGE_FILE but no success so

  • How to run another application in the project?

    Well, the title says it all really. I created a new application within my existing project but I can't get it to run as it always runs my main application (which has a little blue sphere on its icon). How can I get the other application to test and/o