Studio Server Portlet page content change

Where do I change the content of default page created by STUDIO PORTLET WIZARD? How do I access that page?
Any tips or hints would be greatly appreciated.ThanksSnehal

Travis,
I just spoke to the engineer working on this for the 4.1 release and it has
already been implemented. If you want to do some custom coding I think you
can also write a JSP that exposes the API methods to your users to change
the display name.
http://edocs.bea.com/wlp/docs40/javadoc/wlp/index.html
Sincerely,
Daniel Selman
"travis wissink" <[email protected]> wrote in message
news:3cc46327$[email protected]..
>
Dan,
Actually, I think the "display-name" is the more appropriate element toedit.
>
This is a bummer; this appears so naturally for the example, when in factits going
to be nearly impossible for a "Business User" to edit such a file. Iguess my main
request to the EBCC group is if there is an option in any of theassociated schema's,
e.g. the "display-name" element in the portal-1_0.xsd schema, then providea way
to edit it via the EBCC.
Thanks,
Travis Wissink
"Daniel Selman" <[email protected]> wrote:
Travis,
It looks like you are going to have to edit the XML by hand to introduce
the
space into the portlet-name. E.g.
<portlet-name>ReviewNewsletters</portlet-name>
goes to:
<portlet-name>Review Newsletters</portlet-name>
I will take this up with the EBCC engineers and file a CR. Please let me
know if this does not solve the problem.
Thanks (and sorry),
Daniel Selman
"travis wissink" <[email protected]> wrote in message
news:3cc45bd8$[email protected]..
Subbu,
I've been all over the ebcc. Even inside of the xml files. Nowhere dois
see the
possibility of manipulating the "Display Name" of the portlets in theebcc
at all.
Of course when you create a new portlet you can name it but that namehas
restrictions
against it, e.g. no spaces.
Do you know specifically where I can manipulate that attribute in theebcc?
-Travis
Subrahmanyam Allamaraju <[email protected]> wrote:
Sorry for mt wrong answer. You've to do this via the EBCC. Check the
default portal configuration.
Sincerely,
Subbu

Similar Messages

  • Studio Server Portlet in Popup Window

    I am trying to get a studio server portlet (a form) to open in a popup window. The code I'm using is as follows:
    <pt:gatewayLink xmlns:pt="http://www.plumtree.com/xmlschemas/ptui/" pt:objectID="201" pt:href="myStudioServerURL/studio/gw?m=apprun.viewPage" target="myWindow" onclick="window.top.open('','myWindow',height=400,width=500,status=no,toolbar=no,menubar=no,location=no')">Click Here</pt:gatewayLink>
    This seems to work (the portlet opens in a new window and functions like I'd expect), but the styles are missing. Is this the proper way to open portlets in a popup window? Do I do the same for studioi server portlets? If so, how do I invoke the styles as if the studio server portlet were in a community page.
    Joe Westgerdes

    I am trying to get a studio server portlet (a form) to open in a popup window. The code I'm using is as follows:
    <pt:gatewayLink xmlns:pt="http://www.plumtree.com/xmlschemas/ptui/" pt:objectID="201" pt:href="myStudioServerURL/studio/gw?m=apprun.viewPage" target="myWindow" onclick="window.top.open('','myWindow',height=400,width=500,status=no,toolbar=no,menubar=no,location=no')">Click Here</pt:gatewayLink>
    This seems to work (the portlet opens in a new window and functions like I'd expect), but the styles are missing. Is this the proper way to open portlets in a popup window? Do I do the same for studioi server portlets? If so, how do I invoke the styles as if the studio server portlet were in a community page.
    Joe Westgerdes

  • Dynamically Updating Content Server Portlets

    [urlHi, I am currently having difficulty dynamically updating content server portlets.  I have a portlet of the following form:[/url]
    ArticleName Author Title Date mystory author1 title1 04/05/01
    story2 author2 title2 06/07/04
    story author3 title3 01/02/03
    So I have this table where each one of the line items is an article in the content server. So, for example the first line item is an article "mystory" by "author1", with title "title1" and date "04/05/01" additionally there is an article text field, but this isn't displayed unless I click on the article name.
    I can set up the basics of this portlet, but when I try to add any real functionality I run into one of two problems.
    First Problem: Passing Information
    I cannot find a way to pass information between content portlets. For instance, if the user would like to "re-sort" this table based on "date", I would like to have the user click on the "date" column heading and then reload the page. To do so, I would have to pass the section name back to the page so that it could resort based on this data. I have not found anyway to effectively pass information to a content server portlet. I am building these pages through use of the presentation template framework (so I can have access to the content items) but that seems to change the way portlets are handled.
    I got around this limitation with a regular portlet by creating an intermediary page which captures passed information and stores it to the session state. Once the information was in the session state, it is accessible to the portlet on the first page. However, this only works because remote portlets do not change their session id once loaded. Content Server portlets, on the other hand, change their session id after every reload of the browser or page change. I can send information from a content server portlet to an intermediary page, but I cannot send it back to the portlet because the session id has changed so I have no idea of knowing where to send the information. I can write it to a session state, but by the time I return to the portal page, the content server has changed its session id so it does not know where to look any longer.
    I suppose it would be possible to create an application state variable and append it with some static token (if there is some static variable per portal session) but I would rather not have to deal with application variables if at all possible.
    Second Problem: Dynamically Updating PCS Tags
    Even if I were able to the pass information back to my content server portlet, I run into another issue. The easiest way to sort content server items is using the filter command in the pcs:foreach tag. So, if I wanted to sort by author name, I could do something like the following <pcs:foreach var="item" expr="filter(folderByName('content'), filtered.name == '"name")" or something like that (the syntax may be incorrect, I just wrote this off the top of my head). However, it appears that the way the presentation templates are compiled goes in the order of PCS tags THEN JSP. So I would have no way of dynamically changing the variable on which I sort. For example, if I clicked on "Date" above in my table, I would like to be able to dynamically change my code so that I sort on date, and not name. I cannot find a solution to this problem.
    My workaround is to use the pcs tags to write out all the possible sortings to java array objects. This gives me access to the data on a JSP level and based on whatever the user will chose, I could then display that array. While this works, it is extremely ghetto and inefficient. Any help or suggestions would be fantastic.
    Thanks a lot,
    Jason Grauel

    You can use just about any javascript you want in any Content Server presentation template including ones that are used for portlets.
    However, you should be careful to name javascript functions and global variables uniquely so that they do not conflict with any other javascript on the page. To do this, you can append the item id to function and variable names, for example,
    function doSomething<pcs:value expr="pcs_id"></pcs:value>() {
    return true;
    Randy

  • Upload failed your changes were saved but could not be uploaded because of an error. you may be able to upload this file using server web page. save a copy

    Hi All,
    upload failed your changes were saved but could not be uploaded because of an error. you may be able to upload this file using server web page. save a copy button.
    This is the issue which I am facing while working with SharePoint 2010. In a sharePoint 2010 document library I am having an excel file and I am trying to open it from Windows 7 and is office 2010.
    I cam e across few suggestion as mentined below but unable to find the location where to do
    Go to Resource Policies > Web >
    Rewriting > Custom Headers > (if 'Custom Headers' is not visible, click
    Customize on the right top to enable the view).
    Create a new policy with the Resource as <fully qualified domain name of the SharePoint server:*/*> (for example https://sharepoint.juniper.net:*/* ).
    Create the action as Allow Custom Headers.
    Apply the settings to the required roles.
    Please suggest.

    Hi rkarteek
    All things you have to do is as follows:
    1. Open regedit.exe
    2. Naviagate to following key:
    [HKEY_CURRENT_USER\SOFTWARE\Microsoft\Office\14.0\Common\Internet]
    3. Click Edit Menu -> New -> DWORD with name of "FSSHTTPOff"
    (without quotes)
    4. Click on "FSSHTTPOff" and enter value of 1
    5.
    Close any Office Applications and browser sessions
    6. Try to reopen your document (no more read only or failure to upload)
    have a nice day!

  • Is it possible to change page content based on 'case' or 'workflow' state (or similar method)

    Is it possible to change the page content if the customer revisits the page?
    I have an approval page which the customer completes - when they submit the form with their answers a case is generated and they are taken to a submission successful page.
    As they can revisit this page through their account details I want the page to change to say they have already submitted their approval.
    Is there a method within business catalyst to achieve this?
    Can I extend the CRM database to use a flag for the case and then set / check the state of that flag when the page is visited again?
    Thanks in advance.
    Gavin

    Ok I have figured out I can use {module_url,variable} to achieve this and pass in the case status to the page.
    Is there a way of changing a case status when the approval form is submitted?
    Gavin

  • Searching multiple Content Server Portlets

    I am able to search single Content Server Portlet and get results using following lines of code.
    IPTSession ptSession = new InProcSession();
    ptSession.Connect(AppSettings.PTUserName(), AppSettings.PTPassword(), null);
    IPTSearchRequest ptSearchRequest = ptSession.GetSearchRequest();
    ptSearchRequest.SetSettings(PT_SEARCH_SETTING.PT_SEARCHSETTING_APPS, PT_SEARCH_APPS.PT_SEARCH_APPS_CONTENT);
    ptSearchRequest.SetSettings(PT_SEARCH_SETTING.PT_SEARCHSETTING_ASSOC_PORTLET_ID, 10468);
    IPTSearchQuery ptSearchQuery = ptSearchRequest.CreateBasicQuery(query, null);
    IPTSearchResponse ptSearchResponse = ptSearchRequest.Search(ptSearchQuery);
    return ptSearchResponse;
    However Type Cast exception comes at run time when we pass array containing multiple Portlets ID although code gets compiled
    IPTSession ptSession = new InProcSession();
    ptSession.Connect(AppSettings.PTUserName(), AppSettings.PTPassword(), null);
    IPTSearchRequest ptSearchRequest = ptSession.GetSearchRequest();
    ptSearchRequest.SetSettings(PT_SEARCH_SETTING.PT_SEARCHSETTING_APPS, PT_SEARCH_APPS.PT_SEARCH_APPS_CONTENT);
    int[][] ar = new int[2][];
    int[] int1 = new int[]{ 0, 10468 };
    int[] int2 =new int[]{ 0, 23757 };
    ar[0] = int1;
    ar[1] = int2;
    ptSearchRequest.SetSettings(PT_SEARCH_SETTING.PT_SEARCHSETTING_ASSOC_PORTLET_ID, ar);
    IPTSearchQuery ptSearchQuery = ptSearchRequest.CreateBasicQuery(query, null);
    IPTSearchResponse ptSearchResponse = ptSearchRequest.Search(ptSearchQuery);
    return ptSearchResponse;
    It will be quite useful if anyone of you can help us if Plumtree API support this. Or else we need to build another layer to search each Portlet and merge results.
    Platform Details:
    Plumtree Portal 5.0.4
    Content Server 6.1
    Regards
    Kishore GVK

    Hi Praveen,
    I have not done portal configuration for SAP DMS. But as per the link below, you can assign multiple SAP DMS repository managers which can refer to separate content servers.
    http://help.sap.com/saphelp_dimp50/helpdata/EN/32/2a840d132af04fa2f0b31ebf3e8a78/content.htm
    Wait for other expert comments if they can answer your query.
    Regards
    Amit

  • Skip navigation elements to page contents in Weblogic standalone server

    I'm running JDev 11.1.1.0.1 and 10.3 stand-alone weblogic server. Due to the problem with IE6 and rich text objects, I've redone my application using trinidad components. The rich text version of the app ran fine on both the integrated and stand-alone server (using firefox 3). The trinidad version runs fine in the integrated server, but on the stand-alone server, the following link appears at the top of the page and command buttons do not work (in both firefox and IE 6):
    Skip navigation elements to page contents
    From faces-config.xml:
    <application>
    <default-render-kit-id>org.apache.myfaces.trinidad.core</default-render-kit-id>
    </application>
    From trinidad-config.xml:
    <skin-family>minimal</skin-family>
    Anyone know what I need to do to get this working on the stand-alone server?
    Thanks.

    Hi,
    correct, this warning is not relevant to the problem
    Did you try to delete the existing css file
    WEB-INF\temp\adf\styles\cache\oracle-desktop-<....>.css
    If this doesn't help, have a look at
    Have a look at: 10.1.3.1 : Skip navigation elements to page contents
    Though this thread talks about ADF Faces, not Trinidad, the issue with an invalid CSS file might be the same if you added your custom skin. As a last hint to give, how did you replace or convert the af:html, af:body elements (if used). These are handling the skin loading
    Frank

  • Subcribe a Portal User Group to content change events on page?

    Another developer at my shop has created a custom routine that programmatically subscribes the given user to content change events on a page. At the heart of their custom routine are the following Oracle Portal API calls:
    portal.wwctx_api_private.set_context( v_user );
    portal.wwsbr_app_approval.subscribe
    p_object_context_id => v_siteid,
    p_page_id => v_pageid
    ...where v_user is the account we want to subscribe for notification of content changes on the given page.
    I have a need to extend this to allow subscriptions of Portal User Groups (PUGs) for the same content change events. It is not acceptable to statically subscribe the PUG membership, because I do not want a situation where today I subscribe all the members of group X, then tomorrow the membership of group X changes, but the list of subscribed users does not change automatically with the group membership modification. I could just as well manually subscribe each group member without going through the hassle of coding a modified subscription UI and backend routine to handle groups.
    Any suggestions?
    Thanks,
    shastew

    My shop is currently on 10g R1 (9.0.4.3). We will be upgrading to 10g R2 (10.1.2) in a few months, but this is not the 10.1.4 version your document link points to. Is CMEF included actually usable in 10.1.2?
    Also, publish and subscribe solves a particular set of design issues and allows for a certain degree of flexibility of usage, however, I don't see any built-in support for the User Groups that Portal provides for assigning basic page permissions. It's the group support that I'm interested in...and I don't want to have to create duplications of groups outside of what I already have. I don't want to have to write an entire application infrastructure to support outside group membership maintenance just for supporting subscription notifications. This should have already been built-in to interface with the existing Portal page permissions group framework. At our shop, a lot of effort has already been put into setting up and maintaining these built-in groups and we should be able to re-use them for something as brain dead simple as subscription notification.
    I've already given up and opened an enhancement request "TAR" for this.
    shastew

  • Page not update even i go back and server give them something change

    when i click on link then i go to 2nd page and when i come back press back then he not update page if server give me something change.
    it is work in firefox

    You can reload the page and bypass the cache with:
    * Press and hold Shift and left-click the Reload button.
    * Press "Ctrl + F5" or press "Ctrl + Shift + R" (Windows,Linux)
    * Press "Cmd + Shift + R" (MAC)
    See [[Keyboard shortcuts]] and [[Mouse shortcuts]]
    See also http://kb.mozillazine.org/browser.cache.check_doc_frequency

  • Change page content

    Hi,
    If I've updated the page content, do I have to publish the site again for it to be updated?

    Yes.

  • Connect to remote server and edit content on a web page

    Hi ,
    Is there a way to connect to a remote server, edit some content (words only, not tags etc..) and then save. I'm not sure if I'm being clear enough about this but I'll answer questions when asked.
    Thanks
    Steve

    HI,
    I've looked at your suggestion and it is what I'm looking for. I'm going to try this on a new site as soon as the site is ready.
    Thank You
    Steve

  • How can I make a intro page for my website, then after the intro has run make the page automatically change to my we site home screen

    how can I make a intro page for my website, then after the intro has run make the page automatically change to my website's home screen

    You can do this using a meta refresh but the problem is you have to add it to the html file for the page very time you publish changes.
    A better way is to create a splash page and upload it to the server outside of the folder produced by iWeb. Example HERE.
    The meta refresh is added to the head section of the html file...
    <meta http-equiv="refresh" content="32;url=http://www.domain.about.com/Page-Name.html">
    The delay time in seconds is marked in blue and the URL to the redirect page is in red.

  • ESSBase studio server is not running

    Dear All,
    When I run ESSBase studio server, I get below error. Kindly advice me on this.
    C:\Hyperion\products\Essbase\EssbaseStudio\Server>call ""C:\Hyperion\common\config\9.5.0.0"\setJavaRuntime.bat"
    Log file location is:
    C:\Hyperion\logs\esbstudio\server.log
    18:49:34 12/29/09 INFO Starting up
    18:49:34 12/29/09 INFO Oracle Essbase Studio Server. Version 11.1.1.3.00, Build 090, June 25 2009
    18:50:41 12/29/09 (system) WARNING Failed to load driver for sap
    18:50:41 12/29/09 (system) SEVERE Cannot load Teradata connector
    18:50:41 12/29/09 (system) WARNING Failed to load driver for teradata
    18:50:41 12/29/09 (system) WARNING Failed to load driver for mysql
    18:50:41 12/29/09 (system) WARNING Failed to load driver for netezza
    18:50:41 12/29/09 (system) SEVERE Cannot initialize catalog storage. Make sure that server.properties has correct information
    -------------- Exception --------------
    com.hyperion.cp.catalog.exceptions.CatalogInitializationException: Cannot initialize data storage engine
    at com.hyperion.cp.catalog.storage.StorageFactory.initialize(StorageFactory.java:53)
    at com.hyperion.cp.catalog.Catalog.initialize(Catalog.java:97)
    at com.hyperion.cp.catalog.Catalog.initialize(Catalog.java:156)
    at com.hyperion.cp.catalog.Catalog.<init>(Catalog.java:85)
    at com.hyperion.cp.catalog.Catalog.<clinit>(Catalog.java:73)
    at java.lang.Class.forName0(Native Method)
    at java.lang.Class.forName(Class.java:164)
    at com.hyperion.cp.catalog.CatalogInitializer.run(CatalogInitializer.java:54)
    at com.hyperion.cp.server.RequestListener$SystemTask.run(RequestListener.java:1302)
    at com.hyperion.cp.server.RequestListener.runSystemTask(RequestListener.java:167)
    at com.hyperion.cp.server.RequestListener.<init>(RequestListener.java:129)
    at com.hyperion.cp.server.ServerMain.main(ServerMain.java:204)
    Caused by: com.hyperion.cp.datasources.exploration.sql.SqlExplorerException: Sql exploration exception
    at com.hyperion.cp.datasources.exploration.sql.SqlExplorer.performExploration(SqlExplorer.java:237)
    at com.hyperion.cp.datasources.exploration.sql.SqlExplorer.explore(SqlExplorer.java:143)
    at com.hyperion.cp.catalog.storage.StorageFactory.initialize(StorageFactory.java:49)
    ... 11 more
    Caused by: com.hyperion.cp.driver.util.DriverException: Data Driver for url '%s' is absent or failed to initialize. Please see server start
    p log for more information.
    at com.hyperion.cp.driver.ConnectionManager.getConnection(ConnectionManager.java:102)
    at com.hyperion.cp.driver.DriverEngine.getConnection(DriverEngine.java:60)
    at com.hyperion.cp.driver.DriverEngine.executeStringQuery(DriverEngine.java:131)
    at com.hyperion.cp.datasources.exploration.Explorer.executeStringQuery(Explorer.java:138)
    at com.hyperion.cp.datasources.exploration.sql.SqlExplorer.getCatalogs(SqlExplorer.java:456)
    at com.hyperion.cp.datasources.exploration.sql.SqlExplorer.exploreSources(SqlExplorer.java:261)
    at com.hyperion.cp.datasources.exploration.sql.SqlExplorer.performExploration(SqlExplorer.java:195)
    ... 13 more
    Thanks in advance,
    Best,
    Veeranna Ronad.

    Hi,
    The content of the server.properties is given below. Even after making suggested changes, the server is not running.
    I am running the server from the path "C:\Hyperion\products\Essbase\EssbaseStudio\Server\stopServer.bat".
    server.properties
    catalog.autoinit=true
    catalog.username=prototype_int
    transport.port=5300
    catalog.url=oracle\://10.1.126.248\:1521/ORCL
    catalog.password=T1JBQ0xF
    catalog.db=prototype_int
    server.hss.bpmApplication=BPM\:73317
    Below is the error.
    C:\Hyperion\products\Essbase\EssbaseStudio\Server>call ""C:\Hyperion\common\config\9.5.0.0"\setJavaRuntime.bat"
    Log file location is:
    C:\Hyperion\logs\esbstudio\server.log
    17:56:32 01/15/10 INFO Starting up
    17:56:32 01/15/10 INFO Oracle Essbase Studio Server. Version 11.1.1.3.00, Build 090, June 25 2009
    javax.crypto.IllegalBlockSizeException: Input length must be multiple of 8 when decrypting with padded cipher
    at com.sun.crypto.provider.SunJCE_h.b(DashoA12275)
    at com.sun.crypto.provider.SunJCE_h.b(DashoA12275)
    at com.sun.crypto.provider.DESCipher.engineDoFinal(DashoA12275)
    at javax.crypto.Cipher.doFinal(DashoA12275)
    at com.hyperion.cis.config.persistent.utils.Encrypter.decrypt(Encrypter.java:103)
    at com.hyperion.cis.config.persistent.utils.Encrypter.decryptString(Encrypter.java:130)
    at com.hyperion.cp.util.PropertyManager.getProperty(PropertyManager.java:143)
    at com.hyperion.cp.catalog.storage.StorageFactory.initialize(StorageFactory.java:33)
    at com.hyperion.cp.catalog.Catalog.initialize(Catalog.java:97)
    at com.hyperion.cp.catalog.Catalog.<init>(Catalog.java:85)
    at com.hyperion.cp.catalog.Catalog.<clinit>(Catalog.java:73)
    at java.lang.Class.forName0(Native Method)
    at java.lang.Class.forName(Class.java:164)
    at com.hyperion.cp.catalog.CatalogInitializer.run(CatalogInitializer.java:54)
    at com.hyperion.cp.server.RequestListener$SystemTask.run(RequestListener.java:1302)
    at com.hyperion.cp.server.RequestListener.runSystemTask(RequestListener.java:167)
    at com.hyperion.cp.server.RequestListener.<init>(RequestListener.java:129)
    at com.hyperion.cp.server.ServerMain.main(ServerMain.java:204)
    17:56:38 01/15/10 (system) WARNING Failed to load driver for sap
    17:56:39 01/15/10 (system) WARNING Failed to load driver for mysql
    17:56:39 01/15/10 (system) WARNING Failed to load driver for netezza
    17:56:40 01/15/10 (system) SEVERE Cannot establish connection to Oracle server
    javax.crypto.IllegalBlockSizeException: Input length must be multiple of 8 when decrypting with padded cipher
    at com.sun.crypto.provider.SunJCE_h.b(DashoA12275)
    at com.sun.crypto.provider.SunJCE_h.b(DashoA12275)
    at com.sun.crypto.provider.DESCipher.engineDoFinal(DashoA12275)
    at javax.crypto.Cipher.doFinal(DashoA12275)
    at com.hyperion.cis.config.persistent.utils.Encrypter.decrypt(Encrypter.java:103)
    at com.hyperion.cis.config.persistent.utils.Encrypter.decryptString(Encrypter.java:130)
    at com.hyperion.cp.util.PropertyManager.getProperty(PropertyManager.java:143)
    at com.hyperion.cp.catalog.storage.StorageFactory.initialize(StorageFactory.java:33)
    at com.hyperion.cp.catalog.Catalog.initialize(Catalog.java:97)
    at com.hyperion.cp.catalog.Catalog.initialize(Catalog.java:156)
    at com.hyperion.cp.catalog.Catalog.<init>(Catalog.java:85)
    at com.hyperion.cp.catalog.Catalog.<clinit>(Catalog.java:73)
    at java.lang.Class.forName0(Native Method)
    at java.lang.Class.forName(Class.java:164)
    at com.hyperion.cp.catalog.CatalogInitializer.run(CatalogInitializer.java:54)
    at com.hyperion.cp.server.RequestListener$SystemTask.run(RequestListener.java:1302)
    at com.hyperion.cp.server.RequestListener.runSystemTask(RequestListener.java:167)
    at com.hyperion.cp.server.RequestListener.<init>(RequestListener.java:129)
    at com.hyperion.cp.server.ServerMain.main(ServerMain.java:204)
    17:56:40 01/15/10 (system) SEVERE Cannot establish connection to Oracle server
    17:56:40 01/15/10 (system) SEVERE Cannot initialize catalog storage. Make sure that server.properties has correct information
    -------------- Exception --------------
    com.hyperion.cp.catalog.exceptions.CatalogInitializationException: catalog.CatalogInitializationException.StorageInitializationFailure
    at com.hyperion.cp.catalog.storage.StorageFactory.getStorageInstance(StorageFactory.java:155)
    at com.hyperion.cp.catalog.transaction.TransactionManager.initialize(TransactionManager.java:64)
    at com.hyperion.cp.catalog.Catalog.initialize(Catalog.java:98)
    at com.hyperion.cp.catalog.Catalog.initialize(Catalog.java:156)
    at com.hyperion.cp.catalog.Catalog.<init>(Catalog.java:85)
    at com.hyperion.cp.catalog.Catalog.<clinit>(Catalog.java:73)
    at java.lang.Class.forName0(Native Method)
    at java.lang.Class.forName(Class.java:164)
    at com.hyperion.cp.catalog.CatalogInitializer.run(CatalogInitializer.java:54)
    at com.hyperion.cp.server.RequestListener$SystemTask.run(RequestListener.java:1302)
    at com.hyperion.cp.server.RequestListener.runSystemTask(RequestListener.java:167)
    at com.hyperion.cp.server.RequestListener.<init>(RequestListener.java:129)
    at com.hyperion.cp.server.ServerMain.main(ServerMain.java:204)
    Caused by: java.lang.reflect.InvocationTargetException
    at sun.reflect.NativeConstructorAccessorImpl.newInstance0(Native Method)
    at sun.reflect.NativeConstructorAccessorImpl.newInstance(NativeConstructorAccessorImpl.java:39)
    at sun.reflect.DelegatingConstructorAccessorImpl.newInstance(DelegatingConstructorAccessorImpl.java:27)
    at java.lang.reflect.Constructor.newInstance(Constructor.java:494)
    at com.hyperion.cp.catalog.storage.StorageFactory.getStorageInstance(StorageFactory.java:149)
    ... 12 more
    Caused by: com.hyperion.cp.catalog.exceptions.CatalogInitializationException: No table PROTOTYPE_INT.CP_NONE_TRANSACTIONS found
    at com.hyperion.cp.catalog.storage.StorageEngine.validateSignature(StorageEngine.java:193)
    at com.hyperion.cp.catalog.storage.StorageEngine.<init>(StorageEngine.java:87)
    at com.hyperion.cp.catalog.storage.SQLStorageEngine.<init>(SQLStorageEngine.java:20)
    ... 17 more
    Thanks in advance,
    Best,
    Veeranna Ronad.
    Edited by: Ronad on Jan 15, 2010 4:02 PM
    Edited by: Ronad on Jan 15, 2010 5:58 PM

  • While in Edit Mode in Moodle - page content does not render at all, but I am able to display the underlying HTML code. Happens only after upgrade to Firefox 11.0.

    While in edit mode in the Moodle course management system, the Page Content window should display the page as it will appear to the user. If you click on the "Edit" button, you are able to view the HTML code for the page. However, when you return to the normal display mode, the page is blank. This has occurred after the upgrade to Firefox 11.0. Page is normally rendered in Internet Explorer.

    A possible cause is security software (firewall,anti-virus) that blocks or restricts Firefox or the plugin-container process without informing you, possibly after detecting changes (update) to the Firefox program.
    Remove all rules for Firefox and the plugin-container from the permissions list in the firewall and let your firewall ask again for permission to get full unrestricted access to internet for Firefox and the plugin-container process and the updater process.
    See:
    *https://support.mozilla.org/kb/Server+not+found
    *https://support.mozilla.org/kb/Firewalls
    See also:
    *http://kb.mozillazine.org/Error_loading_websites
    *https://support.mozilla.org/kb/Error+loading+web+sites

  • A way can auto save an A4 page content to small brochure one

    Hey ALL
    i am now working on e-publishing ,the problem i meet now is
    most of customer handle in PDF which is let say
    A4 size per page , and an convertor need be created and
    installed on server side to auto convert those PDF to samll page
    ones , like a A4 size printing version need converted to 480*720
    one , this will cause problems like
    due to the page size change , contents of text and images
    need be rearranged in elegant way , i just wonder is the PDFXML
    thinking and solve the problem ,or give some idea to solve the
    problem ?

    Please try with Printable Page, refer JDev guide for this.
    Regards,
    Reetesh Sharma

Maybe you are looking for

  • How can I change the background color?

    It may seem like a small thing but I am very disappointed with my new Motorola Droid Turbo. I use it at night quite often and so far I can't find a way to get rid of this glaring white background. Contacts, messages, etc all are blinding to look at i

  • Running Background  java program

    Hi Everybody, I have written a client server application in java where in the client interacts with the user for some set of steps after which it calls the server method and waits for the response. During this i want the application to run in the bac

  • Best practice for database move to new disk

    Good morning, Hopefully this is a straight forward question/answer, but we know how these things go... We want to move a SQL Server Database data file (user database, not system) from the D: drive to the E: drive. Is there a best practice method? My

  • Netinstall package installation fails

    I've been struggling with Netinstall and Netrestore for a few days, and I'm hoping someone can tell me what I'm doing wrong. I'm trying to use a customized NetInstall image to install Snow Leopard and some additional software on client machines. The

  • Start up shows arrow pointing to Hard Disc icon then freezes

    Pressing the power button at the back results in a screen with arrow pointing at a HD icon then freezing. Turning off and then on with "D" held down produces a normal computer, but the problem returns as soon as it is shut down an restarted. "D" on s