WCM_PLACEHOLDER returns blank page while WCM_BEGIN_EDIT_SESSION works fine

Hello there,
I have created a website in SiteStudio (via JDeveloper) with the site assets as in the following link:
http://download.oracle.com/docs/cd/E14571_01/doc.1111/e10613/img/region_definitions.gif
Note that all the elements in the above link are checked in UCM.
I can edit the datafile which is in UCM via:
http://127.0.0.1:16200/cs/idcplg?IdcService=WCM_BEGIN_EDIT_SESSION&dDocName=SSD-DATAFILE
However I am unable to see the contents of the same datafile via:
http://127.0.0.1:16200/cs/idcplg?IdcService=WCM_PLACEHOLDER&dataFileDocName=SSD-DATAFILE&placeholderDefinitionDocName=SSD-CONTENT-PHD
No matter the value I type for the parameter dataFileDocName I always get a blank page.
If I change the URL to:
http://127.0.0.1:16200/cs/idcplg?IdcService=WCM_PLACEHOLDER&dataFileDocName=SSD-DATAFILE&SSContributor=true
I get the following response: It is not possible to calculate the path to the content item 'SS_DEFAULT_REGION_TEMPLATE'.
The thing is that I don't know why UCM is trying to find +'SS_DEFAULT_REGION_TEMPLATE'+.
Can anybody shed some light on what is happening please?
Thanks,
Fabio

Hello Jiri,
Thanks for your reply.
Unfortunately I am getting 404 for the link you provided.
I have assigned a REGION DEFINITION (is that what you mean by "content" on your reply?) to the placeholder, please have a look at its source below:
+<?xml version="1.0"; encoding="UTF-8" standalone="yes"?>+
+<placeholderDefinition xmlns="http://www.oracle.com/sitestudio/PlaceholderDefinition/"+ xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance" xsi:schemaLocation="http://www.oracle.com/sitestudio/PlaceholderDefinition/ http://www.oracle.com/sitestudio/ss_placeholder_definition.xsd">
+<property value="" name="description"/>+
+<complexProperty name="flags">+
+<property value="true" name="update"/>+
+<property value="true" name="preview"/>+
+<property value="true" name="reset"/>+
+<property value="true" name="removeAssociation"/>+
+<property value="true" name="switchDataFile"/>+
+<property value="true" name="approve"/>+
+<property value="true" name="viewTrackerReport"/>+
+<property value="true" name="reject"/>+
+<property value="true" name="switchRegionTemplate"/>+
+<property value="true" name="docInfo"/>+
+<property value="true" name="docInfoUpdate"/>+
+<property value="true" name="modifyMetadata"/>+
+<property value="true" name="viewUsageReport"/>+
+</complexProperty>+
+<mappings>+
+<regionDefinition location="SSD-CONTENT-RD">+
+<regionTemplate location="@ssd-content-rt" default="true"/>+
+</regionDefinition>+
+</mappings>+
+</placeholderDefinition>+
Supposing the above source is correct; I'd appreciate if you could bring to my attention some other potential source for such a problem so I can look into it.
Regards,
Fabio

Similar Messages

  • Why does the HP Officejet Pro 8500A Plusw sometimes print only blank pages yet sometimes works fine?

    The subject line pretty much explains it.  Sometimes I can't print at all, just getting sheet after sheet of blank pages from the printer, even if I tell the printer to cancel printing.
    Sometimes it works just fine.
    Today was one of the blank page days.  Help! 
    Thanks!

    Let's start by resetting the printer.  Turn it off, hold the # and 6 keys while and a bit after turning it back on.
    What router brand/model are you using?  What operating system on your computer?
    Say thanks by clicking "Kudos" "thumbs up" in the post that helped you.
    I am employed by HP

  • Win 8.1, latest java, reinstalled both, facebook says Java required, yahoo mail blank page. IE works fine. Also can't get into bank account

    windows 8.1 64 bit, latest java 1.8.0_40, facebook says Java required, yahoo mail blank page, bank account says java required. Java is enabled, I have added these to trusted sites.

    Just to be sure: do you mean Java or JavaScript?
    Java and JavaScript are different languages.
    To avoid confusion, see:
    *http://kb.mozillazine.org/JavaScript_is_not_Java
    JavaScript is build-in, but can be disabled by an extension or manually.
    Java is added by a plugin.
    Firefox on Windows is a 32 bit application and thus you need a 32 bit Java version for Firefox.
    *http://www.oracle.com/technetwork/java/javase/downloads/index.html
    You didn't include troubleshooting information, so we can't check what plugins are installed and enabled.
    *https://support.mozilla.org/kb/Troubleshooting+plugins

  • Google image search in ipad - returns blank page, what's wrong?

    while searching, under image tab, returns blank page.
    what's wrong?

    Works fine for me. Probably a google problem.

  • Blank pages while printing in BO6.5.1

    Post Author: Saravanan Perumal
    CA Forum: Desktop Intelligence Reporting
    Hi,
    I'm trying to create a Business objects report 6.5 with more tables and cells than will fit across one page. This results blank pages while printing, Is there any option to fit the cells and Tables into the first page that extended to the second page.
    Any one having the idea regarding kindly let me know.
    Thanks in advance!
    Br
    Saravanan.

    Hello,
    BLANKPAGES specifies whether to suppress blank pages when you print a report. Use this keyword when there are blank pages in your report output that you do not want to print.
    rwclient.exe server=<repserver_name> report=only_main.RDF userid=scott/tiger@orcl destype=file desformat=pdf BLANKPAGES=NO
    Another solution would be the use of srw.abort_program:
    If there is no data, the report is not run:
    SRW.PROGRAM_ABORT needs to be called from a format trigger and since any object within repeating frame ( based on main query) will not be formatted unless there is data, So need to have a "Boilerplate Text" outside of Frame and placed at "Main Section"-> "Body". This Text object will have Following format Trigger.
    begin
    if :data_yn ='Y' then
    null;
    else
    SRW.MESSAGE(100, 'No Data to run report ');
    raise SRW.PROGRAM_ABORT;
    end if;
    return (False);
    end;
    Here return (false) as do not want to print the text.
    data_yn is a user parameter variable, Not exposed to user or at Parameter Page.
    There is PL/SQL Filter Written at the Main Query at Data Modal as
    function G_EMPNOGroupFilter return boolean is
    begin
    Select 'Y' into :data_yn from dual;
    return (TRUE);
    end;
    This Helps in setting data_yn to Y is there is data returned by the underlying Query. by default this is Null.
    So when Report is executed by passing 2 as value to 'no', Query does not returns any row, So PL/SQL filter will not run and while formatting Blank report, format trigger of the "Text Object" will raise exception to abort report, thus no output.
    Similarly if there is data returned by Query then PL/SQL filer will set 'Y' to data_yn and "Text object" format trigger will not raise Exception.
    Regards,
    Alex

  • Updating UCCX Application returns blank page

    Hi,
    We have IPCC Express 4.5, when adding new application or updating existing apps, it returns blank page. Before, it will work again when we restart the server but now, it just won't work. Is there a known bug for this one? CAn anyone of you help me? We have upcoming scripts to develop and we cannot do any thing to apply it. Thanks in advance.
    Len

    Hi
    I would check the c:\program files\wfavvid\log\MADM logs for any major EXCEPTIONS (search for them in Caps, and try to make sense of what they are telling you
    If you don't have any luck with that, it's possible to delete the appadmin website from Tomcat and it will rebuild the site when you next restart the Node Manager. Go into c:\program files\wfavvid\tomcat_appadmin\webapps, and delete the appadmin folder. There will also be an appadmin.war file there, don't delete that as it contains the compressed website files. When you restart the node, it will be rebuilt and may be fixed.
    Regards
    Aaron
    Please rate helpful posts....

  • Why does my computer keep reloading blank pages while reading email ?

    My computer constantly reloads a blank page while I am in my email account (Outlook.com- an old hotmail account). I have deleted cookies, deleted history and the cache files according to what one search result told me to do. I have mal-ware and anti-virus which are all up to date along with current windows versions. I reloaded Firefox also, all to no avail. Unless I take my computer to a repair shop, it is difficult to read any email.

    That's a good sign! It suggests that one of your extensions does something that isn't fully compatible with Outlook webmail. This might include blocking information that Microsoft's site expects, whether cookies, or something else. Could you review your extensions and see whether any of them might filter/block information from the site, to enhance privacy or reduce annoyances or other reasons?
    You can do that on the Add-ons page. Either:
    * Ctrl+Shift+a
    * orange Firefox button (or Tools menu) > Add-ons
    In the left column, click Extensions. Then on the right side, if you see something that might be relevant, you can click its Options dialog to see whether you can make an exception for the live.com site (server that hosts Outlook mail).

  • Journ.E touch - blank page while trying to access the virtual store

    After resetting the account and update the virtual store,
    I get a blank page while trying to access the virtual store.
    I proceeded to update firmaware. always blank page.

    after the reset, the page is still blank. no access to the virtual store. can you check the serial number of my JournE Touch?
    S / N: 5A015441DH, are this a zero? or the letter O? I write the number 0 for account creation.
    I note that this error occurred after resetting the personal account
    Personal Account - 12763
    cordially

  • Dialin and meet showing up as blank page externally but works internally just fine

    if i go to dialin.domain.com and meet.domain.com externally, then i get a blank white page no matter what browser i use. i can see the cert in the browser just fine. internally, dialin and meet work fine. i'm using IIS ARR for the reverse proxy. i can telnet
    to dialin.domain.com and meet.domain.com over 443 just fine externally.
    i used http://jaapwesselius.com/2014/03/16/using-arr-for-reverse-proxy-with-lync-2013/ to setup IIS ARR.
    please help.
    thanks in advance for your time.

    i'm getting this with the remote connectivity analyzer:
    Testing connectivity to the Lync Autodiscover Web Service server for a secure connection on port 443 to obtain the root token.
    Connectivity to the Lync Autodiscover Web Service test failed.
    Additional Details
    Elapsed Time: 1078 ms.
    Test Steps
    Attempting to test Autodiscover Web Service URL https://lyncdiscover.domain.com/Autodiscover/AutodiscoverService.svc/root.
    Autodiscover Web Service URL can't be contacted due to failure of the following tests:
    Additional Details
    Elapsed Time: 1078 ms.
    Test Steps
    Attempting to resolve the host name lyncdiscover.domain.com in DNS.
    The host name resolved successfully.
    Additional Details
    Testing TCP port 443 on host lyncdiscover.domain.com to ensure it's listening and open.
    The port was opened successfully.
    Additional Details
    Testing the SSL certificate to make sure it's valid.
    The certificate passed all validation requirements.
    Additional Details
    Test Steps
    Testing HTTP authentication methods for URL https://lyncdiscover.domain.com/Autodiscover/AutodiscoverService.svc/root/user.
    HTTP authentication test failed.
    Additional Details
    A Web exception occurred because an HTTP 502 - BadGateway response was received from Unknown.
    HTTP Response Headers:
    Content-Length: 0
    Date: Mon, 13 Apr 2015 17:29:25 GMT
    Server: Microsoft-IIS/8.5
    Elapsed Time: 275 ms.

  • I am unable to open any app on my iphone. While i'm trying to open an app, it just shakes the screen and it does not get open and remains in the  same page. It worked fine until I charged the phone in my laptop. Please can anyone help me to recover it?

    I am not able to open any app on my iphone. While i'm trying to open an app it just shake the screen and it does not open and remains in the same screen. It worked fine until I charged the phone this evening. After that suddenly I'm facing this. Please can anyone help me to recover this issue? pls!

    This is covered in the basics section.
    A restore loses nothing.
    A restore does.  If you are using the iphone as designed, then everything should be on your computer.

  • I am using window.print() to print the data of my webpage, it prints only first page and left the remaining while it works fine with IE and Google Chrome, ie print all the pages.

    My Page has data more than one page, it has verticle scroll bar to view all data .
    I used window.print() to print the data of webpage, but it prints only first page and left the remaining information.
    This works fine with Internet Explorer 6+ and Google Chrome.

    Does the entire webpage appear in Print Preview? <br />
    File > Print Preview

  • XSLT Transformation returns blank page

    Hi,
    apologies for the NOOB Question.
    I'm trying to prepare an XSQL demonstration for work and have hit a problem, which I'm sure is just a configuration issue.
    Using JDeveloper 10.1.3.3.0 I have created an XSQL page which returns a few rows.
    I've written an XSL stylesheet to transform the data into an html page.
    However, the browser is just showing a blank page.
    I've tried the following:
    1.) Calling the XSQL page with the '?xml-stylesheet=none' parameter.
    The browser displays the unprocessed data correctly, so there's no problem with the XSQL itself.
    2.) Saving the output from the webpage as a seperate xml file and applying the stylesheet to it
    (by adding the line <?xml-stylesheet type="text/xsl" href="bhwtest1.xsl"?> to the saved output, and opening in the browser.
    This works fine and shows that the stylesheet works OK.
    I've also tried opening the stylesheet directly in the browser to check that the path that I specify to the stylesheet is valid. This also works, so
    the path to the stylesheet is correct.
    Any ideas what I can try next?
    Thanks for your suggestions,
    Ben

    XSLT file
    <?xml version="1.0" encoding='windows-1252'?>
    <?xml-stylesheet type="text/xsl"
    href="D:\JDev10\jdev\mywork\BHWApplication1\BHWProject1\bhwtest1.xsl" ?>
    <page xmlns:xsql="urn:oracle-xsql" connection="ossdev_07t">
    <xsql:query>
    SELECT u.user_id AS user_id, u.user_name AS username, email_address AS email
    FROM fnd_user u
    WHERE email_address IS NOT NULL
    and user_id > 3
    </xsql:query>
    </page>
    Stylesheet
    <?xml version="1.0" encoding="UTF-8"?>
    <xsl:stylesheet version="1.0" xmlns:xsl="http://www.w3.org/1999/XSL/Transform">
    <xsl:output encoding="ISO-8859-1" method="html" />
    <xsl:template match="/page">
    <table border="1">
    <tr><td><b>User Name</b></td>
    <td><b>Email Address</b></td>
    </tr>
    <xsl:for-each select="ROWSET/ROW">
    <tr>
    <td>
    <xsl:value-of select="./USERNAME"/>
    </td>
    <td>
    mailto:<xsl:value-of select="EMAIL"/>
    </td>
    </tr>
    </xsl:for-each>
    </table>
    </xsl:template>
    </xsl:stylesheet>

  • Blank page while servlet to jsp.

    Hi.
    am working in a code for login verification.
    In my login database i have different user.For each user user access will be different.
    So am verifying password for a particular user.The verification is done in servlet page .
    After verification am viewing only a blank page.
    Can u give me any suggestion.
    my code is given below.
    response.setContentType("text/html;charset=UTF-8");
            PrintWriter out = response.getWriter();
             HttpSession session=request.getSession();
            String user="",pass="";
            //ServletContext context=null;
            ServletContext context=getServletContext();
    String userName=request.getParameter("user").trim();
    String passWord=request.getParameter("pass").trim();
            String query="select * from login where user='"+userName+"' ";
           String DbUserName="";
           String DbPassword="";
           String finalUser="";
           try {
                 Class.forName("sun.jdbc.odbc.JdbcOdbcDriver");
                 Connection con1=DriverManager.getConnection("jdbc:odbc:register");
                  Statement stat=con1.createStatement();
                  ResultSet rst=stat.executeQuery(query);
                    while(rst.next())
         user=rst.getString("user");
    pass=rst.getString("pass");
                  if((userName.equalsIgnoreCase(user))&&(passWord.equalsIgnoreCase(pass)))
                session.setAttribute("user",user);
            context.getRequestDispatcher("/Mainmenu.jsp").forward(request,response);
            else
                   context.getRequestDispatcher("/LoginError.jsp").forward(request,response);
    catch(Exception e){
                 e.printStackTrace();
          }Thanks in advance,
    regards,
    satheeshkannan

    Indeed, you are just printing and ignoring the exception instead of throwing it or change the flow.
    Apart from this problem: why are you comparing the username once again after the query while the query should only return rows matching the username? Anyway, if your DB is well-designed (i.e. username is unique), then you can also just query for rows matching the username and the password so that you just need to check if ResultSet#next() returns true or not.
    Oh, don't forget to use PreparedStatement instead. It will save you from SQL injections.

  • Return Blank page

    Hi all,
    I was trying to access a page with 220 courses and a total of 500 tracks. But page returned was a blank page with scroll bar. May i know if there is a limit for Sections or courses per page in iTunesU?
    These is the url i try to access.
    https://deimos.apple.com/WebObjects/Core.woa/BrowsePrivately/anu.edu.private.au. 2771899376

    Hi all,
    I've found the reason of getting a blank page. I was creating a Section for each course, hence there are a total of 220 sections in the page I was trying to retrieve. When I reduce that to 217 section, the page work fine.
    However I would like to know if '217' is the maximum number of section for a page?
    Cheers,
    Jia Huey

  • Printing to PDF from CrystalReportViewing returns blank page

    Hi All,
       I have a web report that I run. When the report generates in the CrystalReportViewer I see my results. However, if I click the button to Print to PDF, it results in a PDF with no data. If I click on the Next button as well to go to the next page in my report, it returns blank results.
    This apparently started happening when I used date parameters being passed to my stored procedure:
            parameterField = report.ParameterFields("@callstdate")
            parameterField2 = report.ParameterFields("@callendate")
    I'm using VS 2008 and CR2008.
    Any ideas why this is happening?
    Thank you in advance,

    1)Any export type I use returns no data on the exported report
    2)Changed PDF to ActiveX and it printed the report with no data
    3)Remove parameters from my webapp and let the Viewer prompt for them. Now PDF works and everything else.
    Here's my code:
        Protected Sub display_report()
            parameterField.CurrentValues.Clear()
            parameterField2.CurrentValues.Clear()
            parameterField3.CurrentValues.Clear()
            CrystalReportViewer2.ParameterFieldInfo.Clear()
            parameterField = report.ParameterFields("@callstdate")
            parameterField2 = report.ParameterFields("@callendate")
            parameterField3 = report.ParameterFields("Group")
            For Each li As ListItem In Me.ListBox1.Items
                If li.Selected = True Then
                    ' Add all parameters value here
                    parameterField3.CurrentValues.AddValue(li.Value)
                End If
            Next
            report.SetParameterValue("@callstdate", CDate(st_date.Text))
            report.SetParameterValue("@callendate", CDate(st_date.Text))
            CrystalReportViewer2.ReportSource = report
        End Sub

Maybe you are looking for

  • Sqlldr not working in 10gAS

    Hi, I've been having this problem for the last couple of days and have read all the threads on using the sqlldr command with HOST through Forms 9i to load data from application server into the database. I've tried most of the suggestions but have sti

  • ^7External Hardrives Portable MacBook

    Hello, does anyone know the best and least expensive portable, external hard drives for MacBook that are 1TB, 3.0 USB with the most featires.

  • Using previous Deployment Parameter Values

    Hi I had deployed .ear application on SDM. While deploying I choosed New Parameters instead of Use Existing Deployment Parameter Values Can anybody help me, how to recover the previous parameters or is it possible to undeploy this application by reta

  • Using external Library like iText

    Hi everyone, first of all i would like to thank all you guys because this forum help me so much, i´m new to webdynpro and i´m facing this problem, (this is my first post)  . . . all i want to do is to "deploy new archive and run" and see my app runni

  • How to execute an ODI package from Command Line

    Please can anyone help me to know how to execute an ODI package from the command line without creating a scenario from the package. Appreciate your help. Thanks B