BackingBean instance

I have a BackingBean "A" in the session scope and another BackingBean "B" in the request scope.
On the action methid in BackingBean "B", how do I get a handle to the BackingBean "A" which is in the session scope.
Is there something we need to use from the FacesContext or ADFFancesContext????
Thanks
- Gana

Hi.
Although I have never done this, I think you can do it this way.
To get a reference to the session context you would have to use:
FacesContext context = FacesContext.getCurrentInstance();
HttpSession session = (HttpSession) context.getExternalContext().getSession(true);
Then I think you could get a reference to you backing bean using:
BackingBeanA bba = (BackingBeanA) session.getAttribute("yourbackingbeanname");
Regards

Similar Messages

  • How to change the execution order of data control and backingbeans

    Hi,
    I have a form for a BPM human workflow. It has an inputText and a selectOneChoice component in the form.
    The list of value for the selectOneChoice is initiated based on the value in the inputText.
    I have a data control - JavaBean, which returns a list of values based on a parameter for the selectOneChoice and the parameter is binded with the value of inputText defined in a backingBean. I also set the default value of the inputBox in the backing bean with setValue().
    The problem I have is that the data control for selectOneChoice is loaded before the inputText or backingBean is loaded. Therefore, the parameter is null.
    I tested the same combination in an ADF web app and it works fine. In the app, the inputText and the backingBean are loaded first and then the value of inputText is sent to the data control.
    How can I change the order of the execution? I need to make the inputText and backingBean loading first before the data control for the list of values loading.
    Edited by: user626218 on Oct 10, 2012 9:25 PM

    Hi,
    The inputText is pre-populated based on the user profile in the BPM instance. I tried to render the selectOneChoice if the value of the inputText exists but the data control for selectOneChoice is loaded before the backingBean so it keeps getting a null as parameter.

  • Dynamic JSF GUI and associated backingbeans

    I'm designing a web application using JSF. One of the main requirements is that our GUI needs to be pluggable. I have tried to understand how pluggability can be achieved in JSF but haven't found a clear solution.
    I would like the application to be packaged as a war file. Adding customer specific pages/bean classes to the war file and repackaging of the war is not an option. The customer specific pages/classes must reside outside this war. At runtime, based on configured rules, I need to load the customer pages and render them. If the pages are JSP based JSF pages, then they will also have their associated backing beans.
    Given that the backing beans must be preconfigured as managed beans in the faces-config.xml file and all JSP pages must be part of the packaged web application, I don't know how to go about doing this.
    A solution (non-ideal) that I have thought of is to have the customers design their forms as HTML pages and have them put these forms in the document root directory on the app server. The customer code that manipulates the data on the form will be packaged in a jar file. The HTML form 'action' will be set to a URL that will take them to one of my servlets. The interaction will be such:
    1. A user visits my JSF/JSP page. He clicks on a button. In the action event listener, I decide on the correct html form to forward the request to. I put the instance of the backingbean class in the HttpSession and forward the request to the HTML page.
    2. The browser displays the HTML form. The user enters data on the form and submits it. The request arrives at my servlet.
    3. My servlet instantiates the appropriate customer class (using the ClassLoader) and calls a method on it passing it all postdata; the method returns some String value. The servlet pulls out the backingbean class instance from the HttpSession and calls a setProperty(String value) on it. The servlet then gets a handle to the RequestDispatcher and forwards the request to my original JSF/JSP page.
    4. The JSF page is rendered in the browser with then new value (property set by the servlet) displayed in the right view component.
    The above approach is very messy and with many customer forms and backend classes this approach can get very ugly. I am looking for the correct solution that is recommended by JSF to achieve this kind of pluggability.
    Any thoughts, advice or feedback will be very appreciated.
    thanks,
    tsc

    I have researched my issue online for quite some time and have found nothing that jumps out except one post to this forum.
    Adam.Winer replied to a similar post on this forum over a year ago where he suggests replacing the ViewHandler, NavigationHandler and VariableResolver to be able to plugin JSP pages at runtime (See below).
    After doing some reading, I understand the function of the NavigationHandler and VariableResolver a bit better. do not understand how to replace the ViewHandler and what the new handler should do to render different JSP pages at runtime.
    Has anyone tried this approach. If yes, examples would be nice.
    I'm sure what I'm attempting has been done before many times. How have people gone about to achieve this kinda of pluggability in JSF.
    Anyone?
    From: http://forum.java.sun.com/thread.jspa?forumID=427&threadID=524937
    Re: dynamic configuration for the application
    adam.winer Registered: Dec 23, 2003 12:00 AM      May 24, 2004 9:30 PM
    A lot of what you're seeing are genuine limitations, but happily, JSF is so pluggable that you can overcome them.
    JSPs are problematic in exactly the way you describe - unless your app server has support for pulling JSPs out of a database, etc., you're SOL. JSF, however, lets you use something other than JSPs by replacing the ViewHandler. That's a fair bit of work, but it is doable.
    For navigation logic, you'd replace the NavigationHandler. As long as you're willing to write the code that can pull navigation rules from an external source, life is good.
    For managed beans, all you need to replace is the VariableResolver - again, if you can pull the rules from an external source, you have full control.
    This is all far from easy - and it's a huge amount of work for one person - but I'd imagine these pieces will become available from various sources. A core goal of JSF 1.0 was making the framework as a whole pluggable so that others can innovate on top of the framework.
    -- Adam Winer (EG member)

  • Template UI Logic and backingbean

    Hi,
    I'm new to adf and i'm trying to build a sample project with jDevelopper 11.1.2.1.0 for my company to know if we can switch to it.
    I've go a use case to implement but i've got some issues to understand how i can do it.
    I must create a view with :
    1) a top zone with a toolbar (and other stuff)
    2) a center zone with a panel tabbed
    2.a) In the first tab, a bounded table with some columns
    2.b) In the second tab a splitter
    2.b.i ) In the first facet of the splitter a second bounded table with some other columns (but linked to the same iterator)
    2.b.ii) In the second facet of the splitter a form (to edit the data)
    3) a bottom zone with a statut toolbar.
    I've created my toolbar with a declarative component following the adf corner [079. Strategy for implementing global buttons in a page template|http://www.oracle.com/technetwork/developer-tools/adf/learnmore/79-global-template-button-strategy-360139.pdf], my toolbar have 5 buttons (create, edit, save, cancel and delete).
    I then created a template for placing panel, and table splitter ui components with a backingbean used for binding the ui components (in backingbean scope, its' important cause the template could be on the same page with nested template tag)
    I've created a taskflow following the adf corner [007.How to cancel an edit form, undoing changes with ADFm savepoints|http://www.oracle.com/technetwork/developer-tools/adf/learnmore/007-cancelform-savepoint-169126.pdf] for the edit form
    I created a page that inherits my template, placed the declarative component toolbar at the top, placed the two bounded datatable in the facets of the template, and finally created a normal region calling the taskflow.
    When i click on the create button, the template backing bean receive the "event" and handle it, changing a task flow parameter.... (updating the region)
    My taskflow update and show me the create form... no problem....
    But if the user is on the first tab, he sees nothing. So i would like to change the disclosed property of the showDetailItems of the panelTabbed.
    I then created a variable in the pageDef of the template that would store a boolean value if the page is in EditMode or not. (create and edit is edit mode. save, cancel and delete is not)
    I created a contextual event to listen when that variable change, like that a datacontrol from a bean with a single public method could handle that change :
    onIsEditModeChanged(boolean newValue){
     getGUI().swicthShowDetailItem(newValue);
    }The method try to get the backingbean of the template (with a el expression), and then call a updatePanel(Boolean newValue) for changing the disclosed property of the showDetailItems :
    public BackingBeanTemplate001 getGUI()
     FacesContext context = FacesContext.getCurrentInstance();
     ELContext eLContext = context.getELContext();
     ExpressionFactory expressionFactory = context.getApplication().getExpressionFactory();
     ValueExpression createValueExpression =
     expressionFactory.createValueExpression(eLContext, "#{backingBeanScope.backingBeanTemplate001}", BackingBeanTemplate001.class);
     return (BackingBeanTemplate001)createValueExpression.getValue(eLContext);
    public void swicthShowDetailItem(Boolean newValue) {
     if (newValue) {
      if(!showDetail2.isDisclosed()){
       showDetaill1.setDisclosed(false);
       showDetaill2.setDisclosed(true);
    }Here's my issue :
    When the onIsEditModeChanged method is called the backingbean of the template doesn't exist in the context.
    So adf create a new instance of it but doesn't fill the ui component references of the page so i can't change the properties cause i get a NPE.
    of course showDetail2 and showDetail1 have their binding property set :
    <af:showDetailItem text="showDetail1" id="pt_sdi1" stretchChildren="first" binding="#{backingBeanScope.backingBeanTemplate001.showDetail1}">
    And
    <af:showDetailItem text="showDetail2" id="pt_sdi1" stretchChildren="first" binding="#{backingBeanScope.backingBeanTemplate001.showDetail2}">the backingBeanScope.backingBeanTemplate001 is referenced in adfc-config.xml :
    <managed-bean id="__5">
         <managed-bean-name>backingBeanTemplate001</managed-bean-name>
         <managed-bean-class>org.darkink.test.backingbean.template.BackingBeanTemplate001</managed-bean-class>
         <managed-bean-scope>backingBean</managed-bean-scope>
    </managed-bean>If i put a button IN the template that change my attribut value :
    public void switchAction(ActionEvent actionEvent) {
             BindingContext bindingContext = BindingContext.getCurrent();
             DCBindingContainer bindingContainer = (DCBindingContainer)bindingContext.getCurrentBindingsEntry();
             AttributeBinding binding = (AttributeBinding)bindingContainer.getControlBinding("isEditModeAttr");
             binding.setInputValue(true);
    }I dont have the NPE, at the "JSF Invoke Application" the bean already exists in the context (it is created at the "JSF Restore View") and all the ui component are NOT null.
    BUT if a place my button in the page that inherits the template and i call that method :
    public void switchAction(ActionEvent actionEvent) {
             BindingContext bindingContext = BindingContext.getCurrent();
             DCBindingContainer bindingContainer = (DCBindingContainer)bindingContext.getCurrentBindingsEntry();
             DCBindingContainer bcPtb1 = (DCBindingContainer)bindingContainer.get("ptb1");
             AttributeBinding binding = (AttributeBinding)bcPtb1 .getControlBinding("isEditModeAttr");
             binding.setInputValue(true);
    }everything works the same BUT at the "JSF Invoke Application" the bean doesn't exist in the context (so adf create it, BUT doesn't fill the ui component bindings).
    The strange thing is that at the "JSF Restore View" the backingbean is well created and filled with the ref of the ui components....
    So here's my questions :
    1) Why there is a difference when my button is on the template and when it's on the page ??? (with the backingbean)
    2) Why the backingbean is not fully created (only the constructor is called and not the ui components bindings)
    3) How can i realise my use case ?
    4) Is there another method to implement UI Logic with template ?
    5) Is there a better way to do this ?
    6) How to get the context of the template ?
    Thanks a lot for all of you who had the patience to read all of this, i know it's a lot
    but i didn't know how to explain my problem without all thoses explanations.
    I've read all the adf corner and all the given pdf books on the site (that i've found) trying to search for a solution and
    didn't find one. So please don't tell me read the books, or the solution is already documented...
    It would be a lot more helpfull to explain me why it's not working or why what a did is not a good solution.
    Sorry for my poor english too.
    Thanks a lot....
    Angle
    P.S 1:
    In the swicthShowDetailItem method i've tried to change for using this :
    if (newValue) {
     RichShowDetailItem c = (RichShowDetailItem)getComponent("pt1:pt_pt1:pt_sdi2");
     if (!c.isDisclosed()) {
        ((RichShowDetailItem)getComponent("pt1:pt_pt1:pt_sdi1")).setDisclosed(false);
        c.setDisclosed(true);
    }It's working... but ugly and not efficient... so for me it's not a good answer....
    P.S 2:
    Another solution that i've found is that i could create an hidden button on the template
    that call the change event and in the page create a button that queue a click event
    on that button but for me it's not a solution.
    P.S 3:
    I dont like a JavaScript solution neither. for me, if a can bind my ui components to a backingbean
    i want to be able to use them !!!
    Edited by: 915518 on 19 févr. 2012 12:04
    Edited by: 915518 on 19 févr. 2012 12:10

    Hi,
    There will not any performance issue as such as all the code will be executed by the same Dialog workprocess in the application server.
    But it is alwys good to keep you flow logic and application logic seperated, so flow logic just calls the methods and the methods are in a different component like a static method of a class or function module in a function group.
    Best thing is Function Group as you can have screens in a Function pool.
    Regards,
    Sesh

  • Problem with a Constructor of a backingBean

    Hello there!, i have a problem with this code , on a constructor of backingBean
        public Login() {
            System.out.println("New instance!!");
            FacesContext fc = FacesContext.getCurrentInstance();
            String sessionId = fc.getExternalContext().getRequestParameterMap().get("id");
            System.out.println("Session ID :" + sessionId);
            if(sessionId.equals("1"){
            UIComponent it2 = (UIComponent)fc.getViewRoot().findComponent("it2");
            it2.getAttributes().put("value", "Hello World");
        }The error :
    <30-12-2009 06:12:10 PM BOT> <Error> <HTTP> <BEA-101020>
    <[ServletContext@17783620[app:LoginJSF module:LoginJSF-ViewController-context-root path:/LoginJSF-ViewController-context-root spec-version:2.5]]
    Servlet failed with Exception oracle.mds.exception.MDSRuntimeException: MDS-00168:
    Any help?

    hi Frank
    See forum thread "JDeveloper 11g Handbook : Chapter 10 : MDSRuntimeException MDS-00168" about a (possibly related) MDSRuntimeException (MDS-00168) with a reproducible scenario.
    regards
    Jan Vervecken

  • Is it possible to add and instance if of a class as managed bean at runtime

    Greetings,
    I am developing an application where i need to develop an UI (backed by an backingbean). Now this UI can be different based on the back-end data.
    Can i create the instance of a class with all the UI components and set it as a managed bean of a task flow programmatically at runtime?
    Thanks,
    PShah

    The UI Components in a managed bean may created at runtime.
    A managed bean is initialized at runtime, but is required to be created beofre runtime.

  • BackingBeanScope new instance on showPopup

    Hi together,
    I have the following problem:
    A button opens a popup. In this popup the user can enter some data and if he press a partial submit button this data is written to a backing bean scope managed bean.
    The problem is that each time the popup is open, a new instance of the bean is created.
    Dummy Snipplet:
    <af:outputText value="#{backingBeanScope.DummyBean.theValue}"/>
    <af:commandButton partialSubmit="true" immediate="true" ....
                                  <af:showPopupBehavior popupId="mEditPp"
                                                        align="afterEnd"
                                                        alignId="dc_cb2"/>
    </af:commandButton>
    <af:popup id="mEditPp" contentDelivery="lazyUncached">
          <af:dialog id="dc_d2" type="none" ....
    <af:inputText value="#{backingBeanScope.DummyBean.theValue}"/>
    <af:commandButton text="Apply" blocking="true" immediate="false"/>
    </af:popup>The funny thing is that sometimes is working sometimes is not. I presume that the reason is that on dialog is a different instance of this bean.
    Can someone tell me why this behaivour? or how to prevent this.
    ps: I can only use backingBean scope.
    Thank you,
    Bogdan

    Hi,
    backing bean scope has the length of a request. If you set the popup content refresh to lazy then it is loaded deferred but also may use many requests for this. Each then would create / dismiss an instance of the bean. If the bean is supposed to carry state for you then this cannot be in a backing bean. Though you said you must have backing bean scope, the solution is to put the information that you need to keep the state for in a managed bean in a longer scope (e.g. viewScope) and access this bean then from the bean in managed bean scope.
    Frank

  • BackingBean sope question

    Hi all,
    According to oracle documentation, BackingBean scope is:
    BackingBean
    – Special case of request scope
    – Associated with a specific managed bean instance
    – Used with declarative components, regions and page fragments that use a managed bean to hold view state information
    – Allows multiple instances of the component to co-exist on a single page
    Can anyone explain the bold sentence? this means that in every request a new instance of the managed bean is created?
    Thanks in advance.
    Francisco.

    jsut chek..
    Allows multiple instances of the component to co-exist on a single pagemultiple instance of the component.. ie.. multiple instance of inputText or commandButon or any other component..
    it dowant say that multiple instance of the managed bean..
    also refer
    Difference between backing bean scope anf request scope

  • Binding a UIComponent to a BackingBean

    Hi, i see no sence of using
    binding-attribute.
    Why is it "nice" to have a component as my Bean-Property instead of
    an Integer or String... (if i enter age or name in the web-form) ?
    Can anyone help?
    thanks!

    can you give me please a code-example
    of, what i could do senceful with my bunded-component
    in
    my BackingBean?The "repeater" component in the components demo (shipped with JavaServer Faces) illustrates one use case for binding a component instance in a backing bean. In "repeater.jsp", we see three different components bound to the backing bean:
    * <d:data_repeater ... binding="#{repeaterBean.data}" .../>
    * <h:selectBooleanCheckbox ... binding="#{repeaterBean.checked}" .../>
    * <h:selectBooleanCheckbox ... binding="#{repeaterBean.created}" .../>
    The source code for the backing bean is class RepeaterBean.java, in the "src/demo/model" subdirectory.
    The binding for the <d:data_repeater> tag makes the UIData component instance that underlies the entire table available to the backing bean. This makes it very easy for the event listeners for the "Previous Page" and "Next Page" buttons, for example, to manipulate the "first" property. (See the previous() and next() methods).
    The binding for the "checked" column was useful because there is no corresponding property in the model data bean. The fact that a particular row is checked is a purely UI state issue, so is easier to just reference the corresponding component directly, rather than trying to add an arbitrary boolean property to the customer bean.
    The binding for the "created" component (which is not actually displayed, since it has rendered=false) was created for a similar reason, to allow the backing bean's event handler to specifically note which rows represent new data (i.e. created by the create() method) versus rows that were pulled from the existing database. In a real application, this would be used in the save() method to distinguish which rows needed to be inserted versus which ones needed to be updated.
    As you can also see, most of the other components on this page use the value binding approach, because there was no need for the backing bean to manipulate anything other than the value itself. Both styles can be used together; just pick the one that makes the most sense for your particular needs.
    Craig McClanahan
    PS: For extra fun, you can replace the <d:data_repeater> tag with <h:dataTable> if you want, and use the standard renderer for editable data tables. For even more fun, you can customize RepeaterRenderer if you want to change details of the HTML that is emitted for the table.

  • "cacheHostInfo is null" and Add-SPDistributedCacheServiceInstance : Object reference not set to an instance of an object.

    I am working on a standalone install Sharepoint 2013 (no Active Directory). I found newsfeed feature is not available and checked Distributed Cache service is stopped. When start it “cacheHostInfo is null” is returned.
    I checked the Windows service “AppFabric caching service” is stopped because the default identity “Network Service” not work. Then I change the AppFabric service identity to use “.\administrator” (which is also the sp farm administrator) and the service can
    be started.
    However the “cacheHostInfo is null” when try to start Distributed Cache service in central admin.
    I searched on web and found this blog: http://rakatechblog.wordpress.com/2013/02/04/sharepoint-2013-spdistributedcacheserviceinstance-cachehostinfo-is-null/
    I tried to run the script but it return error:
    Add-SPDistributedCacheServiceInstance : Object reference not set to an
    instance of an object.
    At C:\root\ps\test.ps1:8 char:13
    + $whatever = Add-SPDistributedCacheServiceInstance
    + ~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~
    + CategoryInfo : InvalidData: (Microsoft.Share…ServiceInstance:
    SPCmdletAddDist…ServiceInstance) [Add-SPDistributedCacheServiceInstance]
    , NullReferenceException
    + FullyQualifiedErrorId : Microsoft.SharePoint.PowerShell.SPCmdletAddDistr
    ibutedCacheServiceInstance
    I am not sure what went wrong. Please give me some idea? Thank you for any comment!

    Can you deploy Active Directory as installing without is not a supported installation scenario - http://support.microsoft.com/kb/2764086.
    Trevor Seward
    Follow or contact me at...
    &nbsp&nbsp
    This post is my own opinion and does not necessarily reflect the opinion or view of Microsoft, its employees, or other MVPs.

  • Need help with Sharepoint foundation web application stuck on "STOPPING" error job-service-instance-GUID Number already exists

    Hi All,
         I cant get to stop SharePoint foundation web app service. Its stuck on status stopping
    I have tried the following:
    reset IIS
    restarted the Timer Service
    When I try to use powershell command to stop I get the following error:
    Can anyone who went through this help PLEASE
    Stop-SPServiceInstance : An object of the type
    Microsoft.SharePoint.Administration.SPServiceInstanceJobDefinition named
    "job-service-instance-1ff39eb2-12d2-457d-a749-265e350eb1b1" already exists
    under the parent Microsoft.SharePoint.Administration.SPTimerService named
    "SPTimerV4". Rename your object or delete the existing object.
    At line:1 char:127
    + ... pplication"} | Stop-SPServiceInstance
    + ~~~~~~~~~~~~~~~~~~~~~~
    + CategoryInfo : InvalidData: (Microsoft.Share...ServiceInstance:
    SPCmdletStopServiceInstance) [Stop-SPServiceInstance], SPDuplicateObjectEx
    ception
    + FullyQualifiedErrorId : Microsoft.SharePoint.PowerShell.SPCmdletStopServ
    iceInstance

    Hi,
    It seems that the issue is in the timer job definition for executing this operation.
    My suggestion is to start the service again and delete the job definition from the error and again try to stop it.
    This might be helpful:
    http://sharepoint.stackexchange.com/questions/22368/is-there-a-powershell-cmdlet-to-delete-a-timer-job 
    I had a lot of issues in the past when try to stop this instance after the Web apps are provisioned.
    As general rule now If I have multi-server Farm topology that has servers that should not serve Web App requests I turn off the service prior to provisioning any Web Apps in the Farm. 
    BR,
    Ivan

  • Multiple instances of firefox in task manager but FF doesn't open

    - Windows XP SP3 (up to date with all critical updates)
    - FireFox 25.0.1 (Note: Originally I had version 31 but a few days ago that stopped working)
    - Norton Security Suite (the comcast version) up to date
    - I have IE6 and Chrome 37 as backup browsers (Note: when FF stopped working, IE8 had also stopped working - page would open, only one system process, but page would never load)
    Ran the following scans:
    - SUPERAntiSpyware Free Edition
    - Malwarebytes Anti-Malware
    - Ad-Aware Antivirus
    - Spybot-S&D Start Center
    Found a few non-critical yet potential infections (nothing too crazy)
    Symptom persists as follows:
    - fresh boot of computer
    - open task manager (no instances of FF)
    - open firefox - process appears in task manager and immediately goes to 50%
    (nothing opens and nothing listed in Applications)
    - open a second instance of firefox - 2nd process appears in task manager
    (still nothing opens and neither instance appears in Applications
    (the two instances continue to run at a cumulative 50% CPU usage - one might be 15% and the other running at 35% - or both running at 25% each)
    - open a third instance of firefox
    (still nothing opens, and all three instances show in task manager processes and cumulatively run at 50% - example:15 +15 + 20 or 10 + 15 + 25)
    Troubleshooting:
    restored a drive image from May 2014
    - Note: Dec 2013 I had done a complete FRESH new install of Windows XP in prep for EOL and installed all updates, including SP3, so the image I chose from May was only 5 months old, but I chose that one because of some of the other programs I had installed that month and didn't want to go through that again
    - Note #2: I have drive image run a monthly PQI backup of my C: drive and my R: drive) I have two hard drives 300G each whereas C: drive is OS only and R: drive is all my downloads, my documents, my photos, etc)
    - after the image restored, I tried to open FF and IE8, neither app was problematic. FF auto updated from what version, I don't know, but it was on 31 when I realized the problem was BACK. Also ran some WIN critical updates, and IE8 stopped working too!
    uninstalled IE8 (rolled back to IE6 and now IE works - but obviously I can not live with IE6 - I need to update that!) uninstalled FF31 (and deleted all temp and profile account folders) and installed a brand new copy of FF25 - whereas I immediately force stopped autoupdater and deleted the update files so I could remain on FF25.
    Now FF25 will open only on the second instance of the process (the first will always go to 50% CPU, the second will open and run between 0 and 10 CPU, and only one application in Applications)
    - I have learned that I can kill the 50% process using task manager or process explorer and total CPU usage will drop down to 0% - 10%
    I can open many many tabs without any problems, and I can right click a link to open a new window and all is good, BUT if I use the desktop ICON, the quick launch ICON or the START > Programs > Icon, then the NEXT process will go to 50% and no second window will open
    I have seen dozens of forums that have reported similar memory issues, but none have been resolved.
    Can you help me? I don't want to upgrade IE6 to IE8 just yet, but I will not use it for anything but testing until I can upgrade. Note: besides being painfully slow, I have been switching to Chrome, but I have never enjoyed Chrome.... I am using FF right now to ask for help.
    Any suggestions?

    I have the "techie" answer for all of you. According to the tier 2 support at Norton Help Desk, the latest live update from Norton "utilizes Visual Studio 2012 which enables SSE2 instructions" and my processor can not handle that.
    He said they are "working on a solution" and offered to reply back on Wednesday / Thursday this week if a solution could be found...

  • 10g Enterprise Manager is not able to connect to the database instance

    I am running a Oracle 10g database in Solaris 10 server. When i am trying to connect to the enterprise manager it says Enterprise Manager is not able to connect to the database instance.
    The database instance is open,the listener is up and the agent connection also says that it succeeded.
    The server houses two 10g databases and the EM was working properly till yesterday. Kindly Help.
    Thanks in advance.
    Ram

    Hi,
    The EM is started and if i give emctl status dbconsole
    -bash-3.00$ emctl status dbconsole
    Oracle Enterprise Manager 10g Database Control Release 10.2.0.3.0
    Copyright (c) 1996, 2006 Oracle Corporation. All rights reserved.
    http://gladiator:1158/em/console/aboutApplication
    Oracle Enterprise Manager 10g is running
    Logs are generated in directory /db8/ora10gr2/product/10.2.0/Db_4/gladiator_TROY/sysman/log
    it says that the EM is running. But when i am trying to access the URL it is in IE it says Page cannot be displayed what could be the problem for this???
    Thanks in advance.
    Ram

  • Create at runtime a job to run at the central instance with high priority

    Hi All
    Using the function modules  (  job_open, job_submit and job_close )  or ( job_open, submit via job  jobname number jobcount, job_close) I need that this job runs in the central instance and with high priority.
    I would like to know how to  inform  it using the statements above?  How to pass the parameters to make the job run in the central instance with high priority?
    I would appreciate any help.
    Thanks in advance.
    João Gaia

    Hi
    I hadn't realized about the parameter TARGETSERVER of  the function module JOBCLOSE. I am going to make some tests.
    thanks in advance

  • How to use multiple profiles within the same instance of Thunderbird

    About a month ago, I had Thunderbird configured with three profiles,
    and all three could be used within a single startup/instance of
    Thunderbird. That PC is now gone. I have re-configured the three
    profiles on a new PC, but am having trouble making all three
    useable within the same instance of Thunderbird. Can you help?
    Both PCs are/were Windows-7 64 bit.

    Thunderbird only opens on the default if one profile
    or
    if Profile Manager is instructed to ask at startup it will allow you to choose which Profile to open else it opens on the last Profile used..
    So it shows one Profile at a time in one instance of Thunderbird.
    However, one Profile can have many mail accounts.
    eg: I run 4 mail accounts in one Profile.

Maybe you are looking for

  • Type conflict where type not found in sequence file

     Hi, from a central master sequence, I am starting several sequences from other sequence files in new executions. These sequences have individual types as input and output parameters, the types being defined within these sequence files. The master se

  • InitialContext Class Loader

    Hi all, We are experiencing a strange behaviour of the Application Class Loader. Our main issue is that if we deploy 2 applications using our code, the first application is okay, and the second application fails its loading. During the loading, we in

  • What is Session

    hi all the other day i get an error TNS-12518: TNS:listener could not hand off client connection. So i just restarted the computer, when I looked into enterprise manager ,I saw the total session is around 30. Nobody waslogged in, even though session

  • Executing multiple SQL statements fails using ODBC

    Executing multiple SQL statements will fail with error 'ORA-00911 invalid character' when connecting to an Oracle database using ODBC driver version 8.01.07.00. When I use either my application or the Oracle ODBC Test client utility connecting using

  • How to call both xacute query and xml query inside a single applet

    Hi, I am very new to XMII. Trying with a simple exercises now. 1.  I have a Business Logic Transaction which will call external application using web services then it will get an output as xml and storing it in C:\. 2. Then I created one xacute query