Portlet issue

Portlets created in workshop 8.1 sp3 is not showing up on the Portal Administration under Portal Resources->Library->All Portlets.
I am using MS SQL Server for portal database.
Getting this exception when I build the app:
javax.ejb.EJBException: SQL Error while trying to createMarkupDefinition: SQL [i
nsert into PF_MARKUP_DEFINITION ( MARKUP_DEFINITION_ID, MARKUP_NAME, MARKUP_TYPE
, WEBAPP_NAME, MARKUP_FILE, BEGIN_XML, END_XML) values (?,?,?,?,?,?,?)] database
error code [515] SQL state [HY000]. Possible markup duplication of [{5}].; nest
ed exception is: java.sql.SQLException: [BEA][SQLServer JDBC Driver][SQLServer]C
annot insert the value NULL into column 'MODIFIED_DATE', table 'weblogic_sb.srin
ib.PF_MARKUP_DEFINITION'; column does not allow nulls. INSERT fails.
your help is highly appreciated.
thanks,
srini Bellary

I don't see any triggers on this table, do I need to create one, I thought BEA does this in the background.
I am able to see the portlets in the portal admin when I use pointbase, but fails with SQL Server 8.

Similar Messages

  • Header portlet issue: User settings not passed to Header portlet on "My Pages"

    I am trying to write a header portlet which reads User Settings (User preference). The settings are retrieved correctly and the header portlet works fine on a Community portlet but when browsing "My Pages" or "Knowledge Directory" the settings are not being passed to the header portlet. I have tried this on multiple portals and I get the same behavior. Can you kindly let me know the cause of the problem and help me fix this issue Thanks,Rakesh

    I was able to figure out setting the global display on the default pages, but I'm still stymied at how to set the display for the page portlets for user customizations. In instances where users have added a page portlet, only the portlet header is displayed. I've done the following to try to fix the situation:
    - Deleted and regenerated the page portlets
    - Refreshed the repository
    - Refreshed the display for individual user pages
    Nothing seems to work. This is a major showstopper for us: we are scheduled to go "live" with the 9.0.2.6 version on Friday, and we do not want to ask users to recustomize their pages.
    Windows; 9.0.2.6
    Thanks for all the help!
    Mary

  • Page Navigation Portlet issue

    I am having an issue with a page navigation portlet. I am using adaptive tags and we have actually implemented one custom tag that outputs the current page id.
    I will paste the code here. The issue is that in our portal the pages don't show up in the order we have set in community editor. They are showing up ordered by page id.
    This is being done on 6.0 sp1.
    Here is the code I am using.
    <link type="text/css" href="pt://images/plumtree/common/custom/CIENA/PageNavStandard/MenuStyle.css" rel="StyleSheet" lang="en" />
    <div id="PageNavStandard" xmlns:pt="http://www.plumtree.com/xmlschemas/ptui/">
    <div id="PageNavStandardTitle">Navigation</div>
    <pt:ptdata.currcommunitypagesdata pt:id="compages" />
         <ul id="MenuNav">
         <pt:logic.foreach pt:data="compages" pt:var="commpg">
                   <li>
                   <script>
                        var linkstr = "<pt:logic.value pt:value="$commpg.url" />";
                        var PageReg = new RegExp(/PageID=(\d*)\D/);
                        if(PageReg.exec("<pt:logic.value pt:value="$commpg.url" />")[1] == <pt:ciena.currpageid/>) {
                             document.write('<a href=" + linkstr +  id="ActivePage" ">');
                        } else {
                             document.write('<a href=" + linkstr +  ">');
                        document.write('<pt:logic.value pt:value="$commpg.title"/>');
                        document.write('</a>');
                        //document.write(PageReg.exec("<pt:logic.value pt:value="$commpg.url" />")[1]);
                   </script> <!--
                   <pt:core.html pt:tag="a" href="$commpg.url">
                        <pt:logic.value pt:value="$commpg.title"/>
                   </pt:core.html>
                                  -->
         </pt:logic.foreach>
         </ul>
    </div></a>

    That is most peculiar because we are doing a nearly identical page navigation portlet and we have the ability to shuffle the pages via the community object.
    Are you using your code in publisher or in a custom portlet?
    Perhaps you could try using this code in publisher and see if the results are returned appropriately:
    <span xmlns:pt='http://www.plumtree.com/xmlschemas/ptui/'>
    <!-- TOKEN NAMESPACE -->
    <pt:namespace pt:token="$$TOKEN$$"/>
    <style type="text/css">
            #pt-portlet-$$TOKEN$$ {
                    background-color: #3366CC;
                    font: verdana,arial,helvetica,"sans-serif";
                    font-size: 10px;
              margin-bottom: 10px;
            #portlet_navigation$$TOKEN$$ td {
              font: verdana,arial,helvetica,"sans-serif";
              font-size: 10px;
              color: #8CB5DE;
         #portlet_navigation$$TOKEN$$ a {
              text-decoration: none;
              color: #FFFFFF;
            #portlet_navigation$$TOKEN$$ a:hover {
              text-decoration: underline;
       #portlet_parent$$TOKEN$$ td {
          color: #8CB5DE;
          text-decoration: none;
          font: bold 10px verdana,arial,helvetica,"sans-serif";
       #portlet_parent$$TOKEN$$ a {
          color: #8CB5DE;
          text-decoration: none;
          font: bold 10px verdana,arial,helvetica,"sans-serif";
       #portlet_parent$$TOKEN$$ a:hover {
         text-decoration: underline;
    </style>
    <!-- get the portal data -->
    <pt:ptdata.currcommunitypagesdata pt:id="commmenu"/>
    <pt:ptdata.editcommunitydata pt:id="commactions"/>
    <pt:ptdata.currparentcommunitydata pt:id="parent"/>
    <pt:ptdata.currentcommunitypageiddata pt:id="currpage" />
    <table id="portlet_parent$$TOKEN$$" width="100%">
       <tr>
          <td colspan="2"> </td>
       </tr>
       <tr>
          <td class="platportletwideheader">
          <pt:logic.foreach pt:data="parent" pt:var="curr">
             <pt:core.html pt:tag="a" href="$curr.url"><pt:logic.value pt:value="$curr.title"/></pt:core.html>/
          </pt:logic.foreach><pt:standard.realmname/>
          </td>
       </tr>
    </table>
    <table cellpadding="0" cellspacing="0" border="0" width="100%" id="portlet_navigation$$TOKEN$$">
       <tr>
          <td>
          <table cellpadding="0" cellspacing="0" border="0" width="100%">
                  <pt:logic.foreach pt:data="commmenu" pt:var="commpg">
                  <!-- currpage will be set to null if it's not the current page -->
             <pt:standard.choose>
             <pt:standard.when pt:test="intsequal" pt:int1="$currpage.PageID" pt:int2="$commpg.PageID">
              <tr bgcolor="#338AF0" width="100%" style="padding-top:2px; padding-bottom:2px;">
                   <td width="15px" align="right"><img src="images/bullet_white_highlight.gif" /></td>
                          <td>
                               <pt:core.html pt:tag="a" href="$commpg.url">
                             <pt:logic.value pt:value="$commpg.title"/>
                        </pt:core.html>
                   </td>
                   <td valign="middle" align="right" style="padding-bottom:5px;"><img src="images/leftnav_arrow.gif" border="0" /></td>
              </tr>
         </pt:standard.when>
         <pt:standard.otherwise>
              <tr width="100%" style="padding-top:2px; padding-bottom:2px;">
                   <td width="15px" align="right"><img src="images/bullet_white.gif" /></td>
                   <td colspan="2">
                        <pt:core.html pt:tag="a" href="$commpg.url">
                             <pt:logic.value pt:value="$commpg.title"/>
                        </pt:core.html>
                   </td>
              </tr>
         </pt:standard:otherwise>
         </pt:standard.choose>
             </pt:logic.foreach>
             <tr>
                <td colspan="3"> </td>
             </tr>
             <!-- RETRIEVE RELATED COMMUNITY LIST AND SUBCOMMUNITY LIST -->
             <pt:ptdata.currrelatedcommunitiesdata pt:id="relcomms" />
             <pt:ptdata.currsubcommunitiesdata pt:id="relcomms" />
         <pt:ptdata.sortcollectiondata pt:id="sortedsubcomms" pt:data="relcomms" pt:sortby="title" pt:sorttype="string"></pt:ptdata.sortcollectiondata>
         <pt:standard.choose>
              <pt:standard.when pt:test="isEmpty" pt:col="relcomms">
              </pt:standard.when>
              <pt:standard.otherwise>
                   <tr><!--dotted line-->
                        <td colspan="3" background="images/dotted_line_leftnav.gif"><img src="images/spc.gif" width="180" height="1" alt="" border="0"></td>
                            </tr>
                   <tr>
                                 <td colspan="3" class="platportletwideheader">Associated Communities</td>
                                                    </tr>
                   <pt:logic.foreach pt:data="sortedsubcomms" pt:var="commpg" >
                                 <tr width="100%" style="padding-top:2px; padding-bottom:2px;">
                             <td height="16"> </td>
                                    <td colspan="2">
                                         <pt:core.html pt:tag="a" href="$commpg.url">
                                              <pt:logic.value pt:value="$commpg.title"/>
                                         </pt:core.html>
                                    </td>
                        </tr>
                            </pt:logic.foreach>
              </pt:standard.otherwise>
         </pt:standard.choose>
         <pt:standard.choose>
              <pt:standard.when pt:test="stringToACLGroup('group=1,771;').isMember($currentuser)" >
                   <tr><!--dotted line-->
                        <td colspan="3" background="images/dotted_line_leftnav.gif"><img src="images/spc.gif" width="180" height="1" alt="" border="0"></td>
                            </tr>
                   <!-- PORTAL TOOLS -->
                   <tr>
                               <td colspan="3" class="platportletwideheader">Portal Tools</td>
                            </tr>
                            <pt:logic.foreach pt:data="commactions" pt:var="element">
                            <tr width="100%" style="padding-top:2px; padding-bottom:2px;">
                        <td height="16"> </td>
                               <td colspan="2">
                                    <pt:core.html pt:tag="a" href="$element.url">
                                         <pt:logic.value pt:value="$element.title"/>
                                    </pt:core.html>
                               </td>
                   </tr>
                            </pt:logic.foreach>
                    </pt:standard.when>
         </pt:standard.choose>
          </table>
          </td>
       </tr>
       <tr>
          <td> </td>
       </tr>
    </table>
    </span>

  • File Upload Portlet Issue

    I have a portlet written in .NET that allows a user to upload a file that is saved to a server and some back-end processing is done. I'm running into an issue where I can't upload a file over 80 MB. I have adjusted the setting in .NET to allow the file size for up to 400 MB. But, my Plumtree Portal is running on Tomcat on Windows. Is there another setting in either Tomcat or Plumtree that I need to adjust?
    Thanks, Jamie

    The binary gateway for Plumtree has a limit of 50mb. You can turnoff binary gateway, which you have to do it in 5.01 to fix some problems, or change the MaxPostData registry DWORD. You might even have to increase its timeout settings for files that large. See this article below:
    http://portal.plumtree.com/portal/server.pt/gateway/PTARGS_0_280508_555092_0_0_18/registry_settings_for_plumtree_binary_gateway.htm
    If you have a problem getting to it, just search for "binary gateway" and it should be the first hit.
    Hope this helps!--Jason ParrishFTN Financial

  • 902 Status Portlet issues

    I've added the Status portlet to a page in 902. I've also set up a page approval process. A user with Manage With Approval privs adds some content and a page owner approves the content with a comment.
    The user with Manage With Approval refreshes their page and can see the new content approved in the Status portlet.
    I assume I can display the full approval notification (including the approval comments) by clicking on the approval status, but when I do the a Javascript error is displayed in my browser (IE5.5):
    Is this a bug or an install/config problem?
    This is limiting the usefulness of one of the most eagerly awaited features of 902.
    regards,
    John

    Please see my related post on Subscriptions. I have raised a TAR (2487712.999) against the problems with the Notification and Status portlets (used in the context of Subscriptions).
    However, the problem with the Task portlet is generic across ALL aspects of its use - Approval, Subscriptions etc.
    Jerry has raised a bug: 2479682 which is internal currently, but I don't know the exact details of what it covers because the problems I identified with the Subscriptions process covered a number of potential bugs for each of the Notification and Status portlets.
    Basically, to replicate this specific issue (identified in this thread), create an approval process for a page and fire it off by adding some content by a user with Manage With Approval. This limited-privilege user cannot check the status DETAILS of their request - the hyperlink with 'PENDING', 'APPROVED' etc. appears, but if you click on it a Javascript error appears instead of (I assume) a pop-up detail screen appearing with the full history of the approval process. I have tested this on Internet Explorer 5.5. Does it work ok on Netscape???
    These issues identified are quite fundamental to significant areas of new functionality in release 902. It will make the task of pursuading my customers to migrate or new customers to take up Portal 902 and I hope they will be rectified soon!
    Regards,
    John

  • Mandatory portlet issue

    Hi,
    I have a requirement in which I need to display 5 portlets as mandatory portlet on home page. I have a template in which there are three regions on my home page. Region 1 & 3 are narrow regions and region 2 is wide.
    I need to add 2 mandatory portlets in region-1 and 3 mandatory portlets in region-3. To achieve this I have set priority for mandatory in portlet security section.
    Below is the details of the priority given to the mandatory portlets:
    Region - 1
    Portlet - 1 : Very High
    Portlet - 2 : Medium
    Region - 2
    Portlet - 1 : High
    Portlet - 2 : Low
    Portlet - 3 : Very Low
    The problem here I am facing is that the Portlet - 3 which I need to be displayed in Region - 3 is coming in Region - 1.
    Please suggest some workaround so that my Portlet - 3 should come in Region - 3.
    Ankit

    OK, so this issue is resolved. However its all very wierd, and I am concerned it may come up again. Anyways the steps were:
    I looked up OSS notes and found one exactly for this scenario: 746396. According to this note, this issue happens with Infotypes with Time Constraint of '3'. So Emergency Address had a TC of 3, and it was understandable that this problem occured. I also tested this with other address subtypes not of TC 3 and they worked fine. When I decided that we had to implement the code changes as part of this note, I saw that this note was applicable only to Release 500, whereas ours is 600. I also compared the code and verified that the code changes suggested in the note were already applied. Just to try, I changed the TC of IT6 ST4 to 2 and then the iView worked fine. I changed the TC back to 3 and expected it to fail, but then the iView continued to work correctly. I tested various scenarios, and everything is working just fine.
    However in the SAP world I hate the unknowns, since they come back again. If anyone has an explaination for this please let me know. Otherwise, for now, the iView is working fine.
    Thanks,
    Nakul

  • Telnet Portlet Issue

    I have downloaded and installed the Telnet Integration Portlet from potalstudio. I registered the provider and added the portlet to a portal page. From there I customize it with the server name, port (23), username, and password. From there I can't tell if I'm logged in or not. At the top of the portlet it says "Digital UNIX (challenger) (ttyp0)"...challenger is the server name. Below that I see the following:
    login:
    Password:null
    If I try to enter a command where it says "Enter Command here:" the command is not run. It simply displays the command that I ran such as 'ls' or the 'cd' command that I ran. Am I doing something wrong, am I connected but have something else wrong? Any help you could give would be greatly appreciated. Thanks.
    Beth

    I am using IE 6.* which is the browser you said you had problem with. I have followed your advice to try on Mozilla and get the following error when the applet is trying to download:
    load: class de.mud.jta.Applet.class not found.
    java.lang.ClassNotFoundException: java.io.FileNotFoundException: https://mysygentest.sygeninternational.com/pls/portal/de/mud/jta/Applet/class.class
         at sun.plugin.protocol.https.BrowserHttpsInputStream.openStream(Native Method)
         at sun.plugin.protocol.https.BrowserHttpsInputStream.<init>(Unknown Source)
         at sun.plugin.protocol.https.BrowserHttpsURLConnection.getInputStream(Unknown Source)
         at sun.applet.AppletClassLoader.getBytes(Unknown Source)
         at sun.applet.AppletClassLoader.access$100(Unknown Source)
         at sun.applet.AppletClassLoader$1.run(Unknown Source)
         at java.security.AccessController.doPrivileged(Native Method)
         at sun.applet.AppletClassLoader.findClass(Unknown Source)
         at sun.plugin.security.PluginClassLoader.findClass(Unknown Source)
         at java.lang.ClassLoader.loadClass(Unknown Source)
         at sun.applet.AppletClassLoader.loadClass(Unknown Source)
         at java.lang.ClassLoader.loadClass(Unknown Source)
         at sun.applet.AppletClassLoader.loadCode(Unknown Source)
         at sun.applet.AppletPanel.createApplet(Unknown Source)
         at sun.plugin.AppletViewer.createApplet(Unknown Source)
         at sun.applet.AppletPanel.runLoader(Unknown Source)
         at sun.applet.AppletPanel.run(Unknown Source)
         at java.lang.Thread.run(Unknown Source)
    When you say you installed the latest JRE 1.4.2_03 from Sun, did you mean that you installed it on 9ias or on your local computer. I�m a little hesitant to install it on 9ias at this point and possibly create other issues.

  • Portlets Issues:-  Included resource or file  not found

    I am facing some problems in the loading of portlets with Weblogic 9.2.When I access the portal url all the portlets are displayed blank by giving the following error message on the server :
    <Error> <HTTP> <BEA-101214> <Included resource or file "/mysamples/exampleView.jsp" not found from requested resource "/portal/ep/home.do".>
    My application is using pluto portlet container,
    When I change the jsp file and reload portlet displays but after restarting the server it is again gone ,
    Can someone please provide some pointers on this , I will really appreciate the help .
    Thanks a lot
    -- Vandana

    has anyone got the solution I am getting the same error.
              mine is weblogic 6.1 in clustered env and when I am opening the browser and clicking on the link first time it is showing me no content in the pop up browser and I am getting the same error on the server as you people have got. help will be appreciated a lot as I am facing this in production env

  • Deploy jsr168 portlet issue by jsr168import.jsp

    hi,guys
    I got a question.
    I want to deploy some 168 portlet to weblogic portal,so I follow the document.
    after perform import done,show me the message,it means successful.then I open a tab of browse
    (http://localhost:7001/rssportlet/producer?wsdl)
    put the wsdl address URL,it was show me the wsdl content.
    but when I create new producer,in the second step,I can't see the portlet,it means no portlets for me.
    (2. View Producer's Portlets,I can't see my deployed portlet)
    what wrong with my operated.
    hope you can help me ,thank you so much.
    regards
    aris

    Hello again,
    I should mention that as a workaround, you can use the JSR168 import tool as it exists in WLP 10.3 and have it generate but not deploy the EAR file for you. Inside the EAR you should find a directory named the same as your original WAR file with a WEB-INF/ subdirectory. You should be able to copy all of the generated configuration files out of this WEB-INF/ directory. Go back to the root level directory of the EAR (which has a subdirectory named the same as your original WAR file), expand your original WAR file there so that it overwrites the WAR directory, then copy the configuration files you saved off back into the WEB-INF directory. Finally, jar up the EAR file again and it should be ready to deploy.
    Kevin

  • Urgent :  Portlet issue

    Hi,
    I am working on Weblogic Portal 9.2
    I have portal page with 3 portlet as below.
    Home Page
    --> Portlet1.portlet Instance label ppp1
    --> Portlet2.portlet Instance label ppp2
    --> Portlet3.portlet     Instance label ppp3
    When I run this page I will see above three portlets displaying properly.
    Now Let say on Portlet3.portlet , there is hyperlink "show". On clink of this hyperlink only Portlet3.portlet should be displays with different content.
    How I can do this?? How do I prepare the href so that my page shows only third portlet i.e Portlet3.portlet ?
    Also please note that I don't want to use any help of backing file to hide and show the portlets. Portlet3.portlet should display only using href URL.
    I am trying with URL like
    String link = request.getContextPath() + "desktop defination label" + ?_portletInstance=ppp3
    where desktop defination label = DesktopPresentationContext.getDesktopPresentationContext(request).getDefinitionLabel();
    <netui:anchor href="<%= link %>" >show</netui:anchor>
    But it's not working.

    Pageflow based Portlets are very tricky when using Browser Back/Forward buttons. Pageflows always maintain the last state and anytime we refresh it shows the last state. Like if you have say 3 navigation links that takes to 3 pages and if you click on link3. Now when you refresh the page or use back button, we expect the pageflow will get called and go to begin method and show the page 1. But it shows the last link clicked page.
    To overcome this, for Pageflow Portets, there are 2 Properties: Pageflow Action and Pageflow Refresh Action. When you open pageflow portlet and on right side under Properties -> Page Flow content, you can see these properties.
    So in your case, if you see that when you browse back, if the pageflow portlet is not getting maximized, se the property "Pageflow Refresh Action" with the action method that you have in pageflow that triggers Maximize code (if you have this in backing method add system.out.printlns and see if this is getting called).
    To overcome the scenario I mentioned in first para, I usually set both these properties with begin method name, since in begin method I have all initialization logic.
    If you are getting some other errors during browser back buttons, can you please give the exact details and any errors that you see.
    Goud

  • Exchange2003 Portlets Issue

    Hi,
    I have deployed the Exchange 2003 Portlets on Portal 10.1.4 server, following the instructions at: http://www.oracle.com/technology/products/ias/portal/point/exchange2003/installation.html.
    The problem is that the subject of email is displayed correctly, while when I try to read the email content by clicking the subject, an error page is displayed.
    Any ideas ?
    Will

    Hello Will,
    Have you gone through SyncEx Collaboration Suite for MS Exchange ?
    SyncEx Collaboration Suite consists of 5 portlets - Calendar, E-Mail, Task, Contact, Alert that can work with MS Exchange, Lotus Domino and Databases.
    All These portlets can be downloaded from http://www.syncex.com/download.jsp.
    Once you download and unzip the file, you will find the SyncEx.ear and the corresponding installation guide for respective versions.
    For any further information, please contact [email protected]
    Thanks
    Neeraj Sidhaye

  • Real brain bender: virtual host or omni portlet issue? Take the challenge

    We are having problems with a portal page that displays several omni portlets on several tabs. Here's the situation:
    The page consists of 5 tabs, each representing a different demographic characteristic. On each tab there are four omni portlets. One omni porlet represents a selection list. The user makes a selection, which triggers an omni portlet event to pass the selection criteria to a page parameter. The other three omni portlets on the tab read the parameter value and retrieve data according to the selected parameter value.
    Example: The user selects the Age tab and selects the link representing data for the Central Region. The omni portlet's event populates the page's "region" parameter with the value "Central." The other three portlets on the tab retrieve their respective data where region = 'Central'.
    Since all the tabs on the page represent different demographic characteristics, the omni portlets on all the other tabs also perform their queries where region='Central' so that the user will see Central Region data displayed regardless of what tab they navigate to.
    Also, when the user navigates to another tab and selects a different region, all the omni portlets on all the tabs perform their respective queries to capture data where region=<selected region>.
    The page performs correctly until we configure a virtual host. In that case, when a user makes a selection of a particular county in one tab, the queries are performed but the page displays with a tab in view other than the one where the user made the selection.
    Example: the user navigates to the Age tab and selects region='Central'. Then the user navigates to Gender tab and then Living Situation tab, viewing the results on each tab. Now the user returns to Gender tab and selects region='Western.' The portlets perform their queries and the page re-displays with the user on Living Situations tab, rather than Gender tab where the selection was made.
    Obviously, we want the user to stay put on the tab in which they make their selection. I think it's a problem with the virtual host configuration. My DBA thinks it's a problem with the way the page is built. Has anyone else run into this kind of thing? Is there a trick to using Virtual Hosts?

    Your main.cf seems redundant.
    For example:
    if you specify:
    virtual_alias_maps = hash:/etc/postfix/virtual_alias, mysql:/etc/postfix/mysql_virtual_forwards.cf
    you don't need this:
    alias_maps = hash:/etc/postfix/aliases
    and i think you have a lot of more options you don't need.
    This is my main.cf on my vps and everything works great (sending and receiving emails from/to most common mail server: gmail, hotmail etc etc)
    smtpd_banner = $myhostname ESMTP $mail_name (Debian/GNU)
    biff = no
    # appending .domain is the MUA's job.
    append_dot_mydomain = no
    readme_directory = no
    # TLS parameters
    smtpd_tls_cert_file=/etc/ssl/certs/ssl-cert-snakeoil.pem
    smtpd_tls_key_file=/etc/ssl/private/ssl-cert-snakeoil.key
    smtpd_use_tls=yes
    smtpd_tls_session_cache_database = btree:${data_directory}/smtpd_scache
    smtp_tls_session_cache_database = btree:${data_directory}/smtp_scache
    message_size_limit = 4194304
    virtual_mailbox_domains = mysql:/etc/postfix/mysql-virtual-mailbox-domains.cf
    virtual_mailbox_maps = mysql:/etc/postfix/mysql-virtual-mailbox-maps.cf
    virtual_alias_maps = mysql:/etc/postfix/mysql-virtual-alias-maps.cf
    virtual_transport = dovecot
    dovecot_destination_recipient_limit = 1
    it is very simple (no dkim, no forced tls, no mailbox limits and so on) and it can be improved but it works..
    as I suggested you just try spending some hour wiping postfix installation and giving a look to this guide

  • Jsr168 portlet issue

    Hi,
    1. I developped two jsr168 portlet and deployed them to java portlet container successfully, but the status of one is always not loaded, against, the status of the other is loaded, do you why?
    2. i want to add the portlet which its status is loaded to my page, but I cann't find it in the portal builder. Do you know where is it or how to find it or how to add a jsr168 portlet to a page after deploying it?
    thanks very much
    jason

    Thanks very much for your reply.
    because i don't want to use the JDeveloper to help me to develop and deploy the jsr168 compliant portlet on oracleAS10g Portal, so my question is that how to add my jsr168 portlet to a page when i deploy it successfully?
    In fact, I already finish developping the jsr168 portlet and deploy it to java portlet container on oralceAS10g successfully. but i cann't find it in the portal builder, so i don't know how to add it to my page. can you give me more information about it in detail? I don't think i can get enough information from the developer's guild pdf document, i read it, but i still cann't figure out my problem.
    thanks again
    jason

  • Omni Portlet Issues HELP pls

    Hello everyone, I am getting some errors while adding omniportlet.
    while selecting a portion of the page (specically charts, quotos, graphs) i receieve the following error 1: An exception has occured : WCS-200 -- Clip not found for clip
    04218a43ba284a69acf9d2f8f90b31aa:3933746:1:1939_OMNIPORTLET_3933746:-
    BEside that, i read that it is possibe to select an applet? i cant complete the
    applet selection(cause i cant scrape it, in fact i dont wanna scrape.) Error 2:Clipping is not finished properly. Please try again.
    sometimes i am getting this error 3: Target XML document does not conform to a rowset-row structure.
    thank you for your interest
    Korhan YUNAK

    hello ,
    thank you for your quick response.
    yes i am using the OmniPortlet Web Page data source.
    version of OmniPortlet/PDK 90262
    application server version:9.0.2.4
    for example, there is a chart in the page or scrooling text(stock exchange applet i guess), i can not get it it gives the following error:An exception has occured : WCS-200 -- Clip not found for clip e1f4770694ed4af3a6dada27ce7477ae:3933746:1:1970_OMNIPORTLET_3933746:-
    what do i miss exactly. could you pls look at the page i am trying to clip.
    http://finans.milliyet.com.tr
    thank for your kindly support
    Korhan Yunak

  • PDK Java Portlet looses edit default values everytime I redeploy EAR

    Hello All,
    I have a PDK Java portlet (Portal - Oracle 10g). It works as expected perfectly till I redeploy my EAR. As soon as I redeploy EAR, it looses the settings that user had set using edit defaults link. Is there anyway to prevent this? Application runs on OC4J server.
    I urgently need solution to this problem and any help would be greatly appreciated.
    Thanks,
    Kinnaree

    Just to be sure, you are registering the PDK producer with a WebCenter portal?
    Or are you just using the PDK provider in an oracle portal environment and you don't use webcenter?
    If you are using webcenter, can you also test this behavior in Oracle portal? Do you also loose the values in oracle portal or is it just in webcenter? This way we can see if it's a webcenter or portlet issue.
    If you loose the values on both the oracle portal and webcenter side, than it has something to do with the portlet. If they are working correctly in oracle portal, than it might be a bug in the PDK bridge in Webcenter.
    Edited by: Yannick Ongena on Jun 23, 2011 11:14 AM

Maybe you are looking for

  • How do JOB_OPEN, JOB_SUBMIT, & JOB_INSERT Work?

    Hi, Can anybody tell me how to use the function modules JOB_OPEN and JOB_SUBMIT in my report program? Thanks, Das.

  • How to design this application with Struts?

    I want to disign an application like this: Input the students data to the database(or xml) e.g:student_id,student_name,subject_id,subject_name,achievement... If i submit one record each time, it's easy to do it. use the tag of Struts as: <html:form .

  • Bridge cs4 can not open raw and jpg directly by itself

    i never did it! i want to open raw and jpg files by camera raw directly with open photoshop. i have made the choose to open by double click in the preference but still can not do. my brother's computer can open both of them and we are similar xp syst

  • Macbook pro - listen to soundcloud songs? plugins???

    Hello Forum, I ve just taken the plunge and converted from pc - macbook pro - Mountain lion. When I go on my soundcloud account, when you click play for any song, nothing happens??? However, if I boot up my clapped out pc laptop, and do the same ever

  • Netscape security model is no longer supported.

    I am getting this message when I try to run an applet with the 1.5 version of the Java plugin. It works fine with 1.4.2_07. From what I have seen from searching around, this message can come up even when using earlier versions of the plugin. In the c