Use navigation model and runtime created pages

Hi,
I have my Portal Application created in JDeveloper, with set of base pages. Pages are stored in default-navigation-model, so I could use i18n in navigation rendering. I'd also like to use runtime pages management. When I enter admin panel, I can add new pages, change order of pages created in jdeveloper, or show/hide them. However those changes are not reflected in the portal, navigation always looks the same, still displays pages I've marked as hidden - is navigation cached somewhere?
If I create new page in admin panel, it isn't displayed in navigation too. However I could click on this page title in admin panel, go to this page and edit its content - of course even then page is not displayed in the meny, none of menu items is marked a highlited.
What am I doing wrong? I followed Yannick's tutorial http://www.yonaweb.be/webcenter_tutorial/closer_look_at_navigation_model and switched from page hierarchy to navigation model. Maybe this is the reason?

I got back to your tutorial and haven't found a place where it'd be explained directly. Maybe "between the lines", but as for Webcenter newbie I haven't notice it.
I switched back to pages hierarchy. I was using navigation model to achieve i18n in navigation, however I also had problems about that, and as you suggested me once in another thread I changed page titles to PortalBundle keys and rendered values from bundles manually.
Therefore now comes the second question in this area - is it possible to use page hierarchy, runtime crated pages and still localize page titles?
P.S. As an experienced Liferay Portal developer, I really try to see any benefits of Webcenter in building custom portals area and still I can hardly find any... ;)

Similar Messages

  • How to navigate to a specific part of a page using Navigation Model

    Hi....
    I need to navigate to a specific part of the page using navigation models.
    When I click on a link it should navigate to a div in the middle of the page instead of showing page from starting.
    How to achieve this using webcenter navigation models?
    Thanks.

    Hi All,
    Even I have the same requirement in my project.
    I need to navigate to a specific part of a page instead to the top of page using navigation models.
    I have a navigation model with name aboutUsNavigation.xml which have 5 links(About Us, Contact Us, Carrers, ...).
    I have used the adf tree Component to show the links.
    <af:tree id="about" var="node" initiallyExpanded="false" summary="AboutUs" value="#navigationContext.navigationMode
    l['modelPath=/oracle/webcenter/portalapp/navigations/aboutUsNavigation'].treeModel['includeStartNode=false']}" >
    <f:facet name="nodeStamp">
    <af:commandImageLink id="cil2" text="#{node.title}"
    actionListener="#{navigationContext.processAction}"
    action="pprnav"
    icon="#{node.attributes[pageFlowScope.tnBean.iconKey]}"
    disabled="#{not node.navigable}"
    inlineStyle="#{node.onSelectedPath ? 'font-weight:bold;' : ''}">
    <f:attribute name="node" value="#{node}"/>
    </af:commandImageLink>
    </f:facet>
    </af:tree>
    All the 5 links should navigate to the about.jspx. but each to a part of the page. how to achieve this?_
    Thanks..

  • Problem for getting the real path using one servlet and one jsp page

    I have one tomcat machine and several virtual domains. Eahc virtual domain has one realpath in the disc.
    I am using one servlet and one jsp page for using this servlet.
    my purpose is to load, using the servlet , the real path for the domains (eahc domain has its path).
    for this i make this:
    the servlet code is this:
    package utils.ticker;
    import java.io.*;
    import java.io.File;
    import java.io.IOException;
    import java.net.*;
    import java.util.*;
    import java.text.*;
    import javax.servlet.*;
    import javax.servlet.http.*;
    import javax.servlet.http.HttpServlet;
    import javax.servlet.Filter;
    import javax.servlet.FilterChain;
    import javax.servlet.FilterConfig;
    import javax.servlet.ServletContext;
    import javax.servlet.ServletException;
    import javax.servlet.ServletRequest;
    import javax.servlet.ServletResponse;
    public class Edicion extends HttpServlet{
    public Edicion() {
    public String cc(){
    ServletContext myContext= getServletContext();
    String abspath = myContext.getRealPath("/");
    //here i want to return the real path
    return abspath;
    public static void main(String args[]){
    and the jsp page is:
    <%@ page import="utils.ticker.*" %>
    <jsp:useBean id="tick" class="utils.ticker.Edicion" scope="session"/>
    <html><head><body>
    <%
    tick.cc();
    %>
    </body></head></html>
    But this produces one error, NullPointerException and dont shows me the real path.
    Can anyone help me?
    thanks

    i have put this into one sevlet:
    package utils.ticker;
    import javax.servlet.ServletContext;
    public class Edicion{
    private ServletContext myContext;
    public Edicion(ServletContext myContext) {
    this.myContext = myContext;
    public String getCC(){
    return myContext.getRealPath("/");
    and in the jsp page this:
    <%@ page contentType="text/html; charset=iso-8859-1" language="java" import="java.sql.*"%>
    <%@ page import="utils.ticker.*" %>
    <jsp:useBean id="tick" class="utils.ticker.Edicion" scope="session"/>
    <html><head><body>
    <%=tick.getCC()%>
    </body></head></html>
    but appear this error in the tomcat.
    Can you, please, help me. i am trying to solve this during one week and i am desesperate.
    Thanks.
    ERROR:
    HTTP Status 500 -
    type Exception report
    message
    description The server encountered an internal error () that prevented it from fulfilling this request.
    exception
    org.apache.jasper.JasperException: class utils.ticker.Edicion : java.lang.InstantiationException: utils.ticker.Edicion
         at org.apache.jasper.servlet.JspServletWrapper.service(JspServletWrapper.java:248)
         at org.apache.jasper.servlet.JspServlet.serviceJspFile(JspServlet.java:295)
         at org.apache.jasper.servlet.JspServlet.service(JspServlet.java:241)
         at javax.servlet.http.HttpServlet.service(HttpServlet.java:853)
         at org.apache.catalina.core.ApplicationFilterChain.internalDoFilter(ApplicationFilterChain.java:247)
         at org.apache.catalina.core.ApplicationFilterChain.doFilter(ApplicationFilterChain.java:193)
         at org.apache.catalina.core.StandardWrapperValve.invoke(StandardWrapperValve.java:260)
         at org.apache.catalina.core.StandardPipeline$StandardPipelineValveContext.invokeNext(StandardPipeline.java:643)
         at org.apache.catalina.core.StandardPipeline.invoke(StandardPipeline.java:480)
         at org.apache.catalina.core.ContainerBase.invoke(ContainerBase.java:995)
         at org.apache.catalina.core.StandardContextValve.invoke(StandardContextValve.java:191)
         at org.apache.catalina.core.StandardPipeline$StandardPipelineValveContext.invokeNext(StandardPipeline.java:643)
         at org.apache.catalina.core.StandardPipeline.invoke(StandardPipeline.java:480)
         at org.apache.catalina.core.ContainerBase.invoke(ContainerBase.java:995)
         at org.apache.catalina.core.StandardContext.invoke(StandardContext.java:2415)
         at org.apache.catalina.core.StandardHostValve.invoke(StandardHostValve.java:180)
         at org.apache.catalina.core.StandardPipeline$StandardPipelineValveContext.invokeNext(StandardPipeline.java:643)
         at org.apache.catalina.valves.ErrorDispatcherValve.invoke(ErrorDispatcherValve.java:170)
         at org.apache.catalina.core.StandardPipeline$StandardPipelineValveContext.invokeNext(StandardPipeline.java:641)
         at org.apache.catalina.valves.ErrorReportValve.invoke(ErrorReportValve.java:172)
         at org.apache.catalina.core.StandardPipeline$StandardPipelineValveContext.invokeNext(StandardPipeline.java:641)
         at org.apache.catalina.core.StandardPipeline.invoke(StandardPipeline.java:480)
         at org.apache.catalina.core.ContainerBase.invoke(ContainerBase.java:995)
         at org.apache.catalina.core.StandardEngineValve.invoke(StandardEngineValve.java:174)
         at org.apache.catalina.core.StandardPipeline$StandardPipelineValveContext.invokeNext(StandardPipeline.java:643)
         at org.apache.catalina.core.StandardPipeline.invoke(StandardPipeline.java:480)
         at org.apache.catalina.core.ContainerBase.invoke(ContainerBase.java:995)
         at org.apache.coyote.tomcat4.CoyoteAdapter.service(CoyoteAdapter.java:223)
         at org.apache.coyote.http11.Http11Processor.process(Http11Processor.java:432)
         at org.apache.coyote.http11.Http11Protocol$Http11ConnectionHandler.processConnection(Http11Protocol.java:386)
         at org.apache.tomcat.util.net.TcpWorkerThread.runIt(PoolTcpEndpoint.java:534)
         at org.apache.tomcat.util.threads.ThreadPool$ControlRunnable.run(ThreadPool.java:530)
         at java.lang.Thread.run(Thread.java:536)
    root cause
    javax.servlet.ServletException: class utils.ticker.Edicion : java.lang.InstantiationException: utils.ticker.Edicion
         at org.apache.jasper.runtime.PageContextImpl.handlePageException(PageContextImpl.java:533)
         at org.apache.jsp.pruebas_jsp._jspService(pruebas_jsp.java:72)
         at org.apache.jasper.runtime.HttpJspBase.service(HttpJspBase.java:137)
         at javax.servlet.http.HttpServlet.service(HttpServlet.java:853)
         at org.apache.jasper.servlet.JspServletWrapper.service(JspServletWrapper.java:204)
         at org.apache.jasper.servlet.JspServlet.serviceJspFile(JspServlet.java:295)
         at org.apache.jasper.servlet.JspServlet.service(JspServlet.java:241)
         at javax.servlet.http.HttpServlet.service(HttpServlet.java:853)
         at org.apache.catalina.core.ApplicationFilterChain.internalDoFilter(ApplicationFilterChain.java:247)
         at org.apache.catalina.core.ApplicationFilterChain.doFilter(ApplicationFilterChain.java:193)
         at org.apache.catalina.core.StandardWrapperValve.invoke(StandardWrapperValve.java:260)
         at org.apache.catalina.core.StandardPipeline$StandardPipelineValveContext.invokeNext(StandardPipeline.java:643)
         at org.apache.catalina.core.StandardPipeline.invoke(StandardPipeline.java:480)
         at org.apache.catalina.core.ContainerBase.invoke(ContainerBase.java:995)
         at org.apache.catalina.core.StandardContextValve.invoke(StandardContextValve.java:191)
         at org.apache.catalina.core.StandardPipeline$StandardPipelineValveContext.invokeNext(StandardPipeline.java:643)
         at org.apache.catalina.core.StandardPipeline.invoke(StandardPipeline.java:480)
         at org.apache.catalina.core.ContainerBase.invoke(ContainerBase.java:995)
         at org.apache.catalina.core.StandardContext.invoke(StandardContext.java:2415)
         at org.apache.catalina.core.StandardHostValve.invoke(StandardHostValve.java:180)
         at org.apache.catalina.core.StandardPipeline$StandardPipelineValveContext.invokeNext(StandardPipeline.java:643)
         at org.apache.catalina.valves.ErrorDispatcherValve.invoke(ErrorDispatcherValve.java:170)
         at org.apache.catalina.core.StandardPipeline$StandardPipelineValveContext.invokeNext(StandardPipeline.java:641)
         at org.apache.catalina.valves.ErrorReportValve.invoke(ErrorReportValve.java:172)
         at org.apache.catalina.core.StandardPipeline$StandardPipelineValveContext.invokeNext(StandardPipeline.java:641)
         at org.apache.catalina.core.StandardPipeline.invoke(StandardPipeline.java:480)
         at org.apache.catalina.core.ContainerBase.invoke(ContainerBase.java:995)
         at org.apache.catalina.core.StandardEngineValve.invoke(StandardEngineValve.java:174)
         at org.apache.catalina.core.StandardPipeline$StandardPipelineValveContext.invokeNext(StandardPipeline.java:643)
         at org.apache.catalina.core.StandardPipeline.invoke(StandardPipeline.java:480)
         at org.apache.catalina.core.ContainerBase.invoke(ContainerBase.java:995)
         at org.apache.coyote.tomcat4.CoyoteAdapter.service(CoyoteAdapter.java:223)
         at org.apache.coyote.http11.Http11Processor.process(Http11Processor.java:432)
         at org.apache.coyote.http11.Http11Protocol$Http11ConnectionHandler.processConnection(Http11Protocol.java:386)
         at org.apache.tomcat.util.net.TcpWorkerThread.runIt(PoolTcpEndpoint.java:534)
         at org.apache.tomcat.util.threads.ThreadPool$ControlRunnable.run(ThreadPool.java:530)
         at java.lang.Thread.run(Thread.java:536)
    Apache Tomcat/4.1.18

  • Forward to JSP page without using Navigation Model

    How can I forward to a JSP page without using the Navigation Model?

    It's done in the cardemo example in
    ImageMapEventHandler.processAction() Is there a reason
    for it there?Ah ... that makes sense.
    That code in CarDemo was written before there was such a thing as a NavigationHandler, and we didn't have time to update it to the new approach before the EA4 release. That'll be changed before the next one. In the mean time, I'd recommend that you use the navigation rules mechanism where it works for you, because it encourages good separation of business logic and presentation logic that will lead to more maintainable applications.
    Craig

  • Multiple navigation models and security

    Hi,
    I want to have 3 navigation models (default, A, B) but I want the "role" AA to have access to the default navigation model + A model (when connected on the portal) and the "role" BB to have the default and B one. I want to have my security here. It could be easy to make it with the page hierarchy, but I want to try it with the 3 different navigations and I'm a bit lost.
    I think the answer may be in the visible attribute, but I have tried this and it didn't worked:
    For A model inside default navigation:
    visible: ${securityContext.userInRole == AA}
    Thanks!

    That's rather easy to do.
    The trick is that you create a reference to an existing nav model from A so it will include the default one.
    When you go the administration console and open the configuration tab you can define the default navigation model. For this you can use expression language so you just have to write a managed bean that returns the path to the navigation model.
    Something like this:
    public String getNavMode(){
      if(userInARole)
         return "oracle/webcenter/portalapp/navigations/modelA.xml";
      if(userInBRole)
        return "oracle/webcenter/portalapp/navigations/modelB.xml";
      return "oracle/webcenter/portalapp/navigations/default.xml";
    }I haven't tested it but it should work. It's also possible that you can ommit the .xml in the filename.

  • Report using Tabular Model and Measures based on Distinct Counts

    Hello,
    I am creating a report that should present something like this:
    YEAR-1 | MONTH-1 | MONTH-2 | MONTH-3... | YEAR | MONTH-1 | MONTH-2 | MONTH-3...
    My problem is that when designing the dataset to support this layout I drag the Year, Month and Distinct count Measure, but on the report when I want the value for the YEAR level I don't have it and I cannot sum the months value...
    What is the best aproach to solve this? Do I really have to go to advanced mode and customize my MDX or DAX? Can't basic users do something like this that seems so trivial and needed?
    Thank you
    Luis Simões

    Hi Luis,
    According to your description, you create a Reporting Services report using Analysis Service Tabular Model as the datasource, now what you want is sum the months value on year level, right?
    In your scenario, you can add the Month field to column group, add a parent group using Year Field and then add a Total on Month group. In this case, Reporting Services will sum the months value on Year level. I have tested it on my local environment, the
    screenshot below is for you reference.
    Reference:Lesson 6: Adding Grouping and Totals (Reporting Services)
    If this is not what you want, please describe your dataset structure, so that we can make further analysis.
    Regards,
    Charlie Liao
    TechNet Community Support

  • Using Navigation Pane and Filter on WAD

    Hi experts,
    Couple of quick questions regarding WAD :
    1) When I first execute the WAD planning layout, I basically get the selection screen based on the variables that were defined on the query. One of my variables is basically a naviagtional attribute. After I make the selection and execute the WAD based layout, I get my results screen with my plan data. But I also want to see above my layout the values that were  entered in my selections when I executed the layout. I treid to use the 'Navigation Pane',  and by defining it to show me those ' Free characteristics in my query'.
    The problem is, it only shows me those 'Free characteritics', but does not show me the VALUES that I selected for those free characteristics. What am I missing ??? It seems like you can only using them for drag&drop.. !!  I need a way for the layout to show/default those values that were originally selected when the template was first executed.
    2) I created a 'Drop-down' in WAD for one of my naviagation attaributes. I defined it as follows:
    Data Binding :  Char/Structure
    Data Provider: Query that I have that reads the navigation attribute from master data.
    Characteristic: Selected the techincal name of the navigational attribute.
    Affected Data Providers : Since I have 4 querieson the one web template that will be affected (changed) by this drop-down, I have listed all 4 here.
    The problem is, when I execute query, and I get to my results area, when I select a different value from my drop-down of that navigational attribute, the results area does not change. In other words, the drop-down selections have NO affect on any of my WAD layouts (results area). It keeps and stays on the original results. Can someone helps with this.
    Thanks

    Hi Ehab,
    For the first one, you can have a property in the Template properties.
    Click on anywhere in the template other than on web items. Now select Web item properties tab on the left side. Go to "Entries in Context Menu">"Display Variable screen">Always Display.
    By doing this, the variables you have selected will not be displayed once you have executed but you can go to variable screen with the selections you have made in that execution using Context menu.
    Hope this helps u...
    Regards,
    KK.

  • Using Mavericks Spelling and Grammar in Pages document causes Pages to freeze. Must Force Quit. Mavericks spell checker works OK in Text and Emails. How can I fix this problem?

    Using Mavericks' Spelling and Grammar in a Pages document causes Pages to freeze, Must Force Quit. How can I fix this problem?
    Mavericlks Spelling and Grammar works in Pages when used manually. And it works automatically in Text and email.

    Another autocorrect bug:
    I type a lot of lyrics, which tend to cotain words like ’cause and ’em instead of because and them.
    I've set up autocorrect instances to change a plain apostrophe with an ending, single curly quote for these words, but they are invariably changed to a beginning, single curly quote mark by Pages. The only way I can get the correct curly quote is to type over the wrong quote manually and hope that I don't have to edit the rest of the word again, as this would cause autocorrect to kick in again and change the quote to the wrong, beginning curly mark again.
    Does anyone know how to get around this tedious problem?

  • Re-use of .264 and .ac3 created by compressor or fcp-share

    Good Morning from Belgium
    Here is my question
    How do I reburn a blu-ray without having to reencode in compressor or using "share" in fcp. In other words, how to re-use the .264 and .ac3 files created in a previous burning session ? I have tried Toast 9 but get 2 files (one with audio, one with video) .
    Can I safely delete those huge files if it is not possible to use them later with any software ?
    Hope you can help
    Michel

    I can put a movie in Compressor, add the video and audio presets and then select "Create BD/AVCHD Disc" in the Job Action menu but that will only create one disc.
    My idea was to save the .264 and .ac3 files so that I could burn another disc at a later date.
    I can do this with Toast but there is no way I can use those files in Compressor again (that I know about).
    What exactly did you mean by burn it from a disk image?
    I can do that in Toast but I don't know how to do it with Compressor.

  • How to use  font Symbol and Zapfdingbats. in Pages for iPad

    Pages for ipad has font options of Symbol and Zapf Dingbats.  I would like to use one of these fonts to place arrows in lines of text. Does anyone know how to do this? I am using IOS6 and ipad 3

    Does Pages on the iPad have an Inspector panel? In the Mac version, it's a round blue button in the icon bar at the top of the window.
    If you've got that in the iPad's Pages app, then you can use it to manually raise or lower the baseline of one or more characters, then use the font size to make them smaller. Superscripting after a numeral can be automatic (in the Mac version) by setting that in the Prefs.
    You can probably tell I don't have my iPad yet.
    Rob

  • CI use websit 'blackpool4me' and have a page WORDSMITHS WITH A SONG. i cannot edit my page in firefox. I have to open it in Internet Exploere to do the editing

    I use a local website for our group activities. The site is BLACKPOOL4ME. Before Firefox 12 I could edit my page easily and insert photos etc but now I have to go into INTERNET EXPLOER, open Blackpool4me do my editing , then close the page down and come back into FIREFOX.
    ‘I asked one of the developers of BLACKPOOL4ME to try using FIREFOX 12 to edit my page as it wouldn't allow me to do so. Their response was that the way the Microsoft Content Management system renders the page is not very good but they have no control over the formatting. help.

    Perform the suggestions mentioned in the following articles:
    * [https://support.mozilla.com/en-US/kb/Template:clearCookiesCache Clear Cookies & Cache]
    * [[How to clear the cache#w_clear-the-cache|Clear the Network Cache]]
    * Make sure that you are using the '''"Remember History"''' setting as described in this article -> [[Options window - Privacy panel]]
    -> Start Firefox in -> [[Safe Mode]] to check if your add-ons/extensions are causing the problems.
    * Also see this article -> [[Troubleshooting extensions and themes]]
    Check and tell if its working.

  • How to use ' NAVIGATION- GOTO_PAGE' goto a new page

    Hello friends.
    when I use a hyperlink.
    I can open a new page by set target="_blank" or target="_parent" etc.
    How can do the same thing by using
    NAVIGATION->GOTO_PAGE(mypage.htm)
    in OnInputProcessing.
    Thank You.

    Hi Meiok,
    have a look at thread Navigation in BSP, this might give you some ideas for the solution.
    Regards,
    Rainer

  • Af:query filter state becomes incorrect on navigating away and back to page

    Hi,
    I've added two named view criteria to my VO. One to show all records ('All Records') and one to show records created by the currently logged in user ('My Records'). I've added an af:query element on my page to allow the user to select one of these two named criteria. This all seems to work, however I've noticed I'm getting some strange behaviour when I navigate to a different page and then return to my filtered page.
    When I load the page 'All Records' shows by default, I can switch between 'My Records' and 'All Records' successfully (data set changes). However if I do the following:
    - select 'My Records'
    - navigate to another page
    - navigate back to the original page
    'My Records' is still selected (great) and the table still shows the results of 'My Records' (great), but when I now select 'All Records', I seem to be only operating within the scope of records created by the currently logged in user. So 'All Records' now shows the same as 'My Records'.
    It seems that by navigating away from then back to my page, I'm fixing whatever criteria were being applied to the VO at the time I left the page. Then all queries from that point on operate only on a reduced data-set.
    How can I stop this happening? I'd ideally like to be able to fix this without having to reset the filter back to 'All Records' whenever a user enters the page. I like the fact that the selected search is remembered, I just want All Records not become broken. I've tried pressing 'Reset' on all the queries, but this doesn't help.
    Any ideas on how what's going wrong here?
    Edited by: japher on Aug 17, 2009 3:25 PM

    There are several issues related to ADF Faces query components. One of them is that these components do not remove eventual previously applied view criterias. In fact query components keep track of last applied view criteria since current entry into the page. If you have entered the page, applied a view criteria and executed the query and after that you have switched the view criteria and executed another query, then everything is OK (since you have not left the page and it keeps track of the first applied criteria). But if you have left the page between the two query executions, then the previously applied view criteria remains applied (since you have applied it before current entry into the page) and it affects the query result.
    There are several workarounds of this problem. One of them is to include your ViewObject twice into ApplicationModule's data model - 1st one with 1st ViewCriteria pre-applied and 2nd one with 2nd ViewCriteria pre-applied - and to use two ViewObject instances in your application instead of switching ViewCriterias. Another workaround is to set custom query processing method in "queryListener" property of the query component. You have to implement a custom processQuery() method in some managed bean that clears any unnecessary applied ViewCriterias at the beginning and after that invokes the standard implementation of processQuery() method of the corresponding FacesCtrlSearchBinding. In order to be able to find the corresponding search binding within your custom method you will have to get the binding's name. You can either hard-code it within your custom method or use <af:setPropertyListener> tag to write the binding's name to the pageFlowScope, for example.

  • Custom navigation: sorting and hiding certain pages / communities

    We have constantly struggled with our navigation in the portal. Our current setup is to not display anything where name begins with 'Hide - ', so if a community has 10 pages but only 3 should show up in the navigation, 7 of the pages need to be named "Hide - ..." This obviously has some disadvantages as the word Hide - is visible some places. Another issue is the differentiation between a 'page' and a 'community' to end users. Our portal looks like a website users have no idea what the difference is. To them, everything is just a page. Currently we group and style pages and communities different, like so:
    parentcomm
    --subpage1
    --subpage2
    --subcomm1
    --subcomm2
    I'm trying to come up with some ways to improve the navigation. One idea would be to set a custom property isHiddenFromNav that would be read presumably in a custom tag. This is currently the way that the sorting of communities works, a sortorder property is filled in. I'm curious about the performance of reading custom properties, however. Is it faster to use the database api or the search api? How can i ensure these values are cached?
    As far as improving the usability, i'm exploring mixing pages and communities, so a community just looks like a page (but with a plus or an arrow to indicate there is more stuff there).

    In our customization we are using 4 custom property's for portlets. Moreover, we are not basing on portal cache, we have implemented static hash table's where each property is stored. PEI is taking care about the refreshing properties in hash tables on current portal instance (NewEditObjectActions.xml), there is also code responsible for sync new value with other portal servers.
    As portal server we are using WAS 6.0 (4 machines, 8 jvm on each server). WAS has nice feature DRS (Data Replication Service, easy to use, operate with one jndi name) which propagate new value over all claster members .
    Bellow you can find some informations about our performance test.
    Home page contain usually ~10 portlets
    Scenario details:
    - Virtual users: 1500
    - Ramp up: 3 virtual users logging in every 2 seconds
    - Think time: 5 sec
    - Top load duration: 45 minutes
    - Virtual user’s browser flow:
    Login (1 time)
    Home Page (100%)
    Perform some operation in 2 portlets (search, go to archive, back, search)
    Change language (5%)
    Logoff (just 1 time, at the end of the test)
    Results: average time response less than 3s, ~250 pages/s.
    I hope this will be helpful for you.

  • Using OSX lion and I created an aim account but ichat will not let me login and says my password or username is incorrect!?

    I have created an AIM account on my computer. When I go to sign into Ichat it does not let me sign in. It says my username/password is incorrect. Any help would be appreciated.

    Hi,
    Whenever I have created a Name at AIM then I have received an email to tell me (via the email I listed) that a name has been created.
    Such as this:-
    Thank you. An AOL account as been created using this email address.
    To complete the registration and activate the account, please verify your email address by clicking the link below.
    Yes, I made this request and I want to reserve this email address as part of the AOL account service
    No, I did not make this request and I do not want my email address registered with the AOL account service
    You will not be able to use this AOL account or make changes to the account until the registration is complete.
    Thank you,
    The AOL Team
    (Some lines are links in the original)
    The wording in the above is from an older confirmation email, I have a newer one has slightly different wording.
    That is then followed by a "Thank for Confirming" email.
    An @mac.com Apple ID that is also a valid AIM Screen Name is registered here
    Keep the password to 16 characters or less (it's an AIM  limit despite the prompts on the Site for longer).
    The Apple ID (Using @mac.com) links one email to the @mac.com name.  That email is a must  but must not already be used with  another Apple ID
    7:30 PM      Thursday; August 18, 2011
    Please, if posting Logs, do not post any Log info after the line "Binary Images for iChat"
     G4/1GhzDual MDD (Leopard 10.5.8)
     MacBookPro 2Gb( 10.6.8)
     Mac OS X (10.6.8),
    "Limit the Logs to the Bits above Binary Images."  No, Seriously

Maybe you are looking for

  • I ave old iphone what are my options?

    See topic...I have an older 4 GB iPhone which I want to give to my wife. I want to purchase a new 3G for myself (tee hee) can I go ahead and get the new iphone at the $299 price? I'd have to check but I don't think I'm eligible for an upgrade at this

  • Centralized  Dunning run and local printing requirement

    Hello SAP FICO experts, I have a requirement at my client as follows. To schedule dunning run centrally  for all company codes or selected company codes periodically and automatically. Ability to print dunning letters in local offices in each country

  • Cannot install purchased Photoshop CS6, Error 16

    I checked permissions on the two Library folders indicated in a previous Adobe help post,, permissions appear as indicated by Adobe. Uninstalled CS6, tried again, same result Downloaded version, not disk I had some issues with CS6 beta, but not initi

  • Assign key combination to service

    I got a couple of questions: 1. In keyboard preferences you can assign a shortcut to Services you made with Automator. When I assign a combination that includes the '\' key, it simply disappears, so I can't assign command+\ to my service. It worked p

  • Navigation bar not functioning

    Hello, I have a published site (debotahvrogers.net) that was updating and now when I update my navigation bar does not work. I am using iweb '09 3.0.1 I have tried refresh, cache and cookie removal, made sure my photo was not overlapping in to the na