El Expression Not Evaluated

can someone please tell me why the following EL expression does not get evaluated:
$ { person.name }
Person is a Java bean class. And here is the header of my web.xml file:
<?xml version="1.0" encoding="ISO-8859-1"?>
<!DOCTYPE web-app
PUBLIC "-//Sun Microsystems, Inc.//DTD Web Application 2.2//EN"
"http://java.sun.com/j2ee/dtds/web-app_2_2.dtd">
<web-app>
</web-app>

It seems you know the answer already.
In order for EL expressions to work in a JSP page you need
- a JSP2.0 container (eg Tomcat 5)
- your web.xml must declare itself as version 2.4
<?xml version="1.0" encoding="ISO-8859-1"?>
<web-app xmlns="http://java.sun.com/xml/ns/j2ee"
    xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance"
    xsi:schemaLocation="http://java.sun.com/xml/ns/j2ee http://java.sun.com/xml/ns/j2ee/web-app_2_4.xsd"
    version="2.4">
</webapp>The other way to do it for individual pages is with a page directive.
<%@ page isELIgnored="false" %>
But fixing web.xml does it for all pages in the application.
Cheers,
evnafets

Similar Messages

  • EL expressions not evaluating after JSF 1.1 --- 1.2 upgrade.

    I am having a problem with EL expressions not evaluating in a JSF application that I just upgraded from Apache MyFaces JSF 1.1 to JSF-RI 1.2 and from Tomcat 5.5.25 to 6.0.26. After the upgrade the entire application is working fine except for EL expressions.
    I was wondering if I am missing a JAR file or something.
    Basically, I have prepopulated input text boxes that render the EL expression instead of its evaluated result. Example:
    INPUT [#{sessionBean.result}] instead of INPUT [tedsResult].
    Here are the JAR on my classpath:
    tomcat/lib:
    annotations-api.jar el-api-1.1.jar servlet-api.jar tomcat-i18n-fr.jar
    catalina-ant.jar jasper-el.jar sqljdbc.jar tomcat-i18n-ja.jar
    catalina-ha.jar jasper.jar tomcat-coyote.jar
    catalina.jar jasper-jdt.jar tomcat-dbcp.jar
    catalina-tribes.jar jsp-api.jar tomcat-i18n-es.jar
    and in my WEB-INF/lib:
    activation.jar hibernate-annotations.jar
    antlr-2.7.5H3.jar iText-2.1.3.jar
    asm-attrs.jar jakarta-oro.jar
    asm.jar jaxen-1.1-beta-8.jar
    avalon-framework-4.0.jar jaxrpc.jar
    avalon-framework-cvs-20020806.jar jdom.jar
    axis.jar jpdcFOP.jar
    batik.jar jpdc_web.jar
    cglib-2.1_3.jar jsf-api-1.2_12.jar
    commons-beanutils.jar jsf-impl-1.2_12.jar
    commons-codec.jar jstl.jar
    commons-collections.jar jta.jar
    commons-digester.jar jtds-1.2.jar
    commons-discovery.jar log4j-1.2.13.jar
    commons-el.jar logkit-1.0.jar
    commons-fileupload-1.2.jar mail.jar
    commons-io-1.3.1.jar openmap.jar
    commons-lang-2.3.jar saaj.jar
    commons-logging.jar standard.jar
    commons-logging-optional.jar tomahawk.jar
    cos.jar velocity-1.4.jar
    CVS velocity-tools-generic-1.1.jar
    dom4j-1.6.1.jar
    el-impl-1.1.jar versioncheck.jar
    ehcache-1.1.jar wsdl4j-1.5.1.jar
    ejb3-persistence.jar xalan.jar
    fop.jar xercesImpl.jar
    hibernate3.jar xmlParserAPIs.jar
    Any ideas what might be causing this problem? Thanks in advance for your help.
    Edited by: tsteiner61 on Apr 14, 2010 11:05 AM

    Hello tsteiner61,
    Did you find a solution for your problem? I am asking because I have to solve a somewhat similar problem. Our system admin updated Tomcat from version 6.0.20 to 6.0.26 and now my JSF application won’t evaluate EL expressions either.
    I was using “Mojarra JSF API Implementation 1.2_09-b02-FCS”. Trying “Mojarra JSF API Implementation 2.0.2-FCS” I get the following error:
    java.lang.UnsupportedOperationException
         javax.faces.context.ExternalContext.getResponseOutputWriter(ExternalContext.java:1228)
         com.sun.faces.application.view.JspViewHandlingStrategy.renderView(JspViewHandlingStrategy.java:182)
         com.sun.faces.application.view.MultiViewHandler.renderView(MultiViewHandler.java:126)
         org.ajax4jsf.framework.ViewHandlerWrapper.renderView(ViewHandlerWrapper.java:101)
         org.ajax4jsf.framework.ajax.AjaxViewHandler.renderView(AjaxViewHandler.java:197)
         javax.faces.application.ViewHandlerWrapper.renderView(ViewHandlerWrapper.java:273)
         org.apache.myfaces.trinidadinternal.application.ViewHandlerImpl.renderView(ViewHandlerImpl.java:176)
         com.sun.faces.lifecycle.RenderResponsePhase.execute(RenderResponsePhase.java:127)
         com.sun.faces.lifecycle.Phase.doPhase(Phase.java:101)
         com.sun.faces.lifecycle.LifecycleImpl.render(LifecycleImpl.java:139)
         javax.faces.webapp.FacesServlet.service(FacesServlet.java:313)
    I am grateful for helpful advice.

  • EL expressions not evaluated in custom tag attribute

    I'm writing a custom tag implementation where I need to have some attribute values
    dynamically evaluated using EL, such that I can write:
    <mytaglib:mytag id="${somevar}"/>
    I cannot seem to accomplish this, however. My taglib tag definition looks like this:
         <tag>
              <name>mytag</name>
              <tag-class>myclass</tag-class>
              <body-content>empty</body-content>
              <description>
    Foo
              </description>
              <attribute>
                   <name>articleId</name>
                   <required>true</required>
                   <rtexprvalue>true</rtexprvalue>
                   <type>java.lang.String</type>
              </attribute>
         </tag>
    The implementation of myclass extends TagSupport (since I need to get at the PageContext). The setArticleId() method looks like this:
    public void setArticleId(String idStr) throws JspException {
    if (logger.isDebugEnabled()) {
    logger.debug("idStr = " + idStr);
    try {
    /* XXX: Somehow, the evaluation should happen automagically, but
    * I can't figure out why that doesn't happen!
    String articleIdStr = (String)pageContext.getExpressionEvaluator().evaluate(
    idStr,
    java.lang.String.class, pageContext.getVariableResolver(), null);
    this.articleId = Integer.parseInt(articleIdStr);
    } catch (ELException e) {
    throw new JspException("Failed to parse article id expression");
    Why does it not work automagically?

    Make sure you are working with a JSP 2 container (like Tomcat 5). Also, you should make sure that your web.xml is configured to use the newest Servlet Spec. Read reply #6 on: http://forum.java.sun.com/thread.jspa?threadID=629437 to make sure it is set up properly.
    If you are not using a JSP 2.0 container, then you will not be able to use EL in your custom tag. See: http://forum.java.sun.com/thread.jspa?forumID=45&threadID=725503 for alternatives.

  • Expression not evaluating

    Hi,
    I am creating a package and trying to evaluate an expression but it is not working.  Here is the code
    var package = new Package();
    package.Variables.Add("EmployeeId", false, "User", "1001");
    var v = package.Variables.Add("SelectQuery", false, "User", "");
    v.Expression = "SELECT * FROM Employees WHERE EmployeeId= @[User::EmployeeId]"; //This is evaluating to ""
    v.EvaluateAsExpression = true;
    var query = v.Value.ToString();  //Here the value is "";
    If I assign v.Expression = "@[User::EmployeeId"; //this is evaluating to the value 1001
    I need to create a package like this because programmatically later I am changing the EmployeeIdvariable value.
    I also tried v.Expression =  "SELECT * FROM Employees WHERE EmployeeId=" + "@[User::EmployeeId]";
    Venkat Sriramulu

    The example is not working, just showing you more code and how I am using the variable.  Pls note DataFlow option creation and Pipepline object etc is not included for simplicity.
    In the source component I want the query to be dynamically evaluated.
    var package = new Package();
    package.Variables.Add("EmployeeId", false, "User", "1001");
    var v = package.Variables.Add("SelectQuery", false, "User", "");
    v.Expression = "SELECT * FROM Employees WHERE EmployeeId= @[User::EmployeeId]"; //This is not working
    v.EvaluateAsExpression = true;
    IDTSComponentMetaData100 srcComponent = pipeline.ComponentMetaDataCollection.New();
    srcComponent.ComponentClassID = "DTSAdapter.OleDbSource";
    srcComponent.ValidateExternalMetadata = true;
    IDTSDesigntimeComponent100 srcDesignTimeComponent = srcComponent.Instantiate();
    srcDesignTimeComponent.ProvideComponentProperties();
    srcComponent.Name = "Employee";
    // Configure it to read from the given table
    srcDesignTimeComponent.SetComponentProperty("AccessMode", 2);
    srcDesignTimeComponent.SetComponentProperty("SqlCommandVariable", "User::SelectQuery"); //Variable is used here. But this is not working.  I hope I am using the variable right.
    srcComponent.RuntimeConnectionCollection[0].ConnectionManager = DtsConvert.GetExtendedInterface(connectionManager);
    srcComponent.RuntimeConnectionCollection[0].ConnectionManagerID = connectionManager.ID;
    // Retrieve the column metadata
    srcDesignTimeComponent.AcquireConnections(null);
    srcDesignTimeComponent.ReinitializeMetaData(); //getting Exception from HRESULT: 0xC0202009
    srcDesignTimeComponent.ReleaseConnections();
    After the package is build, I will want to change the EmployeeId variable value and the query should automatically get evaluated and work with the new employee id.
    Venkat Sriramulu

  • Expressions not evaluating properly in jsp:plugin tag

    Hi there, running OC4J as Oracle9iAS (1.0.2.2.1)
    In the JSP1.1 spec dynamic expressions in the jsp:plugin <param> tag are clearly specified as below:
    <jsp:params>
    [ <jsp:param name="parameterName" value="{parameterValue | <%= expression %>}" /> ]+ </jsp:params>
    Unfortunately, attempting this in OC4J, the expression is simply displayed as a static String, for example the following JSP source:
         <jsp:params>
              <jsp:param name="rootSubAssembly" value="<%=rootSubAssembly%>" />
         </jsp:params>
    Would output "<%=rootSubAssembly%>" as the parameter value, rather than the dynamic value specified in the JSP above.
    Any ideas? We'd like to benefit from using the plugin tag over object/applet if at all possible.

    Hi there, running OC4J as Oracle9iAS (1.0.2.2.1)
    In the JSP1.1 spec dynamic expressions in the jsp:plugin <param> tag are clearly specified as below:
    <jsp:params>
    [ <jsp:param name="parameterName" value="{parameterValue | <%= expression %>}" /> ]+ </jsp:params>
    Unfortunately, attempting this in OC4J, the expression is simply displayed as a static String, for example the following JSP source:
         <jsp:params>
              <jsp:param name="rootSubAssembly" value="<%=rootSubAssembly%>" />
         </jsp:params>
    Would output "<%=rootSubAssembly%>" as the parameter value, rather than the dynamic value specified in the JSP above.
    Any ideas? We'd like to benefit from using the plugin tag over object/applet if at all possible.

  • [URGENT]: expression not evaluated at runtime for Managed Bean ?

    I have written my Custom template for SingleStepButton..
    <af:singleStepButtonBar maxStep="#{TriggerBean.selec and (TriggerBean.nodeLabel=='Services' and TriggerBean.nodeLevel=='5' or TriggerBean.nodeType=='Services' and TriggerBean.nodeLevel=='6')?6:(TriggerBean.selec and (TriggerBean.nodeLevel=='5' and TriggerBean.nodeLabel=='Packages' or TriggerBean.nodeLevel=='6' and TriggerBean.nodeType=='Packages')?WizardPageListCreateNewEquip_Acc.maxStep:5)}"
    selectedStep="#{#WIZARD_PAGE_LIST_BEAN().selectedStep}"
    previousAction="#{#WIZARD_PAGE_LIST_BEAN().getPreviousAction}"
    nextAction="#{#WIZARD_PAGE_LIST_BEAN().selectedStep==5?TriggerBean.wizardNavigator:#WIZARD_PAGE_LIST_BEAN().getNextAction}"
    id="wizardStepButtons"/>
    MY nextAction Statement doesnot Evaluate at IF statement, i.e. my Else statment for it is working perfectly but when statement is true for IF statement it gives Exception and says getNextAction property not found.
    my TriggerBean.wizardNavigator class works perfectly and tested for other scenarios e.g
    when i write and call the nextAction="#{TriggerBean.wizardNavigator}" it does call the method and works. but not for the above case. IT DO NOT EVALUATE the TriggerBean.wizardNavigator part only which is between '?' and ':'

    You cannot use the JSF EL if-then-else statement in a property that expects a simple method binding. So, you should create an additional method on a subclass of the WIZARD_PAGE_LIST_BEAN bean class and perform the if-then-else logic inside this custom method, and bind the nextAction property to this custom metho.
    Steven Davelaar,
    JHeadstart team.

  • OSB insert in not evaluating the expression

    I am using insert in the proxy service of OSB and and my expression is like this:
    Expression : <fcs:appId>$body/*/appId/node()</fcs:appId>
    My problem is that it's not evaluating the expression. It's inserting this as text ($body/*/appId/node()).
    Any idea, why?

    I assume you want to get the value of the tag appid, then the correct expression is <fcs:appId>{$body/*/appId/text()}</fcs:appId>
    In case there is namespace defined with your xml tag then you should be using it as <fcs:appId>{$body/*/*:appId/text()}</fcs:appId>
    Thanks,
    Patrick
    Edited by: Patrick Taylor on May 25, 2011 8:15 PM

  • Why does my conditional expression not work?

    I want to increment a global keeping track of how many critcal tests have been run. Usually I just increment it in the post expression of the test. However, if I have a test that loops it would increment on every loop, so I put a conditional expression in the post expression so it only counts once the loop is done:
    RunState.LoopIndex < 10 && RunState.LoopNumPassed < 3 ? FileGlobals.Critical_Test_Count : FileGlobals.Critical_Test_Count++
    However, the false condition in the expression never gets evaluated. I've put watches in to make sure the condition goes false after the last interation of the test and it does. But my global never increments. The true condition is not supposed to modify the variable.
    What am I miss
    ing?

    The reason for this is that the post expression is evaluated before the loop increment expression, so on your last loop the post expression is evaluated (loop count = 9) then the loop increment is evaluated and the loop is terminated. See page 6-26 of the Teststand user manual.
    Hope this helps,
    Nick

  • Trying to reconnect airport express to time machine but express not showing up in base station.  unfortunately clicked forgot in airport utility and express no longer shows up.  how to reconnect?

    trying to reconnect airport express to time machine but express not showing up in base station.  unfortunately clicked forgot in airport utility and express no longer shows up.  how to reconnect?

    I would recommend setting the wireless encryption on the AirPort Express BEFORE configuring it for the AirPort Extreme in this case. This issue also comes up often when configuring AirPorts into a WDS.
    If setting up security in my recommend order does not work, temporarily connect the Express by Ethernet to the Extreme; make the security changes, and then, move the Express back to the desired location.

  • I've got a green light but express not connecting to speakers

    I've configured my express to my home's wireless network and its attached to my stereo and speaker inputs via rca cables, but when I try connecting to them via iTunes Airplay drop down menu, i can't get no satisfaction, or connection. There is a solid green light on my base station. Am I being stupid and missed the obvious? I have tried setting the base station up as a wireless network itself and connecting that way, this didn't work either. I created the network but got no connection, all I got was intermittment amber flasing lights on the base station. Anyone have a clue? The basestation is plugged a metre away from the the amp and speakers on the floor, will this have anything to do with issue?

    Hi markwmsn,
    Thanks alot for your comments! I've responded below IN CAPS. Short but by no means sweet, as I think I might have to buy some AirTunes enable speakers, and maybe a new express?
    I don't think the distance between the express and the amp or the fact that some of the equipment is on the floor is relevant so long as they are wired together correctly (usually express output -> amp input & amp output -> speakers) and the correct amp input and output are selected. I'M COMING OUT OF THE EXPRESS VIA A MINI STEREO TO DUAL RCA CABLE INPUT
    The flashing amber light when you put the Express in "Create a network" mode just means it couldn't find the internet any more. Rejoin it to your home's wireless network or connect it by ethernet. YEAH I REALISED STRAIGHTAWAY AND CHANGED BACK, WAS TRYING ANYTHING
    When you try connecting via iTunes AirPlay, does the express not show up in the list of speakers, IT SHOWS UP BUT DOESN”T CONNECT does it show up but not connect, or does it connect but not play?
    Have you enabled AirPlay on the express? YES
    Have you selected on the amp the input to which the express audio output is connected? I CAN’T DO THAT ON THIS AMP, I PLUGGED RCA’S INTO THE EXTERNAL INPUTS
    Thanks again, if you have anymore thoughts, they'd be much appreciated!
    Zacdad

  • Help regarding Materialized view ( subquery expression not allowed here )

    Hi all,
    while creating materialized view i got following error
    ORA- 22818
    subquery expression not allowed here
    following is my query
    CREATE  MATERIALIZED VIEW MV_NAV_REC
    BUILD IMMEDIATE
    REFRESH COMPLETE ON DEMAND
    as
    select folio_no FOLIONO,CHKDIGIT as Check_Digit,sch_code SCHEMECODE, sysdate as FOLIODATE ,
         (select case when count(distinct SUBBROKERCODE) =1 then to_char(max(SUBBROKERCODE)) else 'Multiple Broker' end   from transaction_st
         where folio_no = tst.folio_no
         group by  folio_no)  ARN_Number ,
         (select sum(case when tran_type in ('PURCHASE','SWITCH IN') then UNITS else 0 - UNITS end ) from transaction_st
         where folio_no = tst.folio_no AND SCH_CODE = tst.sch_code
         group by  folio_no,sch_code)  NUM_UNITS_NEW ,
    --SUM (case when tran_type NOT in ('REDEMPTION','SWITCH OUT') THEN UNITS ELSE 0 - UNITS END )  AS  Num_Units,
         (select sum(case when tran_type in ('PURCHASE','SWITCH IN') then AMOUNT else 0 - AMOUNT end ) from transaction_st
         where folio_no = tst.folio_no AND SCH_CODE = tst.sch_code
         group by  folio_no,SCH_CODE) as NUM_AMOUNT_NEW ,
    --SUM (case when tran_type NOT in ('REDEMPTION','SWITCH OUT') THEN AMOUNT ELSE 0 -AMOUNT  END )  AS  Scheme_Amount,
    sum(  CASE WHEN upper(tran_type) NOT in ('REDEMPTION','SWITCH OUT') THEN
                 units * (select nav_rs from nav_rec where nav_rec.sch_code = tst.sch_code and nav_rec."Date" = /*trunc(sysdate)*/to_date('23/03/2009','dd/mm/yyyy'))
               ELSE  (0 - units) * (select nav_rs from nav_rec where nav_rec.sch_code = tst.sch_code and nav_rec."Date" = /*trunc(sysdate)*/to_date('23/03/2009','dd/mm/yyyy')) END  ) Scheme_Valuation ,
    null as SCHEMEPHRASEID ,
    null as "Prefered Mode of SOA",
    (  select sum(      case when upper(tran_type) NOT in ('REDEMPTION','SWITCH OUT') THEN AMOUNT ELSE 0 - AMOUNT END  ) from transaction_st t where t.folio_no = tst.folio_no group by folio_no )  as Folio_Amount,
                   select sum(CASE when upper(tran_type) NOT in ('REDEMPTION','SWITCH OUT') THEN
                                              units * ( select nav_rs from nav_rec where nav_rec.sch_code = ts.sch_code and nav_rec."Date" = /*trunc(sysdate)*/to_date('23/03/2009','dd/mm/yyyy'))
                                  ELSE
                                      (0 - units) * ( select nav_rs from nav_rec where nav_rec.sch_code = ts.sch_code and nav_rec."Date" = /*trunc(sysdate)*/to_date('23/03/2009','dd/mm/yyyy')) END     
                                  )  from transaction_st ts where ts.folio_no =tst.folio_no  group by ts.folio_no
    ) as Folio_Valuation
    from transaction_st   tst 
    group by folio_no ,sch_code,CHKDIGIT
    order by folio_no , SCH_CODE
    please help me

    Hi,
    You cannot use scalar subqueries in a materialized view.
    http://asktom.oracle.com/pls/asktom/f?p=100:11:0::::P11_QUESTION_ID:4110947624538#22981269011674
    edit
    From 10g doc:
    ORA-22818: subquery expressions not allowed here
    Cause: An attempt was made to use a subquery expression where these are not supported.
    Action: Rewrite the statement without the subquery expression.
    (http://download.oracle.com/docs/cd/B19306_01/server.102/b14219/e19400.htm#sthref6020)
    Edited by: hoek on Jun 10, 2009 7:56 AM

  • Discovrer Summery folder rebuilt error ORA-30353: expression not suppor

    Hi
    While i edit summery folder in discoverer 10g. I got follwing error.
    ORA-30353: expression not supported for query rewrite
    I checked this error with oracle but i m not ok with that. As per their solution disable the REWRITE option on the materialized view. But i already do that.
    Plz help me on this..
    Edited by: user3318200 on Nov 7, 2008 1:11 AM

    Hi
    While i edit summery folder in discoverer 10g. I got follwing error.
    ORA-30353: expression not supported for query rewrite
    I checked this error with oracle but i m not ok with that. As per their solution disable the REWRITE option on the materialized view. But i already do that.
    Plz help me on this..
    Edited by: user3318200 on Nov 7, 2008 1:11 AM

  • SSRS dynamic image expression not working

    Hi All;
    All my below dynamic expression not wrking
    =iif(First(Fields!new_mainValue.Value,
    "DataSet1")="ABC",True,False)
    Any help much appreciated
    Thanks
    Pradnya07

    Below worked for me 
    =iif(First(Fields!new_mainValue.Value,
    "DataSet1")="ABC",False,True)

  • Expresses not working with Extreme:  another case

    It seems like lots of folks are having similar problems. Here are the specifics of my problem:
    Using Airport Utility 5.3.1
    1. New Airport Extreme N, 7.3.1 firmware, configured as WDS main, radio mode n (g/b compatible), works fine, internet connects, security WEP (Transitional).
    "Allow to be extended" is unchecked
    "Allow wireless clients" is checked
    2. New Airport Express N, 7.3 firmware, configured as WDS relay. After update, Utility no longer sees the Express, light flashes yellow, can't connect to it.
    3. Previously used Airport Express G, 6.3 firmware, configured as WDS relay after a hard reset. After update, Utility no longer sees the express. Light is green, can get wireless signal from this unit but no internet connection.
    Ultimately I'm trying to connect to another Express G with 6.3 as a WDS remote. But that's a moot point till I can get the relay working.
    Sometimes I am prompted for a WPA password for my security, even though it is set as WEP on the Extreme ... Just checked the Express G and it was showing WPA; changed it to WEP and now this unit has become invisible to Utility again. A hard reset will make it visible, but then after configuring it, it will disappear again without becoming fully functional.
    In another location, I have set up a similar network (Extreme N as WDS main to Express G relay to Express G remote). This was a while ago, so it was probably a different Airport Utility.
    Would appreciate answers on:
    - Whether to check "allow to be extended" on the Extreme. Maybe this is preventing internet access from reaching the Express relays.
    - Why WPA keeps showing up when I've only selected WEP
    - What to do about Expresses not visible by Utility
    - Why internet connection isn't being shared
    - How should IPv4 be set on the relay: manual? DHCP? It's DHCP on the Main (Extreme).
    - Is there a previous version of Utility which doesn't have these problems and is compatible with Extreme N? The Express N is optional for me, though the extra range would be helpful.
    - Now I get an error message when trying to join my wireless network on the formerly working Express ...
    - To switch the MacBook from one Airport to another, I turn the MacBook's internal Airport off, then on. It will then connect to the one with the strongest signal. For some reason it isn't connecting to my network automatically; I have to select it each time. It used to find the network automatically. Not sure what changed here.
    Thanks in advance to all you gurus. 7 hours on this is enough for one day.
    Dave

    and a P.S.: I've been leery of upgrading the Express N to 7.3.1 since so many people are saying they have problems with it. Does that make sense to the gurus?

  • EM Database Express not working in RAC installation

    I installed the Oracle 12cRAC  , Standard editon ,version : Oracle Database 12c Release 12.1.0.1.0 - 64bit Production edition in Windows 2008 64 Bit .
    Instance and RAC database is working fine is both host.  After installation of the database (DBCA), it EM database express URL shows as
    https://apph1.xxxx.com:5500/em
    If i run the URL, it is not working.
    Following are the output of the command:
    SQL> SELECT 'https://'||SYS_CONTEXT('USERENV','SERVER_HOST')||'.'||SYS_CONTEXT('USERENV','DB_DOMAIN')||':'||dbms_xdb_config.gethttpsport()||'/em/' from dual;
    5500
    SQL> SELECT 'https://'||SYS_CONTEXT('USERENV','SERVER_HOST')||':'||dbms_xdb_config.gethttpsport()||'/em/' from dual;
    0
    SQL> select dbms_xdb_config.gethttpsport() from dual;
    https://apph1:5500/em/
    SQL> select dbms_xdb_config.gethttpport() from dual;
    https://apph1:5500/em/
    But still EM express not open in the broser.
    I am not sure, how to check the listenr in RAC.
    C:\>srvctl status listener
    Listener LISTENER is enabled
    Listener LISTENER is running on node(s): apph1,apph2
    How enable the EM Express in RAC?
    Regards
    Mathew

    Dear All,
    I set HTTP port manually
    SQL> exec dbms_xdb_config.sethttpport(8080);
    Now EM express working on http.
    Regards
    Mathew

Maybe you are looking for

  • TAX code requires default cost center

    Hi, There is an error coming while posting the MIRO Invoice with tax code ( need to be charge to PL Account) " put the cost center " for GL Account for tax code. This is  a cost element & hence requires cost center but the field for entring tax posti

  • Ok code is not getting in bp transaction

    HI All, Using BUPT i have added some custom fields in transaction BP for the role SAP Credit Management Under the Tab Fiscal Year Information. In my custom screen I have used the FM FS02_BUPA_BP021_GET to get the values in Fiscal Year Tab. Now my req

  • Get artboard of selected item

    I have script where I select items on multiple artboard but I can't seem to get get active art board of the selected item. Is this possible? each artboard has a text item and I would like them in the same position on each of their own artboards that

  • Ken Burns effects in iWeb

    Sorry if this is a dumb question. Im new to iWeb and am trying to to build a home page with photos as the background that rotate from one to another and have the Ken Burns effect on them while they are on screen. Any way to do this?

  • Error when trying to publish Android .apk in CS5

    Hello, I was hoping someone could help me with this. I installed the Air for Android and followed all of the steps as I was told to in the tutorials, yet when I try to publish the .apk file I get an error = "Error exporting the SWF file. Please see t