Sharing portlet preferences among users

Hello,
Is it possible to share portlet preferences among users? So that the
portlet preferences would be stored per portlet instance, and would be
the same for every user?
If this is not possible with Java portlets (JSR-168), can it be done
with other portlet types (JSP portlet, page flow portlet), using the
PortletPreferences API?
The JSR-168 specification says:
"Portlet Specification assumes preference attributes are user specific,
it does not make any provision at API level or at semantic level for
sharing preference attributes among users. If a portal/portlet-container
implementation provides an extension mechanism for sharing preference
attributes, it should be well documented how the sharing of preference
attributes works."

Betsy,
Does WLP provide a way to allow a user to store only a subset of all
his portlet preferences (using only JSR 168 api) ?
My aim is to try to create a JSR 168 compliant portlet where few of
the preferences are allowed to modified by the user (in the edit
mode), while all other preferences may be modified only by a portal
admin (thru admin view). However, the PortletPreferences.store()
method seems to store values of all current preferences for the
particular user, with the result that future changes by the admin are
not reflected for any user who has already customized his
preferences.You can let the admin propagate changes to the user via admin tools.
There is an option in admin tools to do that.
Setting the preference <read-only> attribute to 'true' does not help
either, as the store method still attempts to store the value and
then throws a ReadOnlyException.In this case, the setValue/setValues/reset and not the store will throw
the ReadOnlyException.
Why does WLP attempt to store all preference values; as opposed to
setting only those which have been explicitly set using
PortletPreferences.setValue(key, value)?The implementation does not keep track of changes explicitly in memory.
Even if it keeps track of changes, I'm not sure if this would solve your
use case.
Will BEA be changing this in future releases, and is there a
work-around for now?The suggested approach is to let admins propagate changes to users.
Subbu
>
Thanks, Betsy
Although WLP does not support the notion of sharing preferences,
WLP lets you manage preferences in a hierarchy via the admin tools.
When an admin sets preferences on a portlet, as long as users don't
customize their portlets, all users get the same portlet instances,
and hence share preferences.
Subbu
Bob said the following on 02/12/2004 04:08 AM:
Hello,
Is it possible to share portlet preferences amongusers? So that the
portlet preferences would be stored per portletinstance, and would be
the same for every user?
If this is not possible with Java portlets(JSR-168), can it be done
with other portlet types (JSP portlet, page flowportlet), using the
PortletPreferences API?
The JSR-168 specification says:
"Portlet Specification assumes preferenceattributes are user specific,
it does not make any provision at API level or atsemantic level for
sharing preference attributes among users. If aportal/portlet-container
implementation provides an extension mechanism forsharing preference
attributes, it should be well documented how thesharing of preference
attributes works."

Similar Messages

  • Sharing XML packages among users

    Hello all,
    I have a question about the installation of the Oracle XML packages and sharing them among users.
    Our DBA thought it might be best to create a special user (user1) and install all of the XML packages, utilities under that user schema. We went this route and were trying to use that users's xml objects with another user (user2).
    When trying to generate XML output from SQL using the xmlgen package as user2 we get the following error.
    SQL> set serveroutput on size 1000000
    SQL> DECLARE
    2 v_query VARCHAR2(200) := 'SELECT ''monkey'' AS Animal FROM dual';
    3 BEGIN
    4 DBMS_OUTPUT.PUT_LINE(DBMS_LOB.SUBSTR(xmlgen.getXML(v_query), 250, 1));
    5 END;
    6 /
    DECLARE
    ERROR at line 1:
    ORA-29532: Java call terminated by uncaught Java exception: java.util.MissingResourceException:
    can't find resource for oracle.xml.sql.mesg.XSUMessages_en_US
    ORA-06512: at "SXXML.XMLGEN", line 465
    ORA-06512: at "SXXML.XMLGEN", line 456
    ORA-06512: at line 4
    However running that same anonymous PL/SQL block as user1 we get success:
    SQL> set serveroutput on size 1000000
    SQL> DECLARE
    2 v_query VARCHAR2(200) := 'SELECT ''monkey'' AS Animal FROM dual';
    3 BEGIN
    4 DBMS_OUTPUT.PUT_LINE(DBMS_LOB.SUBSTR(sxxml.xmlgen.getXML(v_query), 250, 1));
    5 END;
    6 /
    <?xml version = '1.0'?>
    <ROWSET>
    <ROW num="1">
    <ANIMAL>monkey</ANIMAL>
    </ROW>
    </ROWSET>
    So I have several questions:
    1> What is the best way to install these XML packages so that all users can use these utilities?
    2> What access privileges need to be granted to user2 so that user1 AML utilities are available?
    Thanks in advance.
    Regards,
    Bediako George

    Thanks for the quick reply Steve: I have an observation and a couple of questions.
    First my observation. I looked for the java resource that "turned up missing" as far as my user2 user is concerned and I couldn't find it in sxxml's schema. ( I was logged in as sxxml). I attempted to create a wrapper package belonging to sxxml sxhema as I understood. However even after granting execute privilege to my second user I got the same message.
    Finally I removed the authid as current_user tag from the package declaration and I was able to get it to work.
    I am not comfortable with this solution and would like to get this set up the right way. You said my second option was to grant execute privilege on the missing Java resource to my second user.
    How do I locate this "missing" Java resource?
    How do I grant execute privilege to a Java resource?
    What are the ramifications of solving the problem the way I did?
    Thanks again for your help.
    Regards,
    Bediako
    create or replace package xmlgen AUTHID CURRENT_USER...This means that it runs under the security domain of whatever user executes it, not under the security domain of the package owner/definer.
    Either GRATN EXECUTE on this Java resource to your new user, or alternatively, have your SXXML schema create a wrapper package for XMLGEN that is created using the default of definer's rights. Then, anyone that you GRANT EXECUTE to your wrapper procedure can use it.<HR></BLOCKQUOTE>
    null

  • How to set the portlet preference per user instead of global setting

    Hello All
    I am using IBM JSR168/ JSF, In my portlet Edit mode I am trying to set a value per user preference , but it always set for all other users even this is just a normal user, I think when an administrator set any preference value then those preferences value will be set for all the users. but in my case it is a normal user has right for the edit mode and hence the preference set by the user in edit mode will be set for his portlet instance only. So why it sets for all the users preference???...... Thanks a lot for your help!!!
    here is my code:
    ///////////portlet.xml//////////
    <preference>
                        <name>RowsPerPage</name>
                        <value>25</value>
                        <read-only>false</read-only>
                   </preference>/////////////////////////pageCode in edit mode do the save action/////////////////////////
    public String doSaveAction(){     
               FacesContext ctx = FacesContext.getCurrentInstance();
                  HttpSession session = (HttpSession)ctx.getExternalContext().getSession(false);
                  if(session != null) {
                       session.setAttribute("save", "save");
                       session.setAttribute("Number",Integer.toString(getNumber()));
               return "";
    }/////////////////////store the preference value///////
    public class MyPortlet extends FacesGenericPortlet {
    public void processAction(ActionRequest actionRequest, ActionResponse actionResponse) throws PortletException {
              try{               
                //String save1 = actionRequest.getParameter("save");
                String save = (String) actionRequest.getPortletSession().getAttribute("save");
                if (save != null){
                   PortletPreferences prefs = actionRequest.getPreferences();
                   String number= (String) actionRequest.getPortletSession().getAttribute("Number");
                   prefs.setValue("Number", number);
                   prefs.store();
              }

    Hope someone really can help me for this issue... I just wondering is this related to the user group config in portlet, since the interesting is that this issue is not apply to wpsadmin , but not sure where and how to set other user group that can set the preference no problem??
    Thanks for your time !

  • Sharing Music files on the same Mac among user profiles

    How can I share music among user profiles on the same Mac? I have an itunes account for me but I don't want my kids to have one yet. So, I want to download music but then share some music files for their itunes on their profile. The Home sharing feature only discusses sharing among different computers on the same network.

    Check out:
    http://support.apple.com/kb/ht1203
    http://www.macosxhints.com/article.php?story=20090219133314985
    and:
    http://steve-on-sakai.blogspot.com/2009/07/really-sharing-your-itunes-library.ht ml

  • Use Sparse Bundle Disk Image for sharing library among users?

    Apple's knowledge base article HT1198 (http://support.apple.com/kb/HT1198) on sharing iphoto libraries among multiple users on the same Macintosh describes using a sparse disk image in the /users/Shared/ directory. For a Mac that uses a Time Capsule for Time Machine backups won't this require the entire iPhoto library to be backed up anytime a picture is added or modified?
    Would using a sparse bundle disk image instead work better?
    Also, HT1198 doesn't say anything about "Partitions" parameter setting in Disk Utility when creating a blank sparse image or sparse bundle disk image. Does it matter what setting is selected if the image is being kept on the Mac internal disk drive?
    Is there any difference between iPhoto '08 or iPhoto '09 when attempting sharing the iPhoto library among users?

    I believe it may require the entire bundle to be backed up. You'd best ask that question in the Time Machine forum. They would know more about the ins and outs of TM there.
    If you can afford an external FW hard drive that would be the best option by far. No worry about filling up the sparse bundle, and you could use the external HD as a work platform to help keep a minimum of 20 GB of free space on your boot drive for optimal performance of system and applications.

  • Sharing photos between multiple users on one Mac

    I'm trying to figure out how to easily share photos imported in by one user to other users in my family on my mac. I'm assuming we don't have to import them multiple times. It seems cumbersome to this new mac user to share them. I find the issue with iTunes. Any help?

    HI Darien,
    Here are all the links I have for the different kinds of sharing:
    SHARING IPHOTO LIBRARIES
    Sharing libraries between users on the same local network
    You can also share a library on the same machine between users the same way.
    Sharing libraries between users on the same machine...
    -both users must have sharing enabled in their iPhoto Preferences
    -both users must be logged in and have iPhoto running
    -Remember that you can only view the other library. You can't edit the photos or play the saved slideshows or view the made books or burn them to CD or DVD. The books and slideshows will show up as an album. You can play that album as an "on the fly" slideshow. You can drag images from the sharing library to your library in the source column to import them to your library. You can then edit, add to albums, books, slideshow, etc.
    Sharing links from Apple....
    Sharing your photos between computers
    About shared photos
    Turning off photo sharing
    Looking for shared photos
    SHARING ONE IPHOTO LIBRARY BETWEEN USERS ON SAME MACHINE
    You can try one of these three methods:
    1- Use iPhoto Library Manager-the paid version
    The documentation page will give instructions on how it is done.
    2- Sharing one iPhoto library between several users on one machine
    3- Share an iPhoto Library in tiger Using ACL's
    4- I have also read about ShareAlike
    There is no other info on the site about how it works.
    I strongly urge anyone wanting to try any of the methods for sharing one iPhoto Library folder among more than one user to backup all iPhoto Library folders before attemptin anything.

  • How to change portlet preferences

    Can somebody tell me how can I change some prefrences that are defined in portlet.xml. So that if the user update this preferece it will be updated for all the portlet instances for that user. For example
    <preference>
    <name>Pref</name>
    <value>something</value>
    </preference>
    here the value is something for every instance of that portlet. However I want to know if there is any way that this could be modified at user level and when the user change it to somethingelse this value will show on every portlet instance for that specific user. In IBM websphere this can be done using the <config-param> tag instead of preference.

    Hi Neeraj,
    We have a requirement to set the portlet preferences for al the users.
    Based on the solution you gave, I set preference value in config mode and those preferences value are set for all the users.
    I succusfully implemented edit_config mode on Oracle Portal and I shared my code snippets at
    http://wsrp-jsr168.blogspot.com/
    I hope this is very helpful.
    --Somesh                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                   

  • Showing portlet for anonymous user on Sun Java System Portal 2004Q2

    Hi to all,
    How can i show my portlet(JSR168) on Sun Portal server for anonymous users with saved preferences?
    waiting for ur productive reply
    ~Neeraj S.
    [email protected]

    Neeraj,
    What do you mean by "anonymous users with saved preferences"?
    The anonymous desktop does not contain any editable functionality. Remember, the anonymous desktop is shared by all users that are not logged in. Therefore, it does not make sense to allow anonymous users to modify the display profile. Notice that there are no edit/minimize/maximize/remove buttons on any of the channels on the anonymous desktop. This is because the anonymous user has a specific DP that removes these buttons.
    Add a portlet to the desktop just like any other channel. This can be done directly to the anonymous user's DP. Add the channel and remove the edit/minimize/maximize/remove buttons.
    Users can modify the portlet preferences once they log in to their own account. At this point the preferences will be stored with their own DP.
    HTH,
    Jim

  • How to configure Airport Extreme AFP disk sharing to host multiple users' home-directories (Lion, using autofs)

    I have this working, but only by completely bypassing access control, using guest access with read+write permissions.
    Do I need to buy Lion Server, to do this. All my past unix/linux experience says Lion Server should _not_ be necessary.
    This seems like a simple & obvious setup objective, but it is proving to be harder than I would imagine.
    Setup:
    multiple users, sharing two mac mini's running OSX Lion
    connected to an Airport Extreme (4th gen) with a USB disk shared (either via disk password, AEBS password, or using AEBS user's passwords).
    After much experimentation and web research, I finally have managed to get the mini's to auto mount the Airport Extreme's AFP shared USB disk. Well almost... It only works if, on the Airport, I set the guest access permissions to read+write and select the "Secure Shared Disks" method to "With disk password" or "with Airport Extreme password".  In other words, it only works if I essentially bypass/disable access control by using the guest authentication mechanism to the AFP shared disk.
    On the Lion side of this, I am automounting the users directories via "autofs". The config files for this are
    /etc/auto_master:
    # Automounter master map
    +auto_master            # Use directory service
    /net                    -hosts          -nobrowse,hidefromfinder,nosuid
    /home                   auto_home       -nobrowse,hidefromfinder
    /Network/Servers        -fstab
    /-                      -static
    /-                      auto_afp
    /etc/auto_afp:
    # Automounter AFP master map
    # https://discussions.apple.com/thread/3336384?start=0&tstart=0
    /afp/users -fstype=afp afp://;AUTH=No%20User%[email protected]/Users/
    Then, after rebooting and verifying read+write access to the /afp/users directories, I change each user's home directory: In System Preferences > System > Users & Groups, I right-click over the users to access the Advanced Options, changing the Home directory field to point at the AFP-mounted /afp/users/Users/* home directories.
    I experimented with alternate UAM specifications, as well as both OSX and AESB users & passwords. Using guest access is the only thing that has worked.
    Any pointers would be appreciated...

    Based on lots more experimentation which confirms the information in a parallel discussion (cf. Automount share as non ROOT or SYSTEM user! https://discussions.apple.com/thread/3221944), I have concluded that the Lion 10.7.2 implementation of AutoFS mechanism is broken. I submitted a bug report via apple.com/feedback.
    Work arounds..?
    Earlier I wondered if installing Lion OSX Server was necessary.  The more I contemplate this, the more I am convinced it _should_not_ be necessary. The client-server architecture is clear: my mac's are the file-server client's and the Airport Extreme is supposed to act as the file server. The only thing instaling Lion Server would do (besides enriching Apple.com) is enable me to configure one of the mac's as the file server. This would require it to be "always on" (thus enriching my electric utility as wel).  Okay, an additional benefit would be configuring software RAID disks attached to the Lion server, but Time Machine has worked fine for me in the past, backing up to disks mounted on the Airport Extreme.
    One solution is to create a disk partition for each user and instruct each user to connect / authenticate to the Airport Extreme AFP share at login.  The multiplicity of partitions is necessary since the first user to mount the AFP share, takes ownership of it, blocking other users from accessing that disk partition.  A user can "steal" ownership by reconnecting, but this will leave the other user's applications & open files dangling.
    This disfunctional situation really *****.  Before instaling Lion, I put a 64 GB SSD (solid state disk) in each of our mac's. I did this expecting to easily configure the /Users/* data on external networked storage. I'm having a dejavu "Bill Gates"-ware moment; problems like this were why I abandoned Windoz.
    I will make a few more experiments using the depreciated /etc/fstab mechanism.  Maybe that will bypass the broken-ness of AutoFS...? Alternately, I guess I could also try to run Kerberos authentication to bypass whatever is broken in AutoFS, but that would require a running a Kerberos daemon somewhere.  Possibly I could configure a Kerberos service to run on both my mac's (without installing Apple's Lion Server)...?
    Stay tuned...

  • How do I stop sharing mail with other users on my computer

    How do I stop sharing mail with other users on my Macbook pro?

    You may have to set up different user accounts in the computer if you wish to
    continue sharing the computer among other people, and only use the Mail app.
    Otherwise, if you use a webmail such as yahoo, gmail, or other, just use a browser
    and login each time; then there is no saving of your email to the computer as such.
    I've never used an email client software, nor had an ISP based email account. So
    my numerous computers have never downloaded email into software. No loss.
    But the answers do include setting up extra user accounts, not admin level, so the
    other users do not mess with the operating system; a standard account or just a
    guest account to use a browser to access web-based login email accounts, works.
    There are third-party email client for OS X, some are free applications, others are
    part of a larger browser product, such as SeaMonkey, & other Mozilla derivatives.
    They provide an email segment or client aspect; unlike Firefox that's a browser.
    Setup information should be within the Help viewer in the computer itself. Or by a
    simple search online, including the OS X version and any email client software
    your computer may have installed. Some browser software includes email client.
    Also there are several ways to go in this matter. I don't see questions, only answers.
    To learn how the Mail application works, if you want to import everyone's mail, then
    figure how to set up user accounts in the OS X. Or use web-mail & login by browser.
    Hopefully you can find the best solution for the unasked question.
    Good luck & happy computing!

  • Oracle BPM 11g Workspace -  Load Management Among Users

    Hi,
    We are using version Oracle BPM 11g - 11.1.1.5 Feature Pack.
    Kindly throw light how to distribute work among users in a group. This can be achieved using group rules in BPM workspace.
    1. Logged in as weblogic in bpm workspace.
    2. Go to Preferences -> My Rules -> Other Rules tab.
    3. Enter the group name and click search icon.
    4. Select the group & click green plus icon to create a rule.
    5. Here, select the Round Robin option.
    6. Save the rule.
    Yet tasks are assigned to all the users in the group & not in Round Robin fashion.
    Please help.
    Thanks.
    Edited by: user10307325 on May 9, 2012 10:33 PM

    Were you able to achieve this . Maybe this can help -
    Check hbuelow's reply @ Unable to see the application in BPM Workspace for Sales Quote tutorial
    Edited by: Sudipto Desmukh on May 9, 2012 7:02 PM

  • Concern with "File Sharing: On" -- my root user folder (and subfolders) and Macintosh HD is visible

    Hi all,
    When I set up a File Sharing folder in OSX called "Share", I connected from my PC to my Macbook Pro and not only did I see the "Share" folder but I also could see and have total access to my root user folder (all its subfolders too) and my Macintosh HD (hard disk).  Did I miss something?  All I did was check mark "File Sharing" in the Sharing option of System Preferences.  Then I specifically shared only the "Share" folder that I created on the OSX desktop.
    How do I turn of sharing for the root user folder and my Macintosh HD folder?
    Many thanks in advance!

    Yes, I was logging in from my PC laptop to Mac as the Admin.  However, since there is a User called "Everyone" and I, for testing purposes only, turned Read/Write on for "Everyone", I figured I did not have to set up another user (such as "Guest").  I was wrong.  Once I created a new user called "Guest" and specifically checked the Guest account in the SMB option, it worked in the restricted mode I was hoping for.  Thanks!

  • Unable to read Portlet Preferences set via Portal Admin

    I have a portlet which should read the preference values set in the portal admin by an administrator.
    I am running the portal as .portal and not in the streaming mode.
    After setting the values in the portal administration I always click on propogate to all instances. But when I run the portal in workshop in debugger mode it is not reading the values as stored in Portal admin but it is showing the values which were stored while creating the portlet in workshop in portlet designer.
    Please help how to make the portlet read the preference values stored via the portal admin console if the user visits the portal as an anonymous user. Any help is greatly appreciated on this subject. I have searched everywhere but have no solution.
    I am using Weblogic Platform 8.1 sp5
    Thanks
    rj

    The portlet preferences set in portal administration reflect only in streaming mode, since streaming mode uses the database that is used by portal administration. If you wish to see the portlet preferences set in portal adminstration, try running in streaming mode.
    But when you run portal from workshop ( which would be file mode), it wouldn't pickup portlet preferences created via portal administration.
    Note: The easiest way to distinguish a streaming mode from file mode is presence of 'appmanager' in URL.
    eg: http://localhost:7001/sampleportal/appmanager/MyPortal/desktop1
    Seenu.

  • Store defaul portlet preferences

    Hi,
    I want to implement edit mode for my portlet, where only admins have access. On the edit page, I want to enable the admins to set the default portlet preferences (the same value for all users, not only for the current user)
    How can I best do this. We are using 8.1.5.
    I have tried to use the PreferencePersistenceManager looked up with PortalBeanManager (similar as in VisitorTools) but I got a NameNotFoundException
    Thanks

    Hi,
    Select-Option : MATNR type mara-matnr.
    Ranges : MATNR for MARA-MATNR.
    r_matnr = s_matnr.
    EXPORT R_MATNR to R_MATNR MEMORY ID 'ZID'.
    while retrieving
    IMPORT R_MATNR from R_MATNR MEMORY ID 'ZID'.
    else store it into a DB table of same structure.
    Best regards,
    Prashant

  • OMNI portlet preference store issue

    Hi,
    Application is running on Staging environment and I want to move it to UAT clustered environment. Portlet application as well consumer application (Portal) deployed successfully. After that I have run persistancemigration tool for WSRP portlet preferences and copy them to UAT. At this stage, my portal and WSRP/JSR portlet start running. After that i tried to run migration tool to export omni portlet preferences in following way:-
    1. I have set classpath for MigrationTool.
    2. Test the classpath as follow:-
    C:\>echo %classpath%
    .;D:\Program Files\J-Integra\Exchange\lib\jintegra.jar;D:\Program Files\J-Integr
    a\Exchange\lib\cdo.jar;.;D:\Program Files\J-Integra\Exchange\lib\jintegra.jar;D:
    \Program Files\J-Integra\Exchange\lib\cdo.jar;D:/OracleAS/OracleSOA/jdbc/lib/ojd
    bc14dms.jar; D:/OracleAS/OracleSOA/portal/jlib/pdkjava.jar; D:/OracleAS/OracleSO
    A/portal/jlib/ptlshare.jar;
    3. When i run the command its giving me ClassDefFoundErrro error:-
    C:\>java oracle.portal.provider.v2.preference.MigrationTool -mode filetofile -pr
    ef1UseHashing true -pref1RootDirectory D:/OracleAS/OracleSOA/portal/portletdata/
    tools/omniPortlet -pref2RootDirectory D:/temp/omni
    Exception in thread "main" java.lang.NoClassDefFoundError: oracle/portal/provide
    r/v2/preference/MigrationTool
    I have also run above command in this way but its also not worked for me:-
    set classpath=D:/OracleAS/OracleSOA/jdbc/lib/ojdbc14dms.jar; D:/OracleAS/OracleSOA/portal/jlib/pdkjava.jar; D:/OracleAS/OracleSOA/portal/jlib/ptlshare.jar
    java oracle.portal.provider.v2.preference.MigrationTool -mode filetofile -pref1UseHashing true -pref1RootDirectory D:/OracleAS/OracleSOA/portal/portletdata/tools/omniPortlet -pref2RootDirectory D:/temp/omni
    Kindly do let me know what is the issue?
    2ndly, i copied omni portlet preferences (without running above tool) and pasted in UAT environment, OC4J is throwing following exceptions when i called them from Portal:-
    HTTPClient.HTTPConnection
    java.lang.ClassCastException: HTTPClient.HTTPConnection
    at
    oracle.portlet.client.connection.web.WebProducerRuntimeAdapterImpl.doHttpClientCall(WebProducerRunti
    meAdapterImpl.java:402)
    at
    oracle.portlet.client.connection.web.WebProducerRuntimeAdapterImpl._showPortlet(WebProducerRuntimeAd
    apterImpl.java:188)
    at
    oracle.portlet.client.connection.web.WebProducerRuntimeAdapterImpl.showPortlet(WebProducerRuntimeAda
    pterImpl.java:156)
    at
    oracle.portlet.client.connection.web.WebProducerInteraction.showPortlet(WebProducerInteraction.java:
    130)
    at oracle.portlet.client.techimpl.web.WebPortletRenderPipe.pre(WebPortletRenderPipe.java:84)
    at oracle.portlet.client.service.pipeline.PipeContext.internalExecute2(PipeContext.java:519)
    at oracle.portlet.client.service.pipeline.PipeContext.internalExecute(PipeContext.java:406)
    at oracle.portlet.client.service.pipeline.PipeContextRunnable.run(PipeContextRunnable.java:23)
    at
    edu.emory.mathcs.backport.java.util.concurrent.Executors$RunnableAdapter.call(Executors.java:431)
    at edu.emory.mathcs.backport.java.util.concurrent.FutureTask.run(FutureTask.java:176)
    at
    oracle.portlet.client.service.pipeline.ModifiedThreadPoolExecutor$Worker.runTask(ModifiedThreadPoolE
    xecutor.java:398)
    at
    oracle.portlet.client.service.pipeline.ModifiedThreadPoolExecutor$Worker.run(ModifiedThreadPoolExecu
    tor.java:423)
    at java.lang.Thread.run(Thread.java:595)
    I have also changed the connection.xml to point to some stagin server URL where these omni portlets are running but having same exception. What can be the issue?
    Thanks in advance.
    Regards,
    Imran

    This issue is related to the Shared library in th server.xml. I also had the same issue. the import for oracle.http.client shared library would be missing in your oracle.wsrp shared lib description.
    Update that and you will be free of this error

Maybe you are looking for

  • Can't set the time format of lockscreen BACK to 24H format

    Having switched from 24 to AM/PM 12 hour format to see what it looked like, upon switching it back to 24 hour it's fine on the Home screen but remains stubbornly 12 hours on the lockscreen. It's an iPhone 4 running IOS 5.0 Thanks

  • Playing Presenter 9 recordings on an iPad

    I have published a presentation using Presenter 9 to Adobe Connect and I have the Presenter app installed on my iPad.  When I tap on the Connect link on the iPad, it starts Safari and says that Flash needs to be installed.  However according to Adobe

  • Capture window will not open-Premiere CS4

    Hi there, The capture window wll not open no matter what I try. I have installed and uninstalled the program without success. I never had this happened before. Please help! Thanks, Elio

  • Comparison operators ,

    How do I do a >,<,>=,<= comparison in the XML Parser V2? '<' and '>' aren't allowed in attributes and it doesn't recognize $lt$ or $gt$ e.g. <xsl:if test="@value > 0"> null

  • Infotype Update gives error

    Hi, I tried to update infotype 0000 with HR_INFOTYPE_OPERATION. It gave me a error with name  ASSIGN_BASE_TOO_SHORT Following is the error analysis. Pls guide me. Error analysis     The source field is too short.     In the running program "SAPLHRMM"