Using resources repository

Hello,
I have a question regards using the resources tab of workbench with Livecycle ES4 SP1.
I have read that the resources tab serves as a "common repository" for a centralized resources, such as images and others kind of files that can be available for all the application.
How can I use this repository?
I am able to view the resources tab into workbench, but right click into the servername do not work; I have only the access permission option, no create folder or add resource.
What am I missing?
Regards,
Mauro

Nothing?

Similar Messages

  • Problem using Resource Bundle in XSLT File

    Hi All,
    I've been trying to use Resource Bundle on my XSLT file with no success for the last 2 weeks. So I would like some help to definitely end this problem.
    The fact is that i have a property file that i would like to read and it works fine when i use jsp or a servlet however when i try to call the same property file using my XSL i get the message below:
    java.util.MissingResourceException: Can't find bundle for base name thoth, locale en_US
    Follow the code from my Stylesheet that i'm calling the resource bundle:
    <xsl:stylesheet xmlns:xsl="http://www.w3.org/1999/XSL/Transform"
    xmlns:java="java.util.ResourceBundle" exclude-result-prefixes="java" version="1.0">
    <xsl:strip-space elements="*"/>
    <xsl:output method="html" indent="yes" version="4.0"/>
    <xsl:output encoding="ISO-8859-1"/>
    <xsl:template match="page">
    <html>
    <body>
    <xsl:apply-templates select="paragraph"/>
    <xsl:variable name="resources" select="java:getBundle('thoth')"/>
    <xsl:value-of select="java:getString($resources,'general.title')"/>
    </body>
    </html>
    </xsl:template>
    </xsl:stylesheet>
    Please someone could help me why this file cannot be located, I am 100% of sure the property file path is in my classpath since it works fine in a servlet. Should i have to put it some other place? Do i have some other way to read this file and show the information from the file?
    I would appreciate any help
    thanks in advance and Regards
    Fabio

    Please someone could help me why this file cannot be located, I am 100% of sure the property file path is in my classpath since it works fine in a servlet.
    Is the property file in your classpath? or whether the directory where the property file is residing is in your classpath. Please put only the directory where the property file is located in the classpath and try again.
    It may be working fine with the servlet because j2ee servlet containers put the classes and lib directory automatically in the classpath therefore resource bundle gets loaded even without putting it explicitly in the classpath. This doesn't happen when you try to test some component from the console.
    Let me know if this does not work.
    regards,
    Abhishek.

  • How to use a repository in a new report

    Hello,
    I am starting to learn OBIEE and installed it in my home environment. I installed OBIEE, and used the RCU to install a repository in an Oracle database.
    Then, I used the BI Administration tool to make a 'repository' which connects to my data (also in an Oracle database).
    In the BI Administration tool I now have a physical layer, a business model and mapping, and a presentation layer. I saved this as a rpd file on my harddisk.
    Then, in the Oracle BIEE Home I choose 'New report'. But I cannot find how I can choose my 'repository' with my data. I also tried to make a new datamodel, but here I am also not able to choose my repository.
    How can I connect to my data in a report ? How does it work ?
    Many thanks in advance,
    Best Regards,
    André.

    You are totally getting Confused..
    Have these understanding first.
    You have DB installed.
    You will create schema(Two users) in DB using RCU(Repository Creation Utility:Basically stores metadata required for OBIEE).
    You will install OBIEE and use these schema there.
    Above installation installs weblogic and then deploy BI files to weblogic to make them work.You should remember weblogic password.
    Now when you open up Admin tool --Repository password should be 'Admin123' (A in capital)  and username is weblogic and password should be weblogic password.
    You will be able to open up the RPD in online mode.
    I suggest you to first go through the Architecture of OBIEE and then start installation and start exercises.
    mark correct or helpfull if it helps.Also let me know if you were able to open RPD and answers.
    Regards,
    Veeresh Rayan

  • Message-Driven Bean using @Resource annotation

    I am trying to run a Message-Driven Bean very simple example in https://glassfish.dev.java.net/javaee5/ejb/examples/MDB.html
    I configured MDBQueueConnectionFactory and MDBQueue properly on glassfish admin console.
    I cannot run the example using @Resource annotation. I don't understand why.
    @Resource(mappedName="MDBQueueConnectionFactory")
    private static QueueConnectionFactory queueCF;
    @Resource(mappedName="MDBQueue")
    private static Queue mdbQueue;But I can run this example modifying the source code using InitialContext instance and looking up for JMS Resources.
    InitialContext ctx = new InitialContext();
    QueueConnectionFactory queueCF=(QueueConnectionFactory)ctx.lookup("MDBQueueConnectionFactory");
    QueueConnection queueCon = queueCF.createQueueConnection();
    Queue mdbQueue=(Queue)ctx.lookup("MDB");
    queueSender.send(mdbQueue, msg);
    ...I want to figure out why @Resource annotation do not work well. Any help?
    Thanks in advanced any help.

    Thanks for your reply.
    The error that I get is a simple NullPointerException. Nothing else.
    Like you said, I develop a servlet and I can use @Resource annotation without static reference, and it works.
    public class TestMDB extends HttpServlet {
         private static final long serialVersionUID = 1L;
         @Resource(mappedName="MDBQueueConnectionFactory")
         private QueueConnectionFactory queueCF;
         @Resource(mappedName="MDB")
         private Queue mdbQueue;
         protected void doGet(HttpServletRequest request, HttpServletResponse response) throws ServletException, IOException {
              PrintWriter out = response.getWriter();
              out.println("TEST MDB "+queueCF);
              QueueConnection queueCon;
              try {
                   queueCon = queueCF.createQueueConnection();
                   QueueSession queueSession = queueCon.createQueueSession
                   (false, Session.AUTO_ACKNOWLEDGE);
                   QueueSender queueSender = queueSession.createSender(null);
                   TextMessage msg = queueSession.createTextMessage("hello");
                   queueSender.send(mdbQueue, msg);
                   out.println("Sent message to MDB");
                   queueCon.close();
              } catch (JMSException e) {
                   e.printStackTrace();
    }But my question were about using @Resource annotation on a standalone client. I always get NullPointerException.
    public class MDBClient {
        @Resource(mappedName="MDBQueueConnectionFactory")
        private static QueueConnectionFactory queueCF;
        @Resource(mappedName="MDB")
        private static Queue mdbQueue;
        public static void main(String args[]) {
         try {
                QueueConnection queueCon = queueCF.createQueueConnection();
                QueueSession queueSession = queueCon.createQueueSession
                    (false, Session.AUTO_ACKNOWLEDGE);
                QueueSender queueSender = queueSession.createSender(null);
                TextMessage msg = queueSession.createTextMessage("hello");
                queueSender.send(mdbQueue, msg);
                System.out.println("Sent message to MDB");
                queueCon.close();
            } catch(Exception e) {
                e.printStackTrace();
    }

  • How to use resource bundle entries for column names/title in .rpt file

    <p>Our application needs to be able to support reporting in multiple languages. Hence we do not want to put language specifiec column names in the rpt file but rather use text for a particular locale during runtime which in java world is easily achievable using Resource Bundle entries.</p><p>Does JRC allow for using resource bundle entries as column names or for that matter for titles etc. in the .rpt file?</p>

    Hi,
       You can follow this step-by-step tutorial to find out how to achieve this using our User Function Libraries (UFLs). The walkthrough can be found here:
    <a href="http://diamond.businessobjects.com/node/412">http://diamond.businessobjects.com/node/412</a>
    Regards,<br />Sean Johnson (CR4E Product Manager) <br /><br /> <a href="http://www.eclipseplugincentral.com/Web_Links-index-req-ratelink-lid-639.html">Rate this plugin @ Eclipse Plugin Central</a>

  • Using  #{resource[...]} as image source

    Hi all. I am got a problem when I try to using #{resource[...]} expression at ADF pages - looks it's not resolved correctly.
    I have next folders tree in my project:
    JDeveloper
    |-mywork
    |--project_dir
    |----Model
    |----ViewController
    |---- src
    |--------META-INF
    |----------resources
    |------------ images
    |----------------- image1.png
    But when I add af:image component at my page and try to refer to image1.png as source = *"#{resource['images:image1.png']}"* the image is not visible; and at Property Inspector Source field value is outlined by light-brown (not red) color. What am I doing wrong ? And, how to resolve such kind of EL expression to absolute path ?

    I don`t think this expression *#{resource['images:image1.png']}* evaluates to the path you are looking for.
    If you have a bundle file in which you have the mapping (like SOURCE_IMG = /resources/images/image1.png) defined then try using source = "#{<bundleFileRefVarInPage>.SOURCE_IMG}"
    Hope it helps.
    Thanks,
    TK

  • Using resource bundler with a specific encoding type

    Hi All,
    Using resource bundler class in Java one can pass the key and get the appropriate string value for that in appropriate language. These strings can be stored in a class (BuldlerList) or in some file.
    My doubt is can I specify the encoding type of the string while passing the key ?
    This might be needed in a case like follows. Say I have a Java Swing application for which I want to get the labels in appropriate language. The application is Windows based. The methods in resource buldler class while getting the string value for a key uses platform's default encoding type. So if I store my file containing all the resource bundler in UTF-8 I can't read them properly from an Windows 2000 system having Japanese as the locale. The constraint is that you can never make Windows default platform encoding as UTF-8 (or something equivalent for Unicode). In that case one cannot developed a truly internationalised application in this frame work.
    Any comments/suggestion/input will be highly appreciated.
    Thanks,
    Sourav

    I dunno 'bout the bundles BUT u can possiblly use XML
    instead.
    u can have a attribute type that specifies the encoding
    type for the content. This will be a totally application
    specific approach BUT it will work.. that much I am sure
    of. IF u read this attribute in your application first and
    then read the value, in that pre-specified encoding, ur
    problem could be solved.
    Just like resource bundles, XML files will be stored in
    local machines only. The only thing is u need a
    JAXP API for processing them.
    aXe!

  • Can I use existing repository for master repository?

    can I use existing repository (for example repository from oracle designer )
    for master repository? could you give me please an explanation
    thanks

    You can use Existing repository for your master Repository.
    Or you can create a new schema in your database and create
    master repository on that schema.
    I hope this answers your question

  • Solution manager can be used as repository DB with out-of-box integration?

    Solution manager can be used as repository DB with out-of-box integration?
    Hi ,
    In Our Global SAP Environment, We are looking to use solution manager as a CMDB ( Config management DB) , which is kind of repository DB where it needs to keep track of infrastructure components .    
    A CMDB about Host consists of elements like
    No. of CPUs,
    RAM  size,
    ...etc
    For example in solman SMSY , you get some  information about the SAP Host . 
    we have multiple CMDB systems , each one for our supplier .
    For example Host hardware () CMDB is managed by Vendor1,
    Storage CMDB by  vendor 2  , and we need to join the both information , in order to get the Full elements of the Host .
    A host information spread across the Multiple Vendor CMDBs.
    Now we want to use solman as single CMDB, where Solman keeps track of some data , and needs to get some additional data  from vendor1 by connecting  into
    their DB using  the  username/password ..etc
    Does the solman has this Out-of-box functionality?
    Thanks
    Vasu .

    Hi - smilar question
    If we setup the system monitoring using solution manager , can we able see the TCodes & their screens from solman .
    For example Can I able to control my ECC screens (SCC4, RZ10,SMLG,SALE,SPAD,SM59,.... ) from Solution manager ?
    waiting for the reply .
    Thanks
    Vasu

  • How to use resource servlet ?

    Hi all,
    Does any body know know how to use resource servlet to share resources (xsd, wsdl etc) in OSB ? Kindly provid eme witht the steps
    Thank you.

    Hi Eric,
    We can share the resource in the following way, but unfortunately OEPE doesnt accept http urls in schemaLocation arrtibute
    How can I get the WSDL/Policy/MFL/Schema/Proxy via HTTP?
    You can retrieve many of the resource types directly from the OSB server by using HTTP instead
    of needing to use the service bus console. The general pattern for the URL is as follows:
    http://[hostname]:[port]/sbresource?[Resource Type]/[Project Name]/[Resource Name]
    CHAPTER 18 ■ HOW DO I . . . ? 477
    The [Resource Type] section of the URL may be any one of the following values:
    • BIZ
    • MFL
    • POLICY
    • PROXY
    • SCHEMA
    • WSDL
    The URL must be UTF-8 encoded. If the resource is stored in a directory, then the directory
    structure needs to be declared explicitly in the URL also.
    For example, in the Hello World project in Chapter 4 of this book, we defined aWSDL resource
    in the WSDL folder of the project. The name of that WSDL resource is set to HelloWorld. To retrieve
    this WSDL, you would use the following URL:
    http://localhost:7001/sbresource?WSDL/Hello+World/WSDL/HelloWorld

  • How could i use resource bundle in managed bean instead of harding coding?

    component is created in managed bean programmatically, so how to set attributes(e.g. text, value) using resource bundling instead of hard coding, as like coding on the page directlly?
    Thanks for your help!
    Kevin.

    component is created in managed bean programmatically, so how to set attributes(e.g. text, value) using resource bundling instead of hard coding, as like coding on the page directlly?
    Thanks for your help!
    Kevin.

  • RE: Using Shadow Repository

    Hello Celso,
    To answer your question - only one person can be using a Forte' Workspace
    at any given time. You cannot share Workspaces.
    Shadow repositories are independant of Workspace usage. Shadow repositories
    are essentially a local cache, designed to reduce the network traffic
    between the development client and server, and to reduce the load on the
    repository server.
    In general you should always use a shadow repository.
    I hope that this helps you.
    Best regards,
    Richard Kirk
    Digital Equipment Corp.

    Celso,
    We use the shadow repository to speed up response while developing.
    There is a Forte Tech Note 10677 that covers shadow repositories and
    their uses.
    We constantly work as a team 3 to 4 people on one Forte project. Each
    user creates their own workspace containing the Forte Project(s). We
    then coordinate who will work on what class and perform frequent
    integrations to the Central Repository to allow the other users to
    obtain the new changes.
    If two users need the same class one can make a branch while the other
    has the class checked out. We try to insure when branching we are
    creating new methods on the class. In this way when the class is checked
    in, the user who has the branch performs and update. The user receives a
    warning that there is a discrepancy and Forte updates the class and
    changes the branch class to an acorn class with a similar name.
    The user then checks out the updated class and moves the methods from
    acorn to the checked out class. The acorn class can then be deleted and
    the second user can now integrate his/her changes to the central
    repository.
    IF changes are made to the same methods then you must do the above and
    then cut and paste from the acorn class to the updated class.
    As you can see from the above we try to avoid working in the same class
    as much as possible. The other use for a branch would be to try a change
    on a checked out class and then remove the branch putting the class back
    to the way it was before it was branched. If the change worked and was
    minor we would ask the other user to put it in or allow us access to
    their workspace for us to add the code.
    Hope this helps.
    Thank you,
    Mike Pocalyko
    From: C. M. Motta[SMTP:[email protected]]
    Sent: Friday, November 08, 1996 7:50 AM
    To: Forte_Users_List
    Subject: Using Shadow Repository
    Forte Users,
    Here I am again! New questions for you...
    This time I intend to work with a group ( me and another
    programmer ) in the same project. But we`ve never done that, and we're
    facing some problems with shadow repository. Is that the best way to work
    ? And how it's done? We need to be able to work on the same Workspace at
    the same time. Does Shadow Repos handle that? What do we need? Which one
    makes his own shadow, or one of us should work with a shadow and the other
    one directly with the central repos?
    If there is any detail I forgot here, please tell me. Also, Im
    sorry if all the answers are on the manual, I've read it, but true
    experience is better, isnt it?
    Thanks for your help,
    Celso M. Motta

  • Non servlet to use resource

    Hi all,
    is it possible for non-servlet classes (located in WEB-INF/classes) to load/use resource of web application just as Servlet doing with getServletContext().getResource() ?
    I am using Tomcat 6.
    Any hought would be really appreciated.
    thanks

    It is better to use the Class.getResourceAsStream method or the ResourceBundle.getBundle methods to locate resources in the classpath. You could pass the servletContext object to the other classes but this violates the separation between presentation and business logic and should be avoided.

  • When to use @Resource and when to use @EJB for dependency injection

    Hi,
    When do you use
    @Resource and when do you use @EJB for dependency injection?
    Thanks

    Captain obvious: Use @EJB for injection of EJBs, and @Resource for everything else.
    There was a discussion about this very topic quite recently, perhaps you can find it through the search.

  • Installing a repository using the repository assistant -- Error

    Hello,
    I get an error when i try to install repository using the repository assistant. here is an image of what error I get:
    http://myrmidonprocess.com/imageupload/images/error46249ed812cbc.png
    This was in the log:
    main.TaskScheduler timer[5]20070417@12:23:50.050: 00> oracle.wh.service.impl.assistant.DatabaseEngine.display(DatabaseEngine.java:391): [getConnection]: Trying to connect as USER SYS with jdbc:oracle:thin:@...
    main.TaskScheduler timer[5]20070417@12:23:50.050: 00> oracle.wh.service.impl.assistant.DatabaseEngine.display(DatabaseEngine.java:391): [getConnection]: Switched from jdbc:oracle:thin:@ to jdbc:oracle:oci8:@
    main.TaskScheduler timer[5]20070417@12:23:50.050: 00> oracle.wh.service.impl.assistant.DatabaseEngine.display(DatabaseEngine.java:391): [getConnection]: Throwable = java.sql.SQLException: Listener refused the connection with the following error:
    main.TaskScheduler timer[5]20070417@12:23:50.050: 00> oracle.wh.service.impl.assistant.DatabaseEngine.display(DatabaseEngine.java:391)+>ORA-12514, TNS:listener does not currently know of service requested in connect descriptor
    main.TaskScheduler timer[5]20070417@12:23:50.050: 00> oracle.wh.service.impl.assistant.DatabaseEngine.display(DatabaseEngine.java:391)+>The Connection descriptor used by the client was:
    main.TaskScheduler timer[5]20070417@12:23:50.050: 00> oracle.wh.service.impl.assistant.DatabaseEngine.display(DatabaseEngine.java:391)+>(DESCRIPTION=(ADDRESS=(HOST=LOCALHOST)(PROTOCOL=tcp)(PORT=1521))(CONNECT_DATA=(SERVICE_NAME=ORACLESERVICEWHBUILDE)))
    main.TaskScheduler timer[5]20070417@12:23:50.050: 00> oracle.wh.service.impl.assistant.RuntimeInstaller.display(RuntimeInstaller.java:816): parseSqlFile() ======= enter file: ../../reposasst/grantpriv.sql
    main.TaskScheduler timer[5]20070417@12:23:50.050: 00> oracle.wh.service.impl.assistant.ProcessEngine.display(ProcessEngine.java:1409): fileName is ../../reposasst/grantpriv.sql
    main.TaskScheduler timer[5]20070417@12:23:50.050: 00> oracle.wh.service.impl.assistant.RuntimeInstaller.runSqlScript(RuntimeInstaller.java:529): java.lang.NullPointerException
    main.TaskScheduler timer[5]20070417@12:23:50.050: 00> oracle.wh.service.impl.assistant.RuntimeInstaller.runSqlScript(RuntimeInstaller.java:529)+>     at oracle.wh.service.impl.assistant.RuntimeInstaller.runSqlScript(RuntimeInstaller.java:520)
    main.TaskScheduler timer[5]20070417@12:23:50.050: 00> oracle.wh.service.impl.assistant.RuntimeInstaller.runSqlScript(RuntimeInstaller.java:529)+>     at oracle.wh.service.impl.assistant.ProcessEngine.processSQLDBAToken(ProcessEngine.java:1136)
    main.TaskScheduler timer[5]20070417@12:23:50.050: 00> oracle.wh.service.impl.assistant.RuntimeInstaller.runSqlScript(RuntimeInstaller.java:529)+>     at oracle.wh.service.impl.assistant.ProcessEngine.processFileTokens(ProcessEngine.java:573)
    main.TaskScheduler timer[5]20070417@12:23:50.050: 00> oracle.wh.service.impl.assistant.RuntimeInstaller.runSqlScript(RuntimeInstaller.java:529)+>     at oracle.wh.service.impl.assistant.ProcessEngine.createOWBRepository(ProcessEngine.java:269)
    main.TaskScheduler timer[5]20070417@12:23:50.050: 00> oracle.wh.service.impl.assistant.RuntimeInstaller.runSqlScript(RuntimeInstaller.java:529)+>     at oracle.wh.ui.install.assistant.wizards.AssistantWizardDefinition$4.runTask(AssistantWizardDefinition.java:541)
    main.TaskScheduler timer[5]20070417@12:23:50.050: 00> oracle.wh.service.impl.assistant.RuntimeInstaller.runSqlScript(RuntimeInstaller.java:529)+>     at oracle.ewt.thread.TaskScheduler.runTask(Unknown Source)
    main.TaskScheduler timer[5]20070417@12:23:50.050: 00> oracle.wh.service.impl.assistant.RuntimeInstaller.runSqlScript(RuntimeInstaller.java:529)+>     at oracle.ewt.thread.TaskScheduler.processTask(Unknown Source)
    main.TaskScheduler timer[5]20070417@12:23:50.050: 00> oracle.wh.service.impl.assistant.RuntimeInstaller.runSqlScript(RuntimeInstaller.java:529)+>     at oracle.ewt.thread.TaskScheduler$TaskQueue.run(Unknown Source)
    main.TaskScheduler timer[5]20070417@12:23:50.050: 00> oracle.wh.service.impl.assistant.RuntimeInstaller.runSqlScript(RuntimeInstaller.java:529)+>     at oracle.ewt.timer.Timer.doRun(Unknown Source)
    main.TaskScheduler timer[5]20070417@12:23:50.050: 00> oracle.wh.service.impl.assistant.RuntimeInstaller.runSqlScript(RuntimeInstaller.java:529)+>     at oracle.ewt.timer.Timer.run(Unknown Source)
    main.TaskScheduler timer[5]20070417@12:23:50.050: 00> oracle.wh.service.impl.assistant.RuntimeInstaller.runSqlScript(RuntimeInstaller.java:529)+>     at java.lang.Thread.run(Thread.java:534)
    main.TaskScheduler timer[5]20070417@12:23:50.050: 00> oracle.wh.service.impl.assistant.ProcessEngine.processSQLDBAToken(ProcessEngine.java:1140): java.lang.NullPointerException
    main.TaskScheduler timer[5]20070417@12:23:50.050: 00> oracle.wh.service.impl.assistant.ProcessEngine.processSQLDBAToken(ProcessEngine.java:1140)+>     at oracle.wh.service.impl.assistant.RuntimeInstaller.runSqlScript(RuntimeInstaller.java:520)
    main.TaskScheduler timer[5]20070417@12:23:50.050: 00> oracle.wh.service.impl.assistant.ProcessEngine.processSQLDBAToken(ProcessEngine.java:1140)+>     at oracle.wh.service.impl.assistant.ProcessEngine.processSQLDBAToken(ProcessEngine.java:1136)
    main.TaskScheduler timer[5]20070417@12:23:50.050: 00> oracle.wh.service.impl.assistant.ProcessEngine.processSQLDBAToken(ProcessEngine.java:1140)+>     at oracle.wh.service.impl.assistant.ProcessEngine.processFileTokens(ProcessEngine.java:573)
    main.TaskScheduler timer[5]20070417@12:23:50.050: 00> oracle.wh.service.impl.assistant.ProcessEngine.processSQLDBAToken(ProcessEngine.java:1140)+>     at oracle.wh.service.impl.assistant.ProcessEngine.createOWBRepository(ProcessEngine.java:269)
    main.TaskScheduler timer[5]20070417@12:23:50.050: 00> oracle.wh.service.impl.assistant.ProcessEngine.processSQLDBAToken(ProcessEngine.java:1140)+>     at oracle.wh.ui.install.assistant.wizards.AssistantWizardDefinition$4.runTask(AssistantWizardDefinition.java:541)
    main.TaskScheduler timer[5]20070417@12:23:50.050: 00> oracle.wh.service.impl.assistant.ProcessEngine.processSQLDBAToken(ProcessEngine.java:1140)+>     at oracle.ewt.thread.TaskScheduler.runTask(Unknown Source)
    main.TaskScheduler timer[5]20070417@12:23:50.050: 00> oracle.wh.service.impl.assistant.ProcessEngine.processSQLDBAToken(ProcessEngine.java:1140)+>     at oracle.ewt.thread.TaskScheduler.processTask(Unknown Source)
    main.TaskScheduler timer[5]20070417@12:23:50.050: 00> oracle.wh.service.impl.assistant.ProcessEngine.processSQLDBAToken(ProcessEngine.java:1140)+>     at oracle.ewt.thread.TaskScheduler$TaskQueue.run(Unknown Source)
    main.TaskScheduler timer[5]20070417@12:23:50.050: 00> oracle.wh.service.impl.assistant.ProcessEngine.processSQLDBAToken(ProcessEngine.java:1140)+>     at oracle.ewt.timer.Timer.doRun(Unknown Source)
    main.TaskScheduler timer[5]20070417@12:23:50.050: 00> oracle.wh.service.impl.assistant.ProcessEngine.processSQLDBAToken(ProcessEngine.java:1140)+>     at oracle.ewt.timer.Timer.run(Unknown Source)
    main.TaskScheduler timer[5]20070417@12:23:50.050: 00> oracle.wh.service.impl.assistant.ProcessEngine.processSQLDBAToken(ProcessEngine.java:1140)+>     at java.lang.Thread.run(Thread.java:534)
    main.TaskScheduler timer[5]20070417@12:23:50.050: 00> oracle.wh.service.impl.assistant.ProcessEngine.display(ProcessEngine.java:1409): Throwable = Exception occured in 'processSQLDBAToken'(../../reposasst/grantpriv.sql): java.lang.NullPointerException
    main.TaskScheduler timer[5]20070417@12:23:50.050: 00> oracle.wh.ui.install.assistant.wizards.AssistantWizardDefinition.display(AssistantWizardDefinition.java:823): [executeOwbReposOrRuntime_advanced]: Error occurred during installation. Exception =java.lang.Exception: Exception occured in 'processSQLDBAToken'(../../reposasst/grantpriv.sql): java.lang.NullPointerException
    main.TaskScheduler timer[5]20070417@12:23:50.050: 00> oracle.wh.ui.install.assistant.wizards.AssistantWizardDefinition$4.runTask(AssistantWizardDefinition.java:579): java.lang.Exception: Exception occured in 'processSQLDBAToken'(../../reposasst/grantpriv.sql): java.lang.NullPointerException
    main.TaskScheduler timer[5]20070417@12:23:50.050: 00> oracle.wh.ui.install.assistant.wizards.AssistantWizardDefinition$4.runTask(AssistantWizardDefinition.java:579)+>     at oracle.wh.service.impl.assistant.ProcessEngine.processSQLDBAToken(ProcessEngine.java:1144)
    main.TaskScheduler timer[5]20070417@12:23:50.050: 00> oracle.wh.ui.install.assistant.wizards.AssistantWizardDefinition$4.runTask(AssistantWizardDefinition.java:579)+>     at oracle.wh.service.impl.assistant.ProcessEngine.processFileTokens(ProcessEngine.java:573)
    main.TaskScheduler timer[5]20070417@12:23:50.050: 00> oracle.wh.ui.install.assistant.wizards.AssistantWizardDefinition$4.runTask(AssistantWizardDefinition.java:579)+>     at oracle.wh.service.impl.assistant.ProcessEngine.createOWBRepository(ProcessEngine.java:269)
    main.TaskScheduler timer[5]20070417@12:23:50.050: 00> oracle.wh.ui.install.assistant.wizards.AssistantWizardDefinition$4.runTask(AssistantWizardDefinition.java:579)+>     at oracle.wh.ui.install.assistant.wizards.AssistantWizardDefinition$4.runTask(AssistantWizardDefinition.java:541)
    main.TaskScheduler timer[5]20070417@12:23:50.050: 00> oracle.wh.ui.install.assistant.wizards.AssistantWizardDefinition$4.runTask(AssistantWizardDefinition.java:579)+>     at oracle.ewt.thread.TaskScheduler.runTask(Unknown Source)
    main.TaskScheduler timer[5]20070417@12:23:50.050: 00> oracle.wh.ui.install.assistant.wizards.AssistantWizardDefinition$4.runTask(AssistantWizardDefinition.java:579)+>     at oracle.ewt.thread.TaskScheduler.processTask(Unknown Source)
    main.TaskScheduler timer[5]20070417@12:23:50.050: 00> oracle.wh.ui.install.assistant.wizards.AssistantWizardDefinition$4.runTask(AssistantWizardDefinition.java:579)+>     at oracle.ewt.thread.TaskScheduler$TaskQueue.run(Unknown Source)
    main.TaskScheduler timer[5]20070417@12:23:50.050: 00> oracle.wh.ui.install.assistant.wizards.AssistantWizardDefinition$4.runTask(AssistantWizardDefinition.java:579)+>     at oracle.ewt.timer.Timer.doRun(Unknown Source)
    main.TaskScheduler timer[5]20070417@12:23:50.050: 00> oracle.wh.ui.install.assistant.wizards.AssistantWizardDefinition$4.runTask(AssistantWizardDefinition.java:579)+>     at oracle.ewt.timer.Timer.run(Unknown Source)
    main.TaskScheduler timer[5]20070417@12:23:50.050: 00> oracle.wh.ui.install.assistant.wizards.AssistantWizardDefinition$4.runTask(AssistantWizardDefinition.java:579)+>     at java.lang.Thread.run(Thread.java:534)
    main.AWT-EventQueue-0[6]20070417@12:23:50.050: 00> oracle.wh.ui.jcommon.WhButton@1e22c75: WhButton setLabel rtsString = OK
    main.AWT-EventQueue-0[6]20070417@12:23:52.052: 00> oracle.wh.ui.install.assistant.wizards.AssistantWizardDefinition.display(AssistantWizardDefinition.java:823): Open UnSuccessDialog ...
    main.AWT-EventQueue-0[6]20070417@12:23:52.052: 00> oracle.wh.ui.jcommon.WhButton@1e22c75: WhButton setLabel rtsString = OK
    Regards,
    Dennis

    Hi,
    the log has this error -
    ORA-12514, TNS:listener does not currently know of service requested in connect descriptor
    so, first check the connection parameter you have passed, if they are correct check whether the database is up and running....
    HTH
    Mahesh

Maybe you are looking for