RSS portlet -- multiple instances w/ different contentURLs?

The documentation of the RSS sample portlet (http://edocs.bea.com/workshop/docs81/doc/en/core/index.html)
describes how you can use this portlet in your own portal application. Furthermore,
it claims that it is possible to use different instances of the RSS portlet with
different contentURLs. I am unable to figure out how I can set the contentURL
as an instance property. It appears that it can only be globally changed for the
entire portlet itself, meaning that all instances of this portlet have the same
content.
Any hints appreciated.
Jan

i can only assume that it is a portlet preference. you can go in through the admin
tools and set them or if the portlet hase an 'edit' button they should be editable
through there for the end user.
"Jan" <[email protected]> wrote:
>
The documentation of the RSS sample portlet (http://edocs.bea.com/workshop/docs81/doc/en/core/index.html)
describes how you can use this portlet in your own portal application.
Furthermore,
it claims that it is possible to use different instances of the RSS portlet
with
different contentURLs. I am unable to figure out how I can set the contentURL
as an instance property. It appears that it can only be globally changed
for the
entire portlet itself, meaning that all instances of this portlet have
the same
content.
Any hints appreciated.
Jan

Similar Messages

  • Re: Running weblogic multiple instances on different ports

    Hi,
    I am planning to run multiple weblogic instances on different ports on the
    same machine.
    Is it possible ? If so, how ?
    Details:
    I am using IIS on the same machine. I am currently running weblogic on
    7001 and 7002(ssl).
    I dont how to run multiple instances. Please help me or guide me where I
    can get documentation.
    These two instances have to refer two different set of code bases ...
    Please point me where I can more details.
    Thanks in advance.
    Sreedhar V

    Is it possible for the two instances on the same machine to participate in
    the same cluster? I believe servers in a cluster must share the same port
    (which is also used for multicasting). Does a virtual IP address need to be
    configured?
    "Per Jessen" <[email protected]> wrote in message
    news:[email protected]..
    >
    >
    Sreedhar Vankayala wrote:
    Hi,
    I am planning to run multiple weblogic instances on different ports on
    the
    same machine. Is it possible ? If so, how ?Assuming you are using WLS6.x, simply define as many servers as needed andgive
    them different ports to listen to. This is easily accomplished using theWLS
    Admin Console.
    Then start individual weblogic processes using this config file.
    regards,
    Per Jessen, Zurich.

  • Weblogic server installation - multiple instances in different ports

    Hi
    I want to install weblogic server(10.0) in my system but it should have three instances running on different ports(equivalent to 3 servers running on the same host). The application hosted on one server will be interacting with the applications hosted on the other two servers.
    Could anybody tell me how to install weblogic server in this way?
    Thanks
    Praveena

    Hi Jakarta,
    As you have mentioned: You want to have three instances running on different ports.
    In that case you can create 3 managed Servers after Creating the WebLogic Domain.
    Step1). Create a Fresh WebLogic Domain.
    Step2). Login to Admin Console (http://localhost:7001/console) and then Create 3 manager Servers and then assign different Ports to them.
    MS1------7003
    MS2------7005
    MS3------7007
    Step3). Start These Servers using <DOMAIN_HOME>/bin/startManagedWebLogic.cmd/sh like:
    startManagedWebLogic.cmd MS1 t3://localhost:7001
    startManagedWebLogic.cmd MS2 t3://localhost:7001
    startManagedWebLogic.cmd MS3 t3://localhost:7001
    Here "localhost:7001" is the Admin Server URL.
    <BR>
    <font color=maroon>
    About The application hosted on one server will be interacting with the applications hosted on the other two servers.</font>
    Here which kind of interaction you are talking about...HTTP interaction, RMI Interaction...With above setup it is possible...
    Do you want any kind of WebLogic Clustering?
    Thanks
    Jay SenSharma
    http://jaysensharma.wordpress.com (WebLogic Wonders Are Here)

  • Find multiple instances of different specific text on each line in a file

    I have a text file that is generated every few weeks that looks something like this:
    Pick 1 - <A href="../teams/team_45.html">Guelph Royals</A>: SP <A href="../players/player_6153.html">Curt Amador</A> </TD></TR>
    Pick 2 - <A href="../teams/team_34.html">Hillsborough Highlanders</A>: 3B <A href="../players/player_8813.html">Zach Watson</A> </TD></TR>
    Pick 3 - <A href="../teams/team_40.html">Brooklyn Hoodrats</A>: SP <A href="../players/player_4162.html">Jerry Davis</A> </TD></TR>
    Pick 4 - <A href="../teams/team_47.html">Toronto Titans</A>: SP <A href="../players/player_9776.html">Toby Walker</A> </TD></TR>
    (and so on through about 50 lines)
    I want to run the data through a script that extracts only parts of each line. I need:
    1) the Pick # (everything before the "-"
    2) the player's position number (the two characters before the second "<A href=" I.E. "SP" or "3B")
    3) the 4 digit player number (the 4 digits after "/players/player_"
    4) the player's name (everything between ".html">" and "</A> </TD></TR>"
    I'm not nearly as up on my text manipulation as I should be, and I know stripping out text that has quotes is going to mess me up. Would someone be able to show me a way to do this and perhaps even explain their code?
    Thank you in advance.
    [email protected]

    That's probably going to be easiest with a regex.
    $text =
    Pick 1 - <A href="../teams/team_45.html">Guelph Royals</A>: SP <A href="../players/player_6153.html">Curt Amador</A> </TD></TR>
    Pick 2 - <A href="../teams/team_34.html">Hillsborough Highlanders</A>: 3B <A href="../players/player_8813.html">Zach Watson</A> </TD></TR>
    Pick 3 - <A href="../teams/team_40.html">Brooklyn Hoodrats</A>: SP <A href="../players/player_4162.html">Jerry Davis</A> </TD></TR>
    Pick 4 - <A href="../teams/team_47.html">Toronto Titans</A>: SP <A href="../players/player_9776.html">Toby Walker</A> </TD></TR>
    '@).split("`n") |
    foreach {$_.trim()}
    $regex = 'Pick (\d+) - <A href=".+?">.+?</A>: (..) <A href=".+?player_(\d{4}).html">(.+?)</A> </TD></TR>'
    $text |
    foreach {
    if ($_ -match $regex)
    [PSCustomObject]@{
    Pick = $Matches[1]
    Position = $Matches[2]
    Number = $Matches[3]
    Name = $Matches[4]
    Pick Position Number Name
    1 SP 6153 Curt Amador
    2 3B 8813 Zach Watson
    3 SP 4162 Jerry Davis
    4 SP 9776 Toby Walker
    [string](0..33|%{[char][int](46+("686552495351636652556262185355647068516270555358646562655775 0645570").substring(($_*2),2))})-replace " "

  • How can i run multiple instances of Photoshop EXE at the same time on windows 7

    Alright. You may ask why do you need multiple ?
    Assume that i have 10000 PSD files in 10 different folders
    I have a script that just save as them as PNG
    And these files are each 3000x3000 px
    My computer has 8 cores and 1 photoshop exe is only using 1 cpu core
    Also i have SSD raid system it has 750 mb read write per second
    So right now i am wasting my time with running only 1 photoshop exe instead of at least 4

    I'm not aware of a way to run multiple instances or different versions of photoshop at the same time on windows.
    Assuming of course they are all installed on the same operating system.
    On mac versions you can running two different versions of photoshop at the same time, but i don't think that's possible on windows where it
    appears that only one version of photoshop can run at a time.

  • Multiple instances of Page Flows

    I have a legacy application that I am working on migrating to Weblogic. The
    legacy application allowed the user to have multiple windows of the same
    module open at the same time. Users found this useful if they wanted to look
    at two different records in the same module. For example, if you had a
    registration app and you wanted to look at Joe's registration information
    and Sue's registration. Is it possible to have two browsers within the same
    session open and pointing to the same RegistrationController.jpf?
    We currently have our form beans stored in the page flow which seems to
    cause a problem as when we open another browser instance in the same session
    pointing to the same page flow, the form beans from the first window are
    overwritten. An approach we are possbily looking at is to store the form
    beans in an object in the session and identify a set of form beans as
    belonging to a particular window instance - perhaps by uniquely naming the
    windows as they are opened.
    Has anyone done this before with needing to have multiple instances of the
    same page flow or multiple instances of different non-nested page flows open
    at the same time?
    Michelle

    Hi Vijay,
    Thanks for the reply, But that's not the right aproach.
    I cannot change the application to stateless, Since the standard application where the page resides is statefull.
    Also some of the business logic I cannot achive with stateless application
    Regards
    Geogy

  • Create multiple instance in a database

    is it possible to create multiple instance in a database.if possible then is it possible to activate many instance at a time.(in personal edition)

    Instance in Oracle refers to the Oracle database "engine" - a collection of processes using a shared memory area, accessing a physical Oracle database.
    Multiple instances are possible on the same platform for different physical databases. But not a Good Idea..
    Multiple instances on different platforms are for the same physical database using Oracle Real Application Clusters, aka Oracle RAC.
    Thus your question does not make a lot of sense. My guess is that you are in fact refering to an Oracle session instead as this is "in the database" as you refered to.
    Each client that connect to Oracle, creates/establishes an Oracle session. A single client uses one (usually the default) or more sessions (usually used by a multi-threading client).
    By default, the Oracle Instance supports multiple Oracle (client) sessions. Including Personal Oracle. In the past, Personal Oracle limited (via the Listener) the number of remote clients (i.e. clients on other platforms) that can connect. I would assume that this is still the case. I however do not recall that there were a limit imposed on the number of local sessions that could be created - the limiting factor here is afterall the power and resources available by the PC. It's very unlikely that a common PC will be able to support a Personal Edition Oracle instance and 100's of local client sessions at the same time.
    If you do mean instance as per the strict Oracle definition - why would you want to create two Oracle instances (each with its own physical database) on a PC? That does not make sense on a large db server platform. It makes even less sense on a small PC platform.
    Each Oracle instance has overheads (processing and memory). Each physical Oracle database has overheads (system space, temp space, redo, logs, etc). Why duplicate these overheads?
    On a single platform - what can two Oracle instances (less capable because of reduced resources availability) do what a single Oracle instance cannot do faster and better and more effectively? Thus is it not a Good Idea to run multiple instances on a single platform. (exceptions acknowledged)

  • How to create multiple instance of Jboss with different  port number

    Hi all
    Please tell me steps to create multiple instance of Jboss with diffrent port number.
    I tried with this steps, but it does not work for me.
    In conf/jboss-service you will find the binding manager.
       <mbean code="org.jboss.services.binding.ServiceBindingManager"
         name="jboss.system:service=ServiceBindingManager">
         <attribute name="ServerName">ports-01</attribute>
         <attribute name="StoreURL">../docs/examples/binding-manager/sample-bindings.xml</attribute>
         <attribute name="StoreFactoryClassName">
           org.jboss.services.binding.XMLServicesStoreFactory
         </attribute>
       </mbean>Please help me on this.
    Thanks in advance

    It is the name of the website for JBoss. That seems rather obvious to me, and you would have found out for yourself if you had tried it.
    Your question is not a Java question and doesn't belong in these forums. It is a JBoss question and you should ask there, or more probably have a look at the JBoss documentation first.

  • Multiple NW instances of different versions on same server

    Hello,
    Our current landscape has two NW 7.2 Java AS instances installed on a single server. This solution works well for us, as one instance functions as our Dev server and the other functions as the QA.
    I am looking to upgrade to NW 7.3 EP1. Is it possible to have different NW instances at different versions on the same machine? For instance:
    NW 7.2 DEV (port 50000)
    NW 7.2 QAS (port 50200)
    NW 7.31 PRD (port 50400)
    I've already attempted to install NW 7.31 Java as a New and additional installation on the server. Both methods have failed so far. I haven't dug too deeply into the logs yet as I wanted to get feedback from the community first.
    In summary, is it possible to have different versions of NW Java running on the same machine? If so, what is the best practice and process for installing the new NW instance?
    Thanks,
    Greg

    In summary, is it possible to have different versions of NW Java running on the same machine? If so, what is the best practice and process for installing the new NW instance?
    Yes, it is possible. You need to make sure that the hardware has sufficient resources (CPU, RAM, Disk space, etc) to accommodate a new instance, the system numbers and SID's are unique and the OS and DB are supported for the new system.
    Regards
    RB

  • Multiple instances of APPS for the same database?

    Since upgrading to 11.5.10, we are not able to have multiple instances of APPS open for the same database. Prior to the upgrade we could which allowed a person to have 2 sessions open with different responsibilities, thus not having to switch each time.
    Is there a profile setting/patch etc which will allow this again?
    thanks

    In my case I think the company's main requirement was to have two separate environments (PROD and TEST) open at the same time which I think is fine.
    From memory (don't quote me on this) I don't think the old Personal Home Page is supported from 11.5.10.2 or something.
    I think another option was rather than have multiple sessions, add the two functions you are trying to access to the same menu/responsibility then you can open both at the same time.
    I just use favourites with one forms function from each responsibility and hardly click on or attempt to navigate the responsibility function list ... this mimics the old functionality.
    Also created a few "Copy Favourites" concurrent programs to copy favourites from one user to another or to all users of a responsibility.
    Re the old vs new feel - I know the feeling ;-) Ages ago I logged an SR to see if the dynamic tree portlet you get when you integrate with Portal could be used within core Apps, but wasn't possible per standard. Also thought of throwing together a greasemonkey script to achieve the same, but haven't gotten round to that ;-) and it wouldn't work with IE ... maybe one of the OAF gurus might read this and have a crack at it ?!
    Gareth

  • What is the best way to load multiple instances of a button into master index page?. I have looked a

    I have successfully created an animated button that opens to reveal a quotation with a nested clickable link to the source. What I would like to do is have several of these with different quotes inside them, scattered on the page. I have looked at the composition loader available via Edge Commons, and it seems that would require some sort of Edge animate Stage 'frame' to load the instances into? Is there any way to place them directly into the master page - as div elements...?
    The outer of the buttons is the same, on hover they open partialy on click fully, to reveal  their particular text - which I thought about loading it at runtime with json, or maybe handlebars...?
    I would also like to make the buttons only take the necessary space. ie. before they expand they are only buttons. ( I have set the stage to hidden but it still takes up space). To acheive this, I think perhaps I will have to target the inner components css, and set them as display:none until the button is hovered over, then set :hover and :active pseudo classes inside edge. Is this feasible?
    Thanks in advance for any ideas/suggestions...

    Hello, Thanks for your helpful input. Based on that, and the tutorial 'http://tv.adobe.com/watch/learn-edge-animate-cc/ingesting-external-data-dc/' - I have written code to drive my button's behaviour.  (copied below...)
    var textArray =new Array();
    var currentHead = 0;
    var currentText = 0;
    var currentFoot = 0;
    var s = sym.getSymbol("textContainer");
    sym.$("textContainer")$.("text").html("");
    var sh = sym.getSymbol("headContainer");
    sym.$("headContainer")$.("head").html("");
    var sf = sym.getSymbol("footContainer");
    sym.$("footContainer")$.("footer").html("");
    $.getJSON("assets/sources1.json", function(data){
              for (var i=0; i<data.length; i++){
                        textArray.push({"head":data[i].heading,
                                  "text":data[i].text,
                                  "footer":data[i].foot,
                                  "link":data[i].link});
              sym.$("headContainer")$.("head").html(textArray[currentHead]).heading;
              sym.$("textContainer")$.("text").html(textArray[currentText]).text;
              sym.$("footContainer")$.("foot").html(textArray[currentFoot]).foot;
              sym.$("footContainer")$.("link").html(textArray[currentLink]).link;
    But there is an error I don't understand at line 7...
    Also - as you can see, at present I have several symbols in parallel. Would I be better off nesting the text containers inside the outer button container? and would I be better off creating styled mini- pages of text data, and then loading them - instead of loading them as symbols? I have had to create seperate symbols because I cannot adequately stle the text - so some is bold, some is italic etc. within one text field. Or can I? I guess I could nest several text fields inside one symbol...?
    I remain unsure how to load the finished animation button instances. In your example you were still loading into an animation But from yor example, I guess I would need to place all my examples inside an outer edge composition... but then I think positioning them accurately with css, making adjustments etc. will be fairly tricky. Is there any way to place multiple instances directly into divs in index.html? Could I simply repeat the class...? I may be answering my own questions here.

  • Multiple instances of explorer.exe running in task manager

    I got a dropper trojan virus on my computer that microsoft security essencials do not recognized but after running "superantispyware" antivirus I got discover it and delete it. After that, I still could find the infected files in my
    administrator folders as .temp files and I just erased them. After that my computer started crashing and runing several instances of explorer.exe in the task manager with different memory values, some of them ascending to 350,000. I have set up my computer
    to run just the basic services, I have tried windows in safe mode, ran other antivirus programs but still it is performing the same. As far as I have noticed other unusual process present are host.dll, dllhost.exe, and logonUI.exe. Any idea about it? Thanks
    in advance for your help.

    I have the same issue. It started about a month ago when I was filling out a form online and had to quit and close the window.  My system got very buggy (can't remember details), flashing, then really slow.  Found a bunch of explorer.exe instances
    in Task Manager.  Ran Security Essentials and several other anti-viruses, nothing found.
    Running Win7 Pro, sp1, 64-bit, CoreI5, 4Gb Ram
    Restored system to a previous version, didn't work
    Restored last system image, didn't work
    Used System Repair Disk - ran Memory Diagnostic.  Said it would give me report after reboot.  Never saw a report after reboot. But only one instance of explorer.exe in task manager at that point.  Took disk out, rebooted normally.  After
    20 minutes or so, the multiple instances were back.
    Used Repair Disk again, ran Memory Diagnostic. Again, no report after reboot (leaving disk in machine both times), but only one instance running again. 
    Did this a few times with the same result, so now leaving disk in system and always boot from it.
    Ran Security Essentials again, found that rovnix virus, removed, ran again, found it again.
    Ran search for instances and found many.  Here's an example:
    C:\Windows\explorer.exe
    C:\Windows\winsxs\wow64_microsoft-windows-explorer_31bf3856ad364e35_6.1.7601.17567_none_b9fc4815c4e292b5
    C:\Windows\winsxs\amd64_microsoft-windows-explorer_31bf3856ad364e35_6.1.7601.21669_none_b0333b22a99da332
    C:\Windows\winsxs\wow64_microsoft-windows-explorer_31bf3856ad364e35_6.1.7601.21669_none_ba87e574ddfe652d
    C:\Windows\winsxs\amd64_microsoft-windows-explorer_31bf3856ad364e35_6.1.7601.17567_none_afa79dc39081d0ba
    C:\Windows\SysWOW64
    When I check properties on the now single one on Task Manager, this is what it shows:
    C:\Windows\winsxs\amd64_microsoft-windows-explorer_31bf3856ad364e35_6.1.7601.17567_none_afa79dc39081d0ba\explorer.exe
    C:\Windows\explorer.exe
    I was going to reinstall entire system, but was from an Anytime Upgrade which now says it's invalid.  Much more to story on that (calls to MS support, etc.).

  • Multiple instances of ECM 11g on one server

    I've read a few posts about installing multiple instances of ECM 11g on one server, but I have a few questions. My current set up is
    A single Windows 2008 Server R2 server
    8 gb RAM
    Weblogic 10.3.5
    1 install of ECM 11g in the base_domain
    Database is Oracle 11.2
    I want to add another instance of ECM to this server, but when I went to run the RCU, I was not allowed to use the same prefix for my tablespaces. Is this expected? I'm fine with using a different prefix, I just was surprised to see that I couldn't use the same prefix on this install since I was using a completely different database.
    Assuming I use a different prefix... do I just add a new domain for this additional ECM instance? Is there anything else I need to know?
    Thank you

    I went to run the RCU, I was not allowed to use the same prefix for my tablespaces. Is this expected?Yes. It will create tables with the same name visible for a different database user (thus, the prefix).
    do I just add a new domain for this additional ECM instance? Is there anything else I need to know?Actually, I think you can even install more instances to the same domain (this is more a question to Weblogic Server admins - I think there's been some posts recently on this topic). What definitely must be unique, is the port number. If you are OK with using different port numbers for your instances, it should be relatively easy. If you need the same port (e.g. 80 because of proxy limits), there are some ways how to redirect - it that case, two domains might be required.

  • How can I open multiple instances of the same version of FF?

    I understand that if I have multiple profiles, I can run different versions of FF side-by-side (like 3.6 and 4).
    However, what I'm interested in is how I can launch multiple instances of the same version of FF (4, for instance) using the same profile. In other words, I want to be able to double-click the desktop icon for FF, and open a new instance, and keep doing that as many times as I want. I don't want to have a different icon and profile for each instance (too much overhead to keep a dozen+ profiles in sync).
    I can always launch one FF window instance, and then keep clicking ctrl+N to launch new instances from inside it, which they all share the same profile (as I want). So, basically, I want to be able to do that from my desktop icon, rather than by having to do it with the keyboard ctrl+N sequence.

    But I don't understand why whatever Firefox does when you click ctrl+N can't also be done (with some sort of command-line switch) from a desktop icon?
    In other words, I clearly can create many FF instances (even if they are the same FF.exe process) by doing ctrl+n a bunch of times. Why then can't this behavior be done from a desktop icon with some parameters?
    As far as I know, FF is the only browser that doesn't directly allow multiple browser instances from desktop icons. IE, Chrome, Safari, Opera, etc... all let me launch a new instance (even if they are all single process and the instances are shared within the process).

  • How to create multiple instances within same AS

    Ramesh,
    I have a unique problem. I might have to create B2B instances for 4 owners. As in BPEL, I can have separate domains for the 4 clients in the same instance; what is the equivalent in B2B?
    I have a limited number of CPUs and need to install the instances on the same box and hence trying to be creative yet secure here.
    Could you please provide some pointers.
    Thanks
    Shamik

    Hello Shamik,
    Please elaborate your use case. Is this just caters to user management or to really have different domain like bpel for four different users. Please see, b2b do not have the notion of BPEL domain, you might have to install multiple instances of B2B pointing to the same MR.
    Rgds,Ramesh

Maybe you are looking for

  • Error in invoking target install of makefile ins_sqlplus.mk - AIX 5.3

    Please note that I have already seen similar things on internet but I need your help in my case. oracle@ cmsdrc ->prtconf | grep -i bit CPU Type: 64-bit Kernel Type: 32-bit Oracle version to be installed is 9.2.0.1 Following are the error details ins

  • DMA issues w/ DVD/CD

    I've been experiencing choppy playback of my DVDs, and I looked around, and noticed that I do not have DMA enabled for my combo drive. I've looked around in all the places I could, and tried all the fixes I could, and none of them work, hoping I'll f

  • Updated iMac question -- is this the "main" refresh? or should I wait?

    I read that this might be a "minor" refresh until october-ish, when the 'main' refresh will take place. Having never owned a mac (I am trez excited), I'm wondering?? Thanks!

  • Ichat not recognising webcam

    I'm new to ichat and have been trying to get a video chat going with a buddy. I have an external logitech USB webcam which works fine except ichat doesn't see it and says there is no camera connected. Is there a setting I am missing? Also my buddy is

  • Authorization Policy in OAM

    Hi All How can I assign a protect resource in a protected authorization policy to a specific user ? in the protected authentication policy , the user need to authenticate against LDAP and then he can get in but still denied the access but how can I g