Problem with manage/consume content separation approach

Hi,
In the Portal 10G manual and in several other sources, ORACLE recommends separating content-management from content-publication in different page groups. That's the approach we've adopted, and it seems reasonable. BUT now I find that contents published as portlets are like black boxes not searchable in the page group where they are published! That and not giving search feature at all to the users is almost the same! There must be some solution for this, I find it a major drawback difficult to ignore, since it makes this approach unacceptable.
Please, any help on this will be very appreciated, for it may yield critical decisions in our portal development approach.
Big thanks in advance.

The default portal search is a respository-based search, so will always return the page on which the item is managed. In your use case, it probably makes sense to either (1) not expose the page attribute in your search result (2) use UltraSearch as your end user facing search. Note that UltraSearch creates its index via a crawler, therefore will only return content that is 'public'.
If you have additional, follow-up questions on search options, I recommend a post on the portal search forum: http://forums.oracle.com/forums/forum.jsp?forum=12

Similar Messages

  • After update 8.1.2 i had problem with sync my content from ITunes with IPod

    After update 8.1.2 i had problem with sync my content from ITunes with IPod. It stucks on moment when its waiting for implementing changes (step 5 of 5) Hours and hours i'm waiting but still the same. So i cant use my Ipod at all. I restarted Ipod and delete and download Itunes again. Still stuck in the same moment. Help please. Someone has some problems like that?

    I have an error message saying that "An unknown error occurred (-54)"

  • If I change the nation setting of my iTunes in order to buy a song from the American iTunes store, then change my setting back to the Korean store (where you cannot buy music) will that create any problems with my downloaded content?

    If I change the nation setting of my iTunes in order to buy a song from the American iTunes store, then change my setting back to the Korean store (where you cannot buy music) will that create any problems with my downloaded content? I want to buy an album that I cannot get hold of in Korea, but it is available in the US iTunes store. However since most of my apps are downloaded from the Korean store I'll need to switch back in order to update them. Does anyone know if there are any issues in doing this. I'd rather find out before I spend money, change my store setting back to Korea, and then get told I can't listen to the music because I bought it from the US store and my iTunes is set to the Korean store.
    Cheers.

    You canot easily change your country settings.  The iTunes Store in a country is intended only for use by that country's residents, and only while they are in the country. To use the iTunes Store in a country you need a credit card (or other card type if acceptable in a country) issued in that country, billed to an address in that country, and also be physically present in that country when using the store.  You are also restricted to waiting 90 days between country changes.
    E.g., "The iTunes Service is available to you only in the United States, its territories, and possessions. You agree not to use or attempt to use the iTunes Service from outside these locations. Apple may use technologies to verify your compliance." - http://www.apple.com/legal/itunes/us/terms.html#SERVICE

  • Problems with managed beans on included JSPs

    I've got a problem with managed beans within an included JSP
    The included page looks as follows:
    <f:subview id="includedPage" binding="#{testBean.component}">
         <h:outputText value="Hallo from the included page"/>
         <h:outputText value="#{testBean.msg}" />
    </f:subview>The including page is also very simple
    <f:view>
         <html>
              <head>
                   <title>Test include</title>
              </head>
              <body>
                   <h:outputText value="Hello from the including page"/>               
                   <jsp:include page="included.jsp"/>
              </body>
         </html>
    </f:view>The testBean is a managed bean with page scope and looks as follows:
    public class TestBean {
        public UIComponent fComponent;
        public TestBean() {
            System.out.println("TestBean Constructor called " + toString() );
        public String getMsg() {
            return "Component = " + fComponent ;
        public void setComponent(UIComponent component) {
            System.out.println("setComponent called " + component);       
            fComponent = component;
        public UIComponent getComponent() {
            System.out.println("getComponent called " + fComponent);
            return fComponent;
    }The output to the console is:
    TestBean Constructor called de.kvb.athena.web.beans.TestBean@1bc16f0
    getComponent called null
    TestBean Constructor called de.kvb.athena.web.beans.TestBean@18622f3
    setComponent called javax.faces.component.UINamingContainer@160877b
    TestBean Constructor called de.kvb.athena.web.beans.TestBean@5eb489
    and the page displays
    Hello from the include page
    Hello from the included page Component = null
    Can anyone explain this behavior ? What's the reason that the page displays
    Component = null
    and is it possible to display the parent naming container (subview) this way ?
    how ?
    Thanks

    By "page scope" I assume you mean "none"? If so JSF creates a new bean for each place it's referenced. The closest to the behavior you want, once per "page", is really request scope.
    (I'm not sure why the constructor is being called thrice, though. I should look into this.)
    I assume you want a bean-per-subview scenario. This should be doable, and one way that allows a dynamic number of subviews would be as follows:
    --create a "manager" bean in request scope
    --give it get/set methods that retrieves a Map of "TestBean" instances; the idea is that each subview use a different key "s1", "s2", etc
    back the manager method with Map implementation that checks if there's already a TestBean associated with the key returns it if yes, else null.
    If that seems messy, the component solution is hairy :-) See http://forum.java.sun.com/thread.jspa?threadID=568937&messageID=2812561
    --A                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                               

  • Problem with images in content management portlet

    Hi all,
    I'm trying to use the content management portlet provided with Bea WLP 8.1 SP4, but I've a problem with the images (they're not displayed at all, only a lot of red "X"s). Some how it seems to be a problem with the Taglib render. It tries to get the resourceRootPath to post it in front of the src path in the image tag and it always includes the parameter that are in the URL.
    I followed the instructions in the help of workshop, so I think I've imported every needed files. Moreover, the images are in the right folder tree. The wired thing is, that the My Content Portlet works fine.
    Any help for a newbie???
    Cheers,
    Cord

    Hi Cord,
    I was having that same problem, and I couldn't find anything on this website either. I tried creating a new portal project and following the directions exactly again, but it didn't work there either. It works in the sample portal.
    So I contacted BEA Support, and they were able to provide me with a solution:
    The file url-template-config.xml (in the WEB-INF directory) has to be modified and have the {url:currentPage} parameter removed in order to get the images working for the content management portlet. For now, do this only in the section <!-- URL templates -->. Leave the other places like in WSRP etc as it is.
    I actually took it out of the WSRP places too, by accident, but I don't use WSRP anyway, and everything else seems to be working fine. And the images show up!
    Hope this works for you too,
    Beth

  • Problem with buttons in Content Viewer iPad app

    Hi,
    I'm having a problem with my navigation once my app is viewed on the iPad. All pages in all of my articles are using the same master page for a menu button, and they all work when I view the app through the Content Viewer on my desktop. Once I log in to the Content Viewer on my iPad, however, the menu button on the first page of every article doesn't work. I did a test of swapping the first page with the second page in one of the articles, and the original page's menu button then worked while the second page's (now located at the beginning) wasn't being read. Other buttons on the first page work (which are also from the master page), it's just the menu button that makes my table of contents box appear. I have eleven articles in my folio and it's happening on the first page of every single one. Not too sure what's going on here, any help is appreciated.
    Thanks.

    I also figured out after playing around with it a bit more that this only happens when "Horizontal swipe only" is checked in the properties.

  • Span columns problem with Table of Contents order

    Hello,
    I'm having a strange issue with headings that span columns and Table of contents order. My document has a heading paragraph in a coloured box, which is then inserted in-line into a 2-column text box. The paragraph style for the box (set to in-line) is set to span all columns, so that the 2-columned text doesn't get messed up.
    When I create a table of contents, the Heading style that is inside the coloured box is being picked up fine, but even though it is inserted before the headings below it, it is showing up after the level 2 headings, instead of before.
    I have confirmed that the insertion of the blue bar is before the text below it, as when I remove the span columns option, the TOC works as it is supposed to. Is this a bug?

    Hi there, thanks for the reply.
    The only way I could move the inline box to the left was to make a custom anchor and change the X value, this did not affect the TOC unfortunately. I also checked the location of the invisible marker indicating the location of the inline text box, and it is definitely before the heading that follows. I confirmed this by removing the span columns option for that paragraph, and the TOC displayed properly after doing that, meaning there is likely some problem with the span columns option not properly recognizing the order of content.
    Regards,

  • Problems with the Spry Content Slider Widget in DW6

    Hello there,
    I have been wrestling with a problem I'm having with the Spry Content Slider Widget that I hope someone has an answer for.
    I have 2 widgets on a page, but the problem I'm having occurs whether there is 1 or 2 on the page.
    No matter how many slides I have in the widget, it only shows the first 3. The 2 widgets per page occurs on every html page (9 in total.)
    In there a setting in the inline or linked .js code limiting the number of slides to 3?
    In addition to these widgets, I also use a DWUser_EasyRotator Slider on the pages, and both the easyRotator and Spry Widgets launch a fancyBox jQuery Gallery. Tho it's a possibility, I don't think the mixing of sliders/js is the problem, as I was having the problem with the Spry Widget showing only the first 3 upon the first insert of the Widget.
    Any suggestions on settings I should be aware of, as regards the Widget, would be greatly appreciated… (;

    On line 66 of your code, you have an extra </head> tag that doesn't belong.    Remove that and validate your code again. 
    http://validator.w3.org/check?verbose=1&uri=http%3A%2F%2Fwww.gallerynumber9.com.au%2Findex ---778.html
    Nancy O.

  • Problem with thousands and decimal  separator (Excel 2000)

    Hi, i have a problem with the download option to excel 2000.
    When downloading numbers over 1000 the thousands separators change in decimal separators.
    My config is:
    Locale (location): Español - España
    User Interface Language: Español
    For example, if I have a value as 1800:
    1) in OBIEE show "1.800" (ok)
    2) in Excel 2000 show "1,8" (bad)
    If i choose Locale (location): English - United Stated and
    User interface language Español.
    1) in OBIEE show "1,800" (bad)
    2) in Excel 2000 show "1.800" (ok)
    Can someone help me solve my problem?
    I need to show the same result in OBIEE and Excel, that is, "1.800" with "." not with ",".
    Thanks

    Hi,
    The thousands separator change in the backend dind't work. (+ it only works for text input fields, not for text fields)
    Anyhow, this is how we created a workaround :
    Suppose we did this : <b>NSTR(@CREDITLIMIT,"C.2")</b>
    This resulted in the field being displayed as <i>67,234.56</i>
    The 'dirty' way to convert this to an european format is :
    <b>REPLACE(REPLACE(REPLACE(NSTR(@CREDITLIMIT,"C.2"),",",";"),".",","),";",".")</b>
    Output is <i>67.234,56</i>
    (we just replaced the '.' by ',' and vice versa)
    I still feel quite uncomfortable with this solution, but this is the only way we got it to work.
    I really hope a next patch/servivepack provided a more elegant solution for this problem... (hint hint)

  • Problem with some Video Content not able to be shown. no Plug in for it

    I am getting a Problem with some News Sites Articles Video Content not being able to be shown, BBC, YAHOO,etc I am getting the message/has content of Mime type Audio/x -pn-RealAudio-Plug in Because you dont have plug in for this mime type it cant be displayed. Also I am getting a Message Url not Valid
    Help Please. Thanking You
    I .Mac 17   Mac OS X (10.4.8)   intel core 2 duo

    Did you install Real Player (free version)?
    <https://order.real.com/pt/order.html?country=US&langu
    age=EN&mppi=0&mppos_list=0&mpst=0&ppath=cpmacpl060204a
    &pageregion=playerbutton&pcode=rn&opage=realhomespma
    cbb&src=realhome_spmac_bb_0_1_1_0_0_20>
    Okay, so here's a question from a new to mac guy. Many issues on old PC with real player and Media Player not getting along. Eventually had to delete real player and had to reinstall windows. I would like to avoid third party software if possible and stick with Quicktime. How do I install the mime plug in without installing Real Player?
    17" iMac   Mac OS X (10.4.8)   intel duo
    17" iMac   Mac OS X (10.4.8)   intel duo

  • Problems with Clone Tool / Content Aware Scaling in CS4 Mac

    I've been using PS for about 1 year and a half.  Sort of an Advanced beginner.  One of the things I love is the clone tool.  Since I've upgraded to CS4 I've had nothing but problems with the Clone tool.  When I go over an area it doesn't show anything and the either makes the adjustments after a long delay or it goes black and then comes back with the adjustment.  Sometimes when I'm dragging the brush the whole picture goes away replaced by a smear of color noise.  It really makes the tool unusable.  In many cases I've gone back to CS3.
    I also have similar problems with the content aware scaling.  Never been able to get it to work.  Basically some of the nicest new features of CS4 are worthless for me.  Tried looking at Adobe solution and searching the forums but I haven't seen any exactly similar problems of solutions.
    Any help appreciated.  I have a white 24' Intel Mac with a 2.33 GHz Intel Core 2 Dual with 3GB RAM.
    Alan

    As always the various User Forums are fantastic.  Adobe (and other) get everyone to do their Tech Service for them.  Thanks for the help.
    So, two new pieces of info.  When I disable Open GL everything works fine.  (Sorry about the TIFF, I just didn't catch it)  So in essence this solves my problem.
    Also PS CS4 works perfectly on my new Aluminum MacBook.  So clearly it is an issue with the video board on my iMac.
    This brings me to the wrap-up question.  Should PS CS4 theoretically work with Open GL on my iMac or is it a know problem with CS4 and older graphics boards?  I'm assuming my board supports Open GL.
    This is the Profiler data on the Graphics Card
    Chipset Model: NVIDIA GeForce 7600 GT
      Type: Display
      Bus: PCIe
      PCIe Lane Width: x16
      VRAM (Total): 256 MB
      Vendor: NVIDIA (0x10de)
      Device ID: 0x0391
      Revision ID: 0x00a1
      ROM Revision: 3021
      Displays:
    iMac:
      Resolution: 1920 x 1200
      Depth: 32-bit Color
      Core Image: Hardware Accelerated
      Main Display: Yes
      Mirror: Off
      Online: Yes
      Quartz Extreme: Supported
      Built-In: Yes
    Some of the Open GL features are nice and wouldn't mind having them but not worth buying a new Mac for.  So the questions is: Is the some kind of upgrade / driver I can load to solve this problem.
    Again Thanks for the help

  • Problems with http header "Content-Location"

    Does anyone know how to override the
    "Content-Location" http header. We are having issues with search engines and this header being returned from Apache/oc4j. In a nutshell, I have a site that uses the
    Struts framework, where the actual urls submitted would be for example
    (http://mysite/home.do), where ".do" is just a servlet mapping. When we have
    tried to follow the one link that has been spidered, it actually contains
    the full path that appears in the "Content-Location" header (i.e.
    http://mysite/web-inf/jsps/bogus.jsp) which in this case can't even be
    accessed. The feedback we get from third-party utilities that try to spider
    the site is that it is stopping because it has already indexed "bogus.jsp",
    which in reality will always appear since it is a template, where the actual
    urls will be different as is above.
    Because the "Content-Location" header is being returned to any
    client hitting the site, search engine spiders stop indexing at the first page because the value in "Content-Location" is the same.
    Solutions tried:
    mod_headers in Apache - have tried "Header unset"
    HttpServletResponse.setHeader()
    Any help would be appreciated

    Hi there,
    i'm having a similar problem to this when trying to run some web page speed optimisation software...
    i think the issue also causes problems with the Opera browser (although this may have been fixed in the latest version).
    anybody any ideas how to stop the header being sent in the response?
    many thanks,
    Andy

  • I have problem with safari web content show up that not responding

    Hi apple support and other member
    My name is Oliver ..I using MacBook Pro (15-inch, Mid 2012)  | Processor 2.6 GHz Intel Core i7 | 8 GB 1600 MHz DDR3 | and update to OS X yosemite version 10.10.2
    I have a problem with my safari it show up that web content is not responding..What should i do because it happen all most every time in open up safari ? Pls help and give a advice ?
    Thank you
    Oliver Chu

    Hello, Oliver Chu.  
    Thank you for visiting Apple Support Communities.  
    I understand that you are experiencing an issue with the performance of Safari.  I would start with clearing Safari History and Website Data.  If the issue persists, you may need to take a look at the troubleshooting steps in the second article.  
    Reset Safari
    Unsupported third-party add-ons may cause Safari to unexpectedly quit or have performance issues
    Cheers, 
    Jason H.  

  • Problems with loading flash content in firefox, chrome, and opera

    Salutations.  The past couple of days, I've been having trouble with loading flash content on many sites.  In particular, many flash games on sites like facebook will not load for me.  Sporadically on other sites, flash content will not load, either.
    I have no trouble with flash in IE9, but when I try to load these same pages in opera, chrome, and firefox i receive a "This Adobe flash plugin has crashed" error.  I do send a crash report each time I receive this error.  I've uninstalled flash and reinstalled it several times and it still performs this error.  Sometimes when i try to load certain flash games on Chrome a "the following plugin is unresponsive: shockwave flash.  would you like to stop it?" error and this makes the whole browser unresponsive.  I receive the same error in Opera.
    I have the following browsers and flash versions:
    Firefox:  6.0.2 with adobe flash 10.3.183.7
    Chrome: 13.0.782.220 with adobe flash 10.3.183.7
    Opera:  11.51 with adobe flash 10.3.183.7
    As for my system, I have Windows Vista Home Premium with service pack 2.
    Prior to upgrading to this new version of flash, everything worked fine in all of these browsers for me.
    As an afterthought, I figured that I should mention that I'm running adobe flash 10.3.183.5 with IE9, which is the main difference between that one browser and the other three.

    Thanks for the report.  Odd that IE is fine, though maybe something broke between .5 and .7.  Would you mind opening a new bug on this issue over at bugbase.adobe.com?  Here's a post that describes the information we'll need and instructions for generating a crash log:
    How to report a crash with Flash Player
    Thanks,
    Chris

  • General problems with BT Vision's current approach...

    Firstly, in case anyone doesn't know where I'm coming from, I really enjoy the BT Vision service. I've got just the TV Package and I think that represents fantastic VFM. But it's not without (some serious) niggles, most of which I think BT need to take the time to think about because they should be within their power to correct and unresolved they will put some folk off the service and they'll go elsewhere.
    Limitated library availability. The "Box Sets" are great from old stuff like Buffy to new True Blood and Lost. But it's frustrating that you can't keep them on the servers permanently. It's simply not good enough to be told that you have until a certain date to watch an entire series. Also, the WB approach of drip feeding VOD to me just takes away the whole On Demand point of VOD. And it's frustrating to have gaps, where you have series 3 and 4 but not 1 and 2. You have new customers joining all the time, and it's frustrating to not start from the start, especially when you see the new stuff time out and disappear.
    Get the information right and the episodes in the correct order with no gaps. Time and time again this has been wrong and there's no excuse for it. It really spoils things. Get it right.
    Finding the content. It's all over the place, and takes many selections to navigate your way back to a series you're watching (and often the route changes). I'd like to see a configurable favourites menu, preferably with some way of ticking off the episodes that you've watched. Also, it would be very handy if you numbered the episodes so that they appear in the correct order in the search menu, this means numbering the single digit episodes as 01, 02 so that the search doesn't present you with 1, 10, 11, ..., 2, 20, ...
    I understand that the first issue is a problem. You have contract deals with the media owner and you have limitations on storage space. But you need to think long and hard about what it is that you're trying to provide to your customers. There are surely some series that you know (and can check) will always pull an audience (Lost, Desperate Housewives, Friends, Doctor Who) so you should consider having these permanently available. I was compelled to watch several series (Lost, Buffy) faster than I wanted to because it was going away. Unfortunately I've kept up the pace and now I've watched all of Buffy and I'm eager for more and considering going out and buying the box set and then being able to enjoy it at the pace I want to. Maybe that's what the media owner would like to happen, but it leaves me struggling to justify having BT Vision as well.

    I agree with you about the way series' are added. A while back I started watching 'Charley Boorman - By Any Means. BT put up the first 3 episodes but as yet haven't put up any more, leaving viewers wondering about his return journey from Australia.

Maybe you are looking for