Servlets and Workspaces (AND ClassCastExceptions)

 

          I have a similiar situation but am not getting a ClassCastException but rather a
          NullPointerException when I try
          to use a contained object in my stored object.
          I do this in the server:
          WorkspaceServicesDef workspaceServices = services.workspace();
          WorkspaceDef defaultWS = workspaceServices.getWorkspace();
          WorkspaceDef dataWS = defaultWS.getWorkspace("DATA_WORKSPACE",
          WorkspaceDef.CREATE,
          WorkspaceDef.SCOPE_SERVER);
          dataWS.store(cMSKey, ms);
          and this in the JSP page:
          // Get the default T3Client Workspace
          WorkspaceDef defaultWS = t3.services.workspace().getWorkspace();
          // Attach to the system subWorkspace already created
          WorkspaceDef myDataWS = defaultWS.getWorkspace("DATA_WORKSPACE",
          WorkspaceDef.ATTACH,
          WorkspaceDef.SCOPE_SERVER);
          MimicServer ms = (MimicServer) myDataWS.fetch("MimicServer");
          Questions:
          1)Must I make the Object I want to store in the WorkSpace Serializable?? The
          Documentation says it can just be
          a Java Object??
          2) In my JSP page I get a good Object reference, but its contents are null
          (Probably because I didn't implement write() and read()).
          Thanks,
          matt obrien
          [email protected]
          Mark Griffith wrote:
          > Alexandre:
          >
          > Although byte for byte the FooObject is the same, according to the VM they
          > are different class. This is because a class's type distinctiveness is
          > based not only its interfaces,methods,data members etc but ALSO on its
          > classloader. There is a different classloader for the
          > serversclasses_FooObject and the servletclasses_FooObject so they are
          > considered different, so you get a CCE.
          >
          > Problem is that the servletclasses directory is designed to solve the
          > problem of reloading servlet classes and objects they used when modified
          > without having to restart the server. But this introduces the problem
          > discussed above. The only solution currently is to put the FooObject only in
          > one place or another. Unfortunately if you want a class in servletclasses
          > to interact classes loaded by the system/server classloader you cannot put
          > the class in the servletclasses without getting a CCE on reload of the
          > servlet in servletclasses. In this case you must put the class only in the
          > serverclasses directory. And this means of course you can only reload the
          > FooObject in the serverclasses directory if you bounce the server. (the
          > default java classloading behavior).
          >
          > This will be handled more elegantly in our next major release Spring 2000,
          > however note (and prepare by designing accordingly) the solution is to allow
          > the Servlet to interact with interfaces not actual classes and these
          > interfaces can be stuffed into system/server loaded classes such as
          > workspaces and httpsessions, thus preventing CCE's.
          >
          > Cheers
          > Mark G
          >
          > Alexandre Aubry wrote:
          >
          > > I have a named workspace which is created at startup of the server
          > > within a starup class.
          > > When the startup method is called, I instantiate and put an object
          > > called FooObject in the workspace.
          > >
          > > Then, in a servlet, called Dispatcher, in the service method, I
          > > retrieved my named workspace and the object
          > > FooObject which is in this workspace. At this time, I have a
          > > ClassCastException.
          > >
          > > To give you more details about my configuration, here is my directory
          > > configuration:
          > > weblogic
          > > |----------- serverclasses
          > > |------------- startupObject
          > > |------------- FooObject
          > > |----------- servletclasses
          > > |------------- myServlet
          > > |------------- FooObject (which is exactly
          > > the same of the serverclasses one)
          > >
          > > Do you have any ideas ? The idea is to instantiate a given object at the
          > > startup of the web server and to retrieve
          > > these objects within servlets and JSPs.
          > >
          > > Regards.
          > >
          > > --
          > > Alexandre Aubry
          > > Consultant
          > > Fi System, The Web Agency
          > > http://www.fisystem.fr
          > > mailto:[email protected]
          > > Phone: +33 1 55 04 03 03 Fax: +33 1 55 04 03 04
          >
          > --
          > =====================================================
          > Reply to the newsgroup. Don't reply to this mail
          > alias. This is used only for answering posts on
          > WebLogic Newsgroups.
          > =====================================================
          

Similar Messages

  • How do I move my pc CS5 shortcuts and workspaces to CS6 in Macpro ?

    trying to move my PC CS5 photoshop and illustrator shortcuts and workspaces, and photoshop presets, into CS6 on the macpro retina,
    can someone give me a rundown how to do this?  I don`t want to stuff it up.
    PS & AI shortcuts and workspaces,
    PS presets (including brushes).

    Photoshop. importing from pcCS5 to macCS6
    importing workspaces.
    I was able to import my workspaces from pcCS5 to macCS6 by pasting them into this path in the finder,
    "applications/adobe photoshop cs6/ locales/ en_GB/additional presets/mac/workspaces/2-taskbased workspaces/ .... "
    even though the pc file is called unix executable, when I restarted PS on the mac, it showed up in the workspaces drop down in PS and is functional.
    importing brushes
    regards PS edit/presets/ export.import presets...
    I imported my custom brushes via that dialog, but have no idea where they ended up, I dont get the purpose of that dialog then,
    so I just used the normal presets manager in macCS6 to load the brushes that I imported from pcCS5 and that worked.
    importing keyboard shortcuts
    paste the pcCS5 keyboard shortcuts into
    "applications/adobe photoshop cs6/ locales/ en_GB/ support files/ shortcuts/ mac/
    they`ll show up in the macPS edit/keyboard shortcuts set drop down.
    Illustrator , importing from pcCS5 to macCS6.
    keyboard shortcuts
    I dropped the KYS file (AI keyboard shortcut file)  from pcCS5 to macCS6:
    "applications/ adobe illustrator cs6/ presets/ en_GB/ Keyboard shortcuts folder."
    they show up in mac illustrator when I load them as a custom shortcuts set in the edit/keyboard shortcuts dialog, but not sure yet how well they will work considering mac uses cmmd option, but it may convert them from the pc equivalents ctrl/alt hopefully.
    importing workspaces
    I copied my unix executable worskpace files from pcCS5 into:
    applications/ adobe illustrator cs6/ presets/ en_GB/ workspaces.
    I restarted AI but the workspaces from pcCS5 still don`t show up in the workspaces drop down in illust`r macCS6 . not sure why not. I did the same thing with photoshop and it worked there.
    importing brushes
    just via the brushes dialog box menu in AI macCS6, "open brush library", "other"...

  • Servlets and Workspaces

    I have a named workspace which is created at startup of the server
              within a starup class.
              When the startup method is called, I instantiate and put an object
              called FooObject in the workspace.
              Then, in a servlet, called Dispatcher, in the service method, I
              retrieved my named workspace and the object
              FooObject which is in this workspace. At this time, I have a
              ClassCastException.
              To give you more details about my configuration, here is my directory
              configuration:
              weblogic
              |----------- serverclasses
              |------------- startupObject
              |------------- FooObject
              |----------- servletclasses
              |------------- myServlet
              |------------- FooObject (which is exactly
              the same of the serverclasses one)
              Do you have any ideas ? The idea is to instantiate a given object at the
              startup of the web server and to retrieve
              these objects within servlets and JSPs.
              Regards.
              Alexandre Aubry
              Consultant
              Fi System, The Web Agency
              http://www.fisystem.fr
              mailto:[email protected]
              Phone: +33 1 55 04 03 03 Fax: +33 1 55 04 03 04
              

    Do you have Service Pack 6. SP6 is supposed to fix this problem
              "Jon Armstrong" <[email protected]> wrote in message
              news:[email protected]...
              > Mark/All,
              >
              > As a recent member of the list, this is the only reference/post that
              seemed that
              > it might be related to the problem I'm seeing.
              >
              > I have a servlet that runs fine if I register it through the standard WLS
              httpd
              > servlet mechanism:
              >
              > weblogic.httpd.register.XE=appl.X.EServlet
              > weblogic.httpd.servlet.classpath=\
              > /weblogic/myserver/public_html/XE/myclasses.jar;\
              > ... etc.
              >
              > If I attempt to deploy the servlet as a WebApp:
              >
              > weblogic.httpd.webApp.XE=/C:/XE
              >
              > Where: C:/XE contains
              >
              > WEB-INF/web.xml
              > WEB-INF/lib/myclasses.jar (contains: appl.X.EServlet)
              > WEB-INF/lib/...
              > ...etc.
              >
              > I get the following ClassCast Exception when invoking the servlet:
              >
              > Fri Nov 10 15:14:08 EST 2000:<E> <ServletContext-XE> Error casting
              servlet:
              > appl.X.EServlet java.lang.ClassCastException: appl.X.EServlet
              > at
              >
              weblogic.servlet.internal.ServletStubImpl.createServlet(ServletStubImpl.java
              :382)
              >
              > at
              >
              weblogic.servlet.internal.ServletStubImpl.createInstances(ServletStubImpl.ja
              va:349)
              >
              > at
              >
              weblogic.servlet.internal.ServletStubImpl.prepareServlet(ServletStubImpl.jav
              a:338)
              >
              > at
              >
              weblogic.servlet.internal.ServletStubImpl.getServlet(ServletStubImpl.java:16
              4)
              > at
              >
              weblogic.servlet.internal.ServletStubImpl.invokeServlet(ServletStubImpl.java
              :99)
              >
              > at
              >
              weblogic.servlet.internal.ServletContextImpl.invokeServlet(ServletContextImp
              l.java:742)
              >
              > at
              >
              weblogic.servlet.internal.ServletContextImpl.invokeServlet(ServletContextImp
              l.java:686)
              >
              > at
              >
              weblogic.servlet.internal.ServletContextManager.invokeServlet(ServletContext
              Manager.java:247)
              >
              > at
              weblogic.socket.MuxableSocketHTTP.invokeServlet(MuxableSocketHTTP.java:361)
              > at weblogic.socket.MuxableSocketHTTP.execute(MuxableSocketHTTP.java:261)
              > at weblogic.kernel.ExecuteThread.run(ExecuteThread.java:120)
              >
              > Fri Nov 10 15:14:08 EST 2000:<E> <ServletContext-XE> Servlet failed with
              > Exception
              > javax.servlet.ServletException: Servlet class: appl.X.EServlet does not
              > implement javax.servlet.Servlet
              > at
              >
              weblogic.servlet.internal.ServletStubImpl.createServlet(ServletStubImpl.java
              :385)
              >
              > at
              >
              weblogic.servlet.internal.ServletStubImpl.createInstances(ServletStubImpl.ja
              va:349)
              >
              > at
              >
              weblogic.servlet.internal.ServletStubImpl.prepareServlet(ServletStubImpl.jav
              a:338)
              >
              > at
              >
              weblogic.servlet.internal.ServletStubImpl.getServlet(ServletStubImpl.java:16
              4)
              > at
              >
              weblogic.servlet.internal.ServletStubImpl.invokeServlet(ServletStubImpl.java
              :99)
              >
              > at
              >
              weblogic.servlet.internal.ServletContextImpl.invokeServlet(ServletContextImp
              l.java:742)
              >
              > at
              >
              weblogic.servlet.internal.ServletContextImpl.invokeServlet(ServletContextImp
              l.java:686)
              >
              > at
              >
              weblogic.servlet.internal.ServletContextManager.invokeServlet(ServletContext
              Manager.java:247)
              >
              > at
              weblogic.socket.MuxableSocketHTTP.invokeServlet(MuxableSocketHTTP.java:361)
              > at weblogic.socket.MuxableSocketHTTP.execute(MuxableSocketHTTP.java:261)
              > at weblogic.kernel.ExecuteThread.run(ExecuteThread.java:120)
              >
              > This class doesn't <implement> Servlet. It <extends> a class which
              eventually
              > <extends> HttpServlet... which should suffice, much like the typical
              HelloWorld
              > sample servlets.
              >
              > I have to remove the WEB-INF directory and register this as a standard
              httpd
              > servlet to get weblogic to run it properly.
              > This servlet deploys fine with Jakarta-Tomcat as a WebApp and the same
              web.xml
              > file. I can post that, if need be. I assume the classloader is somehow
              > confused.
              >
              > Is this the same problem discussed below? If so, there's no reference to
              the
              > version of WLS that will address this issue.
              >
              > I'm currently using WLS 5.1. <Fri Nov 10 13:48:48 EST 2000:<I>
              <WebLogicServer>
              > ************ WebLogic Server (5.1.0 04/03/2000 17:13:23 #66825)>
              >
              > Has this been fixed or is there a workaround that allows WebApp deployment
              to
              > succeed? I really would like to stay away from as much web/app server
              specific
              > configuration as possible before taking this into the field.
              >
              > Jon
              >
              > Mark Griffith wrote:
              >
              > > Alexandre:
              > >
              > > Although byte for byte the FooObject is the same, according to the VM
              they
              > > are different class. This is because a class's type distinctiveness is
              > > based not only its interfaces,methods,data members etc but ALSO on its
              > > classloader. There is a different classloader for the
              > > serversclasses_FooObject and the servletclasses_FooObject so they are
              > > considered different, so you get a CCE.
              > >
              >
              > etc...
              >
              > >
              > > This will be handled more elegantly in our next major release Spring
              2000,
              > > however note (and prepare by designing accordingly) the solution is to
              allow
              > > the Servlet to interact with interfaces not actual classes and these
              > > interfaces can be stuffed into system/server loaded classes such as
              > > workspaces and httpsessions, thus preventing CCE's.
              > >
              > > Cheers
              > > Mark G
              > >
              > > Alexandre Aubry wrote:
              > >
              > > > I have a named workspace which is created at startup of the server
              > > > within a starup class.
              > > > When the startup method is called, I instantiate and put an object
              > > > called FooObject in the workspace.
              > > >
              > > > Then, in a servlet, called Dispatcher, in the service method, I
              > > > retrieved my named workspace and the object
              > > > FooObject which is in this workspace. At this time, I have a
              > > > ClassCastException.
              > > >
              > > > To give you more details about my configuration, here is my directory
              > > > configuration:
              > > > weblogic
              > > > |----------- serverclasses
              > > > |------------- startupObject
              > > > |------------- FooObject
              > > > |----------- servletclasses
              > > > |------------- myServlet
              > > > |------------- FooObject (which is
              exactly
              > > > the same of the serverclasses one)
              > > >
              > > > Do you have any ideas ? The idea is to instantiate a given object at
              the
              > > > startup of the web server and to retrieve
              > > > these objects within servlets and JSPs.
              > > >
              > > > Regards.
              > > >
              > > > --
              > > > Alexandre Aubry
              > > > Consultant
              > > > Fi System, The Web Agency
              >
              > ---
              > Jon M. Armstrong
              > Senior Systems Consultant
              > Xelus, Inc.
              >
              > EMail: [email protected]
              > Phone: 716-419-3155
              > Fax: 716-248-9199
              >
              > Visit us online: http://www.xelus.com
              >
              >
              

  • Error while creating a workspace and workspace user

    Hi Everyone
    I have installed oracle 11.1.0.7 on our server and the os is windows server 2008. I tried creating a new workspace and workspace user using the repository assistant on the server itself i mean i am using OWB which comes along with the 11g database. It is installing 60% and at the end it gives me this error:
    The warehouse builder workspace installation failed Java.Sql.SQLexception ora -00942 table or view does not exist
    How can i deal with this error? any suggestions ?
    Thanks & Regards
    Subhasree

    Hi everyone,
    I got the same problem. It is very urgent to get an answer.
    Thanks
    Siegwin

  • 11.1.2.2  workspace and sharedservices error

    I installed 11.1.2.2 in my laptop....but iam getting following error for workspace and sharedservices.
    Error 404--Not Found
    From RFC 2068 Hypertext Transfer Protocol -- HTTP/1.1:
    10.4.5 404 Not Found
    The server has not found anything matching the Request-URI. No indication is given of whether the condition is temporary or permanent.
    If the server does not wish to make this information available to the client, the status code 403 (Forbidden) can be used instead. The 410 (Gone) status code SHOULD be used if the server knows, through some internally configurable mechanism, that an old resource is permanently unavailable and has no forwarding address.
    please help how to resolve it

    Found the following in MIDDLEWARE_HOME/user_projects/epmsystem1/diagnostics/logs/validation/validationTool-stdout.txt
    ALL  ) HTTP Server checks failed!!!!!!!!!!!!!!!!!.......
    ( Feb 3, 2014 9:39:40 PM ) Configuration tasks state test successfully completed.
    ( Feb 3, 2014 9:39:40 PM )  - passed: Validating that configuration tasks have been completed
    ( Feb 3, 2014 9:39:41 PM ) Configuration tasks state test successfully completed.
    ( Feb 3, 2014 9:39:41 PM )  - passed: Validating that configuration tasks have been completed
    ( Feb 3, 2014 9:39:41 PM ) Configuration tasks state test successfully completed.
    ( Feb 3, 2014 9:39:41 PM )  - passed: Validating that configuration tasks have been completed
    ( Feb 3, 2014 9:39:41 PM ) Configuration tasks state test successfully completed.
    ( Feb 3, 2014 9:39:41 PM )  - passed: Validating that configuration tasks have been completed
    ( Feb 3, 2014 9:39:41 PM ) Configuration tasks state test successfully completed.
    ( Feb 3, 2014 9:39:41 PM )  - passed: Validating that configuration tasks have been completed
    ( Feb 3, 2014 9:39:42 PM ) Configuration tasks state test successfully completed.
    ( Feb 3, 2014 9:39:42 PM )  - passed: Validating that configuration tasks have been completed
    ( Feb 3, 2014 9:39:42 PM ) Configuration tasks state test successfully completed.
    ( Feb 3, 2014 9:39:42 PM )  - passed: Validating that configuration tasks have been completed
    ( Feb 3, 2014 9:39:42 PM ) Configuration tasks state test successfully completed.
    ( Feb 3, 2014 9:39:42 PM )  - passed: Validating that configuration tasks have been completed
    ( Feb 3, 2014 9:39:42 PM ) Configuration tasks state test successfully completed.
    ( Feb 3, 2014 9:39:42 PM )  - passed: Validating that configuration tasks have been completed
    ( Feb 3, 2014 9:39:43 PM ) Configuration tasks state test successfully completed.
    ( Feb 3, 2014 9:39:43 PM )  - passed: Validating that configuration tasks have been completed
    ( Feb 3, 2014 9:39:43 PM ) Configuration tasks state test successfully completed.
    ( Feb 3, 2014 9:39:43 PM )  - passed: Validating that configuration tasks have been completed
    ( Feb 3, 2014 9:39:43 PM ) Configuration tasks state test successfully completed.
    ( Feb 3, 2014 9:39:43 PM )  - passed: Validating that configuration tasks have been completed
    ( Feb 3, 2014 9:39:43 PM ) Configuration tasks state test successfully completed.
    ( Feb 3, 2014 9:39:43 PM )  - passed: Validating that configuration tasks have been completed
    ( Feb 3, 2014 9:39:44 PM ) DB Connectivity test for repository successfully completed.
    ( Feb 3, 2014 9:39:44 PM )  - passed: Checking connection to database jdbc:oracle:thin:@localhost:1521:orcl
    ( Feb 3, 2014 9:39:44 PM ) DB Connectivity test for repository successfully completed.
    ( Feb 3, 2014 9:39:44 PM )  - passed: Checking connection to database jdbc:oracle:thin:@localhost:1521:orcl
    ( Feb 3, 2014 9:39:44 PM ) DB Connectivity test for repository successfully completed.
    ( Feb 3, 2014 9:39:44 PM )  - passed: Checking connection to database jdbc:oracle:thin:@localhost:1521:orcl
    ( Feb 3, 2014 9:39:44 PM ) DB Connectivity test for repository successfully completed.
    ( Feb 3, 2014 9:39:44 PM )  - passed: Checking connection to database jdbc:oracle:thin:@localhost:1521:orcl
    ( Feb 3, 2014 9:39:45 PM ) DB Connectivity test for repository successfully completed.
    ( Feb 3, 2014 9:39:45 PM )  - passed: Checking connection to database jdbc:oracle:thin:@localhost:1521:orcl
    ( Feb 3, 2014 9:39:45 PM ) DB Connectivity test for repository successfully completed.
    ( Feb 3, 2014 9:39:45 PM )  - passed: Checking connection to database jdbc:oracle:thin:@localhost:1521:orcl
    ( Feb 3, 2014 9:39:45 PM ) DB Connectivity test for repository successfully completed.
    ( Feb 3, 2014 9:39:45 PM )  - passed: Checking connection to database jdbc:oracle:thin:@localhost:1521:orcl
    ( Feb 3, 2014 9:39:46 PM ) DB Connectivity test for repository successfully completed.
    ( Feb 3, 2014 9:39:46 PM )  - passed: Checking connection to database jdbc:oracle:thin:@localhost:1521:orcl
    ( Feb 3, 2014 9:39:50 PM ) Web Applications check failed.
    ( Feb 3, 2014 9:39:50 PM )  - failed: Availability of Web application context http://EPMSrvr:6550/aif/faces/setup/Main.jspx
        Error:java.net.ConnectException: Connection refused: connect
    ( Feb 3, 2014 9:39:50 PM )  - failed: Availability of Web application context http://EPMSrvr:6550/oracle-epm-erpi-webservices/RuleService
        Error:java.net.ConnectException: Connection refused: connect
    ( Feb 3, 2014 9:39:50 PM )  - failed: Availability of Web application context http://EPMSrvr:9000/aif/faces/setup/Main.jspx
        Error:java.net.ConnectException: Connection refused: connect
    ( Feb 3, 2014 9:39:50 PM )  - failed: Availability of Web application context http://EPMSrvr:9000/oracle-epm-erpi-webservices/RuleService
        Error:java.net.ConnectException: Connection refused: connect
    ( Feb 3, 2014 9:39:55 PM ) Web Applications check failed.
    ( Feb 3, 2014 9:39:55 PM )  - failed: Availability of Web application context http://EPMSrvr:9000/easconsole/console.html
        Error:java.net.ConnectException: Connection refused: connect
    ( Feb 3, 2014 9:39:55 PM )  - failed: Availability of Web application context http://EPMSrvr:9000/aps/APS
        Error:java.net.ConnectException: Connection refused: connect
    ( Feb 3, 2014 9:39:55 PM )  - failed: Availability of Web application context http://EPMSrvr:9000/essbase-webservices/AdminService
        Error:java.net.ConnectException: Connection refused: connect
    ( Feb 3, 2014 9:39:55 PM )  - failed: Availability of Web application context http://EPMSrvr:13080/aps/APS
        Error:java.net.ConnectException: Connection refused: connect
    ( Feb 3, 2014 9:39:55 PM )  - failed: Availability of Web application context http://EPMSrvr:13080/essbase-webservices/AdminService
        Error:java.net.ConnectException: Connection refused: connect
    ( Feb 3, 2014 9:39:57 PM ) Web Applications check failed.
    ( Feb 3, 2014 9:39:57 PM )  - failed: Availability of Web application context http://EPMSrvr:9000/awb/conf/AwbConfig.xml
        Error:java.net.ConnectException: Connection refused: connect
    ( Feb 3, 2014 9:39:57 PM )  - failed: Availability of Web application context http://EPMSrvr:9000/DataSync
        Error:java.net.ConnectException: Connection refused: connect
    ( Feb 3, 2014 9:39:59 PM ) Web Applications check failed.
    ( Feb 3, 2014 9:39:59 PM )  - failed: Availability of Web application context http://EPMSrvr:9000/calcmgr/index.htm
        Error:java.net.ConnectException: Connection refused: connect
    ( Feb 3, 2014 9:39:59 PM )  - failed: Availability of Web application context http://EPMSrvr:8500/calcmgr/index.htm
        Error:java.net.ConnectException: Connection refused: connect
    ( Feb 3, 2014 9:40:04 PM ) Web Applications check failed.
    ( Feb 3, 2014 9:40:04 PM )  - failed: Availability of Web application context http://EPMSrvr:9000/easconsole/console.html
        Error:java.net.ConnectException: Connection refused: connect
    ( Feb 3, 2014 9:40:04 PM )  - failed: Availability of Web application context http://EPMSrvr:10080/easconsole/console.html
        Error:java.net.ConnectException: Connection refused: connect
    ( Feb 3, 2014 9:40:04 PM )  - failed: Availability of Web application context http://EPMSrvr:9000/aps/APS
        Error:java.net.ConnectException: Connection refused: connect
    ( Feb 3, 2014 9:40:04 PM )  - failed: Availability of Web application context http://EPMSrvr:9000/essbase-webservices/AdminService
        Error:java.net.ConnectException: Connection refused: connect
    ( Feb 3, 2014 9:40:06 PM ) Web Applications check failed.
    ( Feb 3, 2014 9:40:06 PM )  - failed: Availability of Web application context http://EPMSrvr:9000/interop
        Error:java.net.ConnectException: Connection refused: connect
    ( Feb 3, 2014 9:40:06 PM )  - failed: Availability of Web application context http://EPMSrvr:28080/interop
        Error:java.net.ConnectException: Connection refused: connect
    ( Feb 3, 2014 9:40:10 PM ) Web Applications check failed.
    ( Feb 3, 2014 9:40:10 PM )  - failed: Availability of Web application context http://EPMSrvr:7363/oracle-epm-fm-webservices/ApplicationService
        Error:java.net.ConnectException: Connection refused: connect
    ( Feb 3, 2014 9:40:10 PM )  - failed: Availability of Web application context http://EPMSrvr:9000/oracle-epm-fm-webservices/ApplicationService
        Error:java.net.ConnectException: Connection refused: connect
    ( Feb 3, 2014 9:40:10 PM )  - failed: Availability of Web application context http://EPMSrvr:9000/hfmadf/faces/hfm.jspx
        Error:java.net.ConnectException: Connection refused: connect
    ( Feb 3, 2014 9:40:10 PM )  - failed: Availability of Web application context http://EPMSrvr:7363/hfmadf/faces/hfm.jspx
        Error:java.net.ConnectException: Connection refused: connect
    ( Feb 3, 2014 9:40:11 PM ) Web Applications check failed.
    ( Feb 3, 2014 9:40:13 PM ) Web Applications check failed.
    ( Feb 3, 2014 9:40:13 PM )  - failed: Availability of Web application context http://EPMSrvr:28080/workspace/status
        Error:java.net.ConnectException: Connection refused: connect
    ( Feb 3, 2014 9:40:13 PM )  - failed: Availability of Web application context http://EPMSrvr:9000/workspace/status
        Error:java.net.ConnectException: Connection refused: connect
    ( Feb 3, 2014 9:40:34 PM ) HTTP Server check failed.
    ( Feb 3, 2014 9:40:34 PM )  - failed: Checking availability of HTTP context http://EPMSrvr:9000/interop
        Error:java.net.ConnectException: Connection refused: connect
    ( Feb 3, 2014 9:40:34 PM )  - failed: Checking availability of HTTP context http://EPMSrvr:9000/workspace/status
        Error:java.net.ConnectException: Connection refused: connect
    ( Feb 3, 2014 9:40:34 PM )  - failed: Checking availability of HTTP context http://EPMSrvr:9000/awb/conf/AwbConfig.xml
        Error:java.net.ConnectException: Connection refused: connect
    ( Feb 3, 2014 9:40:34 PM )  - failed: Checking availability of HTTP context http://EPMSrvr:9000/easconsole/console.html
        Error:java.net.ConnectException: Connection refused: connect
    ( Feb 3, 2014 9:40:34 PM )  - failed: Checking availability of HTTP context http://EPMSrvr:9000/calcmgr/index.htm
        Error:java.net.ConnectException: Connection refused: connect
    ( Feb 3, 2014 9:40:34 PM )  - failed: Checking availability of HTTP context http://EPMSrvr:9000/DataSync
        Error:java.net.ConnectException: Connection refused: connect
    ( Feb 3, 2014 9:40:34 PM )  - failed: Checking availability of HTTP context http://EPMSrvr:9000/oracle-epm-fm-webservices/ApplicationService
        Error:java.net.ConnectException: Connection refused: connect
    ( Feb 3, 2014 9:40:34 PM )  - failed: Checking availability of HTTP context http://EPMSrvr:9000/hfmadf/faces/hfm.jspx
        Error:java.net.ConnectException: Connection refused: connect
    ( Feb 3, 2014 9:40:34 PM )  - failed: Checking availability of HTTP context http://EPMSrvr:9000/hfmofficeprovider/HFMOfficeProvider.aspx
        Error:java.net.ConnectException: Connection refused: connect
    ( Feb 3, 2014 9:40:34 PM )  - failed: Checking availability of HTTP context http://EPMSrvr:9000/HyperionFDM
        Error:java.net.ConnectException: Connection refused: connect
    ( Feb 3, 2014 9:40:34 PM )  - failed: Checking availability of HTTP context http://EPMSrvr:9000/hfmlcmservice/LCMWS.asmx
        Error:java.net.ConnectException: Connection refused: connect
    ( Feb 3, 2014 9:40:34 PM )  - failed: Checking availability of HTTP context http://EPMSrvr:9000/hfmapplicationservice/Application.asmx
        Error:java.net.ConnectException: Connection refused: connect
    ( Feb 3, 2014 9:40:34 PM )  - failed: Checking availability of HTTP context http://EPMSrvr:9000/hfm/default.asp
        Error:java.net.ConnectException: Connection refused: connect
    ( Feb 3, 2014 9:40:34 PM )  - failed: Checking availability of HTTP context http://EPMSrvr:9000/hyperion-bpma-server/Applications.asmx
        Error:java.net.ConnectException: Connection refused: connect
    ( Feb 3, 2014 9:40:34 PM )  - failed: Checking availability of HTTP context http://EPMSrvr:9000/aif/faces/setup/Main.jspx
        Error:java.net.ConnectException: Connection refused: connect
    ( Feb 3, 2014 9:40:34 PM )  - failed: Checking availability of HTTP context http://EPMSrvr:9000/oracle-epm-erpi-webservices/RuleService
        Error:java.net.ConnectException: Connection refused: connect
    ( Feb 3, 2014 9:40:34 PM )  - failed: Checking availability of HTTP context http://EPMSrvr:9000/raframework/index.jsp
        Error:java.net.ConnectException: Connection refused: connect
    ( Feb 3, 2014 9:40:34 PM )  - failed: Checking availability of HTTP context http://EPMSrvr:9000/aps/APS
        Error:java.net.ConnectException: Connection refused: connect
    ( Feb 3, 2014 9:40:34 PM )  - failed: Checking availability of HTTP context http://EPMSrvr:9000/essbase-webservices/AdminService
        Error:java.net.ConnectException: Connection refused: connect
    ( Feb 3, 2014 9:40:36 PM ) External Providers check successfully completed.
    ( Feb 3, 2014 9:40:36 PM )  - passed: Check Native Directory external authentication provider configuration
    ( Feb 3, 2014 9:40:37 PM ) External Providers check successfully completed.
    ( Feb 3, 2014 9:40:37 PM )  - passed: Check Native Directory external authentication provider configuration
    ( Feb 3, 2014 9:40:37 PM ) External Providers check successfully completed.
    ( Feb 3, 2014 9:40:37 PM )  - passed: Check Native Directory external authentication provider configuration
    ( Feb 3, 2014 9:40:37 PM ) External Providers check successfully completed.
    ( Feb 3, 2014 9:40:37 PM )  - passed: Check Native Directory external authentication provider configuration
    ( Feb 3, 2014 9:40:37 PM ) External Providers check successfully completed.
    ( Feb 3, 2014 9:40:37 PM )  - passed: Check Native Directory external authentication provider configuration
    ( Feb 3, 2014 9:40:38 PM ) External Providers check successfully completed.
    ( Feb 3, 2014 9:40:38 PM )  - passed: Check Native Directory external authentication provider configuration
    ( Feb 3, 2014 9:40:38 PM ) External Providers check successfully completed.
    ( Feb 3, 2014 9:40:38 PM )  - passed: Check Native Directory external authentication provider configuration
    ( Feb 3, 2014 9:40:38 PM ) External Providers check successfully completed.
    ( Feb 3, 2014 9:40:38 PM )  - passed: Check Native Directory external authentication provider configuration
    ( Feb 3, 2014 9:40:38 PM ) External Providers check successfully completed.
    ( Feb 3, 2014 9:40:38 PM )  - passed: Check Native Directory external authentication provider configuration
    ( Feb 3, 2014 9:40:39 PM ) External Providers check successfully completed.
    ( Feb 3, 2014 9:40:39 PM )  - passed: Check Native Directory external authentication provider configuration
    ( Feb 3, 2014 9:40:41 PM ) Login check failed.
    ( Feb 3, 2014 9:40:41 PM )  - failed: Checking availability of login http://EPMSrvr:28080/interop/logon
        Error:java.net.ConnectException: Connection refused: connect
    ( Feb 3, 2014 9:40:41 PM )  - failed: Checking availability of login http://EPMSrvr:28080/interop/logon
        Error:java.net.ConnectException: Connection refused: connect
    ( Feb 3, 2014 9:40:43 PM ) Login check failed.
    ( Feb 3, 2014 9:40:43 PM )  - failed: Checking availability of login http://EPMSrvr:28080/workspace/status
        Error:java.net.ConnectException: Connection refused: connect
    ( Feb 3, 2014 9:40:43 PM )  - failed: Checking availability of login http://EPMSrvr:28080/workspace/status
        Error:java.net.ConnectException: Connection refused: connect
    ( Feb 3, 2014 9:40:50 PM ) Missed registry links check successfully completed.
    ( Feb 3, 2014 9:40:50 PM )  - passed: Checking that all components in the registry have a link to host
    ( Feb 3, 2014 9:40:50 PM ) Datasource entries existence successfully completed.
    ( Feb 3, 2014 9:40:50 PM )  - passed: Checking if datasource property exists in the registry
    ( Feb 3, 2014 9:40:50 PM )  - passed: Checking if datasource property exists in the registry
    ( Feb 3, 2014 9:40:50 PM ) Datasource entries existence failed.
    ( Feb 3, 2014 9:40:50 PM ) Datasource entries existence failed.
    ( Feb 3, 2014 9:40:51 PM ) Datasource entries existence successfully completed.
    ( Feb 3, 2014 9:40:51 PM )  - passed: Checking if datasource property exists in the registry
    ( Feb 3, 2014 9:40:51 PM )  - passed: Checking if datasource property exists in the registry
    ( Feb 3, 2014 9:40:51 PM ) Datasource entries existence failed.
    ( Feb 3, 2014 9:40:51 PM ) Datasource entries existence failed.
    ( Feb 3, 2014 9:40:51 PM ) Datasource entries existence failed.
    ( Feb 3, 2014 9:40:52 PM ) Datasource entries existence failed.
    ( Feb 3, 2014 9:40:52 PM ) Datasource entries existence failed.
    ( Feb 3, 2014 9:40:52 PM ) Web Server Registry check successfully completed.
    ( Feb 3, 2014 9:40:52 PM )  - passed: Checking if Web Server linked to the all Web Applications
    ( Feb 3, 2014 9:40:57 PM ) Shared library targeting test successfully completed.
    ( Feb 3, 2014 9:40:57 PM )  - passed: Check if all shared libraries are targeted for application "ErpIntegrator0".
    ( Feb 3, 2014 9:40:58 PM ) Shared library targeting test successfully completed.
    ( Feb 3, 2014 9:40:58 PM )  - passed: Check if all shared libraries are targeted for application "AnalyticProviderServices0".
    ( Feb 3, 2014 9:40:58 PM ) Shared library targeting test failed.
    ( Feb 3, 2014 9:40:58 PM ) Shared library targeting test successfully completed.
    ( Feb 3, 2014 9:40:58 PM )  - passed: Check if all shared libraries are targeted for application "CalcMgr0".
    ( Feb 3, 2014 9:40:59 PM ) Shared library targeting test successfully completed.
    ( Feb 3, 2014 9:40:59 PM )  - passed: Check if all shared libraries are targeted for application "EssbaseAdminServices0".
    ( Feb 3, 2014 9:40:59 PM ) Shared library targeting test successfully completed.
    ( Feb 3, 2014 9:40:59 PM )  - passed: Check if all shared libraries are targeted for application "FoundationServices0".
    ( Feb 3, 2014 9:40:59 PM ) Shared library targeting test successfully completed.
    ( Feb 3, 2014 9:40:59 PM )  - passed: Check if all shared libraries are targeted for application "HFMWeb0".
    ( Feb 3, 2014 9:40:59 PM )  - passed: Check if all shared libraries are targeted for application "HFMWeb0".
    ( Feb 3, 2014 9:41:00 PM ) Shared library targeting test failed.
    ( Feb 3, 2014 9:41:00 PM ) Shared library targeting test successfully completed.
    ( Feb 3, 2014 9:41:00 PM )  - passed: Check if all shared libraries are targeted for application "FoundationServices0".
    ( Feb 3, 2014 9:41:08 PM ) Checking if registry database compy with taxonomy. successfully completed.
    ( Feb 3, 2014 9:41:08 PM )  - passed: All components comply with registry taxonomy.
    ( Feb 3, 2014 9:41:08 PM ) System path variable length test successfully completed.
    ( Feb 3, 2014 9:41:08 PM )  - passed: Checking whether system path variable length exceeds 2,000
    ( Feb 3, 2014 9:41:08 PM ) Product registry component test successfully completed.
    ( Feb 3, 2014 9:41:08 PM )  - passed: Checking if product has only one product node in registry.
    ( Feb 3, 2014 9:41:08 PM ) Product registry component test successfully completed.
    ( Feb 3, 2014 9:41:08 PM )  - passed: Checking if product has only one product node in registry.
    ( Feb 3, 2014 9:41:09 PM ) Product registry component test successfully completed.
    ( Feb 3, 2014 9:41:09 PM )  - passed: Checking if product has only one product node in registry.
    ( Feb 3, 2014 9:41:09 PM ) Product registry component test successfully completed.
    ( Feb 3, 2014 9:41:09 PM )  - passed: Checking if product has only one product node in registry.
    ( Feb 3, 2014 9:41:09 PM ) Product registry component test successfully completed.
    ( Feb 3, 2014 9:41:09 PM )  - passed: Checking if product has only one product node in registry.
    ( Feb 3, 2014 9:41:10 PM ) Product registry component test successfully completed.
    ( Feb 3, 2014 9:41:10 PM )  - passed: Checking if product has only one product node in registry.
    ( Feb 3, 2014 9:41:10 PM ) Product registry component test successfully completed.
    ( Feb 3, 2014 9:41:10 PM )  - passed: Checking if product has only one product node in registry.
    ( Feb 3, 2014 9:41:10 PM ) Product registry component test successfully completed.
    ( Feb 3, 2014 9:41:10 PM )  - passed: Checking if product has only one product node in registry.
    ( Feb 3, 2014 9:41:10 PM ) Product registry component test successfully completed.
    ( Feb 3, 2014 9:41:10 PM )  - passed: Checking if product has only one product node in registry.
    ( Feb 3, 2014 9:41:10 PM ) Product registry component test successfully completed.
    ( Feb 3, 2014 9:41:10 PM )  - passed: Checking if product has only one product node in registry.
    ( Feb 3, 2014 9:41:11 PM ) Product registry component test successfully completed.
    ( Feb 3, 2014 9:41:11 PM )  - passed: Checking if product has only one product node in registry.
    ( Feb 3, 2014 9:41:11 PM ) Product registry component test successfully completed.
    ( Feb 3, 2014 9:41:11 PM )  - passed: Checking if product has only one product node in registry.
    ( Feb 3, 2014 9:41:11 PM ) Product registry component test successfully completed.
    ( Feb 3, 2014 9:41:11 PM )  - passed: Checking if product has only one product node in registry.
    ( Feb 3, 2014 9:41:12 PM ) Check system-jazn-data.xml file for HIT entries successfully completed.
    ( Feb 3, 2014 9:41:12 PM )  - passed: All HIT entries are present in system-jazn-data.xml
    ( Feb 3, 2014 9:41:12 PM ) EPMA DimensionServer Server Configuration successfully completed.
    ( Feb 3, 2014 9:41:12 PM )  - passed: Validating EPMA Dimension Server hyperion-bpma-server startup... Successful...
    ( Feb 3, 2014 9:41:16 PM ) Check EPMA services individually failed.
    ( Feb 3, 2014 9:41:16 PM )  - failed: Validating whether jobmanager service is available.
        Error:com.hyperion.cis.utils.BadResponseCodeException: Bad response code: 500
    COMP ID = oracle.EPMOHPS
    Hyperion Provider Services - Release 11.1.2.2.100.2138
    Copyright (c) 1991, 2011 Oracle and / or its affiliates. All rights reserved.
    connection mode : EMBEDDED
    essbase.properties: essbase.properties
    java System properties -DESS_ES_HOME: null
    ( Feb 3, 2014 9:41:21 PM ) Essbase server check failed.
    ( Feb 3, 2014 9:41:21 PM )  - failed: Validating Essbase Server connection to EPMSrvr
        Error:Cannot connect to olap service. Cannot connect to Essbase Server at "EPMSrvr:1423". Network error [10061]: Failed to connect to [EPMSrvr:1423]
    ( Feb 3, 2014 9:41:26 PM ) Essbase server check using MaxL failed.
    ( Feb 3, 2014 9:41:26 PM )  - failed: Validating Essbase Server startup using MaxL command
        Error:EPMVLD-01010: Cannot connect to Essbase Server using MaxL.
    ( Feb 3, 2014 9:41:28 PM ) Essbase Studio Server failed.
    ( Feb 3, 2014 9:41:28 PM )  - failed: Validating Essbase Studio Server connection
        Error:Network communication with the server failed. Check your network connection and try again.
    ( Feb 3, 2014 9:41:28 PM ) Financial Management Application Server Configuration successfully completed.
    ( Feb 3, 2014 9:41:28 PM )  - passed: Validating Financial Management Server registration Successful...
    ( Feb 3, 2014 9:41:31 PM ) Financial Management Service Validation failed.
    ( Feb 3, 2014 9:41:31 PM )  - failed: Verify that the Financial Management service is working.
        Error:EPMVLD-01024: The Financial Management service check failed: ERROR: Unable to CreateApplicationCAS
    ( Feb 3, 2014 9:41:31 PM ) Financial Management Web Server successfully completed.
    ( Feb 3, 2014 9:41:31 PM )  - passed: Validating Financial Management Web application connection Successful...
    ( Feb 3, 2014 9:41:32 PM ) SmartView Provider successfully completed.
    ( Feb 3, 2014 9:41:32 PM )  - passed: Validating Financial Management SmartView Provider connection Successful...
    ( Feb 3, 2014 9:41:32 PM ) LCM Provider successfully completed.
    ( Feb 3, 2014 9:41:32 PM )  - passed: Validating Financial Management LCM Provider connection Successful...
    ( Feb 3, 2014 9:41:49 PM ) Module login test failed.
    ( Feb 3, 2014 9:41:49 PM )  - failed: Module test for Shared Services with URL http://EPMSrvr:28080/workspace/index.jsp?module=interop.interop
        Error:java.net.ConnectException: Connection refused: connect
    ( Feb 3, 2014 9:41:49 PM )  - failed: Module test for Performance Management Architect with URL http://EPMSrvr:28080/workspace/index.jsp?module=awb.awb
        Error:java.net.ConnectException: Connection refused: connect
    ( Feb 3, 2014 9:41:49 PM )  - failed: Module test for Essbase Administration Services with URL http://EPMSrvr:28080/workspace/index.jsp?module=eas.eas
        Error:java.net.ConnectException: Connection refused: connect
    ( Feb 3, 2014 9:41:49 PM )  - failed: Module test for Calculation Manager with URL http://EPMSrvr:28080/workspace/index.jsp?module=calcmgr.calcmgr
        Error:java.net.ConnectException: Connection refused: connect
    ( Feb 3, 2014 9:41:49 PM )  - failed: Module test for Performance Management Architect Data Synchronizer with URL http://EPMSrvr:28080/workspace/index.jsp?module=DataSync.DataSync
        Error:java.net.ConnectException: Connection refused: connect
    ( Feb 3, 2014 9:41:49 PM )  - failed: Module test for Financial Management Web Services with URL http://EPMSrvr:28080/workspace/index.jsp?module=oracle-epm-fm-webservices.oracle-epm-fm-webservices
        Error:java.net.ConnectException: Connection refused: connect
    ( Feb 3, 2014 9:41:49 PM )  - failed: Module test for Financial Management ADF Web Application with URL http://EPMSrvr:28080/workspace/index.jsp?module=hfmadf.hfmadf
        Error:java.net.ConnectException: Connection refused: connect
    ( Feb 3, 2014 9:41:49 PM )  - failed: Module test for Financial Management Smart View with URL http://EPMSrvr:28080/workspace/index.jsp?module=hfmofficeprovider.hfmofficeprovider
        Error:java.net.ConnectException: Connection refused: connect
    ( Feb 3, 2014 9:41:49 PM )  - failed: Module test for FDM with URL http://EPMSrvr:28080/workspace/index.jsp?module=HyperionFDM.HyperionFDM
        Error:java.net.ConnectException: Connection refused: connect
    ( Feb 3, 2014 9:41:49 PM )  - failed: Module test for Financial Management LCM Service with URL http://EPMSrvr:28080/workspace/index.jsp?module=hfmlcmservice.hfmlcmservice
        Error:java.net.ConnectException: Connection refused: connect
    ( Feb 3, 2014 9:41:49 PM )  - failed: Module test for Financial Management ASP Web Services with URL http://EPMSrvr:28080/workspace/index.jsp?module=hfmapplicationservice.hfmapplicationservice
        Error:java.net.ConnectException: Connection refused: connect
    ( Feb 3, 2014 9:41:49 PM )  - failed: Module test for Financial Management with URL http://EPMSrvr:28080/workspace/index.jsp?module=hfm.hfm
        Error:java.net.ConnectException: Connection refused: connect
    ( Feb 3, 2014 9:41:49 PM )  - failed: Module test for Performance Management Architect Dimension Server with URL http://EPMSrvr:28080/workspace/index.jsp?module=hyperion-bpma-server.hyperion-bpma-server
        Error:java.net.ConnectException: Connection refused: connect
    ( Feb 3, 2014 9:41:49 PM )  - failed: Module test for ERP Integrator with URL http://EPMSrvr:28080/workspace/index.jsp?module=aif.aif
        Error:java.net.ConnectException: Connection refused: connect
    ( Feb 3, 2014 9:41:49 PM )  - failed: Module test for Reporting and Analysis with URL http://EPMSrvr:28080/workspace/index.jsp?module=raframework.raframework
        Error:java.net.ConnectException: Connection refused: connect
    ( Feb 3, 2014 9:41:49 PM )  - failed: Module test for Provider Services with URL http://EPMSrvr:28080/workspace/index.jsp?module=aps.aps
        Error:java.net.ConnectException: Connection refused: connect
    ( Feb 3, 2014 9:41:50 PM ) Web Server link test failed.
    ( Feb 3, 2014 9:42:08 PM ) EnumerateDimensions failed.
    ( Feb 3, 2014 9:42:08 PM )  - failed: Launch external checker with next command: C:\Oracle\Middleware\EPMSystem11R1\..\jdk160_29/bin/java -DEPM_ORACLE_HOME=C:\Oracle\Middleware\EPMSystem11R1 -DEPM_ORACLE_INSTANCE=C:\Oracle\Middleware\user_projects\epmsystem1 -Djava.util.logging.config.class=oracle.core.ojdl.logging.LoggingConfiguration -Doracle.core.ojdl.logging.config.file=C:\Oracle\Middleware\user_projects\epmsystem1\config\validation\11.1.2.0\validationTool-logging.xml com.oracle.epm.epma.config.validations.dimeditor.EnumDimensions
        Error:EPMVLD-01011: Result java.net.ConnectException; Error message:  Connection refused: connect
    ( Feb 3, 2014 9:42:26 PM ) EnumerateApplications failed.
    ( Feb 3, 2014 9:42:26 PM )  - failed: Launch external checker with next command: C:\Oracle\Middleware\EPMSystem11R1\..\jdk160_29/bin/java -DEPM_ORACLE_HOME=C:\Oracle\Middleware\EPMSystem11R1 -DEPM_ORACLE_INSTANCE=C:\Oracle\Middleware\user_projects\epmsystem1 -Djava.util.logging.config.class=oracle.core.ojdl.logging.LoggingConfiguration -Doracle.core.ojdl.logging.config.file=C:\Oracle\Middleware\user_projects\epmsystem1\config\validation\11.1.2.0\validationTool-logging.xml com.oracle.epm.epma.config.validations.repository.EnumApplications
        Error:EPMVLD-01011: Result java.net.ConnectException; Error message:  Connection refused: connect
    ( Feb 3, 2014 9:42:44 PM ) EnumerateDataSynchronizations failed.
    ( Feb 3, 2014 9:42:44 PM )  - failed: Launch external checker with next command: C:\Oracle\Middleware\EPMSystem11R1\..\jdk160_29/bin/java -DEPM_ORACLE_HOME=C:\Oracle\Middleware\EPMSystem11R1 -DEPM_ORACLE_INSTANCE=C:\Oracle\Middleware\user_projects\epmsystem1 -Djava.util.logging.config.class=oracle.core.ojdl.logging.LoggingConfiguration -Doracle.core.ojdl.logging.config.file=C:\Oracle\Middleware\user_projects\epmsystem1\config\validation\11.1.2.0\validationTool-logging.xml com.oracle.epm.epma.config.validations.repository.EnumDataSyncs
        Error:EPMVLD-01011: Result java.net.ConnectException; Error message:  Connection refused: connect
    ( Feb 3, 2014 9:43:03 PM ) DimensionEditorLoadAdf failed.
    ( Feb 3, 2014 9:43:03 PM )  - failed: Launch external checker with next command: C:\Oracle\Middleware\EPMSystem11R1\..\jdk160_29/bin/java -DEPM_ORACLE_HOME=C:\Oracle\Middleware\EPMSystem11R1 -DEPM_ORACLE_INSTANCE=C:\Oracle\Middleware\user_projects\epmsystem1 -Djava.util.logging.config.class=oracle.core.ojdl.logging.LoggingConfiguration -Doracle.core.ojdl.logging.config.file=C:\Oracle\Middleware\user_projects\epmsystem1\config\validation\11.1.2.0\validationTool-logging.xml com.oracle.epm.epma.config.validations.dimeditor.DimEditorLoadAdf
        Error:EPMVLD-01011: Result java.net.ConnectException; Error message:  Connection refused: connect
    ( Feb 3, 2014 9:43:21 PM ) ApplicationManagerLoadAdf failed.
    ( Feb 3, 2014 9:43:21 PM )  - failed: Launch external checker with next command: C:\Oracle\Middleware\EPMSystem11R1\..\jdk160_29/bin/java -DEPM_ORACLE_HOME=C:\Oracle\Middleware\EPMSystem11R1 -DEPM_ORACLE_INSTANCE=C:\Oracle\Middleware\user_projects\epmsystem1 -Djava.util.logging.config.class=oracle.core.ojdl.logging.LoggingConfiguration -Doracle.core.ojdl.logging.config.file=C:\Oracle\Middleware\user_projects\epmsystem1\config\validation\11.1.2.0\validationTool-logging.xml com.oracle.epm.epma.config.validations.appmanager.AppMgrLoadAdf
        Error:EPMVLD-01011: Result java.net.ConnectException; Error message:  Connection refused: connect
    ( Feb 3, 2014 9:43:22 PM ) Check if the Reporting and Analysis Setup (RA_SETUP) component exists. successfully completed.
    ( Feb 3, 2014 9:43:22 PM )  - passed: Found: 1.
    ( Feb 3, 2014 9:43:22 PM ) Check if all required RAF properties exist under the Reporting and Analysis Setup component. successfully completed.
    ( Feb 3, 2014 9:43:22 PM )  - passed: All required properties exist.
    ( Feb 3, 2014 9:43:23 PM ) Check if the Agent Module (AGENT_MODULE) components exist. successfully completed.
    ( Feb 3, 2014 9:43:23 PM )  - passed: Found: 1.
    ( Feb 3, 2014 9:43:23 PM ) Check if the Reporting and Analysis Service (RA_SERVICE) components exist. successfully completed.
    ( Feb 3, 2014 9:43:23 PM )  - passed: Found: 17.
    ( Feb 3, 2014 9:43:23 PM ) Check if the Agent (AGENT) components exist. successfully completed.
    ( Feb 3, 2014 9:43:23 PM )  - passed: Found: 1. Hosts for the components: EPMSrvr.
    ( Feb 3, 2014 9:43:24 PM ) Check if the RAF Logical Web App (LOGICAL_WEB_APP) component exists. successfully completed.
    ( Feb 3, 2014 9:43:24 PM )  - passed: Found: 1.
    ( Feb 3, 2014 9:43:24 PM ) Check if the RAF Web App (RA_FRAMEWORK_WEB_APP) components exist. successfully completed.
    ( Feb 3, 2014 9:43:24 PM )  - passed: Found: 2. Hosts for the components: EPMSrvr, EPMSrvr.
    ( Feb 3, 2014 9:43:25 PM ) Check consistency of the Service Agent sets between Registry and V8_SERVICEAGENT. successfully completed.
    ( Feb 3, 2014 9:43:25 PM )  - passed: Data in Registry and database are consistent.
    ( Feb 3, 2014 9:43:26 PM ) Check consistency of the Service Agent properties between Registry and database tables (V8_SERVICEAGENT, V8_SA_PROPS). successfully completed.
    ( Feb 3, 2014 9:43:26 PM )  - passed: Data in Registry and database are consistent.
    ( Feb 3, 2014 9:43:26 PM ) Check if all required RAF properties exist under the RAF Logical Web App component. successfully completed.
    ( Feb 3, 2014 9:43:26 PM )  - passed: All required properties exist.
    ( Feb 3, 2014 9:43:27 PM ) Check if all required Workspace configuration files exist under the RAF Logical Web App component. successfully completed.
    ( Feb 3, 2014 9:43:27 PM )  - passed: All required files exist.
    ( Feb 3, 2014 9:43:28 PM ) Check if Agents are available. failed.
    ( Feb 3, 2014 9:43:28 PM )  - failed: No available Agents.
        Error:No available Agents.
    ( Feb 3, 2014 9:43:30 PM ) Check if RAF Services are available. failed.
    ( Feb 3, 2014 9:43:30 PM )  - failed: No available RAF Services.
        Error:No available RAF Services.
    ( Feb 3, 2014 9:43:31 PM ) Check if Repository data folder exists. successfully completed.
    ( Feb 3, 2014 9:43:31 PM )  - passed: Data file locations are valid.
    ( Feb 3, 2014 9:43:33 PM ) Check if Job Factory data folder exists. successfully completed.
    ( Feb 3, 2014 9:43:33 PM )  - passed: Data file locations are valid.
    ( Feb 3, 2014 9:43:34 PM ) Check if Service Broker data folder exists. successfully completed.
    ( Feb 3, 2014 9:43:34 PM )  - passed: Data file locations are valid.
    ( Feb 3, 2014 9:43:36 PM ) Check if Event Server data folder exists. successfully completed.
    ( Feb 3, 2014 9:43:36 PM )  - passed: Data file locations are valid.
    ( Feb 3, 2014 9:43:36 PM ) Check if every Agent is associated with some Agent Module(s). successfully completed.
    ( Feb 3, 2014 9:43:36 PM )  - passed: Every Agent is associated with some Agent Module(s).
    ( Feb 3, 2014 9:43:37 PM ) Check if every Reporting and Analysis Service is associated with some Agent Module. successfully completed.
    ( Feb 3, 2014 9:43:37 PM )  - passed: Every Reporting and Analysis Service is associated with some Agent Module.
    ( Feb 3, 2014 9:43:38 PM ) Check if every Agent Module is associated with some Agent. successfully completed.
    ( Feb 3, 2014 9:43:38 PM )  - passed: Every Agent Module is associated with some Agent.
    ( Feb 3, 2014 9:43:38 PM ) Check if every Agent Module (except IR Log) is associated with some Reporting and Analysis Service(s). successfully completed.
    ( Feb 3, 2014 9:43:38 PM )  - passed: Every Agent Module (except IR Log) is associated with some Reporting and Analysis Service(s).
    ( Feb 3, 2014 9:43:38 PM ) Check if Agent Modules and corresponding Agents belong to the same host. successfully completed.
    ( Feb 3, 2014 9:43:38 PM )  - passed: Agent Modules and corresponding Agents belong to the same host.
    ( Feb 3, 2014 9:43:42 PM ) Check if Reporting and Analysis Services and corresponding Agent Modules belong to the same host. successfully completed.
    ( Feb 3, 2014 9:43:42 PM )  - passed: Reporting and Analysis Services and corresponding Agent Modules belong to the same host.
    ( Feb 3, 2014 9:43:43 PM ) CSS Status Check failed.
    ( Feb 3, 2014 9:43:43 PM )  - failed: Validating that CSS has been initialized
        Error:java.net.ConnectException: Connection refused: connect
    ( Feb 3, 2014 9:43:44 PM ) CES Status Check failed.
    ( Feb 3, 2014 9:43:44 PM )  - failed: Validating that CES has been initialized
        Error:java.net.ConnectException: Connection refused: connect
    ( Feb 3, 2014 9:43:46 PM ) Audit Status Check failed.
    ( Feb 3, 2014 9:43:46 PM )  - failed: Validating that Audit has been initialized
        Error:java.net.ConnectException: Connection refused: connect
    ( Feb 3, 2014 9:43:47 PM ) LCM Status Check failed.
    ( Feb 3, 2014 9:43:47 PM )  - failed: Validating that LCM has been initialized
        Error:java.net.ConnectException: Connection refused: connect
    ( Feb 3, 2014 9:43:48 PM ) HUB Status Check failed.
    ( Feb 3, 2014 9:43:48 PM )  - failed: Validating that HUB has been initialized
        Error:java.net.ConnectException: Connection refused: connect
    ( Feb 3, 2014 9:43:50 PM ) Registry Status Check failed.
    ( Feb 3, 2014 9:43:50 PM )  - failed: Validating that Registry has been initialized
        Error:java.net.ConnectException: Connection refused: connect
    Zipping logs...

  • SharedServices and Workspace URL's are not working in EPM System 11.1.2.2

    Hello,
    SharedServices and Workspace URL's are not working in EPM System 11.1.2.2
    I have installed EPM system V11.1.2.2 in single server environment (MS 2008 Server R2) with following components:
    * Foundation Services
    * HFM
    * FDM
    Have used embedded Weblogic server as application web server and Oracle HTTP server as web server. The installation was successful.
    While configuration,
    1) I selected the option to deploy web applications SharedServices and Workspace to a single managed server. The applications got successfully deployed to EPMServer0.
    2) Also, I selected to configure Oracle HTTP server as web server.
    Both these steps were successful.
    But SharedServices and Workspace URL's are not working. Getting 404 error.
    SharedServices : http://inmum01hyp05.internal.vodafone.com:19000/interop/index.jsp
    Workspace : http://inmum01hyp05.internal.vodafone.com:19000/workspace/
    When I checked Weblogic admin console, EPMServer0 is in SHUTDOWN state, tried to start it but it goes in ADMIN state instead of RUNNING.
    Checked EPMServer0 log at "D:\Oracle\Middleware\user_projects\domains\EPMSystem\servers\EPMServer0\logs" and found the error given at the end of this message.
    Can anyone please suggest a solution for this.
    ####<Jun 6, 2013 11:43:20 AM IST> <Emergency> <Deployer> <INMUM01HYP05> <EPMServer0> <[ACTIVE] ExecuteThread: '0' for queue: 'weblogic.kernel.Default (self-tuning)'> <<WLS Kernel>> <> <0000JwO7UBi7e5V5u35EiX1Hg2Xf000000> <1370499200246> <BEA-149259> <Server 'EPMServer0' in cluster 'EPMServer' is being brought up in administration state due to failed deployments.>
    ####<Jun 6, 2013 11:43:20 AM IST> <Info> <WebService> <INMUM01HYP05> <EPMServer0> <[ACTIVE] ExecuteThread: '0' for queue: 'weblogic.kernel.Default (self-tuning)'> <<anonymous>> <> <0000JwO7UBi7e5V5u35EiX1Hg2Xf000000> <1370499200902> <BEA-220103> <Async web service support is not fully configured. The async response web service /AsyncResponseServiceHttps for this server was not fully deployed because the JMS reliability queue was not defined/deployed: weblogic.wsee.DefaultQueue. The server will periodically retry completing the deploy for the service. This message can usually be ignored unless there are async web service applications. To completely disable async web service support, thus avoiding this message, set -Dweblogic.wsee.skip.async.response=true.>
    ####<Jun 6, 2013 11:43:21 AM IST> <Info> <WebService> <INMUM01HYP05> <EPMServer0> <[ACTIVE] ExecuteThread: '0' for queue: 'weblogic.kernel.Default (self-tuning)'> <<anonymous>> <> <0000JwO7UBi7e5V5u35EiX1Hg2Xf000000> <1370499201090> <BEA-220103> <Async web service support is not fully configured. The async response web service /AsyncResponseServiceJms for this server was not fully deployed because the JMS reliability queue was not defined/deployed: weblogic.wsee.DefaultQueue. The server will periodically retry completing the deploy for the service. This message can usually be ignored unless there are async web service applications. To completely disable async web service support, thus avoiding this message, set -Dweblogic.wsee.skip.async.response=true.>
    ####<Jun 6, 2013 11:43:21 AM IST> <Info> <WebService> <INMUM01HYP05> <EPMServer0> <[ACTIVE] ExecuteThread: '0' for queue: 'weblogic.kernel.Default (self-tuning)'> <<anonymous>> <> <0000JwO7UBi7e5V5u35EiX1Hg2Xf000000> <1370499201090> <BEA-220103> <Async web service support is not fully configured. The async response web service /AsyncResponseService for this server was not fully deployed because the JMS reliability queue was not defined/deployed: weblogic.wsee.DefaultQueue. The server will periodically retry completing the deploy for the service. This message can usually be ignored unless there are async web service applications. To completely disable async web service support, thus avoiding this message, set -Dweblogic.wsee.skip.async.response=true.>
    ####<Jun 6, 2013 11:43:21 AM IST> <Info> <WebService> <INMUM01HYP05> <EPMServer0> <[ACTIVE] ExecuteThread: '0' for queue: 'weblogic.kernel.Default (self-tuning)'> <<anonymous>> <> <0000JwO7UBi7e5V5u35EiX1Hg2Xf000000> <1370499201106> <BEA-220103> <Async web service support is not fully configured. The async response web service /AsyncResponseServiceSoap12Jms for this server was not fully deployed because the JMS reliability queue was not defined/deployed: weblogic.wsee.DefaultQueue. The server will periodically retry completing the deploy for the service. This message can usually be ignored unless there are async web service applications. To completely disable async web service support, thus avoiding this message, set -Dweblogic.wsee.skip.async.response=true.>
    ####<Jun 6, 2013 11:43:21 AM IST> <Info> <WebService> <INMUM01HYP05> <EPMServer0> <[ACTIVE] ExecuteThread: '0' for queue: 'weblogic.kernel.Default (self-tuning)'> <<anonymous>> <> <0000JwO7UBi7e5V5u35EiX1Hg2Xf000000> <1370499201121> <BEA-220103> <Async web service support is not fully configured. The async response web service /AsyncResponseServiceSoap12 for this server was not fully deployed because the JMS reliability queue was not defined/deployed: weblogic.wsee.DefaultQueue. The server will periodically retry completing the deploy for the service. This message can usually be ignored unless there are async web service applications. To completely disable async web service support, thus avoiding this message, set -Dweblogic.wsee.skip.async.response=true.>
    ####<Jun 6, 2013 11:43:21 AM IST> <Info> <WebService> <INMUM01HYP05> <EPMServer0> <[ACTIVE] ExecuteThread: '0' for queue: 'weblogic.kernel.Default (self-tuning)'> <<anonymous>> <> <0000JwO7UBi7e5V5u35EiX1Hg2Xf000000> <1370499201121> <BEA-220103> <Async web service support is not fully configured. The async response web service /AsyncResponseServiceSoap12Https for this server was not fully deployed because the JMS reliability queue was not defined/deployed: weblogic.wsee.DefaultQueue. The server will periodically retry completing the deploy for the service. This message can usually be ignored unless there are async web service applications. To completely disable async web service support, thus avoiding this message, set -Dweblogic.wsee.skip.async.response=true.>
    ####<Jun 6, 2013 11:43:21 AM IST> <Info> <WebLogicServer> <INMUM01HYP05> <EPMServer0> <[ACTIVE] ExecuteThread: '0' for queue: 'weblogic.kernel.Default (self-tuning)'> <<WLS Kernel>> <> <0000JwO7UBi7e5V5u35EiX1Hg2Xf000000> <1370499201137> <BEA-000256> <Invoking weblogic.transaction.internal.StartupClass.main(null)>
    ####<Jun 6, 2013 11:43:21 AM IST> <Info> <Deployer> <INMUM01HYP05> <EPMServer0> <[ACTIVE] ExecuteThread: '0' for queue: 'weblogic.kernel.Default (self-tuning)'> <<WLS Kernel>> <> <0000JwO7UBi7e5V5u35EiX1Hg2Xf000000> <1370499201168> <BEA-149059> <Module dms.war of application DMS Application [Version=11.1.1.1.0] is transitioning from STATE_PREPARED to STATE_ADMIN on server EPMServer0.>
    ####<Jun 6, 2013 11:43:21 AM IST> <Info> <Deployer> <INMUM01HYP05> <EPMServer0> <[ACTIVE] ExecuteThread: '0' for queue: 'weblogic.kernel.Default (self-tuning)'> <<WLS Kernel>> <> <0000JwO7UBi7e5V5u35EiX1Hg2Xf000000> <1370499201168> <BEA-149060> <Module dms.war of application DMS Application [Version=11.1.1.1.0] successfully transitioned from STATE_PREPARED to STATE_ADMIN on server EPMServer0.>
    ####<Jun 6, 2013 11:43:22 AM IST> <Info> <Deployer> <INMUM01HYP05> <EPMServer0> <[ACTIVE] ExecuteThread: '0' for queue: 'weblogic.kernel.Default (self-tuning)'> <<WLS Kernel>> <> <0000JwO7UBi7e5V5u35EiX1Hg2Xf000000> <1370499202402> <BEA-149059> <Module /inspection.wsil of application wsil-wls is transitioning from STATE_PREPARED to STATE_ADMIN on server EPMServer0.>
    ####<Jun 6, 2013 11:43:22 AM IST> <Info> <Deployer> <INMUM01HYP05> <EPMServer0> <[ACTIVE] ExecuteThread: '0' for queue: 'weblogic.kernel.Default (self-tuning)'> <<WLS Kernel>> <> <0000JwO7UBi7e5V5u35EiX1Hg2Xf000000> <1370499202402> <BEA-149060> <Module /inspection.wsil of application wsil-wls successfully transitioned from STATE_PREPARED to STATE_ADMIN on server EPMServer0.>
    ####<Jun 6, 2013 11:44:13 AM IST> <Info> <Diagnostics> <INMUM01HYP05> <EPMServer0> <[STANDBY] ExecuteThread: '3' for queue: 'weblogic.kernel.Default (self-tuning)'> <<WLS Kernel>> <> <> <1370499253433> <BEA-320000> <The Diagnostics subsystem is initializing on Server EPMServer0.>
    Thanks in advance.
    Tej

    Hi John,
    today's update:
    * Uninstalled EPM system V11.1.2.2 completely and after rebooting the server installed EPM system V11.1.2.2 again.
    * During configuration, deployed SharedServices and Workspace to single managed server EPMServer0 on Weblogic server and configured to Oracle HTTP server as web server. Configuration seems successful.
    * Started EPM system.
    * checked Weblogic admin console - EPMServer0 goes into ADMIN state from STARTING.
    * Checked EPMServer0 logs at "D:\Oracle\Middleware\user_projects\domains\EPMSystem\servers\EPMServer0\logs" and found the error given below:
    ####<Jun 7, 2013 2:12:14 PM IST> <Error> <Deployer> <INMUM01HYP05> <EPMServer0> <[STANDBY] ExecuteThread: '0' for queue: 'weblogic.kernel.Default (self-tuning)'> <<WLS Kernel>> <> <0000JwTnBZV7e5V5u35EiX1HgPn0000001> <1370594534718> <BEA-149205> <*Failed to initialize the application 'SHAREDSERVICES [Version=11.1.2.0]' due to error weblogic.management.DeploymentException: [J2EE:160149]Error while processing library references. Unresolved application library references, defined in weblogic-application.xml: [Extension-Name: epm-hss-libraries, exact-match: false]..*
    weblogic.management.DeploymentException: [J2EE:160149]Error while processing library references. Unresolved application library references, defined in weblogic-application.xml: [Extension-Name: epm-hss-libraries, exact-match: false].
         at weblogic.application.internal.flow.CheckLibraryReferenceFlow.prepare(CheckLibraryReferenceFlow.java:26)
         at weblogic.application.internal.BaseDeployment$1.next(BaseDeployment.java:648)
         at weblogic.application.utils.StateMachineDriver.nextState(StateMachineDriver.java:52)
         at weblogic.application.internal.BaseDeployment.prepare(BaseDeployment.java:191)
         at weblogic.application.internal.EarDeployment.prepare(EarDeployment.java:59)
         at weblogic.application.internal.DeploymentStateChecker.prepare(DeploymentStateChecker.java:154)
         at weblogic.deploy.internal.targetserver.AppContainerInvoker.prepare(AppContainerInvoker.java:60)
         at weblogic.deploy.internal.targetserver.AppDeployment.prepare(AppDeployment.java:144)
         at weblogic.management.deploy.internal.DeploymentAdapter$1.doPrepare(DeploymentAdapter.java:40)
         at weblogic.management.deploy.internal.DeploymentAdapter.prepare(DeploymentAdapter.java:191)
         at weblogic.management.deploy.internal.AppTransition$1.transitionApp(AppTransition.java:22)
         at weblogic.management.deploy.internal.ConfiguredDeployments.transitionApps(ConfiguredDeployments.java:240)
         at weblogic.management.deploy.internal.ConfiguredDeployments.prepare(ConfiguredDeployments.java:166)
         at weblogic.management.deploy.internal.ConfiguredDeployments.deploy(ConfiguredDeployments.java:122)
         at weblogic.management.deploy.internal.DeploymentServerService.resume(DeploymentServerService.java:181)
         at weblogic.management.deploy.internal.DeploymentServerService.start(DeploymentServerService.java:97)
         at weblogic.t3.srvr.SubsystemRequest.run(SubsystemRequest.java:64)
         at weblogic.work.SelfTuningWorkManagerImpl$WorkAdapterImpl.run(SelfTuningWorkManagerImpl.java:545)
         at weblogic.work.ExecuteThread.execute(ExecuteThread.java:256)
         at weblogic.work.ExecuteThread.run(ExecuteThread.java:221)
    >
    ####<Jun 7, 2013 2:12:15 PM IST> <Warning> <J2EE> <INMUM01HYP05> <EPMServer0> <[STANDBY] ExecuteThread: '0' for queue: 'weblogic.kernel.Default (self-tuning)'> <<WLS Kernel>> <> <0000JwTnBZV7e5V5u35EiX1HgPn0000001> <1370594535124> <BEA-160140> <Unresolved optional package references (in META-INF/MANIFEST.MF): [Extension-Name: epm-bpmui-libraries, referenced from: D:\Oracle\Middleware\user_projects\domains\EPMSystem\servers\EPMServer0\tmp\servers\EPMServer0\tmp\_WL_user\WORKSPACE_11.1.2.0\riys07]. Make sure the referenced optional package has been deployed as a library.>
    ####<Jun 7, 2013 2:12:15 PM IST> <Error> <Deployer> <INMUM01HYP05> <EPMServer0> <[STANDBY] ExecuteThread: '0' for queue: 'weblogic.kernel.Default (self-tuning)'> <<WLS Kernel>> <> <0000JwTnBZV7e5V5u35EiX1HgPn0000001> <1370594535186> <BEA-149205> *<Failed to initialize the application 'WORKSPACE [Version=11.1.2.0]' due to error weblogic.management.DeploymentException: [J2EE:160149]Error while processing library references. Unresolved application library references, defined in weblogic-application.xml: [Extension-Name: oracle.applcore.model, exact-match: false], [Extension-Name: xerces, exact-match: false]..*
    weblogic.management.DeploymentException: [J2EE:160149]Error while processing library references. Unresolved application library references, defined in weblogic-application.xml: [Extension-Name: oracle.applcore.model, exact-match: false], [Extension-Name: xerces, exact-match: false].
         at weblogic.application.internal.flow.CheckLibraryReferenceFlow.prepare(CheckLibraryReferenceFlow.java:26)
         at weblogic.application.internal.BaseDeployment$1.next(BaseDeployment.java:648)
         at weblogic.application.utils.StateMachineDriver.nextState(StateMachineDriver.java:52)
         at weblogic.application.internal.BaseDeployment.prepare(BaseDeployment.java:191)
         at weblogic.application.internal.EarDeployment.prepare(EarDeployment.java:59)
         at weblogic.application.internal.DeploymentStateChecker.prepare(DeploymentStateChecker.java:154)
         at weblogic.deploy.internal.targetserver.AppContainerInvoker.prepare(AppContainerInvoker.java:60)
         at weblogic.deploy.internal.targetserver.AppDeployment.prepare(AppDeployment.java:144)
         at weblogic.management.deploy.internal.DeploymentAdapter$1.doPrepare(DeploymentAdapter.java:40)
         at weblogic.management.deploy.internal.DeploymentAdapter.prepare(DeploymentAdapter.java:191)
         at weblogic.management.deploy.internal.AppTransition$1.transitionApp(AppTransition.java:22)
         at weblogic.management.deploy.internal.ConfiguredDeployments.transitionApps(ConfiguredDeployments.java:240)
         at weblogic.management.deploy.internal.ConfiguredDeployments.prepare(ConfiguredDeployments.java:166)
         at weblogic.management.deploy.internal.ConfiguredDeployments.deploy(ConfiguredDeployments.java:122)
         at weblogic.management.deploy.internal.DeploymentServerService.resume(DeploymentServerService.java:181)
         at weblogic.management.deploy.internal.DeploymentServerService.start(DeploymentServerService.java:97)
         at weblogic.t3.srvr.SubsystemRequest.run(SubsystemRequest.java:64)
         at weblogic.work.SelfTuningWorkManagerImpl$WorkAdapterImpl.run(SelfTuningWorkManagerImpl.java:545)
         at weblogic.work.ExecuteThread.execute(ExecuteThread.java:256)
         at weblogic.work.ExecuteThread.run(ExecuteThread.java:221)
    >
    Can you please suggest how to overcome this error of Weblogic?
    Thanks in advance,
    Tej

  • Not Able to Access the Properties of Workspace and Target

    Hello
    I have install PB 11.2 Build 9027 on my laptop ( Winows 7 (64 bit))). PowerBuilde is open and able to see the existing code.
    But when I am trying to access the properties of Workspace or target for Source code control Setup, Properties will not come and nothing happen, I am not able to view the properties of Workspace and targets.
    One more think I notice ,when I was trying to create new application (File > New > Target Tab > Application)  then window will not open.
    Please provide me some suggestion on this issue.
    Thanks
    Amit Maheshwari

    Hi,
    You might find a much larger audience for technical questions if you open a discussion at the PowerBuilder Developer Center
    PowerBuilder Developer Center
    Thanks,
    Ben

  • HFM and Workspace 11.1.2.0 issues with opening Apps and reports via web

    Hi,
    we are running decentralized environment where we have HFM Web and App servers on Windows 2008 Server SP2 and few shared elements like OHS, HSS (Shared Services) and Workspace service from Solaris 10 SPARC (64bit) server.
    The base version is 11.1.2.0 and on Windows we have fixes from 1-9 installed whereas on top of Solaris we have no fixes/patches yet installed.
    When we test workspace from web server desktop connecting to Solaris server it seems traffic is fine as Apps are available and browsing them seems to work normally = Webserver is able to locate Workspace on Solaris, Workspace is able to connect to HFM App server and App server again able to connect HFM App db container.
    When we access to workspace url over web (the traffic according to my understanding should go via OHS to Webserver and then redirect to Solaris server Workspace and then like mentioned above.
    Something gets wrong here as when accessing Workspace url we get non-showing icons, $ characters in messed up menu rows and few error messages like :
    - Invalid or could not find module configuration
    - Required application module hfm.appcontainer is not configured. Please contact your administrator
    - Namespace Communication Error
    Also opening test report via web url workspace gives error:
    Required application module reporting.reportViewer is not configured. Please contact your administrator.
    +
    Namespace Communication Error
    Our experience from previous lower environment was that symptons like described might be caused by wrong service start order. Thus we tried to review this carefully and boot in correct order, but still problems. Also, boot order shouldn't be totally wrong as workspace works when using directly from Web server.
    If any of mentioned symptons rings anyone's bell please reply.
    Something still in firewalls or rather in configuration, OHS maybe?
    At this point we don't yet dream of proper loadbalancing or High availability, but rather get this single web and single app server server + shared elements from Solaris server to work without error messages.
    We do know that release 11.1.2.1 is supposed to fix many things, but we need to get this 11.1.2.0 working in a way or another.
    Thanks for any tips that might arise.
    Br, MK
    Edited by: user9327521 on Nov 30, 2010 4:55 AM

    Were u able to ever resolve this? And how?
    Thanks,
    Sejal

  • Shared services and workspace login error in epm 11.1.2.3

    Hello,
    When click on the url of shared services and workspace for epm 11.1.2.3
    showing the below error as soon.
    "Internet explorer can not display the webpage error"
    Tried with all supported browsers
    Please suggest all possibles solutions..
    Thanks

    Have you check the logs to make sure all the web apps are up and running and no errors are being generated.
    Cheers
    John
    http://john-goodwin.blogspot.com/

  • How to install eclipse and MyEclipse and use it for jsp-servlet-web service

    hi ,
    please help me to install eclipse 3.1 and How to integrate MyEclipse to do jsp-servlet programming and web services.
    please also help me to include application server like tomcat and axis and use that environment in MyEclipse ide.
    please help me.....

    At the time of installation , you can't change SID XE.
    After installation, you can add another service name
    Check following thread for more details
    Re: How to create service on Oracle 10g XE
    - Virag Sharma
    http://virag.sharma.googlepages.com
    http://viragsharma.blogspot.com

  • Hi frnds i want to help in servlet,java bean and JSP

    hi friends i'm right now in M.SC(IT) and i want to do project in SERVLET,,JAVA BEANS and JSP ,
    so pls give me a title about that
    NOTE: I develop a project in group(2 persons there)
    my email id is : [email protected] , [email protected] , [email protected]

    You cannot pair your iPod to a cell phone, so forget about it.
    The only way you can get free WiFi is to hang out at a Denny's, a Starbucks, or a truck stop, and I don't think your parents would approve....

  • How do I change the pointer and workspace size in InDesign?

    I installed the new 2014 version of InDesign and now my workspace and pointer are huge but the document is normal size.  See pics that show difference from previous version to new.  It is kind of hard to see the difference in these pics, but there is a huge difference and very annoying because the workspace is taking up so much of my screen and giving me less area to work in... 

    Change the font size in the O/S to 124% or less

  • Group and workspace Participant report

    I've a large beehive group for a customer with many participants and workspaces. I need to generate a report for all participants in the group with details of what access they have to each workspace. Is there any easy way to do this?
    Thanks

    Hi,
    Go to https://beehiveonline.oracle.com/BOLAdmin.html - navigate to the "My Managed Workspaces" > click on the Workspace and there is a grey button which will generate a Workspace membership report.
    Phil

  • Group and Workspace are detached

    Hi there,
    I created a group "LMS-EMEA-JPE-DE" at that time the policy did not add automatically the ending Workspace to each auto-created workspace to a group.
    How can we get all current and future users for the Workspace and Group in sync. We also would like to manage all users from the Admin Console for one Workspace and Group. Meaning if I create from APEX a new user, thus should be linked automatically to the content of the Workspace "LMS-EMEA-JPE-DE", but we no longer would like to have the Workspace "LMS-EMEA-JPE-DE_Workspace" as it does not contain any Wiki and other content.
    Would be a solution to just de-activate the feature: "Default Workspace Required" in APEX ? That way, the users get added to the group "LMS-EMEA-JPE-DE" and access to the Workspace "LMS-EMEA-JPE-DE". But not the Workspace "LMS-EMEA-JPE-DE_Workspace".

    Daniel,
    The system allows you to switch off the linkage between the group and the Workspace - in your case the system will associate the "LMS-EMEA-JPE-DE_Workspace" with the group "LMS-EMEA-JPE-DE" because you have selected to have a default Workspace Required.
    If you uncheck this flag the relationshiop will be broken and you will have to manage the associateion by hand for each individual or add the group as a member of the new Workspace you want to use.
    Once you have removed the need for the "LMS-EMEA-JPE-DE_Workspace" you can delete it and it will not then reappear.
    I will send you a document explaining this in more detail.
    Phil

  • OC4J not running after creating workspace and projects.

    Created one workspace and added six projects. Added PostGes jar to library manager. Before doing this, the OC4J would run a test application successfully. After creating the workspace and project, I created another simple workspace with two JSP, on linked to the other. When trying to run this project get the following:
    Apr 17, 2008 10:51:53 AM com.evermind.server.jms.JMSMessages log
    INFO: JMSServer[]: OC4J JMS server recovering transactions (commit 0) (rollback 0) (prepared 0).
    Apr 17, 2008 10:51:53 AM com.evermind.server.jms.JMSMessages log
    INFO: JMSServer[]: OC4J JMS server recovering local transactions Queue[jms/Oc4jJmsExceptionQueue].
    Apr 17, 2008 10:51:55 AM oracle.j2ee.util.LoggingUtils logAndReturnMessage
    WARNING: Exception creating connection pool. Exception: oracle.oc4j.sql.config.DataSourceConfigException: Unable to create : org.postgresql.Driver
    08/04/17 10:51:55 SEVERE: ApplicationStateRunning.initConnector Error occurred initializing connectors. Exception is: Exception creating connection pool. Exception: oracle.oc4j.sql.config.DataSourceConfigException: Unable to create : org.postgresql.Driver
    08/04/17 10:51:55 SEVERE: ApplicationStateRunning.initConnector Stack trace: oracle.oc4j.sql.DataSourceException: Exception creating connection pool. Exception: oracle.oc4j.sql.config.DataSourceConfigException: Unable to create : org.postgresql.Driver
         at com.evermind.server.ApplicationStateRunning.initDataSourceConnectionPool(ApplicationStateRunning.java:2072)
         at com.evermind.server.ApplicationStateRunning.initDataSourceConnector(ApplicationStateRunning.java:2017)
         at com.evermind.server.ApplicationStateRunning.initConnector(ApplicationStateRunning.java:1272)
         at com.evermind.server.ApplicationStateRunning.initConnectors(ApplicationStateRunning.java:345)
         at com.evermind.server.ApplicationStateRunning.initializeApplication(ApplicationStateRunning.java:206)
         at com.evermind.server.Application.setConfig(Application.java:438)
         at com.evermind.server.Application.setConfig(Application.java:339)
         at com.evermind.server.ApplicationServer.addApplication(ApplicationServer.java:1895)
         at com.evermind.server.ApplicationServer.initializeDeployedApplications(ApplicationServer.java:1651)
         at com.evermind.server.ApplicationServer.setConfig(ApplicationServer.java:1034)
         at com.evermind.server.ApplicationServerLauncher.run(ApplicationServerLauncher.java:131)
         at java.lang.Thread.run(Thread.java:595)
    Caused by: javax.resource.ResourceException: oracle.oc4j.sql.config.DataSourceConfigException: Unable to create : org.postgresql.Driver
         at oracle.oc4j.sql.spi.ResourceAdapterImpl.createDataSourceConnectionPool(ResourceAdapterImpl.java:106)
         at oracle.oc4j.sql.DataSourceUtils.getDataSourceConnectionPool(DataSourceUtils.java:330)
         at com.evermind.server.ApplicationStateRunning.initDataSourceConnectionPool(ApplicationStateRunning.java:2053)
         ... 11 more
    Caused by: oracle.oc4j.sql.config.DataSourceConfigException: Unable to create : org.postgresql.Driver
         at oracle.oc4j.sql.config.DataSourceConfigUtils.createConnectionFactory(DataSourceConfigUtils.java:283)
         at oracle.oc4j.sql.DataSourceConnectionPoolImpl.<init>(DataSourceConnectionPoolImpl.java:108)
         at oracle.oc4j.sql.spi.ResourceAdapterImpl.createDataSourceConnectionPool(ResourceAdapterImpl.java:99)
         ... 13 more
    Caused by: oracle.classloader.util.AnnotatedClassNotFoundException:
         Missing class: org.postgresql.Driver
         Dependent class: oracle.oc4j.sql.config.DataSourceConfigUtils
         Loader: oc4j:10.1.3
         Code-Source: /C:/Jdeveloper10/j2ee/home/lib/oc4j-internal.jar
         Configuration: <code-source> in META-INF/boot.xml in C:\Jdeveloper10\j2ee\home\oc4j.jar
    Remove the posgres jar from the library manager and still not able to run simple two page applications.
    All the projects in the other workspace compile fine. The prolblem is that now I am not able to use the internal OC4J. I remove the workspace with the five projects, and the JARs and the two page app will not run.
    The OC4J is running when launched from the IDE, ti just can find the pages.
    New install of JDEV and the two page app will run fine. Add two user two user libraries and the app will not run.
    Thank you,
    Ben Carter

    Do you have a database connection to postgress defined in JDeveloper?
    JDev might be picking this up and trying to add a datasource for it to the embedded OC4J - so try removing it, or alternatively add the postgress JDBC driver jar files to the libraries node under tools->embedded OC4J preferences.

Maybe you are looking for