Certification in Plumtree Portal

Hi All,
I would like to know if there are any certification available for the Plumtree Portal. Kindly let me know any information regarding this.
Thanks in Advance
Karthick

Look up this link for course information
https://websmp107.sap-ag.de/~form/ehandler?_APP=00200682500000001337&_EVENT=DISPLAY&COURSE=EP150&LANGUAGE=
And this too
Beginning EP Development

Similar Messages

  • Plumtree portal server (v5.0.1) hosted on iPlanet Web Server (v6.0)

    Has anyone tried to port the Plumtree Corporate Portal v5.0.1 portal server component to iPlanet Enterprise Web Server 6.0 (aka SunONE Web Server, v6.0 )? Plumtree doesn't support this, but I am trying to merge a custom SSO authenticator to the Plumtree portal (v5.0.1). The authenticator runs as a plug-in to SunONE Web Server and has been in place on our customer's web site for a long time now.
    I have this working great in with SSL turned off, but I am having a difficult time getting past an error when I turn on SSL. I can get the portal server to run fine with SSL turned on through Tomcat on the same machine, using the same certificate and JRE. I can also get the SunONE server to run other servlet applications fine with SSL turned on. However, there appears to be either: (1) an incompatibility between SunONE's NSServlet plug-in that handles servlets and the Plumtree framework classes that set up replies via SSL, or (2) a configuration error in my setup somewhere. I'm hoping that (2) is the real culprit, but I've tried just about everything I can think of, and haven't been able to resolve this problem.
    The server starts up fine and I can load non-portal content without a problem. But when I log in, the portal's main community page that should be returned is not being returned to the client. PTSpy (a debugging aid for the Plumtree portal) doesn't indicate any problems, so I know the content is being built by the portal correctly, but the built page is never being sent back to the requesting client.
    Here is the error that gets logged to my SunONE server's error log:
    [29/Dec/2003:15:05:53] failure ( 2772): Internal error: Unexpected error condition thrown (unknown exception,no description), stack: java.lang.NoClassDefFoundError: javax/net/ssl/SSLSocket
    at sun.net.www.http.HttpClient.parseHTTPHeader(HttpClient.java:793)
    at sun.net.www.http.HttpClient.parseHTTP(HttpClient.java:702)
    at sun.net.www.protocol.http.HttpURLConnection.getInputStream(HttpURLConnection.java:583)
    at java.net.URL.openStream(URL.java:960)
    at org.apache.xerces.readers.DefaultReaderFactory.createReader(DefaultReaderFactory.java:149)
    at org.apache.xerces.readers.DefaultEntityHandler.startReadingFromDocument(DefaultEntityHandler.java:493)
    at org.apache.xerces.framework.XMLParser.parseSomeSetup(XMLParser.java:314)
    at org.apache.xerces.framework.XMLParser.parse(XMLParser.java:1097)
    at org.apache.xerces.jaxp.DocumentBuilderImpl.parse(DocumentBuilderImpl.java:195)
    at javax.xml.parsers.DocumentBuilder.parse(DocumentBuilder.java:124)
    at com.plumtree.openfoundation.xml.dom.XPBuilder.LoadDocumentFromURI(XPBuilder.java:203)
    at com.plumtree.xpshared.jsutil.JSRegistry.LookupJSComponentVersions(JSRegistry.java:243)
    at com.plumtree.xpshared.jsutil.JSRegistry.GetJSComponentVersions(JSRegistry.java:184)
    at com.plumtree.xpshared.jsutil.JSRegistry.GetJSComponent(JSRegistry.java:465)
    at com.plumtree.xpshared.jsutil.JSRegistry.GetJSComponent(JSRegistry.java:444)
    at com.plumtree.uiinfrastructure.statichelpers.ConfigHelper.GetCommonJSIncludes(ConfigHelper.java:1330)
    at com.plumtree.uiinfrastructure.form.AFormAS.DisplayCommonJavaScript(AFormAS.java:59)
    at com.plumtree.portalpages.common.uiparts.PlumtreeAS.DisplayCommonJavaScript(PlumtreeAS.java:88)
    at com.plumtree.portalpages.common.uiparts.PlumtreeDP.DisplayHead(PlumtreeDP.java:599)
    at com.plumtree.portalpages.common.uiparts.PlumtreeDP.Display(PlumtreeDP.java:112)
    at com.plumtree.portaluiinfrastructure.activityspace.Interpreter.ProcessDisplayPageOrRedirect(Interpreter.java:816)
    at com.plumtree.portaluiinfrastructure.activityspace.Interpreter.HandleRequest(Interpreter.java:1589)
    at com.plumtree.portaluiinfrastructure.activityspace.Interpreter.DoService(Interpreter.java:448)
    at com.plumtree.uiinfrastructure.web.XPPage.service(XPPage.java:141)
    at javax.servlet.http.HttpServlet.service(HttpServlet.java:853)
    at com.iplanet.server.http.servlet.NSServletRunner.invokeServletService(NSServletRunner.java:919)
    at com.iplanet.server.http.servlet.WebApplication.service(WebApplication.java:1061)
    at com.iplanet.server.http.servlet.NSServletRunner.ServiceWebApp(NSServletRunner.java:981)It looks like a Java classpath issue, but I've verified (even in the same log file with java debugging turned on) that the SSLSocket class is getting loaded. I've even tried moving the specification of the jar file containing this class (jsse.jar, part of the JRE) to the beginning and end of my classpath setting.
    I'm using the same JRE that is bundled with the Tomcat release supplied with my Plumtree 5.0.1 installation (1.4.1_02). I can't get the JRE that came bundled with the SunONE v6.0 release to work at all.
    I've posted a similar message on a couple other forums (Java and iPlanet-related, as well as on Plumtree's customer forum) and haven't found an answer yet. Does anyone have any ideas?

    In case anyone else experiences this, I have apparently stumbled upon an issue with iPlanet's handling a specified JRE/JDK instead of the supplied JDK in iPlanet Web Server v6.0, SP5, though I found a way around it to resolve my problem.
    I had been specifying a different JRE to run with through the administrative server manager. However, even though I was specifying to load all the JRE's jar files in my classpath setting, iPlanet was only loading the rt.jar file for my specified JRE. With verbose logging turned on, the error log was indicating that the other classpath specified jar files were being loaded, but apparently they were not being used. The JDK that was released with iPlanet appears to be being used for all other JRE classes outside of those defined in rt.jar. Since the JDK supplied with the iPlanet release didn't contain jsse.jar, which contains SSL support, it was not being loaded and was causing the problem I was seeing.
    Instead of specifying the JRE of a different JDK that I was using, I changed the global setting in the administrative server manager to override the entire JDK. This has resolved my problem.
    So if you specify a JRE to override the iPlanet supplied JDK/JRE, it appears that only the rt.jar file of the specified JRE will be loaded, and the jar files associated with the iPlanet-supplied JRE will be used for all other classes. Specification of a complete JDK to override the supplied one will resolve this.

  • SOA 11g Worklist Apps Customisation and Integration with Plumtree Portal

    Hi,
    We want to migrate an existing application build using SOA Suite 10.1.3.3 to 11.1.1.2.0.
    In the 10g application the worklist application was customised and the customised apps was linked as a remote portlet in BEA Plumtree Portal.
    1)In 10g the worklist application source code is available (\SOA_Oracle_Home\bpel\samples\hw\worklistapp) for customisation but is that possible for 11g ?
    (The location of the default deployed worklist apps in 11g is /../mdw_home/user_projects/domains/soa_domain/servers/soa_server1/tmp/_WL_user/worklistapp).
    Can we take the source code and customize in jdev and deploy under a different contextname in 11g??
    3)Our existing 10g worklist was customised a bit in terms of look and feel and for some custom authentication and it was deployed in the 10g SOA Server.
    A sample jsp application was created and the login page of the custom worklist apps was linked in a inframe so that it works when integrated with the Plumtree portal as a remote portlet. And this worked perfectly in 10.1.3.3 SOA Suite.
    However the 11g SOA worklist login when tagged in a jsp as an inframe in plumtree portal is giving a warning message
    Warning: Unable to load content in a frame. Frame content will load at the top level. On cliicking the OK button the worklist page is opening. This is with Firefox browser . however form IE7 or 8 its timing out from portal.
    As per http://newsoalife.blogspot.in/2009/09/framebusing-in-adf.html
    changing the web.xml for the worklist can help.
    Can anyone please let us know on the same as this appeas an unsupported one.
    Regards
    Ashif

    Hi,
    Can you check the log file.u are getting any error.can you check wf_error table also u are getting any error.
    Can you check consumer in AQ tables.
    Thanks,
    Rahul

  • About the performance of plumtree portal.

    Please let me ask a question about the performance of plumtree portal.The good reply is not obtained although I have asked the support center in Japan.I saw the log of ptspy.Delay had occurred in the following two points.
    1. Although it is a "<.static.> InetHost::Select(xxxx) is called on 0 write+xx read sockets." part, what processing is performed actually in the message by the plum tree by the processing of inethost.cpp in a WebDownloaderParallel.dll component?
    2. Although it is the part of "CreateFilterContext()-Created new context at address" by the message, is it the operation which is creating the context path for connection with the exterior in PTGWFilter.cpp in a Gateway component?
    Moreover, although delay of processing may occur in these parts, what factor can be considered?
    Thanks,

    Hi, this is Nobuyuki, Plumtree PSO, working for this project.
    I'm attaching snapshot of ptspy from them. I've found that there are two ares which
    seem to take much time.
    1.
    125649 02-22 20:31:23 Debug Gateway 5788 5564 PTGWFilter.cpp(1271) OnEndOfRequest() - called for CtxtPass::TunnelIn <0x2a82210> request125650 02-22 20:31:23 Debug Gateway 5788 5564 PTGWFilter.cpp(232) DeleteContext() - Deleting context at address <0x03CE9478>.125651 02-22 20:31:23 Debug Unified Cache 5988 5936 ptcache.h(2547) PTCache<StoredType, KeySize>::GC() Ending TTL run with 0 item(s) freed!125652 02-22 20:31:23 Debug Unified Cache 5988 5936 ptcache.h(2468) PTCache<StoredType, KeySize>::GC() Starting new TTL run!125653 02-22 20:31:23 Debug Unified Cache 5988 5936 ptcache.h(2547) PTCache<StoredType, KeySize>::GC() Ending TTL run with 0 item(s) freed!125654 02-22 20:31:25 Debug Gateway 5788 3748 PTGWFilter.cpp(198) CreateFilterContext() - Created new context at address <0x03CE9478>.125655 02-22 20:31:25 Debug Gateway 5788 3748 PTGWFilter.cpp(944) OnReadRawData() - Called on new managed request <0x3923f00> with 1460 bytes of data (GET /portal/server.pt?in_hi_userid)125656 02-22 20:31:25 Debug Gateway 5788 3748 PTGWFilter.cpp(1147) OnReadRawData() - Disable Notifications for request <0x3923f00>.(NOT a gateway request)
    Process id of portal is 5988, not 5788.
    2.
    151358 02-22 20:34:27 Performance WebDownloaderParallel.dll 5988 3960 inethost.cpp(1057) 1751857657 : < .static. > InetHost::Select(2104) is called on 0 write + 1 read sockets.151359 02-22 20:34:29 Performance WebDownloaderParallel.dll 5988 3960 inethost.cpp(996) 1751859579 : <0x0A132950> InetHost::Recv(16234) is called for host "http://eippt2.cc.avex.co.jp:80".151360 02-22 20:34:29 Performance WebDownloaderParallel.dll 5988 3960 inethost.cpp(1036) 1751859579 : <0x0A132950> InetHost::Recv(16234) exiting for host "http://eippt2.cc.avex.co.jp:80" in 0 mS.151361 02-22 20:34:29 Performance WebDownloaderParallel.dll 5988 3960 inethost.cpp(1057) 1751859579 : < .static. > InetHost::Select(823) is called on 0 write + 1 read sockets.151362 02-22 20:34:29 Performance WebDownloaderParallel.dll 5988 3960 inethost.cpp(996) 1751859579 : <0x0A132950> InetHost::Recv(16234) is called for host "http://eippt2.cc.avex.co.jp:80".151363 02-22 20:34:29 Performance WebDownloaderParallel.dll 5988 3960 inethost.cpp(1036) 1751859579 : <0x0A132950> InetHost::Recv(16234) exiting for host "http://eippt2.cc.avex.co.jp:80" in 0 mS.151364 02-22 20:34:29 Performance WebDownloaderParallel.dll 5988 3960 inethost.cpp(1057) 1751859579 : < .static. > InetHost::Select(823) is called on 0 write + 1 read sockets.151365 02-22 20:34:29 Performance WebDownloaderParallel.dll 5988 3960 inethost.cpp(996) 1751859594 : <0x0A132950> InetHost::Recv(16219) is called for host "http://eippt2.cc.avex.co.jp:80".151366 02-22 20:34:29 Performance WebDownloaderParallel.dll 5988 3960 inethost.cpp(1036) 1751859594 : <0x0A132950> InetHost::Recv(16219) exiting for host "http://eippt2.cc.avex.co.jp:80" in 0 mS.151367 02-22 20:34:29 Performance WebDownloaderParallel.dll 5988 3960 inethost.cpp(1057) 1751859594 : < .static. > InetHost::Select(813) is called on 0 write + 1 read sockets.151368 02-22 20:34:29 Performance WebDownloaderParallel.dll 5988 3960 inethost.cpp(996) 1751859594 : <0x0A132950> InetHost::Recv(16219) is called for host "http://eippt2.cc.avex.co.jp:80".151369 02-22 20:34:29 Performance WebDownloaderParallel.dll 5988 3960 inethost.cpp(1036) 1751859594 : <0x0A132950> InetHost::Recv(16219) exiting for host "http://eippt2.cc.avex.co.jp:80" in 0 mS.151370 02-22 20:34:29 Performance WebDownloaderParallel.dll 5988 3960 inethost.cpp(1057) 1751859594 : < .static. > InetHost::Select(813) is called on 0 write + 1 read sockets.151371 02-22 20:34:29 Performance WebDownloaderParallel.dll 5988 3960 inethost.cpp(996) 1751859594 : <0x0A132950> InetHost::Recv(16219) is called for host "http://eippt2.cc.avex.co.jp:80".151372 02-22 20:34:29 Performance WebDownloaderParallel.dll 5988 3960 inethost.cpp(1036) 1751859594 : <0x0A132950> InetHost::Recv(16219) exiting for host "http://eippt2.cc.avex.co.jp:80" in 0 mS.151373 02-22 20:34:29 Performance WebDownloaderParallel.dll 5988 3960 httprequest.cpp(1883) 1751859594 : <0x099E9110> HttpRequest::Process(20000) completed one of the requests in 3781 msec.151374 02-22 20:34:29 Performance WebDownloaderParallel.dll 5988 3960 httprequest.cpp(2185) 1751859594 : <0x099E9110> HttpRequest::Process(20000) completed in 3781 msec.
    All lines are Performance type and I guess turning off performance output of ptspy may
    elimnate this bottle neck.

  • Content Server Explorer is not available after sucessful installation of Plumtree Portal

    Content Server Explorer is not available after sucessful installation of Plumtree Portal.
    Please reply us.

    To clarify, do you have the User Profile Service (including MySite Host) up and running on this environment? That's subtley different to the full MySite experience which is clearly not applicable...
    Interesting question - thanks for that. Until now I didn't realise there was a difference.
    The User Profile Service is up and running, but no MySite Host is set. (I don't believe MySite will be available anywhere here. I guess that means there's no valid MySite Host for me to use.)
    Many thanks,
        Geoff

  • Is there any Certifications for Weblogic Portals ?

    Hi
    Is there any Certifications for Weblogic Portals ?
    like RHCE, JCP, MCSE ...
    Thanks & Regards,
    Siva VP,
    [email protected]

    Check out this link:
    http://certification.bea.com/certification/dev_certification.jsp

  • How we develop inter-portlet communication in plumtree portal using IDK

    1)How we will develop inter-portlet communication in plumtree portal using IDK .
    is it possiable using Master Detail Pattern? or any other alternate way.
    Regards
    Dheeraj Sai

    This can be done by developing Adaptive Portlets:
    http://edocs.bea.com/alui/devdoc/docs60/Portlets/Adaptive_Portlets/PlumtreeDevDoc_Integration_Portlets_Adaptive_Intro.htm

  • Can't find navhztlddmenufuncs.js under imageserver\plumtree\portal\private\js

    Can't find navhztlddmenufuncs.js under imageserver\plumtree\portal\private\js. Where should i get it from?
    Thanks

    This message is occuring because you are using a version of ASP.NET which is newer than was available at the time of the 2.1 Web Controls release (1.1SP1). Normally this portlet would not function, however I expect you have another portlet on the page which is running in an older version so it is using the older includes (which are fine in this case).
    What you need to do is generate a WebUIValidation.js for the newer framework. You can do this by going to your portlet server and running JSGenerator.exe (located in plumtree\ptwc\2.1\bin) - this should detect the new framework (1.1.4322.2032), so select this. Then click generate - it will generate a new WebUIValidation.js file & tell you where to put it. I believe this should also be covered in the documentation with the web controls.

  • Accesing a web service hosted in Plumtree Portal

    I have created a process and I need to access it's PAPI web service. I
    found this easy during development, I would use the Designer's WorkSpace
    and access the service at
    http://MYSERVER:PORTNUMBER/MYPROCESS/webservices/ProcessService?WSDL.
    But, now I have deployed it in the plumtree portal this same URL format
    (obviously on a different server and port) doesn't seem to work and just
    gives me a "HTTP 400 - Page cannot be found" error. Is the URL format
    different once it is deployed through Plumtree Portal?
    Thanks,
    Martyn

    Got this working, was using the wrong domain...doh!
    Martyn wrote:
    Hi,
    I have now hit another issue, another one I didn't envision while
    testing in the designer.
    Our portal uses Active Directory to log our users in. I'm trying to use
    the process web service to start instances without the users having to
    go into the Process Portal UI. The issue is when I need to call
    createSession it asks for a Username and Password but I can only know
    the Username at this point due to using AD. Is there a way to set the
    authentication type that createSession uses?
    I'm guessing it might be something you change in the document.properties
    file, I've tried creating a preset and using skip-auth but I'm not sure
    is this is applicable or if I'm using it correctly.
    I have added "directory.default.preset.test.skip-auth=true" to the
    document.properties and restarted the Plumtree portal Identity Service.
    I try and call service.createSessionWithPreset(USERNAME, "", False,
    "test") but this still gets the error "Cannot authenticate participant".
    Thanks in advance,
    Martyn
    David Ogren wrote:
    Yes, the URL will be a little different. It's really /APPNAME/webservices/ProcessService?WSDL. In ProcessDesigner/ALBPMStudio, the APPNAME defaults to the project name. But on ALIP/ALBPM Enterprise APPNAME is the context that the workspace was deployed as. Which is, by default, portal.
    So try http://myserver/portal/webservices/ProcessService?WSDL .
    David

  • Possible conflict/problem if using edk 5.2.0 with plumtree portal 5-0-3 and collaboration v4.0.1?

    Hi,
    We are using plumtree portal v5-0-3 and collaboration v-4.0.1. I have to create a portlet where users can use it to submit a request for a collaboration project to be created. Searching through Plumtree Developer Center, there are documents that show me how to create a collaboration project using edk library. The edk that comes with plumtree portal v5-0-3 doesn't contain the api(s) that I need (for example, com.plumtree.remote.prc.collaboration.project.*). However, the edk 5.2.0 does contain these api(s).
    Are there any possible conflicts/problems if I use the edk 5.2.0 with our existing plumtree portal v5-0-3 and collaboration v4.0.1? If there are, is there any other way that I could get to these api(s) somehow to create collaboration projects?
    Thank you in advance for helping!

    Thank you so much for responding so quickly!
    Is there any api or way that I could use to create a collaboration project without using the Project Explorer? In our scenario, after a user uses the portlet that I describe earlier in the original disscussion message to request the creation of a project, an admin will take a look at the request and click a button to have the project created. This button will somehow trigger some scripts or codes instead of the admin using the Project Explorer to create the project.
    Thanks again for your help!

  • Plumtree Portal Startup Error

    Hi All,
    I am trying to install the WCI on Win Server 2003.
    I followed the step-by-step installation guide provided by Oracle on http://download-llnw.oracle.com/docs/cd/E13158_01/alui/wci/docs103/map_wci_win_installguide_10-3/. However, we came across this problem where the portal can't be started after completing the installation and configuration.
    The configuration manager is able to run, but not the portal.
    The startup error log is as follows:
    Diagnostic system initialization OK.
    Portal Startup begins: 15 total tasks.
    Recommendations follow:
    PortalObjectsFactory Initialization Failure (Java)
    RECOMMENDATION: Review the exception listed below for details. Since
    OpenKernel initialized correctly, this usually means that the
    portal database is not scripted or properly configured, or there
    is an installation problem related to JAR files. This may also
    mean the search libraries are not on your PATH or
    LD_LIBRARY_PATH. Try running ptverify.
    More Detail:
    OpenKernel configuration failure. This usually means INVALID
    DATABASE SETTINGS. Run ptconfig to verify your database connection.
    If this fails, check the web application server user's access rights
    to the file system. Finally, verify the XML settings files are not
    corrupt.
    recommendation: RECOMMENDATION: Review the exception listed below for
    details. Since OpenKernel initialized correctly, this usually
    means that the portal database is not scripted or properly
    configured, or there is an installation problem related to JAR
    files. This may also mean the search libraries are not on your
    OpenKernel configuration failure. This usually means INVALID
    DATABASE SETTINGS. Run ptconfig to verify your database
    connection. If this fails, check the web application server
    user's access rights to the file system. Finally, verify the
    message: Error opening database connection to:
    jdbc:plumtree:oracle://kldev-vmwci:7001;SID=PLUM10;user=plumtree;password=;BatchPerformanceWorkaround=true,
    exception: [plumtree][Oracle JDBC Driver]Error establishing
    socket to host and port: kldev-vmwci:7001. Reason: Connection
    secondary exception: at
    ======= Diagnostic Run Complete =======
    ERROR: OpenKernel configuration failure. This usually means INVALID
    DATABASE SETTINGS. Run ptconfig to verify your database connection.
    If this fails, check the web application server user's access rights
    to the file system. Finally, verify the XML settings files are not
    corrupt.
    Recommendation:
    OpenKernel configuration failure. This usually means INVALID
    DATABASE SETTINGS. Run ptconfig to verify your database connection.
    If this fails, check the web application server user's access rights
    to the file system. Finally, verify the XML settings files are not
    corrupt.
    Startup completion percentage: 10% (5 steps out of 50 complete)
    FYI, we had been uninstalling and re-installing several times, but the same problems occured. So, does any of you faced this kind of error before?
    Your views and opinions are very much appreciated. Thanks in advance.

    Looks like this a Java portal... this error is usually caused by an invalid path or similar problem with environment variables. Since ptverify works, this is even more likely. I would make sure you've followed the preinstall steps. The problem is probably somehow related to you needing to:
    1.) Set the PT_HOME environment variable.
    2.) Add it to your PATH.
    3.) Make sure the application server (Weblogic?) is set up to properly use the above variables (is the user it is running as set up to have above, etc). I would add some echo statements to your application server bat files if you are unsure if these variables are set or what they are.
    4.) Some other environment variable is necessary (i.e. does LD_LIBRARY_PATH contain the /lib/java directory).
    Most of this should be done by the install, but when you are setting up the application server you may need to check this (or if you have reinstalled, run as a different user, etc, this may be different).
    I realize that's kind of vague but this type of error can be harder to diagnose, plus its been a while since I've done a Windows install. Hope this helps...
    Ross

  • Plumtree and Weblogic Portal Server | URL rewriting incompatibility

    Hi All,
    I am using Weblogic Portal as the Producer and Plumtree as the consumer for my WSRP portlets. I have enabled Producer URL rewriting. When i invoke an action URL i get a "Mode is not supported in this portlet." error. The template being passed is <blockingActionTemplate>/wsrpconsumer/pt_action?wsrp-navigationalState={wsrp-navigationalState}&wsrp-interactionState={wsrp-interactionState}&wsrp-mode={wsrp-mode}&wsrp-windowState={wsrp-windowState}</blockingActionTemplate>
    and the URL generated is a href="/wsrpconsumer/pt_action?wsrp-navigationalState=&wsrp-interactionState=_action%3D%2FnewAction1&wsrp-mode=&wsrp-windowState="
    The same portlet works fine when Consumer URL rewrting is enabled.
    Plumtree is giving the same error for the portlets at the consumer at http://sunwsrp.dyndns.org/portal/wsrp/wsdl/default. Any help would be highly appreciated
    Thanks

    Hi, I don't have an answer on this but another more basic question. Our agency is using Plumtree Portal v5. I am assigned to develop a remote portlet. According to what I've read on the web as far back as 2003 Plumtree Portal supports WSRP but I'm getting conflicting answers within our agency. This post seems to indicate that the Plumtree Portal can consume WSRP compliant remote portlets. If that is correct, can you point me to documentation/examples? I've found reference to a Plumtree resource called "WSRP Portlet Consumer" for WSRP--does that still exist? Any help would be appreciated.

  • Plumtree 5.0.2 Portal - Webservice interaction from portlet

    Hi,
    What is the best way to build to portlet in Plumtree 5.0.2 Enterprise Portal (Now ALUI and Webcenter Interaction) to invoke a synchronous (send-receive) web service from the end user and display the result back on the portal page?
    Two options I had in mind:
    1) Build a remote application using Oracle ADF and consume it as a portlet in the Plumtree portal. - Saves time
    2) Build a remote application using Microsoft SilverLight (UI framework) and consume it as a portlet. - Can reuse existing application
    3) Build a standard JSR-168 portlet using Plumtree portlet development framework - Last option if 1 and 2 dont work
    Kindly let me know what would be the best approach. Option 4 (if any) is also welcome
    Thanks in advance
    Vikas

    are you using java or .net? personally i would use a div with some javascript to do an ajaxy call to a webservice that then fills the div's inner html property.

  • Error executing search on Plumtree Corporate Portal : Could not contact the Search Server.

    Hi
    I have intsalled the plumtree portal.... The links are working. But when i search any word then it gives following error messages
    "Error executing search on Plumtree Corporate Portal : Could not contact the Search Server."
    Please let me know what could be the solution to above problem
    Thanks

    Santosh,It appears that your portal server can not connect to the Search Server.1) Check to ensure that the "Plumtree Portal Search Server" NT Service is running. It will be an NT service. If you check the PlumtreePortal_v5-0.properties file you should see two entries for where you installed the Search service.SEARCH_SERVER_HOST=servernameSEARCH_SERVER_PORT=15244
    2) If the service is not started, then start it...
    3) You can test connectivity to the Search Server by telnetting to server in question at port 15244 (or whatever port you installed the search service on). If you get a response from Ignite, then the search server is up..
    Phil Orion | [email protected] | www.orionsmith.com

  • Gateway Problem with Plumtree 5.02 on Windows XP

    We have installed Plumtree Portal 5.02 on Windows XP and are facing the Following issue with gatewayed url's.
    Entering HandleGatewayRequest: GET http://d101927:80/portal/server.pt/gateway/PTARGS_11_0_0_0_0_43
    Could not parse the gateway URL [http://d101927:80/portal/server.pt/gateway/PTARGS_11_0_0_0_0_43]
    Error in HandleGatewayRequest.com.plumtree.openfoundation.util.XPException at com.plumtree.uiinfrastructure.activityspace.WebData.OutputData() at com.plumtree.uiinfrastructure.activityspace.Interpreter.HandleGatewayRequest(IXPRequest request, IXPResponse response, ISessionManager session, IApplication application)
    The Following is the Enviroment:
    Plumtree 5.02 on IIS ( windows XP)Tomcat on the same machine running on 8080Content Server PortletsCollaboration Server Porlets Lotus Lotes PortletsSQL Server Databases for all the serversAll Porlets are running on Tomcat and there verification on Tomcat goes through fine.

    If we give the "/" at the end of the URL it was giving a HTTP 404 Error. This was the basic error which we were getting initially so we tried cutting pasting the url in a new browser window and got the ptspy i sent you earlier since we missed putting "/" in the end. The PT spy for the original 404 error is below:
    ***Saving log at 14:22:49 on March 18.
    TRACE DATE TIME TYPE COMPONENT PROCESS THREAD LOCATION MESSAGE
    ===== ==== ==== ==== ========= ======= ====== ======== =======
    261 03-18 14:22:15 Debug Gateway 1100 1472 PTGWFilter.cpp(907) OnReadRawData() - Called on new managed request <0x77780c> with 386 bytes of data (GET /portal/server.pt/gateway/PTAR)
    262 03-18 14:22:16 Debug Gateway 1100 1472 PTGWFilter.cpp(738) OnPreprocHeaders() - The new URL is [<Rejected-By-UrlScan>?~/portal/server.pt/gateway/PTARGS_0_1_522_0_0_18/ABC%20-%20PeopleSoft.htm]
    263 03-18 14:22:16 Debug Gateway 1100 1472 PTGWFilter.cpp(764) OnSendRawData() - Managed request <0x0077780C> of type [-1] with [4203] bytes of data.for url [<Rejected-By-UrlScan>?~/portal/server.pt/gateway/PTARGS_0_1_522_0_0_18/ABC%20-%20PeopleSoft.htm]
    264 03-18 14:22:16 Debug Gateway 1100 1472 PTGWFilter.cpp(323) HTTP/1.1 404 Object Not Found265 03-18 14:22:16 Debug Gateway 1100 1472 PTGWFilter.cpp(245) FindHeadersAndChannelName() - Found end of headers at [159].
    266 03-18 14:22:16 Debug Gateway 1100 1472 PTGWFilter.cpp(261) FindHeadersAndChannelName() - Content-Length: [: 4040]
    267 03-18 14:22:16 Debug Gateway 1100 1472 PTGWFilter.cpp(1239) OnEndOfRequest() - called for CtxtPass::TunnelIn <0x77780c> request
    Please let me know if you have come across any such problem.

Maybe you are looking for

  • How to send generated form in PDF form through email

    hi, i am working on interactive form in Webdynpro Java, when i am trying to send pdf form as an attachment. i kept Email Submit button in the form and when i am clickink on send email button it is taking local outlook user in default and attachment a

  • 24/7 Technical Support? Liars!

    Hi BT, How come your website says that you have 24/7 support for technical enquiries, yet when I call at 7pm on a Sunday evening I am told that the desk is closed? (0800 111 4567). Either your website or your call centres are wrong, either way you ar

  • My pdf attachments are not readable

    Recently when I sent pdf attachments to people they are not readable. When I send the same pdf attachments through gmail they are. My smpt is on my server (not gmail). Any idea why this does not work? Thanks

  • Firefox CONSTANTLY has a yellow bar on top of my screen nagging me to upgrade adobe flash but my processor is way too slow for that upgrade.

    I am on an older computer that works just fine, but the processor is too slow for the flash upgrade, nor do I have the other system requirements. What can I do to get rid of this nagging bar? I do not mind upgrading to a lower version of flash, provi

  • Re:cube and ods enhancement

    1.i'm trying to add a new field to my old cube ...plz guide me the steps i got a small doubt here ,i know we have to delete the data in the cube but i'm curious why we delete data and than enhance 2.i want to add a filed to my exsisting ods..plz guid