Bea portal 8.1 : cm:getProperty Tag problem.........

Hi,
bea portal 8.1
I have problem in assiging dynamic values to the jsp variable using the
cm:getProperty tag.
<cm:getProperty name="description" id=<%variableName%>/>
I want to use the value retreived from the cm:getProperty for further
process in the java code.
Please revert back if any body has a solution
Regards
Manoj

With <cm:getProperty> id the name of the script variable which holds the
Node instance to get properties from. It's typically used as follows:
<cm:getNode path="/BEA Repository/my/path" id="mynode"/>
<%-- script variable 'mynode' is the Node at the above path --%>
<cm:getProperty name="description" id="mynode"/>
That will print out the description of the Node at /BEA Repository/my/path.
If you want to get the value of the description of the Node, use the
resultId, resultType, and isMultiple attribute of <cm:getProperty>, e.g.
<cm:getProperty id="mynode" name="description" resultId="mynodeDesc"
resultType="java.lang.String" isMultiple="false"/>
<%
if (mynodeDesc.startsWith("...")
// whatever
%>
Greg
Manoj Sharma wrote:
Hi,
bea portal 8.1
I have problem in assiging dynamic values to the jsp variable using the
cm:getProperty tag.
<cm:getProperty name="description" id=<%variableName%>/>
I want to use the value retreived from the cm:getProperty for further
process in the java code.
Please revert back if any body has a solution
Regards
Manoj

Similar Messages

  • Problem with LDAP in BEA Portal

    Problem with LDAP in BEA Portal
    I have a list of 50 user which should be cerated in portal staging(devlopment) machine and should be transfered to
    production machine using LDAP
    Steps which i followed to create Users
    1.Create User Profile with 2 parameters branch and Role
    2.I have list user in the Xls file with Username,password ,branch and Role
    3.Write a java File which will read the Xls File
    4.The users are created in the staging machine for the portal
    Steps which i followed in LDAP to tranfer the created User form Devlopment to Production
    1.Export the created user from Devlopment (which was moved as .DAT in my local directory)
    2.import the user from local direcory to production machine
    The Users are imported in the production machine with username and password but the role and branch values are empty
    We need a solution for importing the user with role and branch corresponding to each user.
    Thanks in Adv
    Suresh

    In Portal 8.1, user name and password in stored in LDAP where as user profile values are stored in database. That is the reason you are not able to see the user profile values.
    Check once again whether you can see these values through admin tool. In case,it is not(after confirmation again),you might have to use APIs to do this for you incase you dont want to manage through Admin Tool.
    Thanks,
    Prashanth Bhat.

  • Deploying BEA Portal App in Managed Server problems....

    Hello,
    I have a BEA portal application (exploded EAR) that I want to deploy in a managed server. I first created a regular portal domain (8.1 SP4). I then created a managed server via the console. When I went to deploy my portal application (in the console), I received an error indicating that the application was a Split Development Directory and that I would have to run the wlpackage Ant task against the application first. I ran the wlpackage ant task and it seemingly worked.
    I then used the wldeploy Ant task to deploy it in the managed server but got an error indicating that it could not find a JNDI name from one of the data sources. I went back to the console and targeted/deployed all of the default Connection Pools & Data Sources to the managed server thinking that was the reason the deploy failed.
    When I ran the wldeploy again I got the following error:
    Module: content.jar Error: Exception activating module: EJBModule(content.jar, status=PREPARED)
    Unable to deploy EJB: ValueBean from content.jar
    java.sql.SQLException: javax.naming.NameNotFoundException: While trying to lookup 'portalFrameworkPool; contentDataSource;weblogic.jdbc.jts.commercialPool' didn't find subcontext 'portalFrameworkPool;contentDataSource;weblogic' Resolved ; remaining name 'portalFrameworkPool;contentDataSource;weblogic/jdbc/jts/commercialPool'
    Has anyone run into this? Am I not suppose to deploy a portal application in a managed server?
    Any help would be greatly appreciated.
    Thanks - Peter Len

    Problem solved.......
    After targeting all the data sources and poolers to the managed server, I restarted the main domain but did not restart the managed server. After restarting the managed server all was well.
    Thanks - Peter

  • 8.1 equivalent of portlet:form event=bea.portal.framework.internal.refresh

    I've got a portlet with an edit JSP that allows the user to set some portlet settings. The edit JSP uses a form defined with the tag <portlet:form event="bea.portal.framework.internal.refresh" >. This in essence allowed the edit JSP to submit the form to itself, so it could then process (store) the settings.
    This tag is no longer supported in 8.1. I haven't been able to find what the equivalent is. Am I going to be able to do the same thing, or am I going to have to rewrite the Edit piece as a page flow?

    I've already tried that and it's not working in my current portal.
    The other things I've tried are <render:postBackUrl/> and <render:windowUrl> for the form action, and they weren't working, either. But since then I've discovered that in a new vanilla portal installation, the <render:postBackUrl/> action works fine (I assume the controller would, too, but I didn't try it).
    It seems I now have a different problem to work through to figure out why <render:postBackUrl/> works in a new installation, but not in my current one. The same goes for the controller.

  • Bea Portal Group and Group selection / um:getPorperty

    Hi,
    I would like to know if it is possible to set the default group
    in which <um:getProperty> looks into when the user does not have
    the requested property set into his profile.
    I noticed that by default it looks into the current group portal.
    However I would like to make it look into a specific sub group
    of the group portal.
    In the same way there are checks to dertermine if a user belongs to
    several portal groups, I would like to extend these checks and include
    sub groups in the tests and selection.
    I saw that the webflow uses GroupFormProcessor and GroupProcessor but
    couldn't find the source code to see what needs to be initialized for
    <um:getProperty> to work correclty.
    I saw the successor attribute in <um:getProfile>, but I would like to
    know if there's a way to avoid specifying it each time... by setting a
    value in the session for instance ?
    Thanks for your help,
    Best Regards,
    Thierry

    Hello Thierry,
    You probably want to set the explicit successor in the session. A
    successor is a group from which a user inherits properties. An explicit
    successor is one that is specified in the getProperty() call underlying the
    <um:getProperty> tag. Just for your information, this is as opposed to an
    implicit successor, which is persisted for the user and is associated with a
    property set. You can use the methods of ProfileWrapper to persist an
    implicit successor for a user for a specific property set.
    The portal framework sets the ProfileWrapper in the session using the
    com.bea.p13n.usermgmt.SessionHelper.putProfileInSession() method. It sets
    the explict successor for this profile to be equal to the group that was
    selected by the user to apply for this portal session when they logged on
    (if they are only a member of 1 group, then they were not prompted for which
    group...the group was simpley set as the explicit successor). The call to
    SessionHelper.putProfileInSession() is done in the PostLoginProcessor in the
    portal security webflow (see the webflow in your EBCC).
    You can override this by using SessionHelper.putProfileInSession()
    yourself or by putting <um:getProfile> into your portal.jsp page.
    <um:getProfile> does the same thing (uses
    SessionHelper.putProfileInSession() to put the ProfileWrapper into the
    session).
    If I were you, I'd put <um:getProfile> with session scope at the top of
    portal.jsp and use the group that you are interested in as the explicit
    successor.
    See the <um:getProfile> docs at
    http://edocs.bea.com/wlp/docs70/jsp/p13njsp.htm#1001358
    "Thierry Bensoussan" <[email protected]> wrote in message
    news:[email protected]...
    Hi,
    I would like to know if it is possible to set the default group
    in which <um:getProperty> looks into when the user does not have
    the requested property set into his profile.
    I noticed that by default it looks into the current group portal.
    However I would like to make it look into a specific sub group
    of the group portal.
    In the same way there are checks to dertermine if a user belongs to
    several portal groups, I would like to extend these checks and include
    sub groups in the tests and selection.
    I saw that the webflow uses GroupFormProcessor and GroupProcessor but
    couldn't find the source code to see what needs to be initialized for
    <um:getProperty> to work correclty.
    I saw the successor attribute in <um:getProfile>, but I would like to
    know if there's a way to avoid specifying it each time... by setting a
    value in the session for instance ?
    Thanks for your help,
    Best Regards,
    Thierry

  • Out of the box porlets for Content Management with BEA Portal

    I am looking at BEA Portal for a simple Intranet site with some basic content management system capabilities. I would like to implement this without the use of a third party tool and wanted to know if there are any open source or out of the box BEA portlets/web-apps with basic CMS capabilities beyond what has been shown in the Portal tutorials around CMS. From doing the tutorials, I have learned how to manage content, and how to build a site from scratch to access the content using the <cm:> tags. However, without additional third party products such as Documentum or Interwoven, is there any free BEA/open source portlets to:
    - Configure exposure of this content in a runtime framework? (ie content manager can expose new content from the repository by a configurable admin GUI, place where this content is on the page)
    - Allow for a simple approval workflow where content that gets added to the repository by user A has to be approved by user B before automatically exposing?
    Interested to know if custom portal type development is the only way to do these kind of simple functions, or third party product.

    Hi,
    Did you have a chance to look into WebLogic Portal 8.1 SP3? Check out the new Library Services features, which includes versioning and simple approval:
    http://e-docs.bea.com/wlp/docs81/adminportal/help/CM_MAN_LifecycleOV.html
    We also provide a few ootb portlets that allow users to interact with the CM system. Let us know if you have additional questions.
    Best Regards,
    --alex                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                   

  • Integrate with BEA Portal and Lotus Domino R5.0.12

    Deal all:
    I got a problem when I integrate with BEA Portal and Lotus Domino R5.0.12.
    my environment is below:
    - Domain Server :
    Lotus Domino Server R5.0.12
    BEA Personal Messaging API 4.3
    (test successful on local host)
    - Application Server:
    BEA Weblogic 8.15
    BEA Groupware portlets 2.5
    I got connection successful message when I using "Domino Service Connection"
    but I got "CZ: VERSION CONFLICT" error message when I add a new account by
    Compoze_Groupware-Edit Account user interface.
    Have anybody met the error message before... and know how to sovle the problem..
    I appreciated any suggest or comment~~~
    detail error message is below:
    portlets.compoze.groupware.exception.ConnectionException: CZ: VERSION CONFLICT at portlets.compoze.groupware.controls.provider.SessionControlImpl.createSession(SessionControlImpl.jcs:142) at sun.reflect.NativeMethodAccessorImpl.invoke0(Native Method) at sun.reflect.NativeMethodAccessorImpl.invoke(NativeMethodAccessorImpl.java:39) at sun.reflect.DelegatingMethodAccessorImpl.invoke(DelegatingMethodAccessorImpl.java:25) at java.lang.reflect.Method.invoke(Method.java:324) at com.bea.wlw.runtime.core.dispatcher.DispMethod.invoke(DispMethod.java:371) at com.bea.wlw.runtime.core.container.Invocable.invoke(Invocable.java:433) at com.bea.wlw.runtime.core.container.Invocable.invoke(Invocable.java:406) at com.bea.wlw.runtime.jcs.container.JcsProxy.invoke(JcsProxy.java:381) at $Proxy19.createSession(Unknown Source) at portlets.compoze.groupware.controls.provider.GroupwareProviderControlImpl.updateAccount(GroupwareProviderControlImpl.jcs:4825) at sun.reflect.NativeMethodAccessorImpl.invoke0(Native Method) at sun.reflect.NativeMethodAccessorImpl.invoke(NativeMethodAccessorImpl.java:39) at sun.reflect.DelegatingMethodAccessorImpl.invoke(DelegatingMethodAccessorImpl.java:25) at java.lang.reflect.Method.invoke(Method.java:324) at com.bea.wlw.runtime.core.dispatcher.DispMethod.invoke(DispMethod.java:371) at com.bea.wlw.runtime.core.container.Invocable.invoke(Invocable.java:433) at com.bea.wlw.runtime.core.container.Invocable.invoke(Invocable.java:406) at com.bea.wlw.runtime.core.container.Invocable.invoke(Invocable.java:249) at com.bea.wlw.runtime.jcs.container.JcsContainer.invoke(JcsContainer.java:85) at com.bea.wlw.runtime.core.bean.BaseContainerBean.invokeBase(BaseContainerBean.java:224) at com.bea.wlw.runtime.core.bean.SLSBContainerBean.invoke(SLSBContainerBean.java:109) at com.bea.wlwgen.StatelessContainer_ly05hg_ELOImpl.invoke(StatelessContainer_ly05hg_ELOImpl.java:207) at com.bea.wlwgen.GenericStatelessSLSBContAdpt.invokeOnBean(GenericStatelessSLSBContAdpt.java:62) at com.bea.wlw.runtime.core.bean.BaseDispatcherBean.runAsInvoke(BaseDispatcherBean.java:153) at com.bea.wlw.runtime.core.bean.BaseDispatcherBean.invoke(BaseDispatcherBean.java:54) at com.bea.wlw.runtime.core.bean.SyncDispatcherBean.invoke(SyncDispatcherBean.java:168) at com.bea.wlw.runtime.core.bean.SyncDispatcher_k1mrl8_EOImpl.invoke(SyncDispatcher_k1mrl8_EOImpl.java:46) at com.bea.wlw.runtime.core.dispatcher.Dispatcher.remoteDispatch(Dispatcher.java:161) at com.bea.wlw.runtime.core.dispatcher.ServiceHandleImpl.invoke(ServiceHandleImpl.java:436) at com.bea.wlw.runtime.core.dispatcher.WlwProxyImpl._invoke(WlwProxyImpl.java:326) at com.bea.wlw.runtime.core.dispatcher.WlwProxyImpl.invoke(WlwProxyImpl.java:315) at $Proxy11.updateAccount(Unknown Source) at portlets.compoze.content.options.accounts.editAccount.editAccountController.saveChangesAccountAction(editAccountController.jpf:534) at sun.reflect.NativeMethodAccessorImpl.invoke0(Native Method) at sun.reflect.NativeMethodAccessorImpl.invoke(NativeMethodAccessorImpl.java:39) at sun.reflect.DelegatingMethodAccessorImpl.invoke(DelegatingMethodAccessorImpl.java:25) at java.lang.reflect.Method.invoke(Method.java:324) at com.bea.wlw.netui.pageflow.FlowController.invokeActionMethod(FlowController.java:1512) at com.bea.wlw.netui.pageflow.FlowController.getActionMethodForward(FlowController.java:1447) at com.bea.wlw.netui.pageflow.FlowController.internalExecute(FlowController.java:778) at com.bea.wlw.netui.pageflow.PageFlowController.internalExecute(PageFlowController.java:211) at com.bea.wlw.netui.pageflow.FlowController.execute(FlowController.java:608) at org.apache.struts.action.RequestProcessor.processActionPerform(RequestProcessor.java:484) at com.bea.wlw.netui.pageflow.PageFlowRequestProcessor.processActionPerform(PageFlowRequestProcessor.java:1504) at org.apache.struts.action.RequestProcessor.process(RequestProcessor.java:274) at com.bea.wlw.netui.pageflow.PageFlowRequestProcessor.process(PageFlowRequestProcessor.java:674) at com.bea.wlw.netui.pageflow.AutoRegisterActionServlet.process(AutoRegisterActionServlet.java:527) at com.bea.wlw.netui.pageflow.PageFlowActionServlet.process(PageFlowActionServlet.java:152) at org.apache.struts.action.ActionServlet.doGet(ActionServlet.java:507) at com.bea.wlw.netui.pageflow.PageFlowUtils.strutsLookup(PageFlowUtils.java:1734) at com.bea.wlw.netui.pageflow.PageFlowUtils.strutsLookup(PageFlowUtils.java:1754) at com.bea.portlet.adapter.scopedcontent.ScopedContentCommonSupport.executeAction(ScopedContentCommonSupport.java:561) at com.bea.portlet.adapter.scopedcontent.ScopedContentCommonSupport.processActionInternal(ScopedContentCommonSupport.java:121) at com.bea.portlet.adapter.scopedcontent.PageFlowStubImpl.processAction(PageFlowStubImpl.java:98) at com.bea.netuix.servlets.controls.content.NetuiContent.raiseScopedAction(NetuiContent.java:150) at com.bea.netuix.servlets.controls.content.NetuiContent.raiseScopedAction(NetuiContent.java:109) at com.bea.netuix.servlets.controls.content.NetuiContent.handlePostbackData(NetuiContent.java:224) at com.bea.netuix.nf.ControlLifecycle$3.visit(ControlLifecycle.java:171) at com.bea.netuix.nf.ControlTreeWalker.walkRecursive(ControlTreeWalker.java:355) at com.bea.netuix.nf.ControlTreeWalker.walkRecursive(ControlTreeWalker.java:365) at com.bea.netuix.nf.ControlTreeWalker.walkRecursive(ControlTreeWalker.java:365) at com.bea.netuix.nf.ControlTreeWalker.walkRecursive(ControlTreeWalker.java:365) at com.bea.netuix.nf.ControlTreeWalker.walkRecursive(ControlTreeWalker.java:365) at com.bea.netuix.nf.ControlTreeWalker.walkRecursive(ControlTreeWalker.java:365) at com.bea.netuix.nf.ControlTreeWalker.walkRecursive(ControlTreeWalker.java:365) at com.bea.netuix.nf.ControlTreeWalker.walkRecursive(ControlTreeWalker.java:365) at com.bea.netuix.nf.ControlTreeWalker.walkRecursive(ControlTreeWalker.java:365) at com.bea.netuix.nf.ControlTreeWalker.walkRecursive(ControlTreeWalker.java:365) at com.bea.netuix.nf.ControlTreeWalker.walkRecursive(ControlTreeWalker.java:365) at com.bea.netuix.nf.ControlTreeWalker.walkRecursive(ControlTreeWalker.java:365) at com.bea.netuix.nf.ControlTreeWalker.walkRecursive(ControlTreeWalker.java:365) at com.bea.netuix.nf.ControlTreeWalker.walkRecursive(ControlTreeWalker.java:365) at com.bea.netuix.nf.ControlTreeWalker.walkRecursive(ControlTreeWalker.java:365) at com.bea.netuix.nf.ControlTreeWalker.walk(ControlTreeWalker.java:126) at com.bea.netuix.nf.ControlTreeWalker.walk(ControlTreeWalker.java:105) at com.bea.netuix.nf.Lifecycle.runInbound(Lifecycle.java:173) at com.bea.netuix.nf.Lifecycle.run(Lifecycle.java:137) at com.bea.netuix.servlets.manager.UIServlet.runLifecycle(UIServlet.java:333) at com.bea.netuix.servlets.manager.UIServlet.doPost(UIServlet.java:196) at com.bea.netuix.servlets.manager.PortalServlet.doPost(PortalServlet.java:772) at com.bea.netuix.servlets.manager.UIServlet.service(UIServlet.java:150) at javax.servlet.http.HttpServlet.service(HttpServlet.java:853) at weblogic.servlet.internal.ServletStubImpl$ServletInvocationAction.run(ServletStubImpl.java:1072) at weblogic.servlet.internal.ServletStubImpl.invokeServlet(ServletStubImpl.java:465) at weblogic.servlet.internal.TailFilter.doFilter(TailFilter.java:28) at weblogic.servlet.internal.FilterChainImpl.doFilter(FilterChainImpl.java:27) at com.bea.p13n.servlets.PortalServletFilter.doFilter(PortalServletFilter.java:293) at weblogic.servlet.internal.FilterChainImpl.doFilter(FilterChainImpl.java:27) at weblogic.servlet.internal.WebAppServletContext$ServletInvocationAction.run(WebAppServletContext.java:6987) at weblogic.security.acl.internal.AuthenticatedSubject.doAs(AuthenticatedSubject.java:321) at weblogic.security.service.SecurityManager.runAs(SecurityManager.java:121) at weblogic.servlet.internal.WebAppServletContext.invokeServlet(WebAppServletContext.java:3892) at weblogic.servlet.internal.ServletRequestImpl.execute(ServletRequestImpl.java:2766) at weblogic.kernel.ExecuteThread.execute(ExecuteThread.java:224) at weblogic.kernel.ExecuteThread.run(ExecuteThread.java:183)

    Hi,
    The reason why you are seeing this exception is because there is a mismatch between the version of the WLPM API used by the portlets, with the version of the service that you have installed on you Domino server.
    To explain a little, there are two sides to the API that is used to communicate with Lotus Domino:
    1) the Java API side (used by the portlets that you have installed in the portal)
    2) the Domino Service side (installed as a DSAPI filter in the HTTP task of a Domino Server)
    Each Java API jar and Domino Service Executable are branded with a version number, which in your case does not match because the portlets came with one version of the Java API, and you have installed a non-matching version of the service on the Domino Service side (you probably extracted the executable for the service installation from the "BEA Personal Messaging API 4.3" bundle or installer).
    The solution for this is to:
    1) uninstall the Domino Service that you have plugged into the domino service
    2) extract the Domino Service installer which was included with the portlet bundle. This is located in the "Program Files\compoze\groupware_portlets_bea-2.5\8.1\service\domino" directory if you ran the portlet installer, or in the "groupware_portlets_bea81-noinstall-25\groupware_portlets_bea-2.5\8.1\service\domino" directory if you used the "no-install" zip file.
    As a tip, to quickly check whether the versions of the service and Java API’s that you are using are matching, perform the following steps:
    1) hit the domino server with the following URL and notice the "service version": http://domino_service_url:http_port/compoze.czdo. This should be something like "Service Version: 3.6.102"
    2)in your portal application (or in the portlet install bundle), open the harmony_portlets.jar file with winzip, then find the "compoze_products_information.properties" file. In this file, notice the "product.domino" version (e.g. product.domino = 3.6.102)
    3) the two versions you have inspected must match in order for the connection between the portlet and service to succeed.
    If you have verified that the "service" version and "java API" version (located in %portal_app_dir%/APP-INF/lib/harmony_portlets.jar, and you are still getting the exception, it is likely that there is a "harmony_portlets.jar" that included an old version of the Java API located somewhere in the portal server classpath. In this case, make sure that the only harmony_portlets.jar in the classpath is the one that was included with the portlet bundle that you have installed.
    Regards,
    Lev

  • URGENT: Browser support w/BEA Portal (Platform 7)

    Hey,
    I just "noticed" that officially, the supported IE browser for BEA Platform 7
    is v.5 or above.
    My question is, what specifically is not supported with an older IE browser -
    v4.0.1 actually. As it is, I would have to deploy to a corporate platform that
    is currently using IE 4.0.1. That cannot change in the near future - so if IE
    4.0.1 will NOT work with BEA Portal, I have a problem.
    Thanks...
    Nick Miron
    CGI Services to BCE

    Hey,
    I just "noticed" that officially, the supported IE browser for BEA Platform 7
    is v.5 or above.
    My question is, what specifically is not supported with an older IE browser -
    v4.0.1 actually. As it is, I would have to deploy to a corporate platform that
    is currently using IE 4.0.1. That cannot change in the near future - so if IE
    4.0.1 will NOT work with BEA Portal, I have a problem.
    Thanks...
    Nick Miron
    CGI Services to BCE

  • Where can I get an Html error report of all the syntax and tag problems?

    Where can I get an Html error report of all the syntax and tag problems?

    Thank you for your answer.
    Where is the DW validation for me?
    My files are in my computer so I don’t have an external URL.
    File > validation > as xml = closes DW... Maybe because it is not a correct command for HTML,
    And
    Window > results > validation = gives a partial mistakes (e.g. shows an open tag without closing tag, but doesn’t show a closing tag without an open tag).
    Thank you.

  • How to implement multlingual on bea portal books and pages

    Hi
    We are are using BEA weblogic portal.
    Now we want to use multilingual on bea portal.
    Ho we can change the portal book's name and pages according to languages.
    Regards
    Paramdeep Singh

    In your browser, you maintain your list of desired languages. This is an ordered list with the first language/locale in the list being the primary. This list of languages is passed to the server in as header. The portal server uses this header as the default mechanism to determine the language to serve back to the browser, although this behavior can be changed for your implementation if you wish. The server will look for a matching resource bundle based on the order of preference in your list of accepted languages.
    So, if you want to receive fr_FR responses, ensure the fr_FR is listed first in your browsers list of languages and that you have created fr resources in your portal.
    Brad

  • Finding this forum here on the Bea Portal is quite hard...

    Finding this forum here on the Bea Portal is quite hard...
    For example, here
    http://dev2dev.bea.com/workshop/
    there should be a link to the Workshop forum... (this forum, and the M7 old forum).
    Thanks for putting some more links!

    Thanks for the suggestion. I will forward this to the web team.
    br
    Marky Goldstein wrote:
    Finding this forum here on the Bea Portal is quite hard...
    For example, here
    http://dev2dev.bea.com/workshop/
    there should be a link to the Workshop forum... (this forum, and the M7 old forum).
    Thanks for putting some more links!

  • Did anyone try to cluster BEA Portal 7.0 sp1

    Hi,
    Am trying to cluster BEA Portal sp1 ,everything goes fine but when i try to
    access the portal on both the servers on the second server i get a Portal Null
    State Exception .The App works fine on the Primary Server ,but shows bizarre behaviour
    on the secondary.Have configured session replicaton,replication groups etc
    Would appreciate any help.
    Regards
    Parikshit

    Hi Parikshit,
    First of all make sure to deploy the PortalApp to the cluster. The best way to
    make sure is to open config.xml file and see the entry for PortalApp. Also make
    you the PortalApp is sync to both the server. Follow the datasync-cluster setup
    guideline which is in dev2dev.
    Regards
    Syed
    "Parikshit" <[email protected]> wrote:
    >
    Hi,
    Am trying to cluster BEA Portal sp1 ,everything goes fine but when
    i try to
    access the portal on both the servers on the second server i get a Portal
    Null
    State Exception .The App works fine on the Primary Server ,but shows
    bizarre behaviour
    on the secondary.Have configured session replicaton,replication groups
    etc
    Would appreciate any help.
    Regards
    Parikshit

  • Can you access applications through BEA Portal Server and run applications on different BEA Application Server?

    Is it possible to use common Corporate BEA Portal server and able to run different Business Unit applications on different BEA Application Servers?

    Hi Akula,
    You may want to read this article:
    http://dev2dev.bea.com/products/wlportal81/articles/wsrp.jsp
    It maybe related to what you want.
    Regards,
    --alex
    Akula Venkata <[email protected]> wrote:
    Is it possible to use common Corporate BEA Portal server and able to
    run different Business Unit applications on different BEA Application
    Servers?

  • Bea Portal Interview Questions

    hi ,
    Any body can send me Bea Portal Interview Questions.
    Please send it to me on my mail id that is : [email protected]

    Hey prabhakar,
    Can you please send the weblogic portal interview questions to me at [email protected]
    Please respond
    thanks in advance
    subrahmanyam

  • Any books out there ON BEA Portal

    Hi,
    I'm new to Portal and was wondering if I can get any books on BEA Portal...I didn't
    find any thing in the market so far.....any HELP?
    Sai

    Greetings Skroll,
    Here is a great video that explains how to setup AirPrint with your all-in-one printer.

Maybe you are looking for

  • EBS R12.1.3 with OSSO integration

    Hi , I have integrated OSSO with EBS R12 (12.1.3) following the documentation. I am facing "Internal Server Error 500" when accessing the EBS url. Looks like some problem with the partner applicaiton registration. How to debug this.? What could be th

  • Navigation failure on master/detail form

    I have a master/detail (tabular) form that was created with the wizard. I have purposely not modified much of the two pages, so as to see how they work. For the most part, it works as I expect. As it sits, it is nearly as it was on creation. I've not

  • WHEN-TREE-NODE-SELECTED

    Hello alllll i have a master-detail block besides a tree block All i wanna do Simply and logically is to select a tree node then a Master-Detail records related to this tree node is to be retrieved... _i have the following code in the WHEN-TREE-NODE-

  • How to stop Applicatio​n updates available notificati​n

    I have recently upgraded from 8310 to 8900 and have upgraded to the last OS. I have removed all the unnecessary languages to free memory but now I have the following issue. Every time I connect to DM 4.7 I get the notification to upgrade to Swedish,

  • HT1551 itunes account sign-in failed when trying to stream movie on apple tv

    I am trying to stream a movie on apple tv and when I try to rent it a message comes up saying "account sign-in failed" itunes is unavailable.  What does this mean and how do I fix it?