Participant Video & Presentation Content Output to same Display Window

When a dual screen SX20 joins a call and shares presentation, the content and participant video appears in the same window as a single participant, instead of having presentation appearing in the other screen. (Refer to attached picture)
When the sharing is done by other participants in the same call, it appears fine for everyone, (including the SX20) with participants on the left screen and presentation on the right screen. This also appear fine for the SX20 in question.
Is there any configuration or mis-wiring that could possibly cause this?
Thanks!

Hello Dereth -
Can you tell us how the endpoint in question is configured?  Also, what is the endpoint, the one in the image isn't an SX20?
Check the following, it could be that the monitors are configured incorrect.
Configuration Video MonitorsThis should be set to Dual.
Configuration Video Output HDMI [1,2] MonitorRoleThis should be set to First and Second receptively for monitor 1 and 2.
Also, how is the call being established (H323/SIP, point-to-point or MCU), and does it do this with any call connected to this particular endpoint?  It could be that it can't open up a dedicated content channel, the result being that it will show content within the main video channel.

Similar Messages

  • FILE UPLOAD PROBLEM SHOWING THE CONTENTS IN THE SAME BROWSER WINDOW

    Hi,
    This is amit Joshi
    I have uploaded content using input tag of type file and posted to jsp as multipart/form-data type
    in that jsp i am using following code to display the content in browser but only first content is displayed How can i modify it to show all content in the file ..
    <html>
    <head>
    <title>File Upload Display</title>
    </head>
    <body>
    <%
    //ServletOutputStream sout=response.getOutputStream();
    StringBuilder strBuilder = new StringBuilder();
    int count=0;
    String f;
    f=request.getParameter("filedb");
    DBManager dbm = new DBManager();
    //dbm.createTable("mms3");
    //log.info("In JSP : "+ f);
    //dbm.insert_data(f,"mms3");
    %>
    <%
    if (ServletFileUpload.isMultipartContent(request)){
    ServletFileUpload servletFileUpload = new ServletFileUpload(new DiskFileItemFactory());
    List fileItemsList = servletFileUpload.parseRequest(request);
    strBuilder.append("<?xml version=\"1.0\" encoding=\"UTF-8\" ?>").append('\r').append('\n').append("<xpage version=\"1.0\">").append('\r').append('\n');
    String optionalFileName = "";
    FileItem fileItem = null;
    Iterator it = fileItemsList.iterator();
    ServletOutputStream outputStream=null;
    while (it.hasNext()){
    FileItem fileItemTemp = (FileItem)it.next();
    if (fileItemTemp.isFormField()){
    %>
    <b>Name-value Pair Info:</b>
    Field name: <%= fileItemTemp.getFieldName() %>
    Field value: <%= fileItemTemp.getString() %>
    <%
    if (fileItemTemp.getFieldName().equals("filename"))
    optionalFileName = fileItemTemp.getString();
    else
    fileItem = fileItemTemp;
    if (fileItem!=null){
    String fileName = fileItem.getName();
    %>
    <b>Uploaded File Info:</b>
    Content type: <%= fileItem.getContentType() %>
    Field name: <%= fileItem.getFieldName() %>
    File name: <%= fileName %>
    <%
    if(fileItem.getContentType().equals("image/jpeg")) { %>
    File : <p><%
         //response.setContentType("image/gif");
         byte[] bArray=fileItem.get();
         response.setContentType("image/jpeg");
         outputStream=null;
         outputStream= response.getOutputStream();
         outputStream.write(bArray);
         outputStream.flush();
         outputStream.close();
    else if(fileItem.getContentType().equals("text/plain"))
         %> File : <%= fileItem.getString() %>
    <%
    byte[] bArray=fileItem.get();
    response.setContentType("text/plain");
         outputStream = response.getOutputStream();
         out.println();
         outputStream.write(bArray);
         outputStream.flush();
         outputStream.close();
    %> </p> <%
    %>
    </body>
    </html>
    Edited by: Amit_Joshi on Nov 13, 2007 10:58 PM

    Well Well Well..
    That would not work...
    What you have to do is save the uploaded file content on to a location and then pass the fileName as a request parameter to a deidicated which displays the contents of that file.
    Just as an example
    <html>
    <head>
    <title>File Upload Display</title>
    </head>
    <body>
    <%
    //ServletOutputStream sout=response.getOutputStream();
    StringBuilder strBuilder = new StringBuilder();
    int count=0;
    String f;
    f=request.getParameter("filedb");
    DBManager dbm = new DBManager();
    //dbm.createTable("mms3");
    //log.info("In JSP : "+ f);
    //dbm.insert_data(f,"mms3");
    %>
    <%
    if (ServletFileUpload.isMultipartContent(request)){
    ServletFileUpload servletFileUpload = new ServletFileUpload(new DiskFileItemFactory());
    List fileItemsList = servletFileUpload.parseRequest(request);
    strBuilder.append("<?xml version=\"1.0\" encoding=\"UTF-8\" ?>").append('\r').append('\n').append("<xpage version=\"1.0\">").append('\r').append('\n');
    String optionalFileName = "";
    FileItem fileItem = null;
    Iterator it = fileItemsList.iterator();
    ServletOutputStream outputStream=null;
    while (it.hasNext()){
       FileItem fileItemTemp = (FileItem)it.next();
    %>
    Name-value Pair Info:
    Field name: <%= fileItemTemp.getFieldName() %><br/>
    Field value: <%= fileItemTemp.getString() %><br/>
    <%
    if (fileItemTemp.getFieldName().equals("filename"))
        optionalFileName = fileItemTemp.getString();
    if(!fileTempItem.isFormFiled()){
       String fileName = fileItem.getName();
       fileItem.write(optionalFileName);
    %>
    Uploaded File Info:
    Content type: <%= fileItem.getContentType() %><br/>
    Field name: <%= fileItem.getFieldName() %><br/>
    File name: <%= fileName %><br/>
    <%
    if(fileItem.getContentType().equals("image/jpeg") || fileItem.getContentType().equals("image/pjeg")) {
    %>
      <img src="FileServlet?fileName=<%=optionalFileName%>"   
    <%
    %>
    </body>
    </html>a sample code snippet for FileServlet.
    String fileName =  request.getParameter(fileName);
      File file = new File(fileName);
       if(!file.exists())
         return;
      // If JSP
      String mimeType = application.getMimeType("fileName");
           If you are using servlet
           String mimeType = this.getServletContext().getMimeType(fileName);
         response.setContentType(mimeType);  
         response.setHeader("Content-Disposition","inline;filename=\\"+fileName+"\\");
      BufferedOutputStream out1 = null;
      InputStream in = null;
      if(mimeType == null)
         mimeType = "application/octet-stream";
      try{
         in = new FileInputStream(f);
         response.setContentLength(in.available());
         BufferedOutputStream out1 = new BufferedOutputStream(response.getOutputStream(),1024);
         int size = 0;
         byte[] b = new byte[1024];
         while ((size = in.read(b, 0, 1024)) > 0)
            out1.write(b, 0, size);
      }catch(Exception exp){
      }finally{
          if(out1 != null){
             try{
                out1.flush();               
                out1.close();
             }catch(Exception e){}
          if(in != null){
            try{in.close();}catch(Exception e){}
      } Hope that might answer your question :)
    However,this is not the recommended way of doing this make use of MVC pattern.Would be a better approach.
    you might think of googling on this and can findout what is the best practise followed for problems of this sort
    REGARDS,
    RaHuL

  • Is it possible to display Windows PC video output on an iMac via Thunderbolt?

    Is it possible to display Window PC video output on an iMac via Thunderbolt?

    Currently the ThunderBolt iMacs can only be used as an external display by other ThunderBolt Macs.
    http://docs.info.apple.com/article.html?path=Thunderbolt/10.6/en/30822.html
    When there is a Windows PC with ThunderBolt released it might work as well.
    And/or when there will be ThunderBolt devices which enable this.
    The Intensity Extreme http://www.blackmagic-design.com/uk/products/intensity/ might allow this once it is released.
    Stefan

  • Video output settings same as iMovie?

    Hi Everyone,
    I've made my first real FCE movie - but when I output it using File, Export, Using Quicktime conversion, Size = PAL 720x576 16:9, I get a file size about 10 times bigger than the equivalent file I'd get from iMovie.
    It looks great - just a very big file. (1Gb for 8min of video?) can someone suggest what settings to use to get the file size (and quality presumably) equivalent to iMovie's standard output?
    Many thanks
    Andy

    Bonjour!
    I have to convert, because my camera captures anamorphic video, if I output normally I get a distorted result.
    I was pretty happy with the quality output from iMovie, typically giving me 100Mb for about 5 minutes of video or 1.2Gb / hr, but if the standard is 12Gb/ hr, I guess I'll just have to get a bigger scratch disk!
    Thanks for your advice
    Andy

  • Content is appearing in external window instead of presenting in Iview

    Dear Experts
    We  are using Team Viewer Iview of MSS, the content is coming from R/3 system. but the content is appearing in External Window instead of appearing in the IVIew itself. This Iview has the tray which is blank and content in external window.
    This applicaion works good for all the other languages except for French users.
    Could you please tell us what could be the reason content is appearing in external window instead of presenting in Iview.
    Thanks & Regards
    Prasad

    Hi Mike and
    Thanks for responding.
    So ur using a sap transaction to ECC? -
    > No
    Are you saying that when you log in the portal you see a tab and clicking of the tab produces additional navigation. When you click the additional navigation you see the iview.
    When you click the iview instead of being displayed in the portal content area it opens a new window? -
    > Yes
    Are there any other iview within this navigation that display in the portal content area? ---> Yes
    I have checked the properties open in new window or launch in new Portal content area all these are set perfectly but the content alone is appearing in external window only for French Users. we want the content to be appear in IVIEW of same portal screen.
    Regards
    Prasad.

  • There are multiple users with the same display name

    Hi,
    We have a user and when she get an item assigned to her she sees the following alert:
    "There are multiple users with the same display name USERNAME and at least one of them does not have read permissions to some of the files"
    Now I looked in the database and when I run the following query with the username:
     SELECT     
         [ProviderDisplayName]  
        ,[DisplayName]  
        ,[HasDisplayName]  
        ,[Domain]  
        ,[AccountName]  
        ,[UniqueUserId]  
        ,[LastSync]  
      FROM [Tfs_Configuration].[dbo].[tbl_Identity] where displayname like '%USERNAME%'  
    Then I get 2 same usernames back, How can I get rid of one of them ? When I access TFS trough the portal I only find 1 occurence of this user.
    We use VS2013 and TFS2013 update 4
    Best regards

    Hi DSW,  
    Thanks for your post.
    In your query result, please check if these two users have the same Account Name. if they are two different Account Name in result, it indicate there’s two users have the same display name in your AD, please check that two users’ information in
    your AD. We suggest change one user’s display name in AD.  
    We are trying to better understand customer views on social support experience, so your participation in this interview project would be greatly appreciated if you have time. Thanks for helping make community forums a great place.
    Click
    HERE to participate the survey.

  • Sub folders content are not getting displayed using KM Navigation iView.

    Subfolder contents are not being displayed for KM Nvaigation ivew
    Posted: Feb 15, 2006 1:01 PM        Reply      E-mail this post 
    Hi
    I created CM repository and did all settings.i could able to see the folder and subfolder contents under Content administration>KMContent>root-->KMPublications(my own folder).
    -->using Administrator user i could able to see all folders/subfolders correctly and could able to edit.
    -->now i created KMNavigation iview and created new role called "KMRole".then i assigned iview to page,then page to Role .this "KMRole" is assigned to user called "prasad".
    >for folder "KMPublications" ,using context menu Details>settings-->permissions ,i added "KMRole" for "Read" only.
    -->when i logon to portal with user "prasad" ,it is showing all root directory content and subfolders.when i click on subfolder called "foods",it is showing me exception.this problem is not coming if i logon as "Administrator".can anybody helpme out.
    Note:if i chnage the Path to display value to subfolder ,it is only displaying subfolders content only.if i click on its subdirectory ,it is giving null pointer exception.
    i checked default trace file,it is giving following information
    #1.5#001560AB529E0068000001130000050000040CDA8CF94AE8#1140032714402#com.sap.portal.portal#sap.com/irj#com.sap.portal.portal#sriram#586##epdev1.corporate_EPD_4605550#sriram#8ba54e509e5b11da9930001560ab529e#Thread[PRT-Async 0,5,PRT-Async]##0#0#Error#1#/System/Server#Java###Exception ID:02:45_15/02/06_0007_4605550
    [EXCEPTION]
    #1#com.sapportals.portal.prt.component.PortalComponentException: Error in service call of Portal Component
    Component : pcd:portal_content/KMEx/KMRole/KMExPage/KMNavigationiView
    Component class : com.sapportals.wcm.portal.component.base.ControllerComponent
    User : sriram
    at com.sapportals.portal.prt.core.PortalRequestManager.handlePortalComponentException(PortalRequestManager.java:969)
    at com.sapportals.portal.prt.core.PortalRequestManager.callPortalComponent(PortalRequestManager.java:343)
    at com.sapportals.portal.prt.core.PortalRequestManager.dispatchRequest(PortalRequestManager.java:136)
    at com.sapportals.portal.prt.core.async.AsyncIncludeRunnable$1$DoDispatchRequest.run(AsyncIncludeRunnable.java:377)
    at java.security.AccessController.doPrivileged(Native Method)
    at com.sapportals.portal.prt.core.async.AsyncIncludeRunnable.run(AsyncIncludeRunnable.java:390)
    at com.sapportals.portal.prt.core.async.ThreadContextRunnable.run(ThreadContextRunnable.java:164)
    at EDU.oswego.cs.dl.util.concurrent.PooledExecutor$Worker.run(PooledExecutor.java:729)
    at java.lang.Thread.run(Thread.java:534)
    Caused by: com.sapportals.portal.prt.component.PortalComponentException: Exception during PageProcessorComponent.doContent()
    at com.sapportals.portal.htmlb.page.PageProcessorComponent.doContent(PageProcessorComponent.java:139)
    at com.sapportals.wcm.portal.component.base.ControllerComponent.doContent(ControllerComponent.java:73)
    at com.sapportals.portal.prt.component.AbstractPortalComponent.serviceDeprecated(AbstractPortalComponent.java:209)
    at com.sapportals.portal.prt.component.AbstractPortalComponent.service(AbstractPortalComponent.java:114)
    at com.sapportals.portal.prt.core.PortalRequestManager.callPortalComponent(PortalRequestManager.java:328)
    ... 7 more
    Caused by: com.sapportals.htmlb.page.PageException: null (java.lang.NullPointerException)
    at com.sapportals.wcm.app.controller.ControllerDynPage.doProcessBeforeOutput(ControllerDynPage.java:81)
    at com.sapportals.wcm.portal.component.base.KMControllerDynPage.doProcessBeforeOutput(KMControllerDynPage.java:56)
    at com.sapportals.htmlb.page.PageProcessor.handleRequest(PageProcessor.java:123)
    at com.sapportals.portal.htmlb.page.PageProcessorComponent.doContent(PageProcessorComponent.java:134)
    ... 11 more
    #1.5#001560AB529E006D0000001C0000050000040CDA8E1777DD#1140032733168#com.sapportals.wcm.service.xmlforms.project.ProjectListResourceHandler#sap.com/irj#com.sapportals.wcm.service.xmlforms.project.ProjectListResourceHandler#Guest#192####b0827ab09e5911da8591001560ab529e#Thread[Thread-108,5,PRT-Async]##0#0#Warning##Plain###Exception reading project list. Error was Cannot get item /etc/xmlforms/XFBuilderConfig/ProjectsTimestamps.pref#
    #1.5#001560AB529E006D0000001D0000050000040CDA8E17786B#1140032733168#com.sapportals.wcm.service.xmlforms.project.ProjectListResourceHandler#sap.com/irj#com.sapportals.wcm.service.xmlforms.project.ProjectListResourceHandler#Guest#192####b0827ab09e5911da8591001560ab529e#Thread[Thread-108,5,PRT-Async]##0#0#Warning##Plain###com.sapportals.wcm.repository.InvalidUriException#
    #1.5#001560AB529E006D0000001E0000050000040CDA91E8084B#1140032797168#com.sapportals.wcm.service.xmlforms.project.ProjectListResourceHandler#sap.com/irj#com.sapportals.wcm.service.xmlforms.project.ProjectListResourceHandler#Guest#192####b0827ab09e5911da8591001560ab529e#Thread[Thread-108,5,PRT-Async]##0#0#Warning##Plain###Exception reading project list. Error was Cannot get item /etc/xmlforms/XFBuilderConfig/ProjectsTimestamps.pref#
    #1.5#001560AB529E006D0000001F0000050000040CDA91E808D9#1140032797168#com.sapportals.wcm.service.xmlforms.project.ProjectListResourceHandler#sap.com/irj#com.sapportals.wcm.service.xmlforms.project.ProjectListResourceHandler#Guest#192####b0827ab09e5911da8591001560ab529e#Thread[Thread-108,5,PRT-Async]##0#0#Warning##Plain###com.sapportals.wcm.repository.InvalidUriException#
    can anybody help
    prasad
    Prasad

    Maybe there is approval set up on this folder. Order time based publishing. Both can cause the read users to see nothing.
    The first means that read users can only see published documents. If no document is published the result is a empty folder.
    Same for the second feature. If timebased publishing it can be that all documents are hidden for the read users because the documents are out of there time interval.
    Hope this helps. Check both in folder > details > settings.
    Frederik

  • How can I transfer voice memos from my iPhone 4 without syncing and having all music/video/audiobook content deleted from my phone?

    I would like to be able to transfer several very long voice memos from my iPhone 4 to my PC.  They are too long to email to myself. I manage music manually, so the phone doesn't sync automatically.  I have also not checked off "include voice memos" in my music sync preferences because of a warning that pops up which suggests that I will lose all the music, video & audiobook content on my phone and that it will be replaced with all iTunes content. (Several of the audiobooks on my phone were transferred in directly from my library system's audiobook service & I will lose them permanently if they are wiped off the phone.) Is there a way around this? I am able to transfer photographs directly to my computer because my PC recognizes the iPhone as an external disk and I was able to locate the photo folder, but I have no idea of where to look for the voice memo folder in order to transfer them in the same manner.  Any suggestions would be appreciated!

    See:
    13019 error
    iTunes: Error 13019 during sync

  • Can a Mac mini support video to two 30" apple studio displays?

    Can a Mac mini support video to two 30" apple studio displays at the same time? If so, how do you do it and what resolution can be acheived for each monitor?

    Hi Brian,
    Nope, or not very well...
    Display Support:
    Dual Displays
    Resolution Support:
    1920x1200*
    2nd Display Support:
    Dual/Mirroring*
    2nd Max. Resolution:
    2560x1600*
    Details:
    *This model simultaneously supports 1920x1200 on an HDMI or a DVI display (using the included HDMI-to-DVI adapter) and2560x1600 on a Thunderbolt or Mini DisplayPort display or even a VGA display (with an optional Mini DisplayPort-to-VGA adapter, which is compatible with the Thunderbolt port).

  • Hyperlink not working in presentation mode when using alternate display

    Made hyperlinks to jump from slide x to slide y
    That worked fine when testing in presentation mode
    When the same file is played using a beamer as alternate display the hyperlinks are not recognised: clicking will start the next build of the presentation

    Is there anybody who successfully used a hyperlink to jump from slide A to slide Y? (and when using the beamer as an alternate display, using the macbook pro screen for the presentation notes)
    If so, I can try to find out what I do wrong, otherwise it might be a bug in Keynote'08
    thanks for your attention in this matter!!

  • Multiple presentation servers using the same RPD

    Hi everyone,
    So as most people know, the iPhone has a cool app that allows you to login and look at your OBIEE content. In theory it's really cool, but as it turns out, a lot of the cool graphs default to Flash and Flash is not supported by the iPhone.
    Using a flag in the instance config file, its possible to default all graphs to png's instead of Flash. But that causes all the interactive drillability to go away since it's just a flat picture.
    It seems that an elegant solution to this issue would be to have two presentation services running; one that defaults to Flash and one that defaults to png's. Then let the OC4J container determine if the device accessing the website is a mobile device or a full client browser. Mobile devices get routed to the png's and non-mobile devices go to the standard Flash page.
    Although not supported by Oracle, it is possible to setup multiple presentation services on the same server. In fact, RNM has a great blog about how to accomplish this (http://rnm1978.wordpress.com/2009/08/25/multiple-rpds-on-one-server-part-1-the-bi-server/).
    I was able to setup two presentation services (AnalyticsWeb and AnalyticsMobile) and point them at the same catalog folder. That way you don't have to duplicate you're work.
    The one thing I couldn't figure out how to do was to point them at the same RPD file. Ideally, we would have one rpd file with the master metadata definitions, and both presentation services would drive from that single RPD. However, the BI Server throws and error of the same RPD appears twice in the NQSConfig.ini file. I also created a shortcut to the master RPD, but upon startup, the BI Servers said that it was not a valid repository file.
    Worst case scenario, I could just use copy & paste to duplicate the single repository. And then each time I updated one, I would just need to delete the other and re-copy. But that seems a little tedious and I was hoping for a more elegant solution.
    Does anyone know how I could get the NQSConfig.ini to let me point to the same RPD twice? Is there some kind of symbolic link or image I could create?
    If it helps, I'm working with OBIEE 10.1.3.4 on a Windows Server 2003 environment with the OC4J standalone container.
    Thanks for the help!
    -Joe

    Hey Everyone,
    Just to add the finishing touch to this thread, the following can be implemented to perform the redirect based on mobile versus traditional PC devices.
    In the folder: C:\OracleBI\oc4j_bi\j2ee\home\default-web-app
    I created the following OBIEE.html file
    <!DOCTYPE HTML PUBLIC "-//W3C//DTD HTML 4.01 Transitional//EN">
    <html lang="en,us">
    <HEAD>
    <TITLE>Test OBIEE Redirect Page<TITLE>
    </HEAD>
    <BODY>
    <script type="text/javascript">
    var agent = (navigator.userAgent).toLowerCase();
    var weburl = './analytics/';
    var moburl = './analyticsMobile/';
    var reg_exp = /(ipod|iphone|android|opera mini|blackberry|palm os|palm|hiptop|avantgo|plucker|xiino|blazer|elaine|windows ce; ppc;|windows ce; smartphone;|windows ce; iemobile|up.browser|up.link|mmp|symbian|smartphone|midp|wap|vodafone|o2|pocket|kindle|mobile|pda|psp|treo)/;
    if( reg_exp.test(agent) ) {
         window.location = moburl;
    else {
         window.location = weburl;
    </script>
    </BODY></HTML>
    The javascript gets the USER agent variable and does a regular expression match to see if it's any popular handheld device. If so, it redirects them to the mobile address. Otherwise the user is directed to the standard site.
    All I need to do is pass around the URL:
    http://localhost:9704/OBIEE.html (instead of the standard http://localhost:9704/analytics)
    And users will be dynamically sent to the correct location.
    thanks everyone!
    -Joe

  • Group-based content on the same publisher portlet

    We want to create Publisher portlets which would display content based on the Group-membership of the user. For e.g., A my page will have 2 portlets: Global portlet which will have content visible to all employees. Division portlet which displays division-specific content based on the division the user belongs to; HR group will see HR dept announcements and Finance group will see Finance announcements etc. Similarly there will be groups/user for HR portlet content manager, Finance Content manager etc, All these will be Publisher portlets, htmls, that will be updated periodically by the content managers. Could anyone suggest a good way to implement this?

    Hi,
    you could use Adaptive Tags in your presentation template. You need to know the group ids. This is the relevant section from the docs (http://edocs.bea.com/alui/devdoc/docs60/Portlets/Adaptive_Portlets/Using_Adaptive_Tags/plumtreedevdoc_integration_portlets_adaptive_userspecific.htm):
    Secure Content (User and Group Permissions)
    The pt:standard.choose, pt:standard.when and pt:standard.otherwise tags allow you to insert content on a page based on conditional statements of user and group membership. <pt:standard.choose> denotes the start of a secured content section, and <pt:standard.when> tags include a test condition that defines who has access to the enclosed content. <pt:standard.otherwise> tags include content that should be displayed as default. (In previous versions, this tag was implemented as pt:choose, pt:when and pt:otherwise. This syntax is still supported.)
    The value for the pt:test attribute is case-sensitive. Multiple users or groups should be separated by commas, with semi-colons separating user values from group values. The syntax is as follows:
    <pt:standard.choose xmlns:pt='http://www.plumtree.com/xmlschemas/ptui/'>
    *<pt:standard.when pt:test="stringToACLGroup('user=userid1,userid2,...;group=groupid1,groupid2,groupid3;').isMember($currentuser)* xmlns:pt='http://www.Plumtree.com/xmlschemas/ptui/'>
    ... content ...
    </pt:standard.when>
    <pt:standard.otherwise xmlns:pt='http://www.plumtree.com/xmlschemas/ptui/'>
    ... default content ...
    </pt:standard.otherwise>
    </pt:standard.choose>
    For example:
    <html><head>
    <pt:standard.choose xmlns:pt='http://www.plumtree.com/xmlschemas/ptui/'>
    <pt:when pt:test="stringToACLGroup('user=1;').isMember($currentuser)" xmlns:pt='http://www.plumtree.com/xmlschemas/ptui/'>
    <title>welcome administrator</title></head>
    ... secret administrator content ...
    </pt:standard.when>
    <pt:standard.when pt:test="stringToACLGroup('user=200,201;group=200;').isMember($currentuser)" xmlns:pt='http://www.plumtree.com/xmlschemas/ptui/'>
    <title>the 200 club</title></head>
    ... content only group 200 or users 200 and 201 can see ...
    </pt:standard.when>
    <pt:standard.otherwise xmlns:pt='http://www.plumtree.com/xmlschemas/ptui/'>
    <title>everyone else</title></head>
    ... content any user can see ...
    </pt:standard.otherwise>
    </pt:standard.choose>
    </html>
    You can also test if the current user is a guest user (not logged in). Since there can be multiple guest users in the portal, simply testing for default guest user ID 2 does not work.
    <html><head>
    <pt:standard.choose>
    <pt:standard.when pt:test="isGuest($currentuser)">
    ... guest user content ...
    </pt:standard.when>
    <pt:standard.otherwise>
    ... logged in user content ...
    </pt:standard.otherwise>
    </pt:standard.choose>
    </html>

  • Content Server Portlets Not Displaying

    Help!
    We're running Portal v5.04, Java under Windows, Content Server v6.0, Tomcat v4.1.31. Multi-machine installation...
    After logging into the portal as Administrator (or some user with admin privileges), we get an error where the Content Server Administration portlet is placed saying "Content Administration cannot be displayed due to an unknown error.". Get the same thing with any other Content Portlet...
    This installation was fine beginning of last week, but started showing this problem late in the week. All of the diags I know of for testing Content, Collab, and Studio (all installed on the same server) show all greens. Tried looking at logs - nothing. Tried PTSpy during login (portlet is on "My Home" page - should display automatically) - nothing remarkable.
    We have multiple admins, and it's possible that something was changed (unbeknownst to me). Frustrated and not sure even where to start looking for a solution to this. Any Ideas?
    Thanks!
    Mike Sanders, LLUMC

    The fact that bouncing EBS fixes the issue temporarily indicates that the problem is most likely on the EBS end, but we haven't encountered that specific issue. What OS are you using to host EBS? Are you purging the J2EE cache when you bounce the services?
    Feel free to reach out to Anne or myself if you'd like to dive into this. We could test with an alternate content server to see if that helps isolate the problem.
    Best,
    John Hobart

  • Interactive video presentation no flash

    Hello everybody,
    I am a Visualization Artist and I used  to work long time ago doing website(I am a graphic designer too)  I been aproached by an old client asking me to develop a "Interactive video presentation" of a product for Engineering purposes.
    The final output should be Web and CD to be used a promotional media.
    My first option was Flash but he questioned that because he want people that uses Ipad and other tables be able to see in a web interfase.
    The main idea is play a short video demostrating the produc and funcionality, then the user should be able to stop and play repeat a chapter or jump to other charpter of the presentation.
    I own Creative cloud and some 3D softwares so I think I should be fine software wise, but my question is if there is something New in Adobe that I can use instead of Flash to produce something like this?
    Can I do everything at once or I need to prepare a video for Web in Flash an other for a CD and some App for tablets everything separated?
    any gidance will be much apreciated.

    This may not be the most efficient way to do this, but you could have the mouse click incriment a counter, and on the last frame of the loop have a statement basically saying if the counter is greater than 0, then play the second loop, and set up another mouse event to incriment a second counter if loop2 is playing, so on and so forth.  Not exactly sure how you're planning to organize this, and what version of actionscript you plan on using so I can't really give you too much help in terms of the specific coding.

  • How add the Video in Content Editor Webpart

    Hi All, 
    I have task to add the video in Content Editor Web-part.Can any one help me how can
    I add the video in Content Editor Web-part
    Samar

    Hi Samar,
    In addition to John’s suggestion, if you simply want to display a video file on a page, it is not necessary to use a Content Editor Web Part as a holder, in my opinion,
    Media Web Part would be a better choice for you.
    With the OOTB Media Web Part, there are more settings available which can help to manage video in a more comfortable way:
    https://support.office.com/en-ca/article/Add-video-or-audio-to-a-page-e5eff318-cd9d-4d77-bd79-1c282db23b46
    More information about Media Web Part:
    http://blogs.msdn.com/b/sanjaynarang/archive/2010/05/26/media-web-part-in-sharepoint-2010-faq.aspx
    Best regards,
    Patrick
    Patrick Liang
    TechNet Community Support

Maybe you are looking for

  • Cannot access my external hard drive!

    A few month ago when I was transferring my files from a PC via a Seagate external hard drive (originally formatted on that PC) to my then new Intel iMac OS X 10.5.6, I made a newbie mistake in not properly "dismounting" before I pulled the USB. Now I

  • Solution Directory

    Hi all Could you please assist. I want to make sure that my Landscape is setup correctly for the "graphical" display to work in the Solution directory. i have used SMSY to create everything. I have a DEV, QAS and PRD on ECC6. When I run SOLUTION_MANA

  • ARRAYLIST comarision failing.

    Hi, I am expecting wen arraylist is null any of the cases then then other arraylist sud come in noMatchList. but now its is coming blank[].can u figure it out and solve.. import java.util.ArrayList; import java.util.LinkedHashMap; import java.util.Li

  • Where's the problem??VMWARE workstation + win2003 + DB 10G (EM not working)

    Please I need a real help in this , I have Installed Win 2003 Server On VMware Workstation with DB 10 G but the Enterprise Manager Give me Blank Homepage (no Login Interface) , Is this problem happend in Physical installation of Win 2003 sever ?? Is

  • How long does the info in V$LOCKED_OBJECT persist?

    Post moved to How long does the info in V$LOCKED_OBJECT persist? Edited by: JOE_humble on Oct 14, 2008 3:49 AM