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.

Similar 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!

  • Urgent: IMP-00034: Warning: FromUser "USER1" not found in export file

    Hello all
    I succeccfully export DMP file using sys user with the option full=y.
    I want now to import the schema objects for the user1 with the folloing command:
    C:\oracle\ora81\bin\IMP.EXE sys/sys@bas fromuser=user1 touser=scott file=C:\omran12-06-2005.dmp
    But I received this error :
    IMP-00034: Warning: FromUser "OMBR" not found in export file
    Import terminated successfully with warnings.
    What is the problem
    Thanks in advance

    Hello
    Thanks for ur replay but doesn't work at all:
    - Itried the first by creatint the user and i received this error:
    C:\oracle\ora81\bin\IMP.EXE newuser/newnewuser@sid file=C:\x.dmp log=c:\log.log full=y
    Warning: the objects were exported by SYSTEM, not by you
    import done in AR8MSAWIN character set and AR8MSAWIN NCHAR character set
    . importing SYSTEM's objects into OMBR1
    Import terminated successfully without warnings.
    Then I tried this:
    C:\>C:\oracle\ora81\bin\IMP.EXE sys/sys@sid file=C:\x.dmp log=c:\log.log full=y show=y
    I received this:
    Warning: the objects were exported by SYSTEM, not by you
    import done in AR8MSAWIN character set and AR8MSAWIN NCHAR character set
    . importing SYSTEM's objects into SYS
    Import terminated successfully without warnings.
    Then i tried this:
    C:\>C:\oracle\ora81\bin\IMP.EXE system/system@sid file=C:\x.dmp log=c:\log.log full=y show=y
    And I get this error:
    Export file created by EXPORT:V08.01.07 via conventional path
    import done in AR8MSAWIN character set and AR8MSAWIN NCHAR character set
    . importing SYSTEM's objects into SYSTEM
    Import terminated successfully without warnings.
    Why nothing work with me????????

  • When i download a file from the web i get "Anti-Virus Program not found " message. This has been happening since I change anti-virus programs for CA etrust to Sophos. How do I get Firefox to recognise my new Anti-virus program?

    every time i download a file from the web (ie. a PDF file) i get "Anti-Virus Program not found " message. This has been happening since I changed anti-virus programs for CA etrust to Sophos. How do I get Firefox to recognise my new Anti-virus program?

    That is a very good warning provided by the Download Statusbar extension. Something like that should been built into Firefox. I filed this Bug report a couple of years ago, about the lack of a warning like that. <br />
    https://bugzilla.mozilla.org/show_bug.cgi?id=480855 <br />
    I have looked everywhere that I can think of to find a list of '''IOfficeAntiVirus providers''' ''(as mentioned in the Bug report)'' that will work with Firefox, so I can't answer that for you.
    You might want to ask the developer of the Download Statusbar extension about it. He might know which AV programs are compatible with the Windows API that Firefox uses for the download scan. <br />
    http://dlstatusbar.proboards.com/index.cgi? <br />

  • 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??

  • 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.

  • After installing iOS6, my Maps are not working at all, anything i search it says "result not found" even after placing a pin and selecting "Direction to here" i get the same result not found. Very disappointed with the new iOS

    After installing iOS6, my Maps are not working at all, anything i search it says "result not found" even after placing a pin and selecting "Direction to here" i get the same result not found. Very disappointed with the new iOS.

    Have you run it in a debugger? That will show you exactly what is happening and why.

  • I am having a terrible time trying to convert my Quick Time file to an AVI file to use in a powerpoint presentation.  Any suggestions?  I am getting Error .43 file not found?

    I am having a terrible time trying to convert my QT file to an AVI file so I can use in PowerPoint.  I am getting Error 43 File not Found, any suggestions?

    Hi Jenna,
    The error your getting suggests a file path problem.
    How are you embedding the movie in PP and where is the movie file located relative to the PP file? Are you getting this error within PP when the slide containing the embedded video is displayed?
    If you embed a movie and then move it or change its name then PP will generate this error.
    Alastair.

  • Why do I get a boot drive not found error only when laptop lid has been closed?

    I've got a HP Mini 210 P/Number: VX818EA with Windows 7 Starter.
    It works fine when turning on after shutdown, but when I've put it to sleep by closing the lid it won't 'wake up', and I get a blank screen. On restarting the computer I get a 'boot drive not found' error, (3F0) which can be resolved by following the steps on this page: http://h10025.www1.hp.com/ewfrf/wc/document?docname=c01443463&tmp_task=solveCategory&lc=en&dlc=en&cc...
    I've run disk check etc as suggested on that link, no errors are found, but nothing seems to resolve the problem more than temporarily. Seems odd that this only happens if I close the lid (sleep mode with the lid up is fine, doesn't crash the computer).
    Can anyone advise?
    Thanks

    Hello,
     Very strange, can you go to BIOS and reset the setting " By Default " ?. How did you check the disk ?
    This is an unusual probleme Hp Mini 210 . And notice me after your reset the bios settings.

  • Most of the time, when I try to load the home page, I get the message server not found - now I get this message and can't go anywhere

    I have dial up - once I connect to the internet, I get the message server not found and am unable to go anywhere on the internet. This started trying to load my banks online site and started about a week ago. I've tried freeing popup blocker, gone through the settings with a bank IT specialist, tried to us IE which has resulted in a request for a cable and now no access to any website. Any suggestions appreciated. Thanks

    A possible cause is security software (firewall) that blocks or restricts Firefox or the plugin-container process without informing you, possibly after detecting changes (update) to the Firefox program.<br />
    Remove all rules for Firefox from the permissions list in the firewall and let your firewall ask again for permission to get full unrestricted access to internet for Firefox and the plugin-container process and the updater process.
    See:
    * https://support.mozilla.com/kb/Server+not+found
    * https://support.mozilla.com/kb/Firewalls

  • Calendar Server installation gets error "libnmspr20.dll not found"

    Calendar Server installation gets error "libnmspr20.dll not found"
    <P>
    When installing Calendar Server 3.5 on NT near the end an error
    occurs: "libnmspr20.dll not found " and then it will exit the setup
    without completion.
    This is a bug because it is looking for the libnmspr20.dll in the
    system path but the Calendar Server installation has left it in a
    temp directory. This does not occur if the Netscape Messaging Server
    has been previously installed on the same host. A workaround is, when
    the error message displays, you DON'T press ok, but search your
    computer for the missing file (usually found in temp-directory).
    You then copy the file to a directory in your system path. Now you
    can press the OK button and the installation will fail. Re-install
    the calendar server, this time the installation won't fail.

    Installing Latest JRE on NT4 sp6a produces the same error:
    InstallShield DLL Custom Action:
    File 'C:\TEMP\RegUtils.dll' can not be found. Make sure the file is on the target system or installed already.
    I searched www.installshield.com since the error is an installer error and the installer is InstallShield. NO results found there either.
    Seems like the installer team needs to brush up on the NT4 platform.

  • I can not load my yahoo email. I get the following message: "Not Found The requested URL /mc/showMessage was not found on this server. Apache/2.2.9 (Debian) mod_jk/1.2.26 PHP/5.2.6-1+lenny4 with Suhosin-Patch etc... (too many characters for your ? page

    Can't log into yahoo email. I get the following message: "Not Found The requested URL /mc/showMessage was not found on this server.

    OK here is the problem I am having with this.. It might be related to my own machine but I need help where to look..
    on the command line using mintty on XP I have this:
    $ nslookup us.mg6.mail.yahoo.com
    Non-authoritative answer:
    Server: Wireless_Broadband_Router.home
    Address: 192.168.1.1
    Name: any-ycpi-uno.aycpi.b.yahoodns.net
    Addresses: 98.136.145.155, 216.115.101.178, 216.115.110.119, 216.115.101.179
    98.136.145.157, 98.136.145.154, 216.115.110.118, 98.136.145.156
    Aliases: us.mg6.mail.yahoo.com, geoycpi-uno-deluxe.gycpi.b.yahoodns.net
    geoycpi-uno.gycpi.b.yahoodns.net
    HOwever when I look in firebug for where the ip for the above domain is this is what I get:
    66.115.130.31 clearly not listed above..
    Let's check the aliases
    $ nslookup geoycpi-uno-deluxe.gycpi.b.yahoodns.net
    Non-authoritative answer:
    Server: Wireless_Broadband_Router.home
    Address: 192.168.1.1
    Name: any-ycpi-uno.aycpi.b.yahoodns.net
    Addresses: 216.115.110.118, 98.136.145.156, 98.136.145.155, 216.115.101.178
    216.115.110.119, 216.115.101.179, 98.136.145.157, 98.136.145.154
    Aliases: geoycpi-uno-deluxe.gycpi.b.yahoodns.net
    geoycpi-uno.gycpi.b.yahoodns.net
    nope
    $ nslookup geoycpi-uno.gycpi.b.yahoodns.net
    Non-authoritative answer:
    Server: Wireless_Broadband_Router.home
    Address: 192.168.1.1
    Name: any-ycpi-uno.aycpi.b.yahoodns.net
    Addresses: 98.136.145.156, 98.136.145.155, 216.115.110.118, 216.115.101.179
    98.136.145.157, 216.115.101.178, 98.136.145.154
    Aliases: geoycpi-uno.gycpi.b.yahoodns.net
    nope
    where is this 66.115.130.31 ip comming from.. why isn't firefox using native DNS lookup?
    When I do a reserve lookup on that ip it points to nationalnet.com as the top SOA..
    any ideas?

  • Type "purge" in Terminal and get:   -bash: purge: command not found   Is there another built-in command to clear memory leaks?   want to clear memory periodically

    I have 10.6.8.  When I type "purge" in Terminal I get:   -bash: purge: command not found   Is there another built-in command to clear memory leaks?   I have FreeMemory (works well) and considering FreeMemory Pro, to clear memory periodically, say every 20 minutes, or preferably when a threshold is reached, say when only 100MB is available.

    To get purge to work you need to install Xcode from Optional Installs on the 10.6 install DVD. Also be sure you install CHUD Tools with it.
    But running purge or anything like it is pointless if within a short period of time the VM just grows back again. Sounds like you need more RAM.
    Where are the memory leaks? Just because the VM reaches a certain size doesn't necessarily mean it's from a memory leak.

  • I keep trying to install and reinstall itunes but keep getting apple application support not found...how do i fix this?

    I keep trying to install and reinstall itunes but keep getting apple application support not found...how do i fix this?

    For general advice see Troubleshooting issues with iTunes for Windows updates.
    The steps in the second box are a guide to removing everything related to iTunes and then rebuilding it which is often a good starting point unless the symptoms indicate a more specific approach. Review the other boxes and the list of support documents further down page in case one of them applies.
    Your library should be unaffected by these steps but there is backup and recovery advice elsewhere in the user tip.
    The section Install missing components has advice on breaking down the iTunes installer into the individual .msi files which might prove useful if Apple Application Support won't install normally.
    tt2

  • 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.......

Maybe you are looking for