Adfc-config.xml

I'm trying to set backingBean scope for a declarative component...however get the following error:
Target Unreachable, identifier 'backingBeanScope' resolved to null
adfc-config.xml was not originally created in my project so I added a TaskFlow and Jdev created it. Is there something I need to do either in the main project or the declarative component project to make this work?
Thanks,
Kris

Hi,
I think the adfc-config.xml isn't the solution to your problem its only the visible part of the it. Backing bean scope is an ADFc functionality and until you add ADF Page Flows to your project (in which case adfc-config gets created) this scope is available.
Frank

Similar Messages

  • ADF:How to use NavigationHandler in Phase-Listener with adfc-config.xml

    Hi,
    in our application a user should be navigated to the login-page, when he tries to navigate directly to a page where he has no right for or if the session is expired.
    Our navigation is complete in the adfc-config.xml. So I created a phase-listener, which is called by the adf-settings.xml.
    Inside the phase-listener I'm checking the rights. If the user doesn't have the needed rights, he should be linked to the login page. But how can I do that?
    Some days ago our navigation has been complete in the faces-config.xml. But now we moved the navigation to the adfc-config.xml, because we are sure that it's better. E.g. for using the dialog framework.
    In the face-config.xml we had also the call of the phase-listener. There we did the forwarding like this and it worked:
    FacesContext facesContext = FacesContext.getCurrentInstance();
    facesContext.getApplication().getNavigationHandler().handleNavigation(facesContext, null, "login_page");But now I think I have to use the ADFContext somehow, or?
    So how can I do that with the adfc-config.xml?
    Thanks a lot for your help,
    Bastian
    I'm using JDeveloper 11g Release 1 (11.1.1.3.0)

    Hello Frank,
    thanks for your answer, but it doesn't really help me, because I'm a newbie, sorry.
    Does your answer mean, that I should leave the call of the phase-listener in the faces-config and then I would also have access to the login-page, which is in the adfc-config?
    Or does it mean, that I call now my phase-listener by adf-settings but don't have to change the phase-listener itself and can still use my code (FacesContext...)? But that's not working. I get no error but he is also not redirecting.
    Maybe my problem starts on an earlier point.
    Is it better to create all pages in the adfc-config or faces-config? (Maybe you have a good reference for reading about such a basic discussion)
    I thought adfc-config would be the better one. But there I'm not able to redirect to another page (login) if somebody calls a special page without rights for example.
    So my second basic question would be about the relation of adfc-config, faces-config and ADFContext and FacesContext.
    Because I think it's not a short answer I hope you could give me also for this a reference so that I can read these basics myself.
    Thanks a lot for helping a newbie becoming better :-)
    Bastian

  • PageFlow in adfc-config.xml or in task-flow defination not working.

    I want to share the data across multiple pages for a given taskflow. Hence kept the bean in taskFlow scope in adfc-config.xml. But bean is not getting instantiated when i try to print its value in one of page in taskflow.
    <af:outputText value="#{pageFlowScope.PricingProfileSelector}"/>
    I tried to put the bean defination in task flow defination and removed from adfc-config.xml. but still not able to instantiate it.
    If the change the scope to session or request, the bean gets instantiated.
    Any suggestion.!!

    I am using any variable at all for now. This is my scenario.
    <managed-bean id="__34">
    <managed-bean-name id="__31">profileSelector</managed-bean-name>
    <managed-bean-class id="__33">oracle.communications.brm.pdc.ui.view.selector.PricingProfileSelector</managed-bean-class>
    <managed-bean-scope id="__32">pageFlow</managed-bean-scope>
    </managed-bean>
    <managed-bean id="__73">
    <managed-bean-name id="__74">profileSelector1</managed-bean-name>
    <managed-bean-class id="__72">oracle.communications.brm.pdc.ui.view.selector.PricingProfileSelector</managed-bean-class>
    <managed-bean-scope id="__75">session</managed-bean-scope>
    </managed-bean>
    I am trying to print the beanclass.
    <af:outputText value="#{pageFlowScope.PricingProfileSelector}"/> ----------// no output.
    <af:outputText value="#{PricingProfileSelector}"/> --------value comes for this. oracle.communications.brm.pdc.ui.view.selector.PricingProfileSelector@1b6915d
    I an wondering why PricingProfileSelector class does not get instantiated for pageflowscope when i try to print the class.

  • Managed bean in both adfc-config.xml and faces-config.xml file

    hi,
    i can see that it's possible to declare managed bean in both adfc-config.xml and faces-config.xml file.
    is there any difference? which one is recommended?
    read here - http://www.jaypillai.com/tag/adf/
    but still not clear.
    thanks.

    Hi.
    As you know ADF is a framework based on JSF.
    In faces-config.xml you define general application manage beans. It offers you define manage beans for all application using JSF default scopes (application, session, request).
    In adfc-config.xml you define general application manage beans using ADF Scopes. It means that you can use JSF default ones including "view, pageFlow and backing".
    My recommendation is use only one point entry for your general manage beans. Use adfc-config.xml because allow you to use more scopes.
    Regards.

  • Query on adfc-config.xml

    Hi,
    I have multiple[ex:more than 50] java classes to be registered as managed beans in adfc-config.xml.
    Is there way to mention all these java classes as managedbeans in one xml [ex:department-config.xml] and refer the same in adfc-config.xml.
    Please suggest.
    Thanks,
    Praveen

    Yes, this is possible in case of unbounded task flow.
    As per ADF, although the user can create multiple unbounded taskflow files, but there is only one unbounded task flow (All Unbounded Taskflows are merged into single unbounded task flow).
    By Default, in ViewController Project, a default unbounded task flow named adfc-config.xml is created. If the user creates multiple unbounded task flow definitions, a reference to newly created unbounded task flow is added in the adfc-config file. At runtime, all these files are merged into single unbounded task flow.
    <adfc-config xmlns="http://xmlns.oracle.com/adf/controller" version="1.2">
    <metadata-resource>/WEB-INF/adfc-config1.xml</metadata-resource>
    <metadata-resource>/WEB-INF/department-config.xml</metadata-resource>
    </adfc-config>As per your case, you could register all the beans in one unbounded task flow definition file and use it in another - as all the files will be merged into a single file.
    Thanks,
    Navaneeth

  • Can not redirect to other page when using adfc-config.xml in standalone WL

    Hi all,
    I created a very simple fusion app, only have two jspx pages(view1 view2). I drag these two pages to adfc-config file and created a control flow(adfcView2) between these two pages.
    +<?xml version="1.0" encoding="UTF-8" ?>+
    +<adfc-config xmlns="http://xmlns.oracle.com/adf/controller" version="1.2">+
    +<view id="view1">+
    +<page>/view1.jspx</page>+
    +</view>+
    +<view id="view2">+
    +<page>/view2.jspx</page>+
    +</view>+
    +<control-flow-rule>+
    +<from-activity-id>view1</from-activity-id>+
    +<control-flow-case>+
    +<from-outcome>adfcView2</from-outcome>+
    +<to-activity-id>view2</to-activity-id>+
    +</control-flow-case>+
    +</control-flow-rule>+
    +</adfc-config>+
    When I run the view1.jspx in the embeded WL, all go well, can navigate from view1 to view2.
    But when I created an ear and deployed this ear to a standalone WL, view1 can be displayed successfully, but when I clicked one commandbutton in view1, want to navigator to view2, the page can not be redirected to view2(still show view1.jspx). there is no any error msg in WL Console.
    Did I miss anything for deploying a taskflow app? If I change the view controller to faces-config.xml not adfc-config.xml, all work fine.
    Any info is appreciated.
    Edited by: harth on Oct 25, 2009 7:21 PM

    Hi Harth,
    I guess you are running the jspx page not view activity, check if your url contains .jspx page at the end. If so, run the url without .jspx page at end(which is view id name)
    Eg:
    Give http://<Host_Name>:<Port>/<ContextRoot>/faces/view1 instead of http://<Host_Name>:<Port>/<ContextRoot>/faces/view1.jspxSireesha
    Edited by: Sireesha Pinninti on Oct 25, 2009 8:00 PM

  • How to use a managed bean in a bounded task flow without definig it in adfc-config

    Dear all
    I create a bounded task flow without page fragments (the pages are jspx), i created a jspx page with a button that its action has bounded to a managed bean function.
    i defined the managed bean on the corresponding bounded task flow, but it does not work.
    But there is no problem when i define the managed bean in adfc-config.xml.
    can anybody help me with this problem.
    is it possible to use jspx page with backing bean in bounded task flows, without defining the beans on adfc-config?
    Thank you very much

    Dear Timo
    I use jDev 11.1.1.6 and the scope is Request.Although when i use task flow page fragment and create jsff pages, there is no problem.

  • XMLMenuModel: Can we have a taskflow other than adfc-config as root_menu

    I am using ADF 11 Release 1.
    When using XMLMenuModel, is this possible to define an unbounded taskflow other than adfc-config as a root_menu.
    I do not want to create any views on adfc-config.xml.
    When I use a task flow other than adfc-config to create the root_menu, I do not see level 1 menus.

    I am using ADF 11 Release 1.
    When using XMLMenuModel, is this possible to define an unbounded taskflow other than adfc-config as a root_menu.
    I do not want to create any views on adfc-config.xml.
    When I use a task flow other than adfc-config to create the root_menu, I do not see level 1 menus.

  • @EJB not working for managed beans in adfc-config

    using adf 11.1.1.3
    We have an application that uses EJB (deployed on the same WLS as our application). We notice that when we create managed beans in the adfc-config and use the @EJB annotation to get an instance of the sessionbean, it is not working.
    The error we get is a simple nullPointerexception pointing to the EJB.
    When we register the bean in faces-config.xml instead of adfc-config.xml, we do get an instance of the EJB.
    I also get a nullpointerException when i add the managed bean to a taskflow instead of the adfc-config.
    This is an example of the bean:
    public class HomeTest {
        @EJB
        MyService service;
        public HomeTest() {
        public List getData(){
          return service.getSomedata();
    }When i register this bean in adfc-config i get a nullpointer on service.
    When i register the same bean in the faces-config, it is working.

    Frank,
    Thanks! I think i managed to implement the workaround:
    This is my bean that has been registered in the faces-config:
    public class BeanHelper {
        @EJB
        private MyEJB myEjB;
        public BeanHelper() {
            super();
        public MyEJB getMyEJB()
              return myEJB;
    }In my adfc managed bean i use
    MyEJB myEJB = (MyEJB)JSFUtils.get("#{BeanHelper.myEJB}");This is working fine.
    This way i no longer need to use a direct lookup and i don't need to know the exact path and so on for the EJB.
    Thanks Frank!
    Is there a way to let Oracle update the bug with this workaround so if other people find the bug, they know how to implement a workaround?

  • Adfc-config navigation not working

    Hello,
    I have created the following navigation in the adfc-config.xml:
      <view id="partError">
        <page>/partError.jspx</page>
      </view>
      <view id="estimation-home">
        <page>/estimation-home.jspx</page>
      </view>
      <view id="estimation-chart">
        <page>/estimation-chart.jspx</page>
      </view>
      <control-flow-rule id="__9">
        <from-activity-id id="__10">estimation-home</from-activity-id>
        <control-flow-case id="__13">
          <from-outcome id="__14">fill-estimation</from-outcome>
          <to-activity-id id="__12">estimation-chart</to-activity-id>
        </control-flow-case>
      </control-flow-rule>And I am calling the outcome as:
    <af:commandLink id="cl1" action="fill-estimation" partialSubmit="true" text="Test"/>But it is not working.
    If I define the navigation in the faces-config.xml:
      <navigation-rule>
        <from-view-id>/estimation-home.jspx</from-view-id>
        <navigation-case>
          <from-outcome>fill-estimation</from-outcome>
          <to-view-id>/estimation-chart.jspx</to-view-id>
          <redirect/>
        </navigation-case>
      </navigation-rule>It works. I am unable to find what I am doing wrong. Any suggestion would be very helpful to me.

    Hello Frank,
    Before I was launching the first page as:
    1. Defined index.jsp and added jsp:redirect to the estimation-home.jspx.
    2. Added index.jsp as the welcome page in web.xml.
    After the point you asked me, form that, I came to know I am doing this in wrong way, that's why the navigation is not working.
    Now
    1. I have changed my index.jsp to add
    <meta http-equiv="refresh" content="0;url=./pages/estimation-home" />2. Removed the navigation from faces-config.xml and defined it in adfc-config.xml.
    It is working now.
    Thank you very much.
    Best regards,
    Tapas

  • ADF faces-config.xml file

    Hi ADF gurus,
    I am new to this technology and i have found in oracle developer's guide that "Registering managed beans within the faces-config.xml file is not recommended in a Fusion web application".
    URL : http://docs.oracle.com/cd/E28271_01/web.1111/e28164/web_getstarted.htm#CACCFIII
    Section: Using a Managed Bean in a Fusion Web Application
    My question is why this?
    Thanks & Regards,
    Sharmistha

    If you plan to use the ADF stack there are some enhancements added to the normal faces lifecycle like bounded task flows, pageFlowScope and some additional phases the normal faces lifecaycle doesn't have. This additions are handled in the adcf-config.xml. If you register your beans in the facces-config file they are not managed by the adf stack and therefore can't use the additions.
    So Oracle encourage you to use the adfc-config.xml instead of the faces-config.xml. There are a few special entries which still needed to be made in the faces-config file (e.g. skinning), butin general you use the adfc-config file is you use adf rich faces.
    Timo

  • Do we need to register adfc-config?

    Hi guys,
    I have a JEE project with adf faces as view tier. I want to use the view scope of adf so converted my faces config to adfc-config.xml.
    a very basic one.
    The moment i run the project I am getting the error
    Caused by: javax.el.PropertyNotFoundException: Target Unreachable, identifier 'createOpportunity' resolved to null
    I have declared the bean in adfc-config.xml . I was wondering if i need to declare the adfc-config some where so that the beans is available.
    adfc-config.xml content
    <?xml version="1.0" encoding="windows-1252" ?>
    <adfc-config xmlns="http://xmlns.oracle.com/adf/controller" version="1.2">
      <view id="menu">
        <page>/common/menu.jsp</page>
      </view>
      <view id="createActivity">
        <page>/pages/createActivity.jsp</page>
      </view>
      <view id="createOpportunity">
        <page>/pages/createOpportunity.jsp</page>
      </view>
      <view id="opportunityManagement">
        <page>/pages/opportunityManagement.jsp</page>
      </view>
      <control-flow-rule id="__14">
        <from-activity-id id="__15">menu</from-activity-id>
        <control-flow-case id="__16">
          <from-outcome id="__17">createOpportunity</from-outcome>
          <to-activity-id id="__18">createOpportunity</to-activity-id>
        </control-flow-case>
      </control-flow-rule>
      <managed-bean id="__20">
        <managed-bean-name id="__19">createOpportunity</managed-bean-name>
        <managed-bean-class id="__22">com.awrostamani.bean.CreateOpportunity</managed-bean-class>
        <managed-bean-scope id="__21">view</managed-bean-scope>
      </managed-bean>
    </adfc-config>Full errror stack::
    <LifecycleImpl> <_handleException> ADF_FACES-60098:Faces lifecycle receives unhandled exceptions in phase RENDER_RESPONSE 6
    javax.faces.FacesException: javax.el.PropertyNotFoundException: Target Unreachable, identifier 'createOpportunity' resolved to null
         at com.sun.faces.application.ApplicationImpl.createComponent(ApplicationImpl.java:261)
         at javax.faces.webapp.UIComponentELTag.createComponent(UIComponentELTag.java:222)
         at javax.faces.webapp.UIComponentClassicTagBase.createChild(UIComponentClassicTagBase.java:513)
         at javax.faces.webapp.UIComponentClassicTagBase.findComponent(UIComponentClassicTagBase.java:782)
         at javax.faces.webapp.UIComponentClassicTagBase.doStartTag(UIComponentClassicTagBase.java:1354)
         at org.apache.myfaces.trinidad.webapp.UIXComponentELTag.doStartTag(UIXComponentELTag.java:71)
         at oracle.adfinternal.view.faces.unified.taglib.UnifiedDocumentTag.doStartTag(UnifiedDocumentTag.java:50)
         at jsp_servlet._pages.__createopportunity._jspService(__createopportunity.java:202)
         at weblogic.servlet.jsp.JspBase.service(JspBase.java:35)
         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.ServletStubImpl.onAddToMapException(ServletStubImpl.java:417)
         at weblogic.servlet.internal.ServletStubImpl.execute(ServletStubImpl.java:326)
         at weblogic.servlet.internal.ServletStubImpl.execute(ServletStubImpl.java:184)
         at weblogic.servlet.internal.RequestDispatcherImpl.invokeServlet(RequestDispatcherImpl.java:523)
         at weblogic.servlet.internal.RequestDispatcherImpl.forward(RequestDispatcherImpl.java:253)
         at com.sun.faces.context.ExternalContextImpl.dispatch(ExternalContextImpl.java:410)
         at org.apache.myfaces.trinidad.context.ExternalContextDecorator.dispatch(ExternalContextDecorator.java:45)
         at org.apache.myfaces.trinidad.context.ExternalContextDecorator.dispatch(ExternalContextDecorator.java:45)
         at oracle.adfinternal.view.faces.config.rich.RecordRequestAttributesDuringDispatch.dispatch(RecordRequestAttributesDuringDispatch.java:45)
         at org.apache.myfaces.trinidad.context.ExternalContextDecorator.dispatch(ExternalContextDecorator.java:45)
         at org.apache.myfaces.trinidad.context.ExternalContextDecorator.dispatch(ExternalContextDecorator.java:45)
         at org.apache.myfaces.trinidad.context.ExternalContextDecorator.dispatch(ExternalContextDecorator.java:45)
         at org.apache.myfaces.trinidadinternal.context.FacesContextFactoryImpl$OverrideDispatch.dispatch(FacesContextFactoryImpl.java:268)
         at com.sun.faces.application.ViewHandlerImpl.executePageToBuildView(ViewHandlerImpl.java:471)
         at com.sun.faces.application.ViewHandlerImpl.renderView(ViewHandlerImpl.java:140)
         at javax.faces.application.ViewHandlerWrapper.renderView(ViewHandlerWrapper.java:191)
         at org.apache.myfaces.trinidadinternal.application.ViewHandlerImpl.renderView(ViewHandlerImpl.java:193)
         at oracle.adfinternal.view.faces.lifecycle.LifecycleImpl._renderResponse(LifecycleImpl.java:777)
         at oracle.adfinternal.view.faces.lifecycle.LifecycleImpl._executePhase(LifecycleImpl.java:293)
         at oracle.adfinternal.view.faces.lifecycle.LifecycleImpl.render(LifecycleImpl.java:213)
         at javax.faces.webapp.FacesServlet.service(FacesServlet.java:266)
         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.adf.share.http.ServletADFFilter.doFilter(ServletADFFilter.java:62)
         at weblogic.servlet.internal.FilterChainImpl.doFilter(FilterChainImpl.java:57)
         at oracle.adfinternal.view.faces.webapp.rich.RegistrationFilter.doFilter(RegistrationFilter.java:106)
         at org.apache.myfaces.trinidadinternal.webapp.TrinidadFilterImpl$FilterListChain.doFilter(TrinidadFilterImpl.java:447)
         at oracle.adfinternal.view.faces.activedata.AdsFilter.doFilter(AdsFilter.java:60)
         at org.apache.myfaces.trinidadinternal.webapp.TrinidadFilterImpl$FilterListChain.doFilter(TrinidadFilterImpl.java:447)
         at org.apache.myfaces.trinidadinternal.webapp.TrinidadFilterImpl._doFilterImpl(TrinidadFilterImpl.java:271)
         at org.apache.myfaces.trinidadinternal.webapp.TrinidadFilterImpl.doFilter(TrinidadFilterImpl.java:177)
         at org.apache.myfaces.trinidad.webapp.TrinidadFilter.doFilter(TrinidadFilter.java:92)
         at weblogic.servlet.internal.FilterChainImpl.doFilter(FilterChainImpl.java:57)
         at oracle.security.jps.ee.http.JpsAbsFilter$1.run(JpsAbsFilter.java:111)
         at oracle.security.jps.util.JpsSubject.doAsPrivileged(JpsSubject.java:313)
         at oracle.security.jps.ee.util.JpsPlatformUtil.runJaasMode(JpsPlatformUtil.java:413)
         at oracle.security.jps.ee.http.JpsAbsFilter.runJaasMode(JpsAbsFilter.java:94)
         at oracle.security.jps.ee.http.JpsAbsFilter.doFilter(JpsAbsFilter.java:161)
         at oracle.security.jps.ee.http.JpsFilter.doFilter(JpsFilter.java:71)
         at weblogic.servlet.internal.FilterChainImpl.doFilter(FilterChainImpl.java:57)
         at oracle.dms.servlet.DMSServletFilter.doFilter(DMSServletFilter.java:136)
         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.wrapRun(WebAppServletContext.java:3715)
         at weblogic.servlet.internal.WebAppServletContext$ServletInvocationAction.run(WebAppServletContext.java:3681)
         at weblogic.security.acl.internal.AuthenticatedSubject.doAs(AuthenticatedSubject.java:321)
         at weblogic.security.service.SecurityManager.runAs(SecurityManager.java:120)
         at weblogic.servlet.internal.WebAppServletContext.securedExecute(WebAppServletContext.java:2277)
         at weblogic.servlet.internal.WebAppServletContext.execute(WebAppServletContext.java:2183)
         at weblogic.servlet.internal.ServletRequestImpl.run(ServletRequestImpl.java:1454)
         at weblogic.work.ExecuteThread.execute(ExecuteThread.java:207)
         at weblogic.work.ExecuteThread.run(ExecuteThread.java:176)
    Caused by: javax.el.PropertyNotFoundException: Target Unreachable, identifier 'createOpportunity' resolved to null
         at com.sun.el.parser.AstValue.getTarget(Unknown Source)
         at com.sun.el.parser.AstValue.setValue(Unknown Source)
         at com.sun.el.ValueExpressionImpl.setValue(Unknown Source)
         at com.sun.faces.application.ApplicationImpl.createComponent(ApplicationImpl.java:258)
         at javax.faces.webapp.UIComponentELTag.createComponent(UIComponentELTag.java:222)
         at javax.faces.webapp.UIComponentClassicTagBase.createChild(UIComponentClassicTagBase.java:513)
         at javax.faces.webapp.UIComponentClassicTagBase.findComponent(UIComponentClassicTagBase.java:782)
         at javax.faces.webapp.UIComponentClassicTagBase.doStartTag(UIComponentClassicTagBase.java:1354)
         at org.apache.myfaces.trinidad.webapp.UIXComponentELTag.doStartTag(UIXComponentELTag.java:75)
         ... 62 more
    thnkks..
    Edited by: Kamaal on Mar 20, 2011 9:19 AM

    i don't understand why you are using
    viewScope.backingbean.propertyAs you have the following registration in adfc-config.xml,
    <managed-bean id="__20">
    <managed-bean-name id="__19">createOpportunity</managed-bean-name>
    <managed-bean-class id="__22">com.awrostamani.bean.CreateOpportunity</managed-bean-class>
    <managed-bean-scope id="__21">view</managed-bean-scope>
    </managed-bean>
    you should use
    viewScope.createOpportunity.<PROPERTY>Thanks,
    Navaneeth

  • Office 2013 - OSD - Specify different config xml

    Hi Guys
    I want to deploy Office 2013 in different languages to different users. It seems there are a few ways to do this. But I am thinking I want to package all languages I need into one Office install package and then in the task sequence have groups for countries.
    Each country has a variable to specify which config.xml to use. Is this possible or is there a better way?
    (I just need to know how to point to the correct xml in the package, kind of like the unattend file) I know the rest if this is the way.
    ie.
    -France
    ---ConfigFR.xml
    -Germany
    ---ConfigGe.xml
    Sweden
    ---ConfigSE.xml
    Thanks
    NN

    Hi
    I know the original question has been answered, but I have a follow up question.
    I am deploying Windows 8.1 Update using custom variables to install Windows language packs and Office Language packs dynamically based on rules. Running just one language works fine. But if I have a multiple language package deployed to Windows the
    Office DTs do not pick this up (each DT is currently working of one language per DT and using operating system language to install the correct xml).
    See here:
    These are the DTs
    After doing a bit more reading. I now know I need to setup the rules differently. Can I set the rules to be English and Swedish install DT1, and English and Romanian install DT 2, English alone install DT 3 etc?
    I basically need an "AND" rule.
    thanks again
    NN
    *you may have to zoom to see the larger image.

  • Help needed for config.xml

    hi all,
    i have some 15/20 applications based on J2EE, but each application has diff Config.xml,
    my client wants me to generalised the process of generating the generalised config.xml file, (i have some idea like i will have a properties file from which i will pick up the data regarding specific application n then generate the config.xml).
    the next step is i need to build the application for which i need ANT script,
    the next step is i need to deploy thios on unix box.
    can anybody suggest me any options for doing al this.
    any code snippet or any open source tool for this?
    (i thing maven and cruisecontrol are the tools used for this not very sure)
    plz let me kno if anybody has ny backgrng on this.....
    cya
    sush

    hi all,
    i have some 15/20 applications based on J2EE, but each application has diff Config.xml,
    my client wants me to generalised the process of generating the generalised config.xml file, (i have some idea like i will have a properties file from which i will pick up the data regarding specific application n then generate the config.xml).
    the next step is i need to build the application for which i need ANT script,
    the next step is i need to deploy thios on unix box.
    can anybody suggest me any options for doing al this.
    any code snippet or any open source tool for this?
    (i thing maven and cruisecontrol are the tools used for this not very sure)
    plz let me kno if anybody has ny backgrng on this.....
    cya
    sush

  • Trinidad-config.xml, number-grouping-separator and decimal-separator

    Hi,
    According to my application locale, numbers are formatted as 1.234,56
    Now I want numbers to be formatted the US flavour: 1,234.56
    Here is my trinidad-config.xml file contents:
    <?xml version="1.0" encoding="windows-1252"?>
    <trinidad-config xmlns="http://myfaces.apache.org/trinidad/config">
    <skin-family>mySkin</skin-family>
    <number-grouping-separator>,</number-grouping-separator>
    <decimal-separator>.</decimal-separator>
    </trinidad-config>
    The file above is declared in the web.xml file (although I'm not pretty sure this is really necessary):
    <context-param>
    <param-name>javax.faces.CONFIG_FILES</param-name>
    <param-value>/WEB-INF/trinidad-config.xml</param-value>
    </context-param>
    And an example of a numerical input text:
    <af:inputText value="#{row.bindings.Salary.inputValue}" label="#{bindings.EmployeesView3.hints.Salary.label}"
    required="#{bindings.EmployeesView3.hints.Salary.mandatory}" columns="#{bindings.EmployeesView3.hints.Salary.displayWidth}"
    maximumLength="#{bindings.EmployeesView3.hints.Salary.precision}" shortDesc="#{bindings.EmployeesView3.hints.Salary.tooltip}"
    id="it5">
    <f:validator binding="#{row.bindings.Salary.validator}"/>
    <af:convertNumber pattern="#{bindings.EmployeesView3.hints.Salary.format}" />
    </af:inputText>
    Where the pattern is set at Entity Object level: Employees EO > Salary attribute > UI Hints > Format: #,##0.00
    But it doesn't work. I don't know what I'm missing... Please, help!
    JDev 11.1.1.3.0

    Hello. With my application locale, numbers are formatted as 1234,56
    But i need 1 234.56 format.
    To achieve this, I use trinidad-config.xml, that contains few options:
    <?xml version="1.0" encoding="windows-1251"?>
    <trinidad-config xmlns="http://myfaces.apache.org/trinidad/config">
    <skin-family>mySkin</skin-family>
    <number-grouping-separator> </number-grouping-separator>
    <decimal-separator>.</decimal-separator>
    </trinidad-config>
    On my page i use af:outputText with af:convertNumber as shown below:
    <af:outputText value="1234567,890" id="ot2">
    <af:convertNumber currencySymbol="USD" minFractionDigits="2"
    groupingUsed="true" type="currency"
    maxFractionDigits="2"/>
    </af:outputText>
    Output: *1 234 567,89 USD*
    Why decimal separator hasn't changed?
    Byt the way. With convertNumber type "percent" output will be *1 234 567.89%*

Maybe you are looking for

  • New iPod not recognized in Vista PC and no devices in iTunes

    Hello, plugged iPod Touch into computer and Vista showed usual little box which said automatically located drivers and installed them. But couldn't find iPod in My computer. Installed iTunes from download area. No devices in left column. Reinstalled

  • Oracle 8.1.7 on Red Hat 9

    Hi all, I'm trying to install the Oracle 8.1.7 on Red Hat 9, but when I perform the runInstaller, I got following error: java.io.IOException: /home/oracle/Disk1/stage/Components/oracle.xml.parser.plsql/1.0.2.0.0/1/compIns.jar      at java.io.RandomAc

  • How do I get an image next to my link on facebook or linkedin?

    How do I get an image next to my link on facebook or linkedin? Cheers, Joakim

  • Installation of 10g 32x on Windows 64x plataform

    Sirs... Recently, I did install Oracle 10g R2 32x on a Windows 64x plataform. Does anyone know if it is really possible ? I dont know how could the DB work well, and it's still running... I looked at the task manager and the anme of the Oracle proces

  • Send screen back to home after call

    I know there's an app to set up to have the screen sent back to home screen after hanging up a call but I can't find it.  I had to have my Driod Eris hard reset and lost all apps....help!