Localizing Error Messages in OIM

I was wondering if someone can tell me how to localize error messages in OIM. Is it as simple as adding the error codes to the property file, similar to UDFs?
thanks

There are out of the box error messages in OIM that i see in the Design Console.Example:
Key - 395
Code - DOBJ.USR_INVALID_EMAIL_FORMAT
Description - Specified Email Format is Invalid.
I'm assuming this is what is shown to the user when they do not enter in a valid email value. Is it possible to localize/internationalize that to another language like Spanish or French?

Similar Messages

  • Display Custom Error Message in OIM 11g

    Hi,
    I'm trying to display an error message from a validation event handler but seems that am missing something. When the "oracle.iam.platform.kernel.ValidationFailedException" is thrown from a validation handler an error message is displayed: "An error occurred". If an error code is provided (see code below) then the message looks like: "An error occurred. The corresponding error code is ERR-0001". I guess that some resource bungle with corresponding messages should be provided.
    the code used:
    package test;
    public class UserGeneralValidationHandler implements oracle.iam.platform.kernel.spi.ValidationHandler
    @Override
    public void validate(long processId, long eventId, Orchestration orchestration)
                   throws ValidationException
    String errorCode = "ERR-0001";
    String message = "Simple validation message.";
    ValidationFailedException ex = new ValidationFailedException(message);
    ex.setProcessID(processId);
    ex.setErrorCode(errorCode);
    throw ex;
    Q:
    1.What is missing for complete solution?
    2.What is the algorithm that used by OIM to find default or non default resource bundle?
    3.How to change out-of-box validation messages? For a sample "The organization ABC does not exist." message is shown if non existing organization is provided during user creation and I'd like to have a different one.
    Regards
    Serge

    rename OIMUI.jar  to OIMUI.zip
    find logging_en and loggin.properties.
    Modify the "IAM-2050512" error message with your custom message
    Find Agent and agent_en.properties.
    Find Note[ERROR_SUBMITTING_REQUEST].text.  Modify the message. Make sure the message must be the same with in logging.properties("IAM_2050512")
    Deploy
    change the  OIMUI.zip to jar
    replace the existing OIMUI.jar
    login to weblogic  and redeploy OIM (oim.ear)
    no need to restart OIM server.
    Test:
    create a request in web console again, you must see the custom message when you hit the submit button
    hope this helps.
    -rad

  • Nexaweb Error Message in OIM 11.1.1.5

    Hi experts,
    I am using OIM 11.1.1.5.
    I am not able to open up the deployment manager export utility. It is giving Nexaweb Error Message.
    The Internet Explorer version is: 9

    Make sure java is enabled in your browser. To verify it's not the issue from your OIM side. Open deployment using xming or xmanager first and see what happens. If you are getting same issue there as well. create a symbolinc link to java in your /home/username/.mozilla folder and recjeck using xming.
    regards,
    GP

  • Display Error Message in OIM 11g

    Hi
    Requirement: When we create user manually if middle name is empty then show error message as "Middle Name is null. Please enter value"
    Steps I have done so far
    1. Created below event handler custom code which extends ValidationHandler and specified the logic inside validate() which will throw error message.
    package mypackage;
    import java.io.Serializable;
    import java.util.HashMap;
    import oracle.iam.platform.context.ContextAware;
    import oracle.iam.platform.kernel.ValidationException;
    import oracle.iam.platform.kernel.ValidationFailedException;
    import oracle.iam.platform.kernel.spi.ValidationHandler;
    import oracle.iam.platform.kernel.vo.BulkOrchestration;
    import oracle.iam.platform.kernel.vo.Orchestration;
    public class MiddleNameValidation implements ValidationHandler {
         @Override
         public void validate(long arg0, long arg1, Orchestration orchestration)
                   throws ValidationException, ValidationFailedException {
              // TODO Auto-generated method stub
              HashMap<String, Serializable> parameters = orchestration
                        .getParameters();
              String middleName = getParameterValue(parameters, "Middle Name");
              if (isNullOrEmpty(middleName)) {
                   String msg = "NOTE[MIDDLE_NAME_MISSING].text:Middle Name is Missing:"; // Custom error message which should be displayed in console
                   ValidationFailedException excep = new ValidationFailedException(msg);
                   throw excep;
         @Override
         public void validate(long arg0, long arg1, BulkOrchestration arg2)
                   throws ValidationException, ValidationFailedException {
              // TODO Auto-generated method stub
         @Override
         public void initialize(HashMap<String, String> arg0) {
              // TODO Auto-generated method stub
         private String getParameterValue(HashMap<String, Serializable> parameters,
                   String key) {
              String value = (parameters.get(key) instanceof ContextAware) ? (String) ((ContextAware) parameters
                        .get(key)).getObjectValue()
                        : (String) parameters.get(key);
              System.out.println("VALUE::" + value);
              return value;
         private boolean isNullOrEmpty(String str) {
              return str == null || str.isEmpty();
    }2. Registered this code as plugin with out errors.
    plugin.xml
    <?xml version="1.0" encoding="UTF-8" ?>
    <oimplugins>
    <plugins pluginpoint="oracle.iam.platform.kernel.spi.EventHandler">
    <plugin pluginclass="mypackage.MiddleNameValidation" version="1.0" name="MiddleNameValidation" />
    </plugins>
    </oimplugins>
    3. Imported eventhandlers.xml file to MDS.
    <?xml version='1.0' encoding='utf-8'?>
    <eventhandlers>
    <action-handler class="com.example.custompph.CustomPreProcessEventHandler" entity-type="User" operation="CREATE" name="CustomPreProcessEventHandler" stage="preprocess" order="1000" sync="TRUE"/>
    *<action-handler class="mypackage.MiddleNameValidation" entity-type="User" operation="CREATE" name="MiddleNameValidation" stage="preprocess" order="1000" sync="TRUE"/>*
    </eventhandlers>
    4. Purged the Cache
    But when I tested the same it is not throwing error message but it says ClassCast exception in the logs.
    Am I following the correct steps?
    Pls help.
    <Jul 28, 2011 4:45:42 AM EDT> <Error> <oracle.iam.identity.usermgmt.impl> <IAM-3050030> <An exception occurred while performing the operation.
    java.lang.ClassCastException: mypackage.MiddleNameValidation
         at oracle.iam.platform.kernel.impl.OrchProcessData.runPreProcessEvents(OrchProcessData.java:868)
         at oracle.iam.platform.kernel.impl.OrchProcessData.runEvents(OrchProcessData.java:627)
         at oracle.iam.platform.kernel.impl.OrchProcessData.executeEvents(OrchProcessData.java:220)
         at oracle.iam.platform.kernel.impl.OrchestrationEngineImpl.resumeProcess(OrchestrationEngineImpl.java:665)
         at oracle.iam.platform.kernel.impl.OrchestrationEngineImpl.process(OrchestrationEngineImpl.java:435)
         at oracle.iam.platform.kernel.impl.OrchestrationEngineImpl.orchestrate(OrchestrationEngineImpl.java:381)
         at oracle.iam.platform.kernel.impl.OrchestrationEngineImpl.orchestrate(OrchestrationEngineImpl.java:334)
         at oracle.iam.identity.usermgmt.impl.UserManagerImpl.create(UserManagerImpl.java:635)
         at oracle.iam.identity.usermgmt.api.UserManagerEJB.createx(Unknown Source)
         at sun.reflect.NativeMethodAccessorImpl.invoke0(Native Method)
         at sun.reflect.NativeMethodAccessorImpl.invoke(NativeMethodAccessorImpl.java:39)
         at sun.reflect.DelegatingMethodAccessorImpl.invoke(DelegatingMethodAccessorImpl.java:25)
         at java.lang.reflect.Method.invoke(Method.java:597)
         at com.bea.core.repackaged.springframework.aop.support.AopUtils.invokeJoinpointUsingReflection(AopUtils.java:310)
         at com.bea.core.repackaged.springframework.aop.framework.ReflectiveMethodInvocation.invokeJoinpoint(ReflectiveMethodInvocation.java:182)
         at com.bea.core.repackaged.springframework.aop.framework.ReflectiveMethodInvocation.proceed(ReflectiveMethodInvocation.java:149)
         at com.bea.core.repackaged.springframework.aop.support.DelegatingIntroductionInterceptor.doProceed(DelegatingIntroductionInterceptor.java:131)
         at com.bea.core.repackaged.springframework.aop.support.DelegatingIntroductionInterceptor.invoke(DelegatingIntroductionInterceptor.java:119)
         at com.bea.core.repackaged.springframework.aop.framework.ReflectiveMethodInvocation.proceed(ReflectiveMethodInvocation.java:171)
         at com.bea.core.repackaged.springframework.jee.spi.MethodInvocationVisitorImpl.visit(MethodInvocationVisitorImpl.java:37)
         at weblogic.ejb.container.injection.EnvironmentInterceptorCallbackImpl.callback(EnvironmentInterceptorCallbackImpl.java:54)
         at com.bea.core.repackaged.springframework.jee.spi.EnvironmentInterceptor.invoke(EnvironmentInterceptor.java:50)
         at com.bea.core.repackaged.springframework.aop.framework.ReflectiveMethodInvocation.proceed(ReflectiveMethodInvocation.java:171)
         at com.bea.core.repackaged.springframework.aop.interceptor.ExposeInvocationInterceptor.invoke(ExposeInvocationInterceptor.java:89)
         at com.bea.core.repackaged.springframework.aop.framework.ReflectiveMethodInvocation.proceed(ReflectiveMethodInvocation.java:171)
         at com.bea.core.repackaged.springframework.aop.support.DelegatingIntroductionInterceptor.doProceed(DelegatingIntroductionInterceptor.java:131)
         at com.bea.core.repackaged.springframework.aop.support.DelegatingIntroductionInterceptor.invoke(DelegatingIntroductionInterceptor.java:119)
         at com.bea.core.repackaged.springframework.aop.framework.ReflectiveMethodInvocation.proceed(ReflectiveMethodInvocation.java:171)
         at com.bea.core.repackaged.springframework.aop.framework.JdkDynamicAopProxy.invoke(JdkDynamicAopProxy.java:204)
         at $Proxy319.createx(Unknown Source)
         at oracle.iam.identity.usermgmt.api.UserManager_nimav7_UserManagerRemoteImpl.createx(UserManager_nimav7_UserManagerRemoteImpl.java:1089)
         at sun.reflect.NativeMethodAccessorImpl.invoke0(Native Method)
         at sun.reflect.NativeMethodAccessorImpl.invoke(NativeMethodAccessorImpl.java:39)
         at sun.reflect.DelegatingMethodAccessorImpl.invoke(DelegatingMethodAccessorImpl.java:25)
         at java.lang.reflect.Method.invoke(Method.java:597)
         at weblogic.ejb.container.internal.RemoteBusinessIntfProxy.invoke(RemoteBusinessIntfProxy.java:84)
         at $Proxy184.createx(Unknown Source)
         at sun.reflect.NativeMethodAccessorImpl.invoke0(Native Method)
         at sun.reflect.NativeMethodAccessorImpl.invoke(NativeMethodAccessorImpl.java:39)
         at sun.reflect.DelegatingMethodAccessorImpl.invoke(DelegatingMethodAccessorImpl.java:25)
         at java.lang.reflect.Method.invoke(Method.java:597)
         at org.springframework.aop.support.AopUtils.invokeJoinpointUsingReflection(AopUtils.java:307)
         at org.springframework.aop.framework.JdkDynamicAopProxy.invoke(JdkDynamicAopProxy.java:198)
         at $Proxy312.createx(Unknown Source)
         at oracle.iam.identity.usermgmt.api.UserManagerDelegate.create(Unknown Source)
         at oracle.iam.identitytaskflow.backing.taskflows.createuser.CreateUserView.saveUserOperation(CreateUserView.java:521)
         at sun.reflect.NativeMethodAccessorImpl.invoke0(Native Method)
         at sun.reflect.NativeMethodAccessorImpl.invoke(NativeMethodAccessorImpl.java:39)
         at sun.reflect.DelegatingMethodAccessorImpl.invoke(DelegatingMethodAccessorImpl.java:25)
         at java.lang.reflect.Method.invoke(Method.java:597)
         at com.sun.el.parser.AstValue.invoke(AstValue.java:157)
         at com.sun.el.MethodExpressionImpl.invoke(MethodExpressionImpl.java:283)
         at org.apache.myfaces.trinidad.component.MethodExpressionMethodBinding.invoke(MethodExpressionMethodBinding.java:46)
         at com.sun.faces.application.ActionListenerImpl.processAction(ActionListenerImpl.java:102)
         at org.apache.myfaces.trinidad.component.UIXCommand.broadcast(UIXCommand.java:190)
         at oracle.adf.view.rich.component.fragment.UIXRegion.broadcast(UIXRegion.java:148)
         at oracle.adf.view.rich.component.fragment.UIXInclude.broadcast(UIXInclude.java:97)
         at oracle.adf.view.rich.component.fragment.ContextSwitchingComponent$1.run(ContextSwitchingComponent.java:91)
         at oracle.adf.view.rich.component.fragment.ContextSwitchingComponent._processPhase(ContextSwitchingComponent.java:309)
         at oracle.adf.view.rich.component.fragment.ContextSwitchingComponent.broadcast(ContextSwitchingComponent.java:94)
         at oracle.adf.view.rich.component.fragment.UIXInclude.broadcast(UIXInclude.java:91)
         at oracle.adfinternal.view.faces.lifecycle.LifecycleImpl.broadcastEvents(LifecycleImpl.java:812)
         at oracle.adfinternal.view.faces.lifecycle.LifecycleImpl._executePhase(LifecycleImpl.java:292)
         at oracle.adfinternal.view.faces.lifecycle.LifecycleImpl.execute(LifecycleImpl.java:177)
         at javax.faces.webapp.FacesServlet.service(FacesServlet.java:265)
         at weblogic.servlet.internal.StubSecurityHelper$ServletServiceAction.run(StubSecurityHelper.java:227)
         at weblogic.servlet.internal.StubSecurityHelper.invokeServlet(StubSecurityHelper.java:125)
         at weblogic.servlet.internal.ServletStubImpl.execute(ServletStubImpl.java:300)
         at weblogic.servlet.internal.TailFilter.doFilter(TailFilter.java:27)
         at weblogic.servlet.internal.FilterChainImpl.doFilter(FilterChainImpl.java:57)
         at oracle.help.web.rich.OHWFilter.doFilter(Unknown Source)
         at weblogic.servlet.internal.FilterChainImpl.doFilter(FilterChainImpl.java:57)
         at oracle.adf.model.servlet.ADFBindingFilter.doFilter(ADFBindingFilter.java:191)
         at weblogic.servlet.internal.FilterChainImpl.doFilter(FilterChainImpl.java:57)
         at oracle.adfinternal.view.faces.webapp.rich.RegistrationFilter.doFilter(RegistrationFilter.java:97)
         at org.apache.myfaces.trinidadinternal.webapp.TrinidadFilterImpl$FilterListChain.doFilter(TrinidadFilterImpl.java:421)
         at oracle.adfinternal.view.faces.activedata.AdsFilter.doFilter(AdsFilter.java:60)
         at org.apache.myfaces.trinidadinternal.webapp.TrinidadFilterImpl$FilterListChain.doFilter(TrinidadFilterImpl.java:421)
         at org.apache.myfaces.trinidadinternal.webapp.TrinidadFilterImpl._doFilterImpl(TrinidadFilterImpl.java:247)
         at org.apache.myfaces.trinidadinternal.webapp.TrinidadFilterImpl.doFilter(TrinidadFilterImpl.java:157)
         at org.apache.myfaces.trinidad.webapp.TrinidadFilter.doFilter(TrinidadFilter.java:92)
         at weblogic.servlet.internal.FilterChainImpl.doFilter(FilterChainImpl.java:57)
         at oracle.iam.platform.auth.web.PwdMgmtNavigationFilter.doFilter(PwdMgmtNavigationFilter.java:116)
         at weblogic.servlet.internal.FilterChainImpl.doFilter(FilterChainImpl.java:57)
         at oracle.iam.platform.auth.web.OIMAuthContextFilter.doFilter(OIMAuthContextFilter.java:101)
         at weblogic.servlet.internal.FilterChainImpl.doFilter(FilterChainImpl.java:57)
         at oracle.adf.library.webapp.LibraryFilter.doFilter(LibraryFilter.java:160)
         at weblogic.servlet.internal.FilterChainImpl.doFilter(FilterChainImpl.java:57)
         at oracle.dms.wls.DMSServletFilter.doFilter(DMSServletFilter.java:330)
         at weblogic.servlet.internal.FilterChainImpl.doFilter(FilterChainImpl.java:57)
         at weblogic.servlet.internal.RequestEventsFilter.doFilter(RequestEventsFilter.java:27)
         at weblogic.servlet.internal.FilterChainImpl.doFilter(FilterChainImpl.java:57)
         at weblogic.servlet.internal.WebAppServletContext$ServletInvocationAction.doIt(WebAppServletContext.java:3684)
         at weblogic.servlet.internal.WebAppServletContext$ServletInvocationAction.run(WebAppServletContext.java:3650)
         at weblogic.security.acl.internal.AuthenticatedSubject.doAs(AuthenticatedSubject.java:321)
         at weblogic.security.service.SecurityManager.runAs(SecurityManager.java:121)
         at weblogic.servlet.internal.WebAppServletContext.securedExecute(WebAppServletContext.java:2268)
         at weblogic.servlet.internal.WebAppServletContext.execute(WebAppServletContext.java:2174)
         at weblogic.servlet.internal.ServletRequestImpl.run(ServletRequestImpl.java:1446)
         at weblogic.work.ExecuteThread.execute(ExecuteThread.java:201)
         at weblogic.work.ExecuteThread.run(ExecuteThread.java:173)
    >
    <Jul 28, 2011 4:45:42 AM EDT> <Error> <oracle.iam.identitytaskflow.logging> <BEA-000000> <IAM-3060023>

    you must specify the xmlns for the eventhandlers tag in the step 3, like this one
    <eventhandlers
    xmlns="http://www.oracle.com/schema/oim/platform/kernel"
    xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance"
    xsi:schemaLocation="http://www.oracle.com/schema/oim/platform/kernel orchestration-handlers.xsd">

  • ITunes 9.0 - Not localized Error Message

    I downloaded/upgraded my iTunes twice and both times it popped up an error message saying "This version of iTunes has not been correctly localized for this language. Please run the English version". Help? I want my 5000 songs back

    Same here. Upgraded from software update, then tried to fix via DLing from the website. No good. There is another person who started a thread re: same error and he had success trashing files then reinstalling. However, he was on Snow Leopard 10.6. It seems it may be a Tiger problem, as we are all on 10.4.11.
    Any ideas? I miss my tunes

  • Locale Error Message After Todays Update [Solved]

    I experienced an error message regarding something about cannot locale en-US.UTF8 after an update and reboot today.
    I got rid of the error message by uncommenting:
    en_US.UTF-8 UTF-8 
    en_US ISO-8859-1 
    in
    /etc/locale.gen
    Prior to fix:
    $ locale
    locale: Cannot set LC_CTYPE to default locale: No such file or directory
    locale: Cannot set LC_ALL to default locale: No such file or directory
    After fix:
    LANG=en_US.UTF-8
    LC_CTYPE="en_US.UTF-8"
    LC_NUMERIC="en_US.UTF-8"
    LC_TIME="en_US.UTF-8"
    LC_COLLATE="en_US.UTF-8"
    LC_MONETARY="en_US.UTF-8"
    LC_MESSAGES=C
    LC_PAPER="en_US.UTF-8"
    LC_NAME="en_US.UTF-8"
    LC_ADDRESS="en_US.UTF-8"
    LC_TELEPHONE="en_US.UTF-8"
    LC_MEASUREMENT="en_US.UTF-8"
    LC_IDENTIFICATION="en_US.UTF-8"
    LC_ALL=
    Didn't have time to check into this issue in much detail and would appreciate any additional info.

    Additional info?
    glibc has been upgraded today. You probably haven't merged the pacnew files.

  • How can I get localized Error messages for basic errors ?

    I'm running JDK 1.6
    and I wrote :
    Locale.setDefault(Locale.CANADA_FRENCH);
                    try
                    java.io.File f = new java.io.File("c:/temp/xxnonexistentx");
                    byte aa[] = new byte[2];
                    java.io.FileInputStream fis = new java.io.FileInputStream(f);
                    fis.read(aa);
                    fis.close();
                    catch (Exception e)
                        System.err.println(" Err " + e.getLocalizedMessage());
            }And I get
    Err c:\temp\xxx (The system cannot find the file specified)why do I always get the US English error message. This is really a basic error, why does it seem that there is no localized version in French ?
    I also tried with
            Locale.setDefault(Locale.GERMAN);But I always get English �ber Alles !
    WHY ?

    As a developper I prefer my error messages in my
    langage. .NET does it (if I want), I like it. Do you
    know that O'Reilly & Flanagan Java reference book
    (1500 pages) in French sells very well in France ?
    Not so much the English version.As I said, I sympathize to some extent. With this part, yes.
    End-users do see some error messages (this file not
    found is an example), you want, me and all other
    people, to translate this type of messages in how
    many languages, each separately, over and over ?If I'm an end-user I don't want to see Java error messages. Or if I must, I only want to see them in the context of "This error message occurred, please pass it on to the technical support people when you call them". So, given that, I don't care if the system only produces German messages. This part I don't sympathize with.

  • Please elaborate on localized error messages

    hi;
    i would appreciate it if someone can ellaborate on the localized messages subject (localized and customized - not the builtin one of the RI).
    i see there is a <message-bundle> element in the faces config. if i put it there (with my bundle path), will the faces implementation call the setMesageBundle on the Application object? it does not seem to do that.
    any help is appreciated
    thanks in advance

    This seems to work OK for me, so it may be down to where you are placing your resource bundle. I've got mine in the root of WEB-INF/classes and the message-bundle tag in faces-config.xml just specifies the base name (i.e. without path info or .properties extension).

  • How to customize an Error Message

    Hi Gurus,
    Does anyone knows how can I customize the error messages?
    In example, I'm getting the "???en.DOBJ.UPDATE_PERMISSION_DENIED???" error message when a user try to change the user details and do not have permission. But I would like to show a friendly message like "You do not have permission to change this object" or something else.
    Thanks in advance.

    Hi bigboss,
    Thank you for your help. But in which format I need to input the error translation in xlWebAdmin.properties? Something like "DOBJ.UPDATE_PERMISSION_DENIED = You do not have permission to update this object" ?
    Just to let you know, I need to show more user friendly error messages for OIM default error messages.
    Cheers.

  • Localized Errors (xerces, xml-schema)

    i would like to get localized error messages (ex. in german) after parsing a xml-schema with the SchemaFactory.
    i've tried out the typical way with "Locale.SetDefault" and e.getLocaleMessage" in a selfwritten ErrorHandler but this doesn't work ...

    i would like to get localized error messages (ex. in
    german) after parsing a xml-schema with the
    SchemaFactory.
    i've tried out the typical way with
    "Locale.SetDefault" and e.getLocaleMessage" in a
    selfwritten ErrorHandler but this doesn't work ...I have the same problem as above. Is there a way to customise schema validation messages?
    example
    cvc-attribute.4: The value ''{2}'' of attribute ''{1}'' on element ''{0}'' is not valid with respect to its fixed '{'value constraint'}'. The attribute must have a value of ''{3}''.
    to become
    Element "{0}" value is invalid. Choose from "{3}".
    thanks

  • Error message severity not translated correct when locale is changed

    We have a shell page displaying different task flows within a dynamic region. The shell page f:view tag has locale="#{LocaleManager.currentLocale}" to allow programmatic change of locale. Most of the flows uses the locale from the browser request (e.g. Danish) but some pages has fixed locale (en_US) and will always be rendered with this locale (don't ask me why. It's a requirement). For those fixed locale pages, the expression #{LocaleManager.currentLocale} always returns "en_US". It works nice, but we have a strange problem with the translation of error messages displayed by validators/converters. E.g. if a character is entered in a number field, the user will see the usual popup error message like "*Error:* The value is not a number". The message part of the error message is translated but the severity message prefix ("Error:" in the example), seems to be translated and cached once per session. If the error message popup has been displayed once in a different locale, then after change of locale, the severity message prefix continues to use the translation from the first display. The message part of the message is translated perfectly.
    Let me give an example:
    1) User enters da_DK page and enters a invalid number. Error message displayed: "*Fejl:* Værdien er ikke et tal"
    2) User enters en_US page and enters a invalid number. Error message displayed: "*Fejl:* The value is not a number"
    If the examples is reversed, then the error messages will be:
    2) "*Error:* The value is not a number"
    1) "*Error:* Værdien er ikke et tal"
    Do anyone know how to clear this translated severity message prefix, when locale is changed? Or is there a better way to overcome this issue?
    We're using JDeveloper and ADF 11.1.2.2 and are able to reproduce the issue on the embedded weblogic.

    Hi again
    ok I added another locale that ships with flash builder, and encoutered the same problem
    whenever I change the locale, the error tooltips are gone
    I was even able to fix both new locales by assigning the the validators custom error messages using resourceManager.getString() like i assign a value to all other UI strings in the application
    the default locale which is specified in the project compiler's parameters is en_US
    and my final question to you is:
    is there a best practice regarding localizing & managing the error massages Flex SDK uses?
    what is the internal path to the resource bundles that flex uses to display errors?
    it seems like it makes more sense to copy and edit an existing list of errors, rather then blow up the application code...
    can you please share your view on the matter
    thank you for your help
    Yariv

  • Error message: local root folder does not exist

    Greetings,
    I'm working on a MacPro 2x2.66Ghz, running DW from CS2 and
    through a strange combination of keyboard keystrokes while cleaning
    my keyboard yesterday I inadvertantly renamed my hard drive "-OX"
    from it's default. I can't seem to remember what the default name
    of my hard drive was, but i think it was simply "Macintosh". I've
    renamed it that, but on launching DW for the first time today I got
    an error message saying that "The local root folder, web_content,
    does not exist" and it gave me the option to manage sites and set
    my local root folder again. Is there a way to re-establish my local
    root folder for every site that I currently manage in one swipe, or
    do I have to go in and manually do this for each and every Site
    within my Files panel?
    Thanks for your ideas,
    Pedro

    Actually, it solved one issue but seems to have created
    another! So, at least now my Sites are all working okay with
    respect to a local root folder. But let's say I open an .html file
    by double-clicking it in the Files panel. With that file active if
    I choose Preview in Browser I get a "File Not Found" error message
    from Firefox.... even though it looks like the path to that file is
    correct.
    One thing I notice about the path in the address bar of
    Firefox is that there are 3 forward-slashes after the file: bit at
    the beginning of the line.
    For example, the page generating the error has this address:
    file:///Macintosh%20HD/Users/peter/Sites/MySite/web_content/index_vertical.html
    If you notice carefully there are 3 slashes at the beginning
    of the line. If I go to "Manage Sites" I have the settings set to
    "links relative to document" and my root folder and images folder
    show the proper locations. What have I done?
    The error message also says the following in the details
    section: Firefox can't find the file at /Macintosh
    HD/Users/peter/Sites/MySite/web_content/index_vertical.html.
    so there's a forward-slash before the hard drive.... is that
    okay?
    Thanks for your ideas!
    Pedro

  • Regarding error message in a different locale

    Hi
    I have 2 applicaions .
    one contains task flow containing 1 jsff having one input text required property set to true.
    other contains page template having 2 links to switch language based on locale.
    If I use another adf application and import task flow it works well.
    but if I import task flow into webcenter portal application as adf jar file and insert TF as region then it gives error message always in english and ok button in appropriate locale.
    If I use another adf application and import task flow it works well.
    can you suggest some solution for this.
    JDEV - 11.4

    Yes I am using default error messages generated by adf framework . for ex. required="true"
    for changing locale my code is:
      public void setLocaleEnUS() {
        // change the locale
        Locale newLocale = new Locale("en", "US");
        FacesContext fctx=FacesContext.getCurrentInstance();
        fctx.getViewRoot().setLocale(newLocale);
        setPreferredLocale(FacesContext.getCurrentInstance().getViewRoot().getLocale());
      public void setLocaleZhHK() {
        // change the locale
        Locale newLocale = new Locale("zh", "TW");
        FacesContext fctx=FacesContext.getCurrentInstance();
        fctx.getViewRoot().setLocale(newLocale);
        setPreferredLocale(FacesContext.getCurrentInstance().getViewRoot().getLocale());
      }

  • Error in local system;message is not complete--- in Solman 4.0

    Hello Solman Gurus,
             After importing SP 13 in Solution Manager 4.0 , whenever i am trying from help--> create support message ; i am getting "ERROR IN LOCAL SYSTEM; MESSAGE <MSG NO> IS NOT COMPLETE "
    i have seen these threads
    ERROR when Trying to create support message in satellite system
    ERROR when Trying to Create Support Message in Satillite system
    create support message
    but they are saying about Satelliate system not solman
    Please help if you could
    regards
    Naveen

    Naveen,
      Check if the UserId that is creating the message in SolMan via Help->Create Support Message has roles SAP_SUPPDESK_CREATE and SAP_SV_FDB_NOTIF_BC_ADMIN (the profiles of the roles must be generated, all the authorization objects should be green).
      I have SolMan 4.0 SP 13 too, when I delete these authorizations from my userid, I have the same error.
    Let me know if you still have the error.
    Regards,
    Raquel.

  • Error message while updating Motion. 5.0.2: The file "InkBleed03.mov" couldn't be saved in the folder "Particle Images.localized".

    While trying to update Motion 5.0.2 I continuously reviece this follwoing error message.
    The file “InkBleed03.mov” couldn’t be saved in the folder “Particle Images.localized”.
    Motion will not allow me to update.
    Running Mac OS X Version 10.7.2  Lion on a MacBook Pro
    Processor 2.8 GHz Intel Core 2 Duo
    Any ideas?

    Hi Frank,
    Thanks.
    My HD is a "normal" HD, so I guess it's HFS+. (According to Disk Utility it is Mac OS Extended (Journaled).
    The NAS is WD MyBook Live Duo. I just plugged into my Time Machine.
    I am relocating using Aperture "relocate originals for project" under the File tab.
    Ahh, thanks for the answer to question 1.
    Yes, I am trying to relocate them, but tried different things to find the problem.
    And the problem seems to be that when an image gets an extra attribute (when it's downloaded from the internet, when it is comes from a mail message) then Aperture seems not to be able to move the file.
    I.e. Aperture presumeably asks the Finder or kernel to perform this task, and this then fails because of the extra attirbutes that were set.
    I now found a way of manually removing the extra attributes, but that is a pain.
    Think of this normal workflow:
    - someone sends me an email containing images
    - I move the images to my Desktop
    - I then import the images into Aperture
    - I then decide to relocate my images for that project to my NAS
    Then is when this problem occurs.
    So I just tried to relocate to another place on my HD.
    That works fine.
    I looked again at the error message.
    And it says "could not set attributes com.apple.metadata:kMDItemDownloadedDate on destination file descriptor" .
    So, yes, it seems like it has to do with the NAS not supporting setting the extra attributes.
    And as long as there are no extra attributes on an image, there is no problem.
    (Not completely true, but I have another thread about that)
    Thanks Frank, I have to digest this a bit.
    Regards
    Jan

Maybe you are looking for

  • Problem in first request's navigation in JSF

    Hi all I want to redirect to first page of application thru faces-config. Please have look at the code flow 1. First time request comes to our Java filter, this filter forward the controle to our facelets (i.e. dispatcher.xhtml). 2. From this facelet

  • Data recognition during transfer of data from cube to cube.

    Dear All,         If I have 2 cubes in such a way that 2nd cube pulls data from the first cube. But in the first cube data is there till March 2007 and the second  has pulled data till february 2007. But in a certain incident the ticks in "Data Mart

  • Printing one day, can't the next.

    Printer just says "Looking for Hewlett-Packard hp color LaserJet 2500" forever. Printing via Airport base station to an HP color laserjet, which has worked well for years. One year with this setup. Nothing has changed that I can think of. When repair

  • 3D in Photoshop CC

    Every time I open up Photoshop CC it tells me that my Graphic Card is out of date. How do I fix this? I'm on a macbook pro purchase  in 2011.

  • Best Way To Change Drive Mapping

    We have an L: Drive which currently points to \\server1\library We're moving that library to server2. The problem is that not everyone is mapped to L: because only a certain amount of people need it. Here's the issue....we don't know who has that map