Font specified in font.properties not found

Font specified in font.properties not found [--symbol-medium-r-normal--*-%d-*-*-p-*-adobe-fontspecific]
This message gets printed around 3 dozen times on the screen every time I start a Swing app with JDK 1.3 on SuSE Linux 7.3.
With J2SDK 1.4 this does not happen and the main font being used in the app is different.
How do I solve this bug in JDK 1.3?

How did you solve this? Could you please share your secret. I am facing the same problem on Solaris and would love to find a solution.

Similar Messages

  • "Font.properties not found" error when runInstaller in Suse 7.3 + 9iDB_R2

    when I try to install 9iDB_R2 in Suse 7.3, the runInstaller have this error:
    " Font specified in font.properties not found [--Symbol -medium -r-normal--*-%d-*-*-p-*-adobe-fontspecific] "
    the [Next] button in the installer does not response, but the [Deinstall Products] and [About Oracle Universal Installer] has response and display what normally does.
    I installed almost everything except games and multimedia when installing Suse 7.3
    What is the possible reason?

    I am not sure that I can help you much, but it sounds like a Java install error. The installer uses the JVM to do the install. Do you have any other Java virtual machines loaded on the machine.
    If you do a java -version
    what shows up? I kinda hope that nothing shows up or at worst case is is jdk.1.3.1
    This may be what is causing the problem. Also I believe that there was suppose to be system variables set in the shell you are installing from. Are those set? It has been a while since I installed 9i on RedHat.

  • Font.properties not found

    Hi,
    I developped a graphical interface that has to be run on a Linux Station. The problem is that I get the following error message when I want to run it: "Font specified in font.properties not found [--symbol-medium-r-normal--*-%d-*-*-p-*-adobe-fontspecific]"
    Does someone have an idea ?
    Thanks in advance, Fred.

    Please how can I eliminate this messages??

  • JAXB 1.0 Final: jaxb.properties not found when using custom classloader

    JDK 1.3.1 is being used.
    The scenario:
    1) jaxb jar files, jaxb generated files and application files loaded in default class loader works, however
    2) jaxb jar files, jaxb generated files and application files loaded in a custom class loader generate the following exception:
    javax.xml.bind.JAXBException: Unable to locate jaxb.properties for package XXX
    To demonstrate here are two sample applications: a Launcher app whose job it is to start apps and a sample App1 application who needs JAXB.
    If launch is placed into a jar file named launch.jar and App1 is placed into a jar file named app1.jar (with a JAXB generated package), and both jar files are placed in a directory containing all the JAXB 1.0 jar files (dom, sax, namespace, etc) and the system is started with the following:
    jre\bin\java -cp launch.jar; testLaunch.launch
    the exception occurs.
    By way of comparison, if App1 is started directly with the following:
    jre\bin\java -cp app1.jar;jax-qname.jar;jaxb-xjc.jar;jaxb-ri.jar;jaxb-libs.jar;jaxb-api.jar;dom.jar;sax.jar;jaxp-api.jar;xercesImpl.jar;namespace.jar;ant.jar;xalan.jar testApp.app1
    the exception does not occur.
    Any help would be greatly appreciated.
    package testLaunch;
    import java.net.*;
    import java.io.*;
    public class launch extends javax.swing.JFrame
        private static URLClassLoader app1ClassLoader_; 
        private static Class  app1EntryClass_ = null;
        private static final String app1MainClassName_ = "testApp.app1";
        private Object appObj_ = null;
         static public void main(String args[])
              try {
                System.out.println("Launch Main");               
                new launch();          
                  System.exit(0);
              catch (Throwable t) {
                   t.printStackTrace();
                   System.exit(1);
         public launch()
            if (app1ClassLoader_== null)
                loadAppClassLoader();
            try{
                if (app1EntryClass_ == null)
                    app1EntryClass_ = app1ClassLoader_.loadClass(app1MainClassName_);
                if (app1EntryClass_ == null)
                    System.out.println(app1MainClassName_ + " was not found");
                else
                    appObj_ = app1EntryClass_.newInstance();
            catch(ClassNotFoundException x){
                x.printStackTrace();
            catch(Exception x){
                x.printStackTrace();
        private static void loadAppClassLoader()
            String jarPath = jarPath = System.getProperty("user.dir");
            System.out.println("jar path is: " + jarPath);
            try{
                File jarfile1 = new File(jarPath+File.separator+"app1.jar");
                File jarfile2 = new File(jarPath+File.separator+"dom.jar");
                File jarfile3 = new File(jarPath+File.separator+"jaxp-api.jar");
                File jarfile4 = new File(jarPath+File.separator+"jaxb-api.jar");
                File jarfile5 = new File(jarPath+File.separator+"jaxb-xjc.jar");
                File jarfile6 = new File(jarPath+File.separator+"jaxb-ri.jar");
                File jarfile7 = new File(jarPath+File.separator+"jaxb-libs.jar");
                File jarfile8 = new File(jarPath+File.separator+"jax-qname.jar");
                File jarfile9 = new File(jarPath+File.separator+"sax.jar");
                File jarfile10 = new File(jarPath+File.separator+"xercesImpl.jar");
                File jarfile11 = new File(jarPath+File.separator+"namespace.jar");
                File jarfile12 = new File(jarPath+File.separator+"xalan.jar");
                File jarfile13 = new File(jarPath+File.separator+"ant.jar");
                if (!jarfile1.exists())
                    System.out.println("**ERROR " + jarfile1 + " does not exist!");
                app1ClassLoader_ = new URLClassLoader( new URL[]{jarfile1.toURL(),
                                                                jarfile2.toURL(),
                                                                jarfile3.toURL(),
                                                                jarfile4.toURL(),
                                                                jarfile5.toURL(),
                                                                jarfile6.toURL(),
                                                                jarfile7.toURL(),
                                                                jarfile8.toURL(),
                                                                jarfile9.toURL(),
                                                                jarfile10.toURL(),
                                                                jarfile11.toURL(),
                                                                jarfile12.toURL(),
                                                                jarfile13.toURL()} );
            catch(Exception x){
                x.printStackTrace();
                return;
    package testApp;
    import javax.xml.bind.*; // JAXB classes
    import myGeneratedJAXBFiles;
    public class app1 extends javax.swing.JFrame
         static public void main(String args[])
              try {
                System.out.println("App1 Main");               
                new app1();           
                  System.exit(0);
              catch (Throwable t) {
                   t.printStackTrace();
                   System.exit(1);
         public app1()
            try
                JAXBContext jc_ = JAXBContext.newInstance( "myGeneratedJAXBFiles" );
                System.out.println("Successfully loaded JAXB Context");          
            catch (JAXBException jbe)
                jbe.printStackTrace();

    I'm doing something very similar. In fact my launcher is also stored in launcher.jar. It will start any application on the classpath and load dependencies jars located in the specified directory.
    The first thing you must do is specify the classloader when constructing the jaxb context:
    JAXBContext jc = JAXBContext.newInstance(xmlPackage, getClass().getClassLoader());
    After this I was still raning into the "jaxb.properties not found" exception in some situations. Basically if the class using the jaxb files is located in the same jar as jaxb.properties everything worked fine. However if the class using the jaxb objects was located in a different jar it did not work.
    I had to add the following early in the execution of the application that load the plugins to get things working correctly:
    Thread.currentThread().setContextClassLoader(jarDirClassLoader);
    As far as I can tell JAXB using the Context class loader to find the jaxb.properties file.
    I'm using JAXB 1.1
    I hope this helps!

  • Error:"The specified tag name was not found"

    Hello:
    My problem is the FieldPoint error message in LabWindows/CVI v6.0.
    When hook up with Ethernet module(FP-1600), NO Problem on the source code, specially item Name "All". See the actual code.
    if(status = FP_CreateTagIOPoint (ServerHandle, resourceName, deviceName, "All",&IOPointHandle))
    But When hook up with RS-232C Module(FP-1000), occured error. The error code is 32812, that means "The Specified tag name was not found."
    What makes this error? Why item name "All" makes the error when using FP-1000?
    Please help me.
    Thank You.

    Make sure the resourceName and deviceName match what is in FieldPoint Explorer. See the following KB:
    http://digital.ni.com/public.nsf/websearch/02EB73D02715981A8625682B00774F8F?OpenDocument
    Also, I have seen this error when targetting serial modules with FieldPoint Explorer open. Make sure FP Explorer is closed.

  • Getting warning ApplicationResources_en_GB.properties not found

    I am using struts1.3 and JBoss4.0.3 as a server.
    I have declared ApplicationResources.propeties in struts-config.xml like
    <message-resources parameter="com.resources.ApplicationResources"/>
    If I see in the server.log I found the warning like below..
    WARN [org.apache.struts.util.PropertyMessageResources] Resource com/resources/ApplicationResources_en.properties Not Found.
    WARN [org.apache.struts.util.PropertyMessageResources] Resource com/resources/ApplicationResources_en_GB.properties Not Found.
    Could anybody tell the solutions to avoid the warning messages in the server.log
    (I dont want the warning messages like above-its a requirement)

    Add those properties files?
    That is the library using I18n, which looks for a version of the resource requested for the current language in the current country, first, then for the resource using the the current language, only, then using no extension. It's nothing to worry about unless you want to support that language with something other than the "default" entries.

  • Re: The specified topic [0] was not found

    I get this error when I click on a link in an email on my iPhone to a thread that I'm monitoring.
    I don't get the error when I click on the same link from my PC.
    Does anyone have a workaround?
    Specifically, it looks like this:
    Apple Discussions
    Apple.com>Support>Discussions
    Error
    The specified topic [0] was not found.
    Useful links:
    Forum Home - browse the forums here.
    Search Forums - visit the search page to query all forum content
    Apple.com>Support>Discussions
    Thanks in advance for any response :o)

    Hello everettwolf,
    As Don Archibald posted, the Login Error message is a know issue, that the Hosts / Sysops are aware of, and that hopefully, will soon be resolved.
    And here is a more comprehensive list, of the other Topics in this Forum, concerning this issue, that have been previously posted.
    You'll find additional info, comments by a Host, and other temporary work-arounds.
    Such as, if you do not quit your browser, there is no need to login each time you return to Discussions.
    After Log-in, " An Error Has Occurred"....
    Fourm redirection error after login
    Old Login page
    What Gives With The Login?
    An error has occurred. We apologize for the inconvenience
    Error no matter browser I use
    More forum unreadable also user unfriendly
    i know this has been discussed but the login error...
    Log in errors
    Every time I log in and try to post I get error message
    Still receiving "Error" message while trying to login?
    Error after login
    Error when logging into Apple/Support/Discussions
    Login for Discussion Forum Problems
    Error logging in
    How come?
    Error after login
    Error message on successful logo
    Problems logging in
    Each time I sign on it says "Sorry error"
    C'mon, Enough Already with the Error Message Upon Logging In
    ali b

  • FILE specified in CFHTTPPARAM tag not found

    everything was working before, now i keep getting the following error:
    FILE specified in CFHTTPPARAM tag not found
    someone please help.
    my code looks like this:
    <cfhttp url="http://www.xxx.com/admin/upload-size.php" method="post">
    <cfhttpparam type="formfield" name="bThumb" value="2" >
    <cfhttpparam type="file" name="imgfile" file="#CFFILE.ServerDirectory#/#CFFILE.ServerFile#" >
    </cfhttp>

    What's the value of #CFFILE.ServerDirectory#/#CFFILE.ServerFile#?
    What does fileExists("#CFFILE.ServerDirectory#/#CFFILE.ServerFile#") return?
    Is the file actually there?
    Adam

  • Implfactory.properties not found error during application installation

    Hi,
    I am facing some problem during deployment of application on websphere in Linux machine.
    it says "implfactory.properties not found". However when i try to install the same application on some other linux machine. It goes fine.
    As this is happening during installation of kit. Can u please let me know which jar file is missing from the Websphere path.
    ~aman

    Hi !! Could you tell me where I might find this implfactory.jar file ?
    I've looked around several systems, but have yet to find this jar.
    Most systems work, and only one does not.
    thanks.......

  • Item Category: The specified category assignment is not found for this item

    HI All,
    I am loading Item category Assignment for Purchasing category Set, the standard prg fails and gives the error "The specified category assignment is not found for this item".
    Where as for the inventory category set its working fine and the assignment is through.
    Are there any changes required for this.
    Thanks
    Basaw

    As the error indicates, your servlet does not support GET method calls. Override doGet() method to do what you are doing in doPost to avoid this error. If you want your servlet to serve GET as well as POST methods, override service method instead.

  • WSRPService_Config.properties not found

    Hello Expoerts!
    I'm relatively a newbie with Oracle Portal. I have been trying to deploying JSR168 based portlets from documentum. I was trying to use Standalone OC4J container configured with WSRP. Per my undertstanding, only way Oracle Portal allows deploying such portlets is to deploy them using WSRP. Is this the only way? Or can I deploy those portlets as it is?
    Assuming I need to access those portlets through WSRP, I started using Oracle JDeveloper and successfully deployed those portlets onto Standalone OC4J. I was able to access the WSDL page and it appears fine. However, when I used to this WSDL URL to create a producer within JDeveloper, some errors were thrown in the application.log. The error is as below. I tried googling it but couldn't find any fix for this issue. Could some shed some light on why this error pops up?
    Appreciate your help and time.
    Thanks,
    Pavan
    Error Message from application.log ****** Thrown while creating a producer using Oracle JDeveloper.
    07/05/31 22:58:06.390 FirstDCTMPortlet: Servlet error
    javax.servlet.ServletException: config file: "/WEB-INF/WSRPService_Config.properties" not found
         at com.sun.xml.rpc.server.http.ea.JAXRPCServletDelegate.init(JAXRPCServletDelegate.java:57)
         at com.sun.xml.rpc.server.http.JAXRPCServlet.init(JAXRPCServlet.java:47)
         at com.evermind[Oracle Containers for J2EE 10g (10.1.3.1.1) ].server.http.HttpApplication.loadServlet(HttpApplication.java:2361)
         at com.evermind[Oracle Containers for J2EE 10g (10.1.3.1.1) ].server.http.HttpApplication.findServlet(HttpApplication.java:4810)
         at com.evermind[Oracle Containers for J2EE 10g (10.1.3.1.1) ].server.http.HttpApplication.findServlet(HttpApplication.java:4734)
         at com.evermind[Oracle Containers for J2EE 10g (10.1.3.1.1) ].server.http.HttpApplication.getRequestDispatcher(HttpApplication.java:2957)
         at com.evermind[Oracle Containers for J2EE 10g (10.1.3.1.1) ].server.http.HttpRequestHandler.doProcessRequest(HttpRequestHandler.java:735)
         at com.evermind[Oracle Containers for J2EE 10g (10.1.3.1.1) ].server.http.HttpRequestHandler.processRequest(HttpRequestHandler.java:447)
         at com.evermind[Oracle Containers for J2EE 10g (10.1.3.1.1) ].server.http.HttpRequestHandler.serveOneRequest(HttpRequestHandler.java:215)
         at com.evermind[Oracle Containers for J2EE 10g (10.1.3.1.1) ].server.http.HttpRequestHandler.run(HttpRequestHandler.java:117)
         at com.evermind[Oracle Containers for J2EE 10g (10.1.3.1.1) ].server.http.HttpRequestHandler.run(HttpRequestHandler.java:110)
         at oracle.oc4j.network.ServerSocketReadHandler$SafeRunnable.run(ServerSocketReadHandler.java:260)
         at oracle.oc4j.network.ServerSocketAcceptHandler.procClientSocket(ServerSocketAcceptHandler.java:239)
         at oracle.oc4j.network.ServerSocketAcceptHandler.access$700(ServerSocketAcceptHandler.java:34)
         at oracle.oc4j.network.ServerSocketAcceptHandler$AcceptHandlerHorse.run(ServerSocketAcceptHandler.java:880)
         at com.evermind[Oracle Containers for J2EE 10g (10.1.3.1.1) ].util.ReleasableResourcePooledExecutor$MyWorker.run(ReleasableResourcePooledExecutor.java:303)
         at java.lang.Thread.run(Thread.java:595)
    07/05/31 22:58:23.953 FirstDCTMPortlet: Servlet error
    javax.servlet.ServletException: config file: "/WEB-INF/WSRPService_Config.properties" not found
         at com.sun.xml.rpc.server.http.ea.JAXRPCServletDelegate.init(JAXRPCServletDelegate.java:57)
         at com.sun.xml.rpc.server.http.JAXRPCServlet.init(JAXRPCServlet.java:47)
         at com.evermind[Oracle Containers for J2EE 10g (10.1.3.1.1) ].server.http.HttpApplication.loadServlet(HttpApplication.java:2361)
         at com.evermind[Oracle Containers for J2EE 10g (10.1.3.1.1) ].server.http.HttpApplication.findServlet(HttpApplication.java:4810)
         at com.evermind[Oracle Containers for J2EE 10g (10.1.3.1.1) ].server.http.HttpApplication.findServlet(HttpApplication.java:4734)
         at com.evermind[Oracle Containers for J2EE 10g (10.1.3.1.1) ].server.http.HttpApplication.getRequestDispatcher(HttpApplication.java:2957)
         at com.evermind[Oracle Containers for J2EE 10g (10.1.3.1.1) ].server.http.HttpRequestHandler.doProcessRequest(HttpRequestHandler.java:735)
         at com.evermind[Oracle Containers for J2EE 10g (10.1.3.1.1) ].server.http.HttpRequestHandler.processRequest(HttpRequestHandler.java:447)
         at com.evermind[Oracle Containers for J2EE 10g (10.1.3.1.1) ].server.http.HttpRequestHandler.serveOneRequest(HttpRequestHandler.java:215)
         at com.evermind[Oracle Containers for J2EE 10g (10.1.3.1.1) ].server.http.HttpRequestHandler.run(HttpRequestHandler.java:117)
         at com.evermind[Oracle Containers for J2EE 10g (10.1.3.1.1) ].server.http.HttpRequestHandler.run(HttpRequestHandler.java:110)
         at oracle.oc4j.network.ServerSocketReadHandler$SafeRunnable.run(ServerSocketReadHandler.java:260)
         at oracle.oc4j.network.ServerSocketAcceptHandler.procClientSocket(ServerSocketAcceptHandler.java:239)
         at oracle.oc4j.network.ServerSocketAcceptHandler.access$700(ServerSocketAcceptHandler.java:34)
         at oracle.oc4j.network.ServerSocketAcceptHandler$AcceptHandlerHorse.run(ServerSocketAcceptHandler.java:880)
         at com.evermind[Oracle Containers for J2EE 10g (10.1.3.1.1) ].util.ReleasableResourcePooledExecutor$MyWorker.run(ReleasableResourcePooledExecutor.java:303)
         at java.lang.Thread.run(Thread.java:595)

    They have to be made available to Java. Running from the commandline, add them to your classpath, preferably on the java command:
    java -classpath <your list of required directories and jars> yourClassOrJar
    In an IDE, you must accomplish the same thing using the facilities that are specific to the IDE that you are using. Refer to the IDE's Help pages or the IDE's website for the way that you add libraries to an IDE project, as each is different.

  • Firefox 3.6.9 / Windows 7 will not print using font specified with @font-face - any workarounds?

    I've seen a few mentions of this problem around the interwebs, but can't find a resolution. I used [http://www.fontsquirrel.com/fontface/generator fontsquirrel's font-face generator] to prepare different versions of a font for cross-browser display. Screen presentation in almost all browsers is fine, and almost all browsers print the embedded font as well - except for Firefox/PC (3.6.9/Windows 7).
    I have tried inline styles, styles inside of the head, and external stylesheets, all with and without media type print. What can I do?

    Hi John,
    Can u try the work around mentioned in the below link
    http://notsomany.wordpress.com/2010/03/30/jinitiator-working-on-windows-7/
    Also some times IE8 can block the webutil_file_transfer.
    AS_to_Client if "protected mode" is ON for the security zone your forms url is in (look in the statusbar in IE ->
    internet, trusted site, ... -> protected mode: On/Off)
    Regards
    Fabian

  • Sneak preview Installation error, file source.properties not found

    Hi all,
          I am trying to install sneak preview (SAPNW2004sJavaSP9_Trial) with j2sdk-1_4_2_09 and  jce_policy-1_4_2.zip as specified. The  Installation was success upto a while but when I pass parameters to "secure store settings" it says there is no source.properties file in sneakpreview\java\ like that. If somebody have met with a similar problem and could overcome please help. Helping answer rewarded.
    Thanks & Regards,
    Sai Krishna. K

    Hi Konchada,
    Pls tell how you solved this problem...
    I am in need of it... Thanks
    Regards/ Guru

  • Raise an alert after a specified time, if file not found in source folder

    Hi all,
    For a requirement, I need to poll a folder at a specified time say 10.00-10:15 AM and check for a file.
    If the file is not placed in the source folder within this duration. I need to raise a alert.
    How do we handle requirement. Pointers/suggestions to achieve the same would be highly appreciated.
    Thanks in advance,
    Younus

    Hi Abhishek & Swarup,
    Thanks for your response. The timeout option will work if the Transport Protocol is FTP. But take a case where it is NFS.
    Then how will be monitor the source location for a certain period and then raise an alert.
    Please drop in your comments.
    regards,
    Younus

  • Fonts not found when using Xvfb

    Hi all,
    I keep encountering "fonts specified in fonts.properties not found" whenever I execute rwserver.sh server=XXX.
    fyi, I'm running Solaris8 on Sun SPACE machine. I use Xvfb downloaded from Oracle to allow report server to run after I logoff from the session. I realised that the report sever I created manually will die prematurely if I log out from the session when I use the "default" Xserver provided by Solaris.
    And prior to running rwserver.sh I set the DISPLAY such DISPLAY=:1.0; export DISPLAY.
    pls advise.

    I get the same errors on my Solaris system with xvfb, but it doesn't keep anything from working. My reports server comes up and works fine.

Maybe you are looking for

  • What is the literal constant or expression which results in the blank meta-value?

    Numbers is horsey about not tolerating null values, and yet I can't seem to find a way for the result of a formula to be the blank cell null value. I need a formula that will sparsely replicate the cells of another column depending on a condition, su

  • Entry Date

    HI All I want to display Entry Date while displaying line items. How can i do that. Thanks Gautam Anand

  • Cannot export video from iPhoto

    cannot export a video taken from an iphone. from iphoto to anything, it saves it as a 0.00 second movie file. and yes before you ask i am changing it to original file :/

  • Skype Crashes Randomly

    This is the error from Event Viewer when it crashes. It did this a awhile ago and how I fixed it was going into my computer and changing Skype to SkypeOld and basically restarting Skype. Now it's doing it again. I didn't update/change any software, s

  • Camera Raw and Nikon d750

    I've been working with Nikon for several months now trying to find out why I cannot open up their NEF files. I even sent my camera back to their repair facility for the recall on the D750 and they fixed that problem but ignored all my documentation o