Exception InInitializer Error caused by Missing Resource Bundle

Still getting MissingResourceException. This time its in another file. Other file can find the bundle, and this file is in the same folder. I've tried everything. If anyone could provide insight into this problem, I would greatly appreciate it.
Exception in thread "main" java.lang.ExceptionInInitializerError
at com.hypefiend.javagamebook.games.rps.RPSClient.init(RPSClient.java:80)
at com.hypefiend.javagamebook.games.rps.RPSClient.main(RPSClient.java:62)
Caused by: java.util.MissingResourceException: Can't find bundle for base name src.com.hypefiend.javagamebook.games.rps.Message.Message4, locale en_US
at com.hypefiend.javagamebook.games.rps.RPSConsoleEventReader.<clinit>(RPSConsoleEventReader.java:40)
... 2 more
(Code thru line 40)
public class RPSConsoleEventReader extends Thread {
    /** log4j logger */
    private Logger log = Logger.getLogger(java.util.ResourceBundle.getBundle("src.com.hypefiend.javagamebook.games.rps.Mess.Message4").getString("RPSConsoleEventReader"));
    /** reference to the gameClient */
    private GameClient gameClient;
    /** incoming event queue */
    private EventQueue inQueue;
    /** outgoing event queue */
    private EventQueue outQueue;
    /** still running? */
    private  boolean running;
    /** text displayed to newly connected client */
    private static final String WELCOME_TEXT = java.util.ResourceBundle.getBundle("src.com.hypefiend.javagamebook.games.rps.Mess.Message4").getString("\n\nWelcome_to_the_RPS_(Rock,_Paper,_Scissors)_Multi-player_Game\n\n");

The preceding issue I have listed is very similiar, if not the same, as the next topic "Error in using Jaxm provider deployed in j2ee 1.3.1 (RI) ". I should have mentioned that all of my examples seem to be working except for the jaxm-provideradmin. At different times I have gotten the error I have listed above as well as the the error in the next topic.

Similar Messages

  • File not found, Missing resource bundle

    Hi
    I have a problem in accessing files (XML and Resource bundles) in Java projects. I used to access these files in WD Java. The same piece of code does not work here.
    e.g. When I create a new file object by providing the path name I get a file not found exception. The file exists in my package and I call it this way:
    File f = new File("file.txt"); then in an input stream but it doesnt work. However in a J2EE project the same code works.
    Similarly the resouce bundle never seems to work even if I give the fully classified class name for the property file. I can access property files in WD Java with ease. I understand that the root path changes and hence the problem. How should I solve it? Is there an elegant way which makes it work in all cases? Please throw some light on the root path for these projects. Thank you.
    regards
    LNV
    Edited by: vln on Jan 16, 2008 9:34 AM

    You should be using
    <b>this.getClass().getResourceAsStream(filePath)</b>
    which will return you an InputStream.
    Check the JDK documentation for the respective methods in java.lang.Class and java.lang.ClassLoader.
    HTH!
    \-- Vladimir

  • Error: Unable to resolve resource bundle "fiber" for locale "en_US".

    Hi all,
    Im trying to create a resources.swf file for the purpose of dynamic localization of our application. However, I keep getting this error thrown when I try to run the ant script.
    Im running Flash Builder 4, the sdk is Flex 4.5.1 with AIR 3.0 and a Windows 7-64 bit machine (just mentioning as a few posts associated it with the OS).
    After searching some of the forum posts, ( http://forums.adobe.com/thread/606383)
    1> I checked the eclipse.ini file and found the following lines already in there.
         -nl
         en_US
    2> My compiler options already has -locale en_US specified.
    3> I tried including the swc files as suggested in the referenced thread, both as a referenced library and by manually copying the swcs to the project, but neither of them helped.
         "import 2 swc folders (Under Properties -> Flex Build Path -> Library Path):
         /Applications/Adobe Flash Builder 4/plugins/com.adobe.flexbuilder.dcrad_4.0.0.272416/dcradSwcs/4.0/libs
         and
         /Applications/Adobe Flash Builder 4/plugins/com.adobe.flexbuilder.dcrad_4.0.0.272416/dcradSwcs/4.0/loca le"
    Thanks in advance for your help.
    My build.xml file looks as follows:
    <?xml version="1.0" encoding="utf-8"?>
    <project name="appName" basedir="." default="main">
              <taskdef resource="flexTasks.tasks" classpath="${basedir}/lib/flexTasks.jar"/>
              <!-- CHANGE TO YOUR FLEX DIRECTORY //-->
              <property name="FLEX_HOME" value="C:/Users/abc/Documents/flex_sdk_4.5.1.21328_AIR3.0"/>
              <property name="APP_ROOT" value="appName"/>
              <target name="main">
                        <antcall target="en_US"></antcall>
    <!--                    <antcall target="de_DE"></antcall>-->
              </target>
              <target name="en_US">
                        <mxmlc>
                                  <locale>en_US</locale>
                                  <source-path>locale/{locale}</source-path>
                                  <include-resource-bundles>appResource</include-resource-bundles>
                                  <include-resource-bundles>SharedResources</include-resource-bundles>
                                  <include-resource-bundles>collections</include-resource-bundles>
                                  <include-resource-bundles>components</include-resource-bundles>
                                  <include-resource-bundles>containers</include-resource-bundles>
                                  <include-resource-bundles>controls</include-resource-bundles>
                                  <include-resource-bundles>core</include-resource-bundles>
                                  <include-resource-bundles>effects</include-resource-bundles>
                                  <include-resource-bundles>formatters</include-resource-bundles>
                                  <include-resource-bundles>layout</include-resource-bundles>
                                  <include-resource-bundles>logging</include-resource-bundles>
                                  <include-resource-bundles>messaging</include-resource-bundles>
                                  <include-resource-bundles>rpc</include-resource-bundles>
                                  <include-resource-bundles>skins</include-resource-bundles>
                                  <include-resource-bundles>sparkEffects</include-resource-bundles>
                                  <include-resource-bundles>styles</include-resource-bundles>
                                  <include-resource-bundles>textLayout</include-resource-bundles>
                                  <include-resource-bundles>utils</include-resource-bundles>
                                  <include-resource-bundles>validators</include-resource-bundles>
                                  <include-resource-bundles>fiber</include-resource-bundles>
                                  <output>locale/en_US/appName.swf</output>
                        </mxmlc>
              </target>
    </project>
    Thanks & Regards,
    AJ

    I did import the swcs first as a referenced library, by
    Project-> Properties -> Flex Build Path -> Library Path -> add swc folder.
    Secondly, I manually copied the swcs from the folders at
    1>
    C:\Program Files (x86)\Adobe\Adobe Flash Builder 4 Plug-in\eclipse\plugins\com.adobe.flexbuilder.dcrad_4.0.0.272416\dcradSwcs\4.0\libs
    files present: fds.swc, fiber.swc and serializers.swc
    2>
    C:\Program Files (x86)\Adobe\Adobe Flash Builder 4 Plug-in\eclipse\plugins\com.adobe.flexbuilder.dcrad_4.0.0.272416\dcradSwcs\4.0\locale
    files present: fds_rb.swc, fiber_rb.swc and serializers_rb.swc
    into the libs folder of my project .

  • Error resolving resource bundle "strings"

    Hi
    I'm trying to use Flex 3 to compile the Flex 2 PhotoViewer
    sample project, and encountered this error: 'Unable to resolve
    resource bundle "strings" for locale "en_US".'
    I found the Flex 2 TechNote which suggested to add
    "-use-network=false -library-path+=locale/{locale}
    -source-path+=locale/{locale} -locale=en_US" as compiler options.
    So I tried adding the above options into the build.bat files
    I can find at:
    a) C:\Program Files\Adobe\Flex Builder
    3\sdks\3.1.0\samples\explorer
    b) C:\Program Files\Adobe\Flex Builder
    3\sdks\3.1.0\templates\automation-runtimeloading-files
    but still the error persists.
    Can anyone please advise where I should change the compiler
    options? Thanks!
    Regards
    freshflex

    << Do not post the same question across a number of forums >>

  • Cannot retrieve resource bundle

    Hello all, I need some help with obtaining my resource bundle. I'm fairly
              new to JCA so please bear with me. I would like to get my resource bundle
              for my logging messages. I'm using Log4J with Weblogic 7.0 SP1.
              I had an ear file containing several resrouce adapters. Here's a sample
              makeup of the ear file:
              application.ear:
              config/log4j.properties
              config/log4j_resourceBundle.properties
              ra1.rar
              ra2.rar
              webapp1.rar.
              Each of the resource adapters and the web applications have a reference to
              the config directory within MANIFEST.MF:
              Class-Path: config
              Now at startup, I try to get my resource bundle using the following line:
              try {
              ResourceBundle bundle = ResourceBundle.getBundle(bundleName,
              Locale.getDefault(), Thread.currentThread().getContextClassLoader());
              logger.setResourceBundle(bundle);
              } catch (MissingResourceException mre) {
              System.out.println("Missing Resource Bundle : " +
              bundleName);
              Every time I try to get the resource bundle within my rar file, I keep
              getting the println statement. Within my EJBs and web applications, this
              piece of code works and is able to get the resource bundle. It's only the
              RAR file which has trouble doing so.
              Can anyone help me out here? Any help would be appreciated.
              Sundeep Kapadia
              

              Hi Sundeep Kapadia,
              "Sundeep" <[email protected]> wrote:
              >Hello all, I need some help with obtaining my resource bundle. I'm fairly
              >new to JCA so please bear with me. I would like to get my resource bundle
              >for my logging messages. I'm using Log4J with Weblogic 7.0 SP1.
              >
              >I had an ear file containing several resrouce adapters. Here's a sample
              >makeup of the ear file:
              >
              >application.ear:
              >
              > config/log4j.properties
              > config/log4j_resourceBundle.properties
              > ra1.rar
              > ra2.rar
              > webapp1.rar.
              > ...
              >
              >Each of the resource adapters and the web applications have a reference
              >to
              >the config directory within MANIFEST.MF:
              >
              > Class-Path: config
              >
              >Now at startup, I try to get my resource bundle using the following line:
              >
              > try {
              > ResourceBundle bundle = ResourceBundle.getBundle(bundleName,
              >Locale.getDefault(), Thread.currentThread().getContextClassLoader());
              > logger.setResourceBundle(bundle);
              > } catch (MissingResourceException mre) {
              > System.out.println("Missing Resource Bundle : " +
              >bundleName);
              > }
              >
              >Every time I try to get the resource bundle within my rar file, I keep
              >getting the println statement. Within my EJBs and web applications,
              >this
              >piece of code works and is able to get the resource bundle. It's only
              >the
              >RAR file which has trouble doing so.
              >
              >Can anyone help me out here? Any help would be appreciated.
              >
              >Sundeep Kapadia
              >
              >
              This exception is "Key used to locate the message stating that the message bundle
              for a resource adapter cannot be located on the classpath".
              I have used ResourceBundle in my LDAP Adapter. I have included the ResourceBundle
              inside the jar of LDAP Adapter itself. The RAR uses the classes available in the
              same JVM, So I have set the .jar file in the classpath of the Weblogic Server.
              You could use separate Resource Bundle for RAR.
              Regards,
              Balendran
              Software Engineer,
              SIP Technologies.
              www.siptech.com
              

  • Resource bundle "rft_flexautomation" for locale "en_US

    Hi,
    I have installed Flex Builder 3 and Rational Functional
    Tester 8.0.0 for automation of flex application.
    So i have executed following steps:-
    1. Start Flex Builder.
    2. Create a new Flex project.
    3. Select the Flex project in the navigator.
    4. Click Select Project > Properties > Flex Compiler.
    5. Enter the code shown in Listing 1 in the "Additional
    compiler arguments" field.
    Listing 1. Code for additional compiler arguments
    -Include-libraries "<flex builder install dir>\Flex SDK
    2
    \frameworks\libs\automation.swc" "<flex builder install
    dir\Flex SDK 2
    \frameworks\libs\automation_agent.swc" "<flex builder
    install dir>\Flex SDK 2
    \frameworks\libs\automation_charts.swc" "<functional
    tester dir>
    \Functional Tester\bin\rft.swc"
    6. Click OK to save your changes.
    7. Click OK to close the Properties dialog box.
    8. Compile your Flex sample application.
    I am getting following error :-
    Unable to resolve resource bundle "rft_flexautomation" for
    locale "en_US"
    Please help me out to resolve this error
    Thanks,
    Samidha

    I jut saw the posting today.
    Place your local folder in application root
    In project properties : Flex Compiler Argument : additional compiler argument : -source-path ../locale/{locale}
    add this.

  • Unable to resolve resource bundle "fiber"

    Hi all!
    I'm trying to use AMF with PHP in Flash Builder 4 (plug-in version) and I'm having the following error:
    Unable to resolve resource bundle "fiber" for locale "pt_PT". dss Unknown Flex Problem
    I've found a workaround here in which they recommend to add these lines too the beginning of the eclipse.ini file:
    -nl
    en_US
    Nonetheless, even adding those lines to the file, I keep having the same error.
    Anyone knows what might be going wrong?
    Best regards,
    Jorge

    If you're trying to...
    use Adobe's lifecycle/fiber/generated classes/RemoteObjectServiceWrapper
    import com.adobe.fiber.valueobjects.AvailablePropertyIterator
    import com.adobe.fiber.services.wrapper.RemoteObjectServiceWrapper;
    etc. etc., here's what I did:
    Don't add those two lines to your ini file. (At least, I'm using Flash Builder 4 and this wasn't necessary for me)
    import 2 swc folders (Under Properties -> Flex Build Path -> Library Path):
    /Applications/Adobe Flash Builder 4/plugins/com.adobe.flexbuilder.dcrad_4.0.0.272416/dcradSwcs/4.0/libs
    and
    /Applications/Adobe Flash Builder 4/plugins/com.adobe.flexbuilder.dcrad_4.0.0.272416/dcradSwcs/4.0/locale
    (the latter has the swc with the locale and the locations of these files will vary, esp. if you're not on a mac)
    HTH

  • ERROR: exception symbol "20001" not found in resource file.

    HI,
    I am trying to use the Java API to create and update Work Tasks. When I setup a situation where two users edit and update the same work task I get an exception as follows.
    07/03/02 09:58:51 ERROR: exception symbol "20001" not found in resource file.
    07/03/02 09:58:51 a042d39669c482aa:-6ee930c2:1110a6f1a2f:-7a06
    <2007-03-02 09:58:51,453> <ERROR> <oracle.bpel.services> <::>
    ORABPEL-20001
         at oracle.bpel.services.workflow.repos.driver.olite.OliteWFTask.lockTask(OliteWFTask.java:425)
         at oracle.bpel.services.workflow.repos.driver.olite.OliteWFTask.updateWFTask(OliteWFTask.java:259)
         at oracle.bpel.services.workflow.repos.driver.PersistencyService.updateWFTask(PersistencyService.java:434)
         at oracle.bpel.services.workflow.task.impl.TaskService.performPostActionOperation(TaskService.java:2958)
         at oracle.bpel.services.workflow.task.impl.TaskService.performPostActionOperation(TaskService.java:2805)
         at oracle.bpel.services.workflow.task.impl.TaskService.performPostActionOperation(TaskService.java:2780)
         at oracle.bpel.services.workflow.task.impl.TaskService.updateTask(TaskService.java:492)
         at oracle.bpel.services.workflow.task.ejb.TaskServiceBean.updateTask(TaskServiceBean.java:135)
    <<<snip>>>
    Digging away and doing a bit more debugging indicates that the exception is due to not being able to load a Resource file...
    07/03/02 09:58:51 Got Throwable : - java.lang.ExceptionInInitializerError, null
    07/03/02 09:58:51 java.lang.ExceptionInInitializerError
    07/03/02 09:58:51      at com.evermind.server.rmi.RMICall.EXCEPTION_ORIGINATES_FROM_THE_REMOTE_SERVER(RMICall.java:109)
    07/03/02 09:58:51      at com.evermind.server.rmi.RMICall.throwRecordedException(RMICall.java:125)
    07/03/02 09:58:51      at com.evermind.server.rmi.RMIClientConnection.obtainRemoteMethodResponse(RMIClientConnection.java:517)
    07/03/02 09:58:51      at com.evermind.server.rmi.RMIClientConnection.invokeMethod(RMIClientConnection.java:461)
    07/03/02 09:58:51      at com.evermind.server.rmi.RemoteInvocationHandler.invoke(RemoteInvocationHandler.java:63)
    <<<snip>>>
    ...and...
    07/03/02 09:58:51 Caused by: java.util.MissingResourceException: Can't find bundle for base name com.collaxa.cube.i18n.exception_cube, locale en
    07/03/02 09:58:51      at java.util.ResourceBundle.throwMissingResourceException(ResourceBundle.java:836)
    07/03/02 09:58:51      at java.util.ResourceBundle.getBundleImpl(ResourceBundle.java:726)
    07/03/02 09:58:51      at java.util.ResourceBundle.getBundle(ResourceBundle.java:699)
    07/03/02 09:58:51      at com.collaxa.cube.CubeException.getResourceBundle(CubeException.java:142)
    07/03/02 09:58:51      at com.collaxa.cube.CubeException.<clinit>(CubeException.java:82)
    07/03/02 09:58:51      at java.lang.Class.forName0(Native Method)
    07/03/02 09:58:51      at java.lang.Class.forName(Class.java:242)
    07/03/02 09:58:51      at com.evermind.io.ClassLoaderObjectInputStream.resolveClass(ClassLoaderObjectInputStream.java:33)
    07/03/02 09:58:51      at java.io.ObjectInputStream.readNonProxyDesc(ObjectInputStream.java:1538)
    07/03/02 09:58:51      at java.io.ObjectInputStream.readClassDesc(ObjectInputStream.java:1460)
    07/03/02 09:58:51      at java.io.ObjectInputStream.readOrdinaryObject(ObjectInputStream.java:1693)
    07/03/02 09:58:51      at java.io.ObjectInputStream.readObject0(ObjectInputStream.java:1299)
    07/03/02 09:58:51      at java.io.ObjectInputStream.readObject(ObjectInputStream.java:339)
    07/03/02 09:58:51      at com.evermind.server.rmi.RMIClientConnection.handleMethodInvocationResponse(RMIClientConnection.java:856)
    Digging through the classes gives me a pretty good guess that the missing resource is in "orabpel.jar" which is on the classpath and in the class exception_cube_bpeltest.java.
    "exception.20001.severity", "10"
    "exception.20001.type", "error"
    "exception.20001.name", "Assertion execution error."
    "exception.20001.description", "A problem occurred while converting the assertion value \"{0}\" to a number at activity \"{1}\"."
    "exception.20001.fix", "Please change the value to be a number or do a string comparison."
    What I'm looking for is the nicely formatted exception to come back from Oracle so that I can wrap it up in our own exception handling and deal with the situation nicely. Instead of a java.lang.ExceptionInInitializerError - I think I'm supposed to be getting a proper "ORABPEL-20001" exception.
    I suspect it's got something to do with classpath. But I've checked that orabpel.jar is on the classpath.
    Please help :-)
    - Richard Perfect.

    I think it is a classloader related problem. I had the same situation when updating BPEL Tasks from a custom web application using REMOTE_CLIENT (RMI) method. I have no clue which classloader loads which class so I choosed a simple workaround: extracted the com.collaxa.cube.i18n folder and its contents from orabpel.jar into the oc4j container's applib directory. This way every classloader can find the resource files. (Do not copy the orabpel.jar into applib. It causes other classloader related dependency problems. Copy only the resource files.)

  • Error: Could not find compiled resource bundle 'components' for locale 'en_US'

    We are porting a fairly large body of Flex3 code developed under FlexBuilder 3 to Flex4 under FlashBuilder 4.  Most of the conversion appears to be working fine, with one exception.  When I launch the Flex4 version, all my data interchanges with the server works.  Just as it is about to show the UI, the following error occurs:
         Error: Could not find compiled resource bundle 'components' for locale 'en_US'
    I am actually using a locale of fr_FR, but I assume it couldn't find that, reverted to en_US, failed again and then barfed.  If I look in
         ~Adobe Flash Builder 4\sdks\4.0.0\frameworks\locale\fr_FR
    I see a lot of swc files, and of course no 'components.swc'.  I believe the problem is that our Flex3 code is using mx components, and the compatibility mode is not properly handling it for some reason.  I think this is mostly from our in-house UI library.  The properties for that library (and for my main app I am testing now) have:
         - Use default SDK (currently "Flex 4.0")
         - Use Flex 3 compability mode
         - Use minimum version (Flash Player) required by the Flex SDK
         - Enable strict type checking
         - Enable warnings
    I also tried putting the compatibility flag in the mxmlc compile line, with no change in behavior.  This project is built by the following script:
    ruby scripts/concat_properties.rb -o resources.properties ^
         src/main/flex/locale/fr_common/res_myname_fr_common.properties ^
         src/main/flex/locale/fr_common/scout/res_myname_scout_fr_common.properties ^
         src/main/flex/locale/fr_fr/res_myname_fr_fr.properties ^
         ../../scout/common/src/locale/fr_common/mypals/resources.properties
    mxmlc -locale=fr_FR -source-path=. ^
         -compatibility-version=3.0.0. ^
         -static-rsls=true ^
         -include-resource-bundles=resources ^
         -output src/main/resources/bundles/mypals/fr_fr_resources.swf
    copy src\main\resources\bundles\mypals\fr_fr_resources.swf ^
         bin-debug\bundles\mypals
    What have I missed???

    You have two posts. I will try to answer each completely.  Second one first. You say I should change my build to include the framework resources.  I am afraid I am not sure which and what to do there.  We combine all our properties file into one large one, then use the following build line:
    mxmlc -locale=fr_FR,en_US -source-path=. ^
         -compatibility-version=3.0.0. ^
         -static-rsls=true ^
         -include-resource-bundles=resources ^
         -output src/main/resources/bundles/mypals/fr_fr_resources.swf
    I am assuming you are telling me to change the "-include-resource-bundles" line, but what to add?  The "sdks\4.0.0\frameworks\locale\en_US" holds 13 swf files.  I tried adding that entire folder (along with the fr_FR folder) to the project library path (in the project properties dialog), but that made no change.  I also tried reverting the library path tab back to "MX Only" instead of "MX + Spark", but again no change.
    ====================
    For your first message, I did a search for 'spark' in the entire project.  It only existed on 3 lines, each at the start of css files:
        @namespace s "library://ns.adobe.com/flex/spark";
    I had put those in based on reading needed changes to naming in CSS.  Since I was not actually using any spark ('s') components yet, I removed these lines.  The entire project now does not have the word 'spark' anywhere in it. No change in behavior (as I expected).
    I did a search for "s:" throughout the project.  That does exist in probably 100 places, but all are legitimate. Things like (xmlns:mx="http://www.adobe.com/2006/mxml") or variable names ("var matches:Object").  No reference to any s: object.  (While on the topic, why does FlashBuilder still not have a "whole word" box to limit searches??).
    Note that when I first reported this problem, the compiler was set to ONLY support fr_FR.  In fighting this, I changed it to "en_US,fr_FR" hoping that would tell the compiler to load whatever en_US items it was looking for.  We really do not want any English support in this version. (We do have another SWF created with only support for en_US, and another for en_UK, etc.  Each language is a separate node on our server, so there is no need to mix & match at runtime)
    The console shows a lot of swf loads that I do not understand...
    The console output shows (my comments after ==> indicator)
    [SWF] C:\ConnectedProducts\common-web\myname\bin-debug\myname.swf - 2,229,992 bytes after decompression
                 ==> our locale is set here, after the above load and before the next line
    Look for name file at: ./data/fr_fr/names.csv
    [SWF] C:\ConnectedProducts\common-web\myname\bin-debug\myname.swf - 21,200 bytes after decompression
    Loaded 2278 names.       ==> indicates successful load of data retrieved from server
    Loaded 154 bad words     ==> our second data set has been retrieved and loaded
    [SWF] C:\ConnectedProducts\common-web\myname\bin-debug\styles\mypals_style.swf - 58,777 bytes after decompression
    [SWF] C:\ConnectedProducts\common-web\myname\bin-debug\styles\mypals_style.swf - 322,606 bytes after decompression
    [SWF] C:\ConnectedProducts\common-web\myname\bin-debug\bundles\mypals\fr_fr_resources.swf - 595,025 bytes after decompression
    [SWF] C:\ConnectedProducts\common-web\myname\bin-debug\styles\mypals_style.swf - 202,168 bytes after decompression
        ==> not sure what this next warning means.  I'm guessing I will later have to research it and return to 'secure' comm with server, but I'm ignoring for now
    Warning: Ignoring 'secure' attribute in policy file from http://fpdownload.adobe.com/pub/swz/crossdomain.xml.  The 'secure' attribute is only permitted in HTTPS and socket policy files.  See http://www.adobe.com/go/strict_policy_files for details.
    Resource bundle loaded for locale fr_fr  ==> at this point, we appear to have our French assets loaded successfully
    [SWF] C:\ConnectedProducts\common-web\myname\bin-debug\styles\mypals_style.swf - 202,168 bytes after decompression
    [SWF] C:\ConnectedProducts\common-web\myname\bin-debug\styles\mypals_style.swf - 1,303,976 bytes after decompression
    [Unload SWF] C:\ConnectedProducts\common-web\myname\bin-debug\myname.swf  ==> some runs see this, but others do not. I expect it is a timing issue of whether it is reached or not before the crash
    [SWF] C:\ConnectedProducts\common-web\myname\bin-debug\styles\mypals_style.swf - 794,898 bytes after decompression
    [SWF] C:\ConnectedProducts\common-web\myname\bin-debug\styles\mypals_style.swf - 194,635 bytes after decompression
    [SWF] C:\ConnectedProducts\common-web\myname\bin-debug\styles\mypals_style.swf - 261,589 bytes after decompression
    ==> everything looks fine up to here.  This is then when the third call to installCompiledResourceBundles occurs
    Error: Could not find compiled resource bundle 'components' for locale 'en_US'.
        at mx.resources::ResourceManagerImpl/installCompiledResourceBundle()[E:\dev\4.0.0\frameworks \projects\framework\src\mx\resources\ResourceManagerImpl.as:340]
        at mx.resources::ResourceManagerImpl/installCompiledResourceBundles()[E:\dev\4.0.0\framework s\projects\framework\src\mx\resources\ResourceManagerImpl.as:269]
        at mx.core::FlexModuleFactory/installCompiledResourceBundles()
        at mx.core::FlexModuleFactory/docFrameHandler()
        at mx.core::FlexModuleFactory/docFrameListener()

  • Error: Could not find compiled resource bundle 'sparkEffects' for locale 'en_US'

    I have a multi-module application that I am building in Flash Builder 4.5 Premium.
    When I launch the application It starts with a basic login page and looks ok. After logging in, modules and style sheets are loaded dynamically and  I get this exception stack trace.
    Error: Could not find compiled resource bundle 'sparkEffects' for locale 'en_US'.
              at mx.resources::ResourceManagerImpl/installCompiledResourceBundle()
              at mx.resources::ResourceManagerImpl/installCompiledResourceBundles()
              at mx.core::FlexModuleFactory/installCompiledResourceBundles()
              at mx.core::FlexModuleFactory/docFrameHandler()
              at mx.core::FlexModuleFactory/docFrameListener()
    Windows 7
    Flashbuilder 4.5 Premium
    Compiled with SDK 4.5.1
    Flex 3 Compatibility Mode: No
    Framework Linkage: RSL
    SWC Project Linkage: RSL
    Can anyone help me fix this?

    I have determined at least that it is the very first style sheet that I am loading into the application that is causing the exception as I modified to not load anything else.
    Style sheets are loadingusing this method. FlexGlobals.topLevelApplication.styleManager.loadStyleDeclarations

  • Fatal Error: missing resource: java.util.PropertyResourceBundle =Urgent

    Hi all,
    In the JSP ,if I include the statement <%@ page import="jack.samples.*" %>
    it is throwing following error:
    This is the Error Message from the Exception:
         Server caught unhandled exception from servlet [BaseServlet]: Server caught
         unhandled exception from servlet [CategoryDisplay]: Server caught unhandled
         exception from servlet [jsp]: Fatal Error: missing resource: java.util.PropertyResourceBundle
         I am using Websphere 3.5 on Windows NT.
         can somebody please help me what is going wrong here ???I am stopped at
         this problem for last 2 days.
    Thanks
    Jack

    Hi,
    Finally I was able to resolve after adding this jar file to the classfile
    path of the application.
    Now,I am trying to access use linkTable.add(new Item(222,"222","333",12.33)) in JSP.
    where linkTable is a LinkedList.
    It fails giving following error:
    This is the Error Message from the Exception:
    Server caught unhandled exception from servlet [BaseServlet]: Server caught unhandled exception from servlet : Server caught unhandled exception from servlet [jsp]: Compilation of "softproduct.jsp" failed: d:\ibm\WAServer\temp\default_host\WCSServlets\_jameco_2F_softproduct_2E_jsp_jsp_2.java:824: No constructor matching Item&#40;int, java.lang.String, java.lang.String, double&#41; found in class jack.samples.Item. linkTab.add&#40;new Item&#40;2222,"222","222",22.33&#41;&#41;&#59; ^ Note: d:\ibm\WAServer\temp\default_host\WCSServlets\_jameco_2F_softproduct_2E_jsp_jsp_2.java uses or overrides a deprecated API. Recompile with "-deprecation" for details. 1 error, 1 warning
    I dont understand why it is failing to add Item object to LinkedList.
    can somebody help me in the forum in this regard.
    Thanks
    Jack

  • ERROR: exception symbol "09732" not found in resource file

    I am trying to get a client to work with workflow services. I get 'ERROR: exception symbol "09732" not found in resource file' in the output when the method queryTasks is excecuted.
    Jdeveloper 10.1.3.4 and SOA Suite 10.1.3.3.0
    Any ideas?
    Eydun
    ------------------ program ---------------------
    package project1;
    //import com.oracle.services.bpel.task.Task;
    import java.util.ArrayList;
    import oracle.bpel.services.workflow.client.IWorkflowServiceClient;
    import oracle.bpel.services.workflow.client.WorkflowServiceClientFactory;
    import oracle.bpel.services.workflow.query.ITaskQueryService;
    import oracle.bpel.services.workflow.verification.IWorkflowContext;
    import java.util.List;
    import oracle.bpel.services.workflow.repos.Ordering;
    import oracle.bpel.services.workflow.repos.Predicate;
    import oracle.bpel.services.workflow.repos.TableConstants;
    import oracle.bpel.services.workflow.task.ITaskService;
    import oracle.bpel.services.workflow.task.model.Task;
    public class Class1 {
    public Class1() {
    public void TryTask() {
    try {
    //Create JAVA WorflowServiceClient
    IWorkflowServiceClient wfSvcClient =
    WorkflowServiceClientFactory.getWorkflowServiceClient(WorkflowServiceClientFactory.WSIF_CLIENT);
    //Get the task query service
    ITaskQueryService querySvc = wfSvcClient.getTaskQueryService();
    //Login as jstein
    IWorkflowContext ctx = querySvc.authenticate("jstein",
    "welcome1",
    null, //Use default realm
    null);//Not logging in on behalf of another user
    //Set up list of columns to query
    List queryColumns = new ArrayList();
    queryColumns.add("TASKID");
    queryColumns.add("TASKNUMBER");
    queryColumns.add("TITLE");
    queryColumns.add("OUTCOME");
    //Create a predicate to query tasks that have a null outcome
    String outcome = null;
    Predicate predicate = new Predicate(TableConstants.WFTASK_OUTCOME_COLUMN,
    Predicate.OP_EQ,
    outcome);
    //Create an ordering to order tasks by task number
    Ordering ordering = new Ordering(TableConstants.WFTASK_TASKNUMBER_COLUMN
    ,true //Ascending order
    ,false //Nulls last
    //Query a list of tasks assigned to jstein
    List tasks = querySvc.queryTasks(ctx,
    queryColumns,
    null, //Do not query additional info
    ITaskQueryService.ASSIGNMENT_FILTER_MY,
    null, //No keywords
    null, //predicate, //Only tasks with no outome set
    ordering, //Order by ascending task number
    0, //Do not page the query result
    0);
    //Get the task service
    ITaskService taskSvc = wfSvcClient.getTaskService();
    //Loop over the tasks, outputting task information, and approving tasks
    for(int i = 0 ; i < tasks.size() ; i ++)
    Task task = (Task)tasks.get(i);
    int taskNumber = task.getSystemAttributes().getTaskNumber();
    String title = task.getTitle();
    String taskId = task.getSystemAttributes().getTaskId();
    //Set the outcome
    taskSvc.updateTaskOutcome(ctx,taskId,"APPROVED");
    System.out.println("Task #"+taskNumber+" ("+title+") is APPROVED");
    catch (Exception e)
    //Handle any exceptions raised here...
    System.out.println("Caught workflow exception: "+e.getMessage());
    public static void main(String[] args) {
    Class1 class1 = new Class1();
    class1.TryTask();
    ------------------- output ---------------------
    C:\java\jdk1.6.0_07\bin\javaw.exe -client -classpath C:\jdev11work\eej\mywork\Application3\Project1\classes;C:\oracle\jdev10134bpellibs\bpel\lib\bpm-infra.jar;C:\oracle\jdev10134bpellibs\bpel\lib\orabpel-common.jar;C:\oracle\jdev10134bpellibs\bpel\lib\orabpel-thirdparty.jar;C:\oracle\jdev10134bpellibs\j2ee\home\jazncore.jar;C:\oracle\jdev10134bpellibs\j2ee\home\oc4jclient.jar;C:\oracle\jdev10134bpellibs\lib\xml.jar;C:\oracle\jdev10134bpellibs\lib\xmlparserv2.jar;C:\oracle\jdev10134bpellibs\bpel\system\services\config;C:\oracle\jdev10134bpellibs\webservices\lib\orasaaj.jar;C:\oracle\jdev10134bpellibs\webservices\lib\soap.jar;C:\oracle\jdev10134bpellibs\bpel\system\services\lib\bpm-services.jar;C:\oracle\jdev10134bpellibs\bpel\system\services\schema;C:\oracle\jdev10134bpellibs\bpel\lib\olite40.jar;C:\oracle\jdev10134bpellibs\jdbc\lib\ojdbc14.jar;C:\oracle\jdev10134bpellibs\bpel\lib\orabpel.jar;C:\oracle\jdev10134bpellibs\wsclient_extended.jar project1.Class1
    <::> WorkflowService:: TaskQueryService.authenticate(): called. user = jstein identityContext = null onBehalfOfUser = null
    <::> WorkflowService:: VerificationService.authenticateUser: attempting for user = jstein identityContext = null
    <ISConfiguration::load> Found Configuration=Configuration: realmName=jazn.com properties:{} has 1 providers:
    <ISConfiguration::load>      Provider: service=Identity providerType=JAZN providerName=XML Provider properties:{usersPropertiesFile=users-properties.xml}
    <ISConfiguration::load>      
    <ISConfiguration::validate> Validate configuration=Configuration: realmName=jazn.com properties:{} has 1 providers:
    <ISConfiguration::validate>      Provider: service=Identity providerType=JAZN providerName=XML Provider properties:{usersPropertiesFile=users-properties.xml}
    <ISConfiguration::validate>      
    <ISConfiguration::save> Save IdentityService configuration file into /C:/oracle/jdev10134bpellibs/bpel/system/services/config/is_config.xml
    <ServiceFactory::getService> Provider type is JAZN
    <ServiceFactory::getService> JAZN's ProviderType=XML
    <XMLIdentityService::init> Load provider initialization begin
    <AbstractXMLProvider::loadUsers> XMLProvider::load() Load users from source:users-properties.xml
    <AbstractXMLProvider::loadPrincipals> AbstractXMLProvider::load() Loading users begins
    <BPMUserImpl::<init>> Constacted user=cdickens
    <XMLProvider::addUserToCache> User cdickens is loaded ....
    <BPMUserImpl::<init>> Constacted user=wfaulk
    <XMLAuthenticationService::init> Load provider initialization complete
    <XMLAuthorizationService::init> Load provider initialization begin
    <AbstractXMLProvider::loadUsers> XMLProvider::load() Load users from source:users-properties.xml
    <AbstractXMLProvider::loadPrincipals> AbstractXMLProvider::load() Loading users begins
    <BPMUserImpl::<init>> Constacted user=cdickens
    <XMLProvider::addUserToCache> User cdickens is loaded ....
    <BPMUserImpl::<init>> Constacted user=wfaulk
    <XMLProvider::addUserToCache> User wfaulk is loaded ....
    <BPMUserImpl::<init>> Constacted user=sfitzger
    <XMLProvider::addUserToCache> User sfitzger is loaded ....
    <BPMUserImpl::<init>> Constacted user=jstein
    <XMLProvider::addUserToCache> User jstein is loaded ....
    <BPMUserImpl::<init>> Constacted user=istone
    <XMLProvider::addUserToCache> User istone is loaded ....
    <BPMUserImpl::<init>> Constacted user=jcooper
    <XMLProvider::addUserToCache> User jcooper is loaded ....
    <BPMUserImpl::<init>> Constacted user=mtwain
    <XMLProvider::addUserToCache> User mtwain is loaded ....
    <BPMUserImpl::<init>> Constacted user=jlondon
    <XMLProvider::addUserToCache> User jlondon is loaded ....
    <BPMUserImpl::<init>> Constacted user=ltolstoy
    <XMLProvider::addUserToCache> User ltolstoy is loaded ....
    <BPMUserImpl::<init>> Constacted user=fkafka
    <XMLProvider::addUserToCache> User fkafka is loaded ....
    <BPMUserImpl::<init>> Constacted user=szweig
    <XMLProvider::addUserToCache> User szweig is loaded ....
    <BPMUserImpl::<init>> Constacted user=mmitch
    <XMLProvider::addUserToCache> User mmitch is loaded ....
    <BPMUserImpl::<init>> Constacted user=jausten
    <XMLProvider::addUserToCache> User jausten is loaded ....
    <BPMUserImpl::<init>> Constacted user=achrist
    <XMLProvider::addUserToCache> User achrist is loaded ....
    <BPMUserImpl::<init>> Constacted user=rsteven
    <XMLProvider::addUserToCache> User rsteven is loaded ....
    <BPMUserImpl::<init>> Constacted user=cdoyle
    <XMLProvider::addUserToCache> User cdoyle is loaded ....
    <BPMUserImpl::<init>> Constacted user=wshake
    <XMLProvider::addUserToCache> User wshake is loaded ....
    <BPMUserImpl::<init>> Constacted user=guest
    <XMLProvider::addUserToCache> User guest is loaded ....
    <BPMUserImpl::<init>> Constacted user=bpeladmin
    <XMLProvider::addUserToCache> User bpeladmin is loaded ....
    <BPMUserImpl::<init>> Constacted user=default
    <XMLProvider::addUserToCache> User default is loaded ....
    <AbstractXMLProvider::loadPrincipals> AbstractXMLProvider::load() Loading users ends
    <AbstractXMLProvider::loadRoles> XMLProvider::load() Load roles from source:users-properties.xml
    <AbstractXMLProvider::loadPrincipals> AbstractXMLProvider::load() Loading users begins
    <XMLProvider::addRoleToCache> Role BPMAnalyst is loaded .....
    <XMLProvider::addRoleToCache> Role BPMWorkflowAdmin is loaded .....
    <AbstractXMLProvider::loadPrincipals> AbstractXMLProvider::load() Loading users ends
    <AbstractXMLProvider::loadPrincipals> AbstractXMLProvider::load() Loading users begins
    <XMLProvider::addRoleToCache> Role LoanAgentGroup is loaded .....
    <XMLProvider::addRoleToCache> Role LoanAnalyticGroup is loaded .....
    <XMLProvider::addRoleToCache> Role LoanAnalyticGroup is loaded .....
    <XMLProvider::addRoleToCache> Role Supervisor is loaded .....
    <XMLProvider::addRoleToCache> Role California is loaded .....
    <XMLProvider::addRoleToCache> Role WesternRegion is loaded .....
    <XMLProvider::addRoleToCache> Role EasternRegion is loaded .....
    <AbstractXMLProvider::loadPrincipals> AbstractXMLProvider::load() Loading users ends
    <XMLAuthorizationService::init> Load provider initialization complete
    <XMLAuthenticationService::authenticateUser> XMLAuthenticationService::authenticateUser():: begin
    <BPMServiceJAZNBase::getRealm> BPMAuthenticationServiceImpl::getRealm():: begin
    <BPMServiceJAZNBase::getRealm> Realm=[Realm: jazn.com]
    <BPMServiceJAZNBase::getRealm> BPMAuthenticationServiceImpl::getRealm():: end
    <XMLAuthenticationService::authenticateUser> XMLAuthenticationService:: call authenticate
    <XMLAuthenticationService::authenticateUser> XMLAuthenticationService:: user is authenticated!
    <XMLAuthenticationService::authenticateUser> XMLAuthenticationService::authenticateUser():: end
    <ServiceFactory::getService> Provider type is JAZN
    <ServiceFactory::getService> JAZN's ProviderType=XML
    <XMLIdentityService::init> Load provider initialization begin
    <AbstractXMLProvider::loadUsers> XMLProvider::load() Load users from source:users-properties.xml
    <AbstractXMLProvider::loadPrincipals> AbstractXMLProvider::load() Loading users begins
    <BPMUserImpl::<init>> Constacted user=cdickens
    <XMLProvider::addUserToCache> User cdickens is loaded ....
    <BPMUserImpl::<init>> Constacted user=wfaulk
    <XMLProvider::addUserToCache> User wfaulk is loaded ....
    <BPMUserImpl::<init>> Constacted user=sfitzger
    <XMLProvider::addUserToCache> User sfitzger is loaded ....
    <BPMUserImpl::<init>> Constacted user=jstein
    <XMLProvider::addUserToCache> User jstein is loaded ....
    <BPMUserImpl::<init>> Constacted user=istone
    <XMLProvider::addUserToCache> User istone is loaded ....
    <BPMUserImpl::<init>> Constacted user=jcooper
    <XMLProvider::addUserToCache> User jcooper is loaded ....
    <BPMUserImpl::<init>> Constacted user=mtwain
    <XMLProvider::addUserToCache> User mtwain is loaded ....
    <BPMUserImpl::<init>> Constacted user=jlondon
    <XMLProvider::addUserToCache> User jlondon is loaded ....
    <BPMUserImpl::<init>> Constacted user=ltolstoy
    <XMLProvider::addUserToCache> User ltolstoy is loaded ....
    <BPMUserImpl::<init>> Constacted user=fkafka
    <XMLProvider::addUserToCache> User fkafka is loaded ....
    <BPMUserImpl::<init>> Constacted user=szweig
    <XMLProvider::addUserToCache> User szweig is loaded ....
    <BPMUserImpl::<init>> Constacted user=mmitch
    <XMLProvider::addUserToCache> User mmitch is loaded ....
    <BPMUserImpl::<init>> Constacted user=jausten
    <XMLProvider::addUserToCache> User jausten is loaded ....
    <BPMUserImpl::<init>> Constacted user=achrist
    <XMLProvider::addUserToCache> User achrist is loaded ....
    <BPMUserImpl::<init>> Constacted user=rsteven
    <XMLProvider::addUserToCache> User rsteven is loaded ....
    <BPMUserImpl::<init>> Constacted user=cdoyle
    <XMLProvider::addUserToCache> User cdoyle is loaded ....
    <BPMUserImpl::<init>> Constacted user=wshake
    <XMLProvider::addUserToCache> User wshake is loaded ....
    <BPMUserImpl::<init>> Constacted user=guest
    <XMLProvider::addUserToCache> User guest is loaded ....
    <BPMUserImpl::<init>> Constacted user=bpeladmin
    <XMLProvider::addUserToCache> User bpeladmin is loaded ....
    <BPMUserImpl::<init>> Constacted user=default
    <XMLProvider::addUserToCache> User default is loaded ....
    <AbstractXMLProvider::loadPrincipals> AbstractXMLProvider::load() Loading users ends
    <AbstractXMLProvider::loadRoles> XMLProvider::load() Load roles from source:users-properties.xml
    <AbstractXMLProvider::loadPrincipals> AbstractXMLProvider::load() Loading users begins
    <XMLProvider::addRoleToCache> Role BPMAnalyst is loaded .....
    <XMLProvider::addRoleToCache> Role BPMWorkflowAdmin is loaded .....
    <AbstractXMLProvider::loadPrincipals> AbstractXMLProvider::load() Loading users ends
    <AbstractXMLProvider::loadPrincipals> AbstractXMLProvider::load() Loading users begins
    <XMLProvider::addRoleToCache> Role LoanAgentGroup is loaded .....
    <XMLProvider::addRoleToCache> Role LoanAnalyticGroup is loaded .....
    <XMLProvider::addRoleToCache> Role LoanAnalyticGroup is loaded .....
    <XMLProvider::addRoleToCache> Role Supervisor is loaded .....
    <XMLProvider::addRoleToCache> Role California is loaded .....
    <XMLProvider::addRoleToCache> Role WesternRegion is loaded .....
    <XMLProvider::addRoleToCache> Role EasternRegion is loaded .....
    <AbstractXMLProvider::loadPrincipals> AbstractXMLProvider::load() Loading users ends
    <XMLIdentityService::init> Load provider initialization complete
    <XMLAuthenticationService::init> Load provider initialization begin
    <AbstractXMLProvider::loadUsers> XMLProvider::load() Load users from source:users-properties.xml
    <AbstractXMLProvider::loadPrincipals> AbstractXMLProvider::load() Loading users begins
    <BPMUserImpl::<init>> Constacted user=cdickens
    <XMLProvider::addUserToCache> User cdickens is loaded ....
    <BPMUserImpl::<init>> Constacted user=wfaulk
    <XMLProvider::addUserToCache> User wfaulk is loaded ....
    <BPMUserImpl::<init>> Constacted user=sfitzger
    <XMLProvider::addUserToCache> User sfitzger is loaded ....
    <BPMUserImpl::<init>> Constacted user=jstein
    <XMLProvider::addUserToCache> User jstein is loaded ....
    <BPMUserImpl::<init>> Constacted user=istone
    <XMLProvider::addUserToCache> User istone is loaded ....
    <BPMUserImpl::<init>> Constacted user=jcooper
    <XMLProvider::addUserToCache> User jcooper is loaded ....
    <BPMUserImpl::<init>> Constacted user=mtwain
    <XMLProvider::addUserToCache> User mtwain is loaded ....
    <BPMUserImpl::<init>> Constacted user=jlondon
    <XMLProvider::addUserToCache> User jlondon is loaded ....
    <BPMUserImpl::<init>> Constacted user=ltolstoy
    <XMLProvider::addUserToCache> User ltolstoy is loaded ....
    <BPMUserImpl::<init>> Constacted user=fkafka
    <XMLProvider::addUserToCache> User fkafka is loaded ....
    <BPMUserImpl::<init>> Constacted user=szweig
    <XMLProvider::addUserToCache> User szweig is loaded ....
    <BPMUserImpl::<init>> Constacted user=mmitch
    <XMLProvider::addUserToCache> User mmitch is loaded ....
    <BPMUserImpl::<init>> Constacted user=jausten
    <XMLProvider::addUserToCache> User jausten is loaded ....
    <BPMUserImpl::<init>> Constacted user=achrist
    <XMLProvider::addUserToCache> User achrist is loaded ....
    <BPMUserImpl::<init>> Constacted user=rsteven
    <XMLProvider::addUserToCache> User rsteven is loaded ....
    <BPMUserImpl::<init>> Constacted user=cdoyle
    <XMLProvider::addUserToCache> User cdoyle is loaded ....
    <BPMUserImpl::<init>> Constacted user=wshake
    <XMLProvider::addUserToCache> User wshake is loaded ....
    <BPMUserImpl::<init>> Constacted user=guest
    <XMLProvider::addUserToCache> User guest is loaded ....
    <BPMUserImpl::<init>> Constacted user=bpeladmin
    <XMLProvider::addUserToCache> User bpeladmin is loaded ....
    <BPMUserImpl::<init>> Constacted user=default
    <XMLProvider::addUserToCache> User default is loaded ....
    <AbstractXMLProvider::loadPrincipals> AbstractXMLProvider::load() Loading users ends
    <AbstractXMLProvider::loadRoles> XMLProvider::load() Load roles from source:users-properties.xml
    <AbstractXMLProvider::loadPrincipals> AbstractXMLProvider::load() Loading users begins
    <XMLProvider::addRoleToCache> Role BPMAnalyst is loaded .....
    <XMLProvider::addRoleToCache> Role BPMWorkflowAdmin is loaded .....
    <AbstractXMLProvider::loadPrincipals> AbstractXMLProvider::load() Loading users ends
    <AbstractXMLProvider::loadPrincipals> AbstractXMLProvider::load() Loading users begins
    <XMLProvider::addRoleToCache> Role LoanAgentGroup is loaded .....
    <XMLProvider::addRoleToCache> Role LoanAnalyticGroup is loaded .....
    <XMLProvider::addRoleToCache> Role LoanAnalyticGroup is loaded .....
    <XMLProvider::addRoleToCache> Role Supervisor is loaded .....
    <XMLProvider::addRoleToCache> Role California is loaded .....
    <XMLProvider::addRoleToCache> Role WesternRegion is loaded .....
    <XMLProvider::addRoleToCache> Role EasternRegion is loaded .....
    <AbstractXMLProvider::loadPrincipals> AbstractXMLProvider::load() Loading users ends
    <XMLAuthenticationService::init> Load provider initialization complete
    <XMLAuthorizationService::init> Load provider initialization begin
    <AbstractXMLProvider::loadUsers> XMLProvider::load() Load users from source:users-properties.xml
    <AbstractXMLProvider::loadPrincipals> AbstractXMLProvider::load() Loading users begins
    <BPMUserImpl::<init>> Constacted user=cdickens
    <XMLProvider::addUserToCache> User cdickens is loaded ....
    <BPMUserImpl::<init>> Constacted user=wfaulk
    <XMLProvider::addUserToCache> User wfaulk is loaded ....
    <BPMUserImpl::<init>> Constacted user=sfitzger
    <XMLProvider::addUserToCache> User sfitzger is loaded ....
    <BPMUserImpl::<init>> Constacted user=jstein
    <XMLProvider::addUserToCache> User jstein is loaded ....
    <BPMUserImpl::<init>> Constacted user=istone
    <XMLProvider::addUserToCache> User istone is loaded ....
    <BPMUserImpl::<init>> Constacted user=jcooper
    <XMLProvider::addUserToCache> User jcooper is loaded ....
    <BPMUserImpl::<init>> Constacted user=mtwain
    <XMLProvider::addUserToCache> User mtwain is loaded ....
    <BPMUserImpl::<init>> Constacted user=jlondon
    <XMLProvider::addUserToCache> User jlondon is loaded ....
    <BPMUserImpl::<init>> Constacted user=ltolstoy
    <XMLProvider::addUserToCache> User ltolstoy is loaded ....
    <BPMUserImpl::<init>> Constacted user=fkafka
    <XMLProvider::addUserToCache> User fkafka is loaded ....
    <BPMUserImpl::<init>> Constacted user=szweig
    <XMLProvider::addUserToCache> User szweig is loaded ....
    <BPMUserImpl::<init>> Constacted user=mmitch
    <XMLProvider::addUserToCache> User mmitch is loaded ....
    <BPMUserImpl::<init>> Constacted user=jausten
    <XMLProvider::addUserToCache> User jausten is loaded ....
    <BPMUserImpl::<init>> Constacted user=achrist
    <XMLProvider::addUserToCache> User achrist is loaded ....
    <BPMUserImpl::<init>> Constacted user=rsteven
    <XMLProvider::addUserToCache> User rsteven is loaded ....
    <BPMUserImpl::<init>> Constacted user=cdoyle
    <XMLProvider::addUserToCache> User cdoyle is loaded ....
    <BPMUserImpl::<init>> Constacted user=wshake
    <XMLProvider::addUserToCache> User wshake is loaded ....
    <BPMUserImpl::<init>> Constacted user=guest
    <XMLProvider::addUserToCache> User guest is loaded ....
    <BPMUserImpl::<init>> Constacted user=bpeladmin
    <XMLProvider::addUserToCache> User bpeladmin is loaded ....
    <BPMUserImpl::<init>> Constacted user=default
    <XMLProvider::addUserToCache> User default is loaded ....
    <AbstractXMLProvider::loadPrincipals> AbstractXMLProvider::load() Loading users ends
    <AbstractXMLProvider::loadRoles> XMLProvider::load() Load roles from source:users-properties.xml
    <AbstractXMLProvider::loadPrincipals> AbstractXMLProvider::load() Loading users begins
    <XMLProvider::addRoleToCache> Role BPMAnalyst is loaded .....
    <XMLProvider::addRoleToCache> Role BPMWorkflowAdmin is loaded .....
    <AbstractXMLProvider::loadPrincipals> AbstractXMLProvider::load() Loading users ends
    <AbstractXMLProvider::loadPrincipals> AbstractXMLProvider::load() Loading users begins
    <XMLProvider::addRoleToCache> Role LoanAgentGroup is loaded .....
    <XMLProvider::addRoleToCache> Role LoanAnalyticGroup is loaded .....
    <XMLProvider::addRoleToCache> Role LoanAnalyticGroup is loaded .....
    <XMLProvider::addRoleToCache> Role Supervisor is loaded .....
    <XMLProvider::addRoleToCache> Role California is loaded .....
    <XMLProvider::addRoleToCache> Role WesternRegion is loaded .....
    <XMLProvider::addRoleToCache> Role EasternRegion is loaded .....
    <AbstractXMLProvider::loadPrincipals> AbstractXMLProvider::load() Loading users ends
    <XMLAuthorizationService::init> Load provider initialization complete
    <BPMAuthorizationServiceImpl::lookupUser> BPMAuthorizationServiceImpl::lookupUser():: begin, userName=jstein
    <BPMServiceJAZNBase::getRealm> BPMAuthenticationServiceImpl::getRealm():: begin
    <BPMServiceJAZNBase::getRealm> Realm=[Realm: jazn.com]
    <BPMServiceJAZNBase::getRealm> BPMAuthenticationServiceImpl::getRealm():: end
    <BPMUserImpl::<init>> User=jstein was created
    <BPMAuthorizationServiceImpl::lookupUser> User is found, user=RealmUser: jstein
    <BPMIdentityImpl::getActions> BPMIdentityImpl::getActions()
    <BPMIdentityImpl::getAllGrantedRealmRoles> Identity has the following granted realmRoles=[RealmRole: BPMWorkflowReassign, RealmRole: BPMWorkflowSuspend, RealmRole: BPMAnalyst]
    <RoleProperties::load> Resource oracle/tip/pc/services/identity/role.properties is loaded, s_properties={BPMWorkflowSuspend=SUSPEND,RESUME, BPMWorkflowAdmin=ADMIN, BPMWorkflowReassign=REASSIGN, BPMPublic=VIEW_WORK_LIST,ACQUIRE,WITHDRAW,ESCALATE,ERROR,PUSH_BACK,RENEW,RELEASE,REQUEST_INFO,SUBMIT_INFO,CUSTOM,VIEW_TASK_HISTORY,VIEW_SUB_TASKS,UPDATE,ADHOC_ROUTE,OUTCOME_UPDATE_ROUTE, BPMSystemAdmin=, BPMWorkflowViewHistory=VIEW_TASK_HISTORY,VIEW_PROCESS_HISTORY, BPMAnalyst=VIEW_REPORTS}
    <BPMIdentityImpl::getActions> Identity has the following roles:[BPMWorkflowReassign, BPMWorkflowSuspend, BPMAnalyst]
    <BPMIdentityImpl::getActions> Role: BPMWorkflowReassign
    <BPMIdentityImpl::getActions> Actions: [OUTCOME_UPDATE_ROUTE, REQUEST_INFO, CUSTOM, VIEW_SUB_TASKS, WITHDRAW, PUSH_BACK, ACQUIRE, ADHOC_ROUTE, RENEW, UPDATE, SUBMIT_INFO, VIEW_TASK_HISTORY, ERROR, VIEW_WORK_LIST, RELEASE, ESCALATE, REASSIGN]
    <BPMIdentityImpl::getActions> Role: BPMWorkflowSuspend
    <BPMIdentityImpl::getActions> Actions: [RESUME, OUTCOME_UPDATE_ROUTE, REQUEST_INFO, CUSTOM, VIEW_SUB_TASKS, WITHDRAW, PUSH_BACK, SUSPEND, ACQUIRE, ADHOC_ROUTE, RENEW, UPDATE, SUBMIT_INFO, VIEW_TASK_HISTORY, ERROR, VIEW_WORK_LIST, RELEASE, ESCALATE]
    <BPMIdentityImpl::getActions> Role: BPMAnalyst
    <BPMIdentityImpl::getActions> Actions: [OUTCOME_UPDATE_ROUTE, REQUEST_INFO, CUSTOM, VIEW_SUB_TASKS, WITHDRAW, PUSH_BACK, ACQUIRE, ADHOC_ROUTE, RENEW, UPDATE, SUBMIT_INFO, VIEW_TASK_HISTORY, ERROR, VIEW_WORK_LIST, RELEASE, ESCALATE, VIEW_REPORTS]
    <BPMIdentityImpl::getActions> Identity has the following actions:[RESUME, OUTCOME_UPDATE_ROUTE, REQUEST_INFO, CUSTOM, VIEW_SUB_TASKS, WITHDRAW, PUSH_BACK, SUSPEND, ACQUIRE, RENEW, ADHOC_ROUTE, UPDATE, SUBMIT_INFO, VIEW_TASK_HISTORY, VIEW_WORK_LIST, ERROR, ESCALATE, RELEASE, REASSIGN, VIEW_REPORTS]
    <BPMPrincipalImpl::getAttribute> Attribute=languagePreference is not set. Populate principal=jstein
    <::> WorkflowService:: VerificationService.authenticateUser: successful for user = jstein identityContext = null
    <::> WorkflowService:: TaskQueryService.authenticate(): completed. token = c9pHcmBFtc4DWR0OLJvz8rFEzdme6Pp2TZRWe5OrGZEHVSHodTb5cYfhEt/ZgboPeVZZzz9FipCUi4EMWqyqKIXfQxTW8YdqoisIJyA4TUhFa2SyU0fNHjDEy9sm/JSYqqFy/nvYWsjO2nPXdsbbnpLuHUwoM2IZ+D/mTaN6pgcIPS+iyKbVgV3wBqFiqGHbuasTyn7SE6ZBnw3Xr5QOHQ==
    <::> VerificationService.createWorkflowContext: Request NOT authenticated by WS-Security framework
    <BPMAuthorizationServiceImpl::lookupUser> BPMAuthorizationServiceImpl::lookupUser():: begin, userName=jstein
    <BPMUserImpl::<init>> User=jstein was created
    <BPMAuthorizationServiceImpl::lookupUser> User is found, user=RealmUser: jstein
    <BPMPrincipalImpl::getAttribute> Attribute=languagePreference is not set. Populate principal=jstein
    <::> WorkflowService:: TaskQueryService.queryTasks(): called. token = c9pHcmBFtc4DWR0OLJvz8rFEzdme6Pp2TZRWe5OrGZEHVSHodTb5cYfhEt/ZgboPeVZZzz9FipCUi4EMWqyqKIXfQxTW8YdqoisIJyA4TUhFa2SyU0fNHjDEy9sm/JSYqqFy/nvYWsjO2nPXdsbbnpLuHUwoM2IZ+D/mTaN6pgcIPS+iyKbVgV3wBqFiqGHbuasTyn7SE6ZBnw3Xr5QOHQ== ctxUser = jstein displayColumns = TASKID, TASKNUMBER, TITLE, OUTCOME optionalInformation = assignmentFilter = My keywords = null predicate = null ordering = wfn.taskNumber ASC startRow = 0 endRow = 0
    <::> WorkflowService:: TaskQueryService.getCombinedPredicate(): called. token = c9pHcmBFtc4DWR0OLJvz8rFEzdme6Pp2TZRWe5OrGZEHVSHodTb5cYfhEt/ZgboPeVZZzz9FipCUi4EMWqyqKIXfQxTW8YdqoisIJyA4TUhFa2SyU0fNHjDEy9sm/JSYqqFy/nvYWsjO2nPXdsbbnpLuHUwoM2IZ+D/mTaN6pgcIPS+iyKbVgV3wBqFiqGHbuasTyn7SE6ZBnw3Xr5QOHQ== ctxUser = jstein assignmentFilter = My keywords = null predicate = null
    <::> WorkflowService:: TaskQueryService.getAssignmentFilterPredicate(): called. token = c9pHcmBFtc4DWR0OLJvz8rFEzdme6Pp2TZRWe5OrGZEHVSHodTb5cYfhEt/ZgboPeVZZzz9FipCUi4EMWqyqKIXfQxTW8YdqoisIJyA4TUhFa2SyU0fNHjDEy9sm/JSYqqFy/nvYWsjO2nPXdsbbnpLuHUwoM2IZ+D/mTaN6pgcIPS+iyKbVgV3wBqFiqGHbuasTyn7SE6ZBnw3Xr5QOHQ== ctxUser = jstein assignmentFilter = My
    <::> WorkflowService:: TaskQueryService.getAssignmentFilterPredicate(): completed. assignmentFilterPred = ((wfn.taskId=wfa.taskId AND wfa.isGroup =? AND ( wfa.assignee IN (?))) OR ( ( wfn.originalAssigneeUser IN (?)) AND wfn.taskId=wfa.taskId) AND wfn.isGroup =?) AND ( wfn.identityContext IS NULL )
    <::> WorkflowService:: TaskQueryService.getCombinedPredicate(): completed. combinedPredicate = ((wfn.taskId=wfa.taskId AND wfa.isGroup =? AND ( wfa.assignee IN (?))) OR ( ( wfn.originalAssigneeUser IN (?)) AND wfn.taskId=wfa.taskId) AND wfn.isGroup =?) AND ( wfn.identityContext IS NULL )
    ERROR: exception symbol "09732" not found in resource file.
    <::> ORABPEL-09732
    <::>
    <::>
    <::>      at oracle.bpel.services.workflow.repos.PersistencyDriver.getNonTransactionService(PersistencyDriver.java:231)
    <::>      at oracle.bpel.services.workflow.repos.PersistencyDriver.getInstance(PersistencyDriver.java:152)
    <::>      at oracle.bpel.services.workflow.query.impl.TaskQueryService.queryTasks(TaskQueryService.java:213)
    <::>      at oracle.bpel.services.workflow.query.impl.TaskQueryServiceWSIF.queryTasks(TaskQueryServiceWSIF.java:172)
    <::>      at oracle.bpel.services.workflow.query.client.TaskQueryServiceWSIFClient.queryTasks(TaskQueryServiceWSIFClient.java:66)
    <::>      at oracle.bpel.services.workflow.query.client.AbstractDOMTaskQueryServiceClient.queryTasks(AbstractDOMTaskQueryServiceClient.java:180)
    <::>      at project1.Class1.TryTask(Class1.java:55)
    <::>      at project1.Class1.main(Class1.java:91)
    <::> Caused by: java.lang.NullPointerException
    <::>      at oracle.bpel.services.workflow.repos.PersistencyDriver.getDatasourceName(PersistencyDriver.java:177)
    <::>      at oracle.bpel.services.workflow.repos.PersistencyDriver.initNonTransactionDataSource(PersistencyDriver.java:198)
    <::>      at oracle.bpel.services.workflow.repos.PersistencyDriver.getNonTransactionService(PersistencyDriver.java:224)
    <::>      ... 7 more
    <2008-10-14 23:59:00,952> <ERROR> <oracle.bpel.services> <::>
    java.lang.NullPointerException
         at oracle.bpel.services.workflow.repos.PersistencyDriver.getDatasourceName(PersistencyDriver.java:177)
         at oracle.bpel.services.workflow.repos.PersistencyDriver.initNonTransactionDataSource(PersistencyDriver.java:198)
         at oracle.bpel.services.workflow.repos.PersistencyDriver.getNonTransactionService(PersistencyDriver.java:224)
         at oracle.bpel.services.workflow.repos.PersistencyDriver.getInstance(PersistencyDriver.java:152)
         at oracle.bpel.services.workflow.query.impl.TaskQueryService.queryTasks(TaskQueryService.java:213)
         at oracle.bpel.services.workflow.query.impl.TaskQueryServiceWSIF.queryTasks(TaskQueryServiceWSIF.java:172)
         at oracle.bpel.services.workflow.query.client.TaskQueryServiceWSIFClient.queryTasks(TaskQueryServiceWSIFClient.java:66)
         at oracle.bpel.services.workflow.query.client.AbstractDOMTaskQueryServiceClient.queryTasks(AbstractDOMTaskQueryServiceClient.java:180)
         at project1.Class1.TryTask(Class1.java:55)
         at project1.Class1.main(Class1.java:91)
    Caught workflow exception:
    Process exited with exit code 0.

    Although the versions 10.1.3.4 and 10.1.3.3 are close and should be able to use 10.1.3.4 JDev for most 10.1.3.3 development, the human tasks is the one exception. 10.1.3.3 had a few bugs fixed therefore the jar file used in JDev 10.1.3.4 may not be compatible with 10.1.3.3.
    I would either use JDev 10.1.3.3 or upgrade SOA Suite to 10.1.3.4
    cheers
    James

  • [ERROR] could not find source for resource bundle modules.

    We are in the process of upgrading our flex application from SDK3.6 to SDK4.5.0.17899.
    Flexmojos version used for compilation is 3.9.
    The flex library project is complied with SDK4.5.0 version but BUILD is not getting SUCESS from maven.
    The following is the reason is showing and unable to find out the root cause.
    [ERROR] could not find source for resource bundle modules.
    Can you please help me out.
    Thanks,

    Copying
    /Software/FB\ Eclipse\ Plugin/Adobe\ Flex\ Builder\ 3\ Plug-in/sdks/2.0.1/frameworks/locale/en_US/charts_rb.swc into
    the 3.5 SDK directory
    /usr/local/lib/flex_sdk/3.5.0/frameworks/locale/en_US
    solves the problem.
    Not sure why as the charts_rb.swc comes from Flex 2.0

  • Error: could not find source for resource bundle charts

    I am trying to upgrade from Flex SDk 3.4 to 3.5.
    I have copied the Data Visualisation SWCs under libs, locale and rlsls folders as suggested by adobe.
    I get the following error when building the application
    flex-library:
         [java] Loading configuration file /usr/local/lib/flex_sdk/3.5.0/frameworks/flex-config.xml
         [java] Error: could not find source for resource bundle charts.
         [java]
    What am I missing? Any help is highly appreciated.
    Thanks

    Copying
    /Software/FB\ Eclipse\ Plugin/Adobe\ Flex\ Builder\ 3\ Plug-in/sdks/2.0.1/frameworks/locale/en_US/charts_rb.swc into
    the 3.5 SDK directory
    /usr/local/lib/flex_sdk/3.5.0/frameworks/locale/en_US
    solves the problem.
    Not sure why as the charts_rb.swc comes from Flex 2.0

  • Custom error messages - resource bundle

    Greetings everyone!
    My JDev version is:  11.1.2.3.0
    I've seen several threads in OTN and outside about this topic, but they seem confused (or may be it's me that is missing something).
    I have this current situation, when because of the presence of a FK in the database, when a try to delete a certain record, a popUp shows up ORA-02292 error code. I don't want to enable cascade deletion (i don't want anything to be deleted in that case at all), so i was trying to customize the error message. I've created a java class and declared it as a resource bundle in the Model project. The content is this:
    public class CustomErrorMessages extends ListResourceBundle {
        private static final Object[][] sMessageStrings = new String[][] {
    {"25014", "Another user has made a modification to this record meanwhile. Please cancel your changes!"},
        {"CREDITOR", "This party is assigned as a creditor/debtor in this contract. It cannot be deleted!"},
        {"DEBTOR", "This party is assigned as a creditor/debtor in this contract. It cannot be deleted!"}
        /**Return String Identifiers and corresponding Messages in a two-dimensional array.
        protected Object[][] getContents() {
            return sMessageStrings;
    25014 - refers to JBO-25014 and it works fine. Now CREDITOR/DEBTOR are the FK mentioned above. If i put 02292  or ORA-02292  instead of them it doesn't work at all. If i let them just like this, it works if i run the Application Module only, but not when i run the application. What does it mean?
    Also, i've noticed that the ViewController project has also a "Resource Bundle" section in the properties, but the content is disabled. Should i do any kind of configuration to make it work?
    Thank you in advance.

    Hi,
    this blog is as close as it gets to your requirement
    http://www.jobinesh.com/2011/03/customizing-business-components-error.html
    Frank

Maybe you are looking for

  • Song tracks are not downloaded properly from iTunes Store: they are not added to the playlists, and eat disk space

    Hi, Yesterday I wanted to upgrade my wife's iPhone (5, 16 GB) from iOS 7.0.6 to iOS 7.1. She had only 500 MB of free space, and 1.9 GB was needed, so I decided to temporarily remove a number of songs from her music library. After this operation there

  • How to fire Chunked POST Requests.

    Hi, Can anyone please tell me how to implement a servlet which can fire chunked POST request to the server. I have tried implementing such a servlet but it does not send the request in a chunked format. Please let me know what headers should this POS

  • Extension which will provide Custom Soa components from component palette.

    I was asked to created an extension which will aid in helping the development faster and enable following standards strictly. So I have to create an extension which will add the following functionality. I have to add custom components in component pa

  • HTTP Authentication problem

    http authentication giving some errors, portion of oracle authentication working fine. Please help me. Error is: Warning: Cannot modify header information - headers already sent by (output started at d:\inetpub\wwwroot\vars.php:5) in d:\inetpub\wwwro

  • Invalid volume directory count/unable to repair

    My computer (iMac G5, OS 10.5.5) has been running slowly. When I run Disk Utility, I get an "invalid volume file count" and "invalid volume directory count" message, and an error message that the volume HD needs to be repaired. I can run Verify Disk