Extensions Log complais about missing jars

Hello!
Extensions Log complains about missing jars
Where can I find these jars?
How to solve these problems?
oracle.bpm.bpa
Warning: Classpath entry C:\Oracle\Middleware\JDev\pcbpel\fabric\lib\orawsdl.jar not found.
oracle.bpm.bpm-services.client
Warning: Classpath entry C:\Oracle\Middleware\JDev\pcbpel\lib\j2ee\orasaaj.jar not found.
Warning: Classpath entry C:\Oracle\Middleware\JDev\pcbpel\generated\jrf\orasaaj-rt.jar not found.
Warning: Classpath entry C:\Oracle\Middleware\JDev\pcbpel\generated\jrf\wsclient.jar not found.
Warning: Classpath entry C:\Oracle\Middleware\JDev\pcbpel\generated\jrf\wsclient-rt.jar not found.
oracle.bpm.casemanagement.implementation
Warning: Classpath entry C:\Oracle\Middleware\JDev\pcbpel\lib\j2ee\javax.persistence_1.0.0.0_1-0-2.jar not found.
Warning: Classpath entry C:\Oracle\Middleware\JDev\pcbpel\fabric\lib\orawsdl.jar not found.
oracle.bpm.compiler
Warning: Classpath entry C:\Oracle\Middleware\JDev\jdeveloper\jdev\extensions\oracle.bpm.compiler.jar!\ade_autofs\nfsdo_base\JDK6\MAIN\LINUX\110210.1.6.0.24.B50\jdk6\lib\tools.jar not found.
oracle.bpm.fusion.jdeveloper
Warning: Classpath entry C:\Oracle\Middleware\JDev\jdeveloper\soa\modules\oracle.bpm.activityguide-ui_11.1.1.jar not found.
oracle.bpm.pml.service
Warning: Classpath entry C:\Oracle\Middleware\JDev\pcbpel\fabric\lib\soa-infra-mgmt.jar not found.
oracle.bpm.project.catalog
Warning: Classpath entry C:\Oracle\Middleware\JDev\jdeveloper\jdev\lib\adfm.jar not found.
Warning: Classpath entry C:\Oracle\Middleware\JDev\jdeveloper\jdev\lib\ojdbc6dms.jar not found.
Warning: Classpath entry C:\Oracle\Middleware\JDev\pcbpel\generated\jrf\dms.jar not found.
Warning: Classpath entry C:\Oracle\Middleware\JDev\jdeveloper\lib\ojdl.jar not found.

maybe I failed in my explanation..
Versions:
ADF Business Components     11.1.1.60.13
BPMN Editor     11.1.1.5.0.0174
Java(TM) Platform     1.6.0_24
Oracle IDE     11.1.1.5.37.60.13
SOA Composite Editor     11.1.1.5.0.01.74
Versioning Support     11.1.1.5.37.60.13
I have Oracle BPM Studio 11g and Oracle SOA Composite Editor
I've looked for new updates that might resolve this but nothing ..

Similar Messages

  • CFGrid with Java 7u45 warnings about missing JAR manifest Permissions attribute

    Recent updates to CFGrid are now signed Java applets that no longer expire, however Oracle has updated the security model for Java again.  The recent Java 7 update 45 now displays this warning dialog, indicating that future Java 7 updates (Java 7u51 Jan 14 2014) will not allow the application to run:
    Does this need to be fixed by Adobe, since I assume end users cannot fix the applet with the information in the links provided by Oracle
    Enhancing Security with Manifest Attributes
    Modifying a Manifest File
    If Adobe doesn't update the CFGrid applet, does anyone know if the new Java 7u40 deployment rule set feature can be used to avoid this warning?

    This issue affects CF 9 and 10.  Adobe is working on it.  You might want to follow this forum thread for more information: https://forums.adobe.com/message/6761720#6761720
    -Carl V.

  • Something special about charsets.jar

    Hi Folks,
    My application communicates with DB's which typically are either cp850 or cp437 and the JDBC driver relies on the conversion stuff in the sun.io package that is in the charsets.jar file. Now as long as charsets.jar is in the jre/lib directory, life is good.
    But, many of my clients don't have charsets.jar even though they're running recent JRE versions (1.4 and above)--basically, they got the JRE through another 3rd party custom install and it didn't include charsets.jar.
    So, I thought, no biggy, I'll just set up my application's JNLP file to send along a properly signed copy of charsets.jar. Well, the JRE (or at least the JDBC driver) can't find the classes in the JAR file when they're delivered by JWS. The JDBC driver complains that it can't convert the DB codepage data to Unicode. If I then copy the charsets.jar file to the jre/lib directory, it immediately works.
    Is there something special about charsets.jar (or is the class loading in the JDBC driver probably just screwed up)?
    Thanks for any insights,
    John

    If code loaded by the system class loader, trys to access charsets.jar, it won't find it.. (it will be using the System Class Loader instead of the COntext Class Loader to look for it).
    You could just add an extension installer that copied the jar into the jre/lib directory, but most of the time, if you are missing charsets.jar, you are allso missing localedata.jar from the lib/ext directory.
    This is the case if you have an "english only" version of the jre (up to 1.4.1) or a "western languages" version of the jre (in 1.4.2 or later).
    In most cases the user can go to the add/remove programs dialog and modify the jre to include the components to make it fully localizable to non-western locales.
    /Dietz

  • Java 7u45 gives spurious warning about missing Permissions attribute

    The security dialog in 7u45 gives a yellow warning about missing Permissions attribute.   Does anyone know how to get rid of it?
    Same as the yellow box in the screenshots (#2 and #3) documented here (although none of them discuss the Permissions attribute) :
    What should I do when I see a security prompt from Java?
    The MANIFEST.MF file for the app definitely contains this attribute.  There's only one jar for the application, and it's signed.
    Might this be another security dialog bug?  Or am I missing something?  The JNLP contains the same "all-permissions" security tag.
    I also found the release notes for 7u45 mention a couple of cases where the dialog might still appear
    (see last issue: Java™ SE Development Kit 7 Update 45 Release Notes)
    I don't use the JNLPDownloadServlet but my own. I didn't model it on the JNLPDownloadServlet, but guess I could have partly the same issue since I use versioning.
    My jar doesn't fail to download though, it's just that its displaying this warning.
    MANIFEST.MF:
    Manifest-Version: 1.0
    Implementation-Title: My app
    Implementation-Version: 3.0-SNAPSHOT
    Built-By: me
    Application-Name: Myapp
    Created-By: Apache Maven 3.0.5
    Ant-Version: Apache Ant 1.8.2
    Trusted-Library: true
    Implementation-Vendor-Id: org.me
    Trusted-Only: true
    Build-Jdk: 1.7.0_45
    Permissions: all-permissions
    Specification-Title: my-client
    Specification-Version: 3.0-SNAPSHOT
    Archiver-Version: Plexus Archiver
    Codebase: *.me.org

    I went the Java version detection applet and I don't get a warning about the applet being blocked in the future.
    https://java.com/en/download/installed.jsp
    https://java.com/en/download/installed.jsp
    I dug the jar for the applet out of my Java cache and it contains Manifest.MF with the following contents:
    Manifest-Version: 1.0
    Codebase: www.java.com java.com
    Created-By: 1.7.0_25 (Oracle Corporation)
    Permissions: all-permissions
    Application-Library-Allowable-Codebase: www.java.com java.com
    Application-Name: Java Detection
    Name: JNLP-INF/APPLICATION.JNLP
    SHA1-Digest: jPquHTBq5R8txQLe5/T20x70Y7w=
    Name: JavaDetection.class
    SHA1-Digest: kQNVjPC5Yym1DszdpX1D2EH8Ll0=
    The jar contains one Java class and a signed JNLP-INF/APPLICATION.JNLP file that looks like this:
    <?xml version="1.0" encoding="UTF-8"?>
    <jnlp codebase="https://java.com/en/download/" href="JavaDetection_applet.jnlp" spec="1.0+">
        <information>
            <title>Java Detection</title>
            <vendor>Oracle Inc.</vendor>
        </information>
        <resources>
            <!-- Application Resources -->
      <j2se version="1.6+"/>
            <jar href="JavaDetection.jar" />
        </resources>
    <security>
      <all-permissions />
    </security>
        <applet-desc
             name="Java Detection Applet"
             main-class="JavaDetection"
             width="1"
             height="1">
         </applet-desc>
         <update check="background"/>
    </jnlp>
    They are running applet via JNLP:
    <applet code="JavaDetection.class" width="500" height="150"><param name="image" value="/im/download/verify_anim.gif"/><param name="centerimage" value="true"/><param name="boxborder" value="false"/><param name="jnlp_href" value="JavaDetection_applet.jnlp"/></applet>
    The JNLP file downloaded from here: https://java.com/en/download/JavaDetection_applet.jnlp matches the signed JNLP file in the jar (except for name).
    We are still working on getting our applications to not show the warning message but this appears to be an example of where the "you will be blocked in the future" message is not happening. We don't run our applications as applets so if anyone can find another working example that is a more traditional JNLP app, please post a link.

  • How do I retrieve call history from my iPhone 4S? It only seems to log for about a month and I need an earlier date?

    How do I retrieve call history from my iPhone 4S? It only seems to log for about a month and I need an earlier date?

    If you have backup of your files, you can get your call history back as long as you sync iPhone with iTunes frequently.
    OK, the first thing you are required to do is close the function of "prevent iPhone from syncing automatically." in iTunes, avoiding to sync iPhone again.
    Now, connect your iPhone to pc and open iTunes.
    iTunes> preferences> devices
    All the backup data in iTunes will be displayed.
    Then,click the File menu and select Devices > Restore from Back up
    your iPhone will restart and you can find them back.
    This method only can find back the latest history, to get back the old, you should turn to a third party program for help.

  • Question about Missing Timecard Report

    Hi,
    I have a question about Missing Timecard Report. As I aware when we run it it will only pull employee who has Timecard required = 'Yes' in the GRE of assignment.
    I just run it and it pull all employee regardless they have Timecard required = 'Yes' set or not.

    Rao , Thanks for your reply.
    After I Changed locale to chinese in Linux, I can not seen chinese in Oracle Enterprise manager. So, I think my lunux box can not support Chinese .
    When I run my report on windows2000 (Chinese version) application server, I can not see chinese character. But after I edit the uifont.ali and copy ARIALUNI.TTF to $reports_path, I can see chinese character.
    Do you get my means?
    Any question, Contact me.
    Thank you very much !

  • Can't open iphoto in airbook. Asking to upgrade then says must rebuild library then warning about missing files. When click rebuild all I get is continued- waiting for iphoto library- and, never rebuilds

    can't open iphoto in airbook. Asking to upgrade then says must rebuild library then warning about missing files. When click rebuild all I get is continued- waiting for iphoto library- and, never rebuilds

    -1.The photo library needs to be upgraded to work with this version of iPhoto.
    Your photo library will not be readable by previous versions of iPhoto after the upgrade. The upgrade process for very large libraries may take an hour or more to complete.
    2. iPhoto is unable to open this library.
    The library has issues that require rebuilding to correct
    3. Warning
    Would you like to rebuild the library "iPhoto Library"? 
    The library "iPhoto Library" is missing required database files and must be rebuilt before it can be opened.
    4. Waiting for iPhoto library
    iPhoto will open as soon as the iPhoto library is available
    Time Machine might be backing it up

  • XMAU 3.0 project export from NWDS missing jar-s???

    Hi experts.
    I would like to modify a standard xMAU3.0 source code. I installed MI sp 21, NWDS + MDK plug-in.
    I imported the xmau 3.0 war file which contain the original source code.
    I can't export the new code, because of there are some missing jar file. I found some in MI directory. (mbscore.jar ;datetimepicker.jar  etc.), but I could not find the mpa.jar. This jar contains the com.sap.mbs.push.... packages
    I cannot rebuild the project and create a new war file without this jar.
    Where can i find this file. Or what would be the problem?
    thanks a lot

    Solved.
    The mau_eclipse.war contain the missing jar file.

  • How to stop from asking about Missing Clips?

    Whenever I start Premiere Elements 8, it asks me to locate some missing clips (I deleted them from my machine as I no longer need them).
    If I choose "skip all", it proceeds into Premiere, but the next time I start up, it asks me again!
    How do I stop Premiere from asking me about missing clips?

    ATR,
    You are 100% correct. From the OP, it was my understanding that these files were not going to be used in this Project. If they really are, then they need to be retrieved (from backup, hopefully), or by re-Capture, as they have been deleted from the HDD.
    Your methods should help in the future, if such media files are really still required. Some do not understand that the Project file is NOT a repository for media - it is only an XML database of links and instructions. This ARTICLE goes into more details on that.
    If I am incorrect on these deleted files still being required, I do hope that copies of them exist elsewhere, or that a recovery program, like Stellar-Phoenix, can be run, before the HDD space gets overwritten. I hope that I am correct.
    Thanks for the warnings and for the instructions on how to handle things, in the event that the files ARE still needed in the Project.
    In my exampe above, one can see the Video usage column. In the OP's case, these should be empty, i.e. no numbers present. If they have ANY numbers besides them, they should also appear as Off-Line, and then the OP needs to get those back and in a hurry.
    Here's a look at that Video Usage Column:
    Good luck to the OP and please let us know exactly what the state of these files is, regarding your Project.
    Hunt

  • Logging configuration is missing or invalid for target

    Hi,
    I am getting this error while starting the SOA Server
    HTTP to server: '[2001:0:cf2e:3096:30be:1076:3f57:fefc]', port: '7001'
    at weblogic.net.http.HttpClient.openServer(HttpClient.java:314)
    at weblogic.net.http.HttpClient.openServer(HttpClient.java:404)
    at weblogic.net.http.HttpClient.New(HttpClient.java:240)
    at weblogic.net.http.HttpURLConnection.connect(HttpURLConnection.java:17
    2)
    at weblogic.deploy.service.datatransferhandlers.HttpDataTransferHandler.
    getDataAsStream(HttpDataTransferHandler.java:75)
    Truncated. see log file for complete stacktrace
    >
    java.net.ConnectException: Tried all: '1' addresses, but could not connect over
    HTTP to server: '[2001:0:cf2e:3096:30be:1076:3f57:fefc]', port: '7001'
    at weblogic.net.http.HttpClient.openServer(HttpClient.java:314)
    at weblogic.net.http.HttpClient.openServer(HttpClient.java:404)
    at weblogic.net.http.HttpClient.New(HttpClient.java:240)
    at weblogic.net.http.HttpURLConnection.connect(HttpURLConnection.java:17
    2)
    at weblogic.deploy.service.datatransferhandlers.HttpDataTransferHandler.
    getDataAsStream(HttpDataTransferHandler.java:75)
    at weblogic.deploy.service.datatransferhandlers.DataHandlerManager$Remot
    eDataTransferHandler.getDataAsStream(DataHandlerManager.java:153)
    at weblogic.deploy.internal.targetserver.datamanagement.AppDataUpdate.do
    Download(AppDataUpdate.java:39)
    at weblogic.deploy.internal.targetserver.datamanagement.DataUpdate.downl
    oad(DataUpdate.java:56)
    at weblogic.deploy.internal.targetserver.datamanagement.Data.prepareData
    Update(Data.java:97)
    at weblogic.deploy.internal.targetserver.BasicDeployment.prepareDataUpda
    te(BasicDeployment.java:682)
    at weblogic.deploy.internal.targetserver.BasicDeployment.stageFilesForSt
    atic(BasicDeployment.java:725)
    at weblogic.deploy.internal.targetserver.AppDeployment.prepare(AppDeploy
    ment.java:104)
    at weblogic.management.deploy.internal.DeploymentAdapter$1.doPrepare(Dep
    loymentAdapter.java:39)
    at weblogic.management.deploy.internal.DeploymentAdapter.prepare(Deploym
    entAdapter.java:187)
    at weblogic.management.deploy.internal.AppTransition$1.transitionApp(App
    Transition.java:21)
    at weblogic.management.deploy.internal.ConfiguredDeployments.transitionA
    pps(ConfiguredDeployments.java:233)
    at weblogic.management.deploy.internal.ConfiguredDeployments.prepare(Con
    figuredDeployments.java:165)
    at weblogic.management.deploy.internal.ConfiguredDeployments.deploy(Conf
    iguredDeployments.java:122)
    at weblogic.management.deploy.internal.DeploymentServerService.resume(De
    ploymentServerService.java:173)
    at weblogic.management.deploy.internal.DeploymentServerService.start(Dep
    loymentServerService.java:89)
    at weblogic.t3.srvr.SubsystemRequest.run(SubsystemRequest.java:64)
    at weblogic.work.ExecuteThread.execute(ExecuteThread.java:201)
    at weblogic.work.ExecuteThread.run(ExecuteThread.java:173)
    <Aug 27, 2009 12:15:16 PM IST> <Error> <Deployer> <BEA-149205> <Failed to initia
    lize the application 'usermessagingdriver-email' due to error weblogic.managemen
    t.DeploymentException: Exception occured while downloading files.
    weblogic.management.DeploymentException: Exception occured while downloading fil
    es
    at weblogic.deploy.internal.targetserver.datamanagement.AppDataUpdate.do
    Download(AppDataUpdate.java:43)
    at weblogic.deploy.internal.targetserver.datamanagement.DataUpdate.downl
    oad(DataUpdate.java:56)
    at weblogic.deploy.internal.targetserver.datamanagement.Data.prepareData
    Update(Data.java:97)
    at weblogic.deploy.internal.targetserver.BasicDeployment.prepareDataUpda
    te(BasicDeployment.java:682)
    at weblogic.deploy.internal.targetserver.BasicDeployment.stageFilesForSt
    atic(BasicDeployment.java:725)
    Truncated. see log file for complete stacktrace
    java.net.ConnectException: Tried all: '1' addresses, but could not connect over
    HTTP to server: '[2001:0:cf2e:3096:30be:1076:3f57:fefc]', port: '7001'
    at weblogic.net.http.HttpClient.openServer(HttpClient.java:314)
    at weblogic.net.http.HttpClient.openServer(HttpClient.java:404)
    at weblogic.net.http.HttpClient.New(HttpClient.java:240)
    at weblogic.net.http.HttpURLConnection.connect(HttpURLConnection.java:17
    2)
    at weblogic.deploy.service.datatransferhandlers.HttpDataTransferHandler.
    getDataAsStream(HttpDataTransferHandler.java:75)
    Truncated. see log file for complete stacktrace
    >
    <Aug 27, 2009 12:15:17 PM IST> <Error> <Deployer> <BEA-149205> <Failed to initia
    lize the application 'soa-infra' due to error weblogic.management.DeploymentExce
    ption: [J2EE:160149]Error while processing library references. Unresolved applic
    ation library references, defined in weblogic-application.xml: [Extension-Name:
    adf.oracle.domain, exact-match: false], [Extension-Name: oracle.sdp.messaging, e
    xact-match: false]..
    weblogic.management.DeploymentException: [J2EE:160149]Error while processing lib
    rary references. Unresolved application library references, defined in weblogic-
    application.xml: [Extension-Name: adf.oracle.domain, exact-match: false], [Exten
    sion-Name: oracle.sdp.messaging, exact-match: false].
    at weblogic.application.internal.flow.CheckLibraryReferenceFlow.prepare(
    CheckLibraryReferenceFlow.java:26)
    at weblogic.application.internal.BaseDeployment$1.next(BaseDeployment.ja
    va:609)
    at weblogic.application.utils.StateMachineDriver.nextState(StateMachineD
    river.java:37)
    at weblogic.application.internal.BaseDeployment.prepare(BaseDeployment.j
    ava:185)
    at weblogic.application.internal.EarDeployment.prepare(EarDeployment.jav
    a:53)
    Truncated. see log file for complete stacktrace
    >
    <Aug 27, 2009 12:15:18 PM IST> <Error> <Deployer> <BEA-149205> <Failed to initia
    lize the application 'worklistapp' due to error weblogic.management.DeploymentEx
    ception: [J2EE:160149]Error while processing library references. Unresolved appl
    ication library references, defined in weblogic-application.xml: [Extension-Name
    : adf.oracle.domain, exact-match: false], [Extension-Name: oracle.jsp.next, exac
    t-match: false]..
    weblogic.management.DeploymentException: [J2EE:160149]Error while processing lib
    rary references. Unresolved application library references, defined in weblogic-
    application.xml: [Extension-Name: adf.oracle.domain, exact-match: false], [Exten
    sion-Name: oracle.jsp.next, exact-match: false].
    at weblogic.application.internal.flow.CheckLibraryReferenceFlow.prepare(
    CheckLibraryReferenceFlow.java:26)
    at weblogic.application.internal.BaseDeployment$1.next(BaseDeployment.ja
    va:609)
    at weblogic.application.utils.StateMachineDriver.nextState(StateMachineD
    river.java:37)
    at weblogic.application.internal.BaseDeployment.prepare(BaseDeployment.j
    ava:185)
    at weblogic.application.internal.EarDeployment.prepare(EarDeployment.jav
    a:53)
    Truncated. see log file for complete stacktrace
    >
    <Aug 27, 2009 12:15:20 PM IST> <Error> <Deployer> <BEA-149205> <Failed to initia
    lize the application 'b2bui' due to error weblogic.management.DeploymentExceptio
    n: [J2EE:160149]Error while processing library references. Unresolved applicatio
    n library references, defined in weblogic-application.xml: [Extension-Name: adf.
    oracle.domain, exact-match: false]..
    weblogic.management.DeploymentException: [J2EE:160149]Error while processing lib
    rary references. Unresolved application library references, defined in weblogic-
    application.xml: [Extension-Name: adf.oracle.domain, exact-match: false].
    at weblogic.application.internal.flow.CheckLibraryReferenceFlow.prepare(
    CheckLibraryReferenceFlow.java:26)
    at weblogic.application.internal.BaseDeployment$1.next(BaseDeployment.ja
    va:609)
    at weblogic.application.utils.StateMachineDriver.nextState(StateMachineD
    river.java:37)
    at weblogic.application.internal.BaseDeployment.prepare(BaseDeployment.j
    ava:185)
    at weblogic.application.internal.EarDeployment.prepare(EarDeployment.jav
    a:53)
    Truncated. see log file for complete stacktrace
    >
    <Aug 27, 2009 12:15:20 PM IST> <Error> <Deployer> <BEA-149205> <Failed to initia
    lize the application 'DefaultToDoTaskFlow' due to error weblogic.management.Depl
    oymentException: [J2EE:160149]Error while processing library references. Unresol
    ved application library references, defined in weblogic-application.xml: [Extens
    ion-Name: adf.oracle.domain, Implementation-Version: 11.1.1.1.0, exact-match: fa
    lse], [Extension-Name: oracle.jsp.next, exact-match: false]..
    weblogic.management.DeploymentException: [J2EE:160149]Error while processing lib
    rary references. Unresolved application library references, defined in weblogic-
    application.xml: [Extension-Name: adf.oracle.domain, Implementation-Version: 11.
    1.1.1.0, exact-match: false], [Extension-Name: oracle.jsp.next, exact-match: fal
    se].
    at weblogic.application.internal.flow.CheckLibraryReferenceFlow.prepare(
    CheckLibraryReferenceFlow.java:26)
    at weblogic.application.internal.BaseDeployment$1.next(BaseDeployment.ja
    va:609)
    at weblogic.application.utils.StateMachineDriver.nextState(StateMachineD
    river.java:37)
    at weblogic.application.internal.BaseDeployment.prepare(BaseDeployment.j
    ava:185)
    at weblogic.application.internal.EarDeployment.prepare(EarDeployment.jav
    a:53)
    Truncated. see log file for complete stacktrace
    >
    JmsConnectionFactory: Unable to set connection parameters for OracleConnectionMa
    nager
    JmsConnectionFactory: Unable to set connection parameters for OracleConnectionMa
    nager
    JmsConnectionFactory: Unable to set connection parameters for OracleConnectionMa
    nager
    JmsConnectionFactory: Unable to set connection parameters for OracleConnectionMa
    nager
    JmsConnectionFactory: Unable to set connection parameters for OracleConnectionMa
    nager
    JmsConnectionFactory: Unable to set connection parameters for OracleConnectionMa
    nager
    JmsConnectionFactory: Unable to set connection parameters for OracleConnectionMa
    nager
    JmsConnectionFactory: Unable to set connection parameters for OracleConnectionMa
    nager
    JmsConnectionFactory: Unable to set connection parameters for OracleConnectionMa
    nager
    JmsConnectionFactory: Unable to set connection parameters for OracleConnectionMa
    nager
    JmsConnectionFactory: Unable to set connection parameters for OracleConnectionMa
    nager
    JmsConnectionFactory: Unable to set connection parameters for OracleConnectionMa
    nager
    JmsConnectionFactory: Unable to set connection parameters for OracleConnectionMa
    nager
    JmsConnectionFactory: Unable to set connection parameters for OracleConnectionMa
    nager
    Aug 27, 2009 12:15:47 PM oracle.wsm.common.logging.WsmMessageLogger logSevere
    SEVERE: Failure in looking up EJB component QueryService#oracle.wsm.policymanage
    r.ejb.IStringQueryServiceRemote.
    <Aug 27, 2009 12:16:29 PM IST> <Notice> <WebLogicServer> <BEA-000365> <Server st
    ate changed to ADMIN>
    <Aug 27, 2009 12:16:34 PM IST> <Warning> <Log Management> <BEA-170011> <The LogB
    roadcaster on this server failed to broadcast log messages to the admin server.
    The Admin server may not be running. Message broadcasts to the admin server will
    be disabled.>
    <Aug 27, 2009 12:17:11 PM IST> <Notice> <WebLogicServer> <BEA-000365> <Server st
    ate changed to RESUMING>
    <Aug 27, 2009 12:17:16 PM IST> <Notice> <Server> <BEA-002613> <Channel "Default[
    3]" is now listening on fe80:0:0:0:39b9:eee1:8736:8262:8001 for protocols iiop,
    t3, ldap, snmp, http.>
    <Aug 27, 2009 12:17:16 PM IST> <Notice> <Server> <BEA-002613> <Channel "Default[
    4]" is now listening on fe80:0:0:0:30be:1076:3f57:fefc:8001 for protocols iiop,
    t3, ldap, snmp, http.>
    <Aug 27, 2009 12:17:16 PM IST> <Notice> <Server> <BEA-002613> <Channel "Default[
    7]" is now listening on 0:0:0:0:0:0:0:1:8001 for protocols iiop, t3, ldap, snmp,
    http.>
    <Aug 27, 2009 12:17:16 PM IST> <Notice> <Server> <BEA-002613> <Channel "Default[
    1]" is now listening on 192.168.1.3:8001 for protocols iiop, t3, ldap, snmp, htt
    p.>
    <Aug 27, 2009 12:17:16 PM IST> <Notice> <Server> <BEA-002613> <Channel "Default"
    is now listening on 2001:0:cf2e:3096:30be:1076:3f57:fefc:8001 for protocols iio
    p, t3, ldap, snmp, http.>
    <Aug 27, 2009 12:17:16 PM IST> <Notice> <Server> <BEA-002613> <Channel "Default[
    5]" is now listening on fe80:0:0:0:c931:e3ad:23b7:a24c:8001 for protocols iiop,
    t3, ldap, snmp, http.>
    <Aug 27, 2009 12:17:16 PM IST> <Notice> <Server> <BEA-002613> <Channel "Default[
    2]" is now listening on fe80:0:0:0:39e8:36d5:9f8b:f988:8001 for protocols iiop,
    t3, ldap, snmp, http.>
    <Aug 27, 2009 12:17:16 PM IST> <Notice> <Server> <BEA-002613> <Channel "Default[
    6]" is now listening on fe80:0:0:0:0:5efe:c0a8:103:8001 for protocols iiop, t3,
    ldap, snmp, http.>
    <Aug 27, 2009 12:17:16 PM IST> <Notice> <Server> <BEA-002613> <Channel "Default[
    8]" is now listening on 127.0.0.1:8001 for protocols iiop, t3, ldap, snmp, http.
    >
    <Aug 27, 2009 12:17:16 PM IST> <Notice> <WebLogicServer> <BEA-000357> <Started W
    ebLogic Independent Managed Server "soa_server1" for domain "domain1" running in
    Development Mode>
    <Aug 27, 2009 12:17:16 PM IST> <Warning> <Server> <BEA-002611> <Hostname "Metamo
    rph26-PC", maps to multiple IP addresses: 192.168.1.3, fe80:0:0:0:30be:1076:3f57
    :fefc%11, fe80:0:0:0:c931:e3ad:23b7:a24c%13, fe80:0:0:0:0:5efe:c0a8:103%14, 2001
    :0:cf2e:3096:30be:1076:3f57:fefc>
    <Aug 27, 2009 12:19:24 PM IST> <Warning> <JMX> <BEA-149509> <Unable to establish
    JMX Connectivity with the Adminstration Server AdminServer at service:jmx:t3://
    [2001:0:cf2e:3096:30be:1076:3f57:fefc]:7001/jndi/weblogic.management.mbeanserver
    s.domainruntime.
    java.io.IOException
    at weblogic.management.remote.common.ClientProviderBase.makeConnection(C
    lientProviderBase.java:187)
    at weblogic.management.remote.common.ClientProviderBase.newJMXConnector(
    ClientProviderBase.java:81)
    at javax.management.remote.JMXConnectorFactory.newJMXConnector(JMXConnec
    torFactory.java:338)
    at javax.management.remote.JMXConnectorFactory.connect(JMXConnectorFacto
    ry.java:247)
    at weblogic.management.mbeanservers.runtime.internal.RegisterWithDomainR
    untimeService.getDomainMBeanServerConnection(RegisterWithDomainRuntimeService.ja
    va:206)
    Truncated. see log file for complete stacktrace
    javax.naming.CommunicationException [Root exception is java.net.ConnectException
    : t3://[2001:0:cf2e:3096:30be:1076:3f57:fefc]:7001: Destination unreachable; nes
    ted exception is:
    java.net.ConnectException: Connection timed out: connect; No available r
    outer to destination]
    at weblogic.jndi.internal.ExceptionTranslator.toNamingException(Exceptio
    nTranslator.java:40)
    at weblogic.jndi.WLInitialContextFactoryDelegate.toNamingException(WLIni
    tialContextFactoryDelegate.java:783)
    at weblogic.jndi.WLInitialContextFactoryDelegate.getInitialContext(WLIni
    tialContextFactoryDelegate.java:367)
    at weblogic.jndi.Environment.getContext(Environment.java:315)
    at weblogic.jndi.Environment.getContext(Environment.java:285)
    Truncated. see log file for complete stacktrace
    java.net.ConnectException: t3://[2001:0:cf2e:3096:30be:1076:3f57:fefc]:7001: Des
    tination unreachable; nested exception is:
    java.net.ConnectException: Connection timed out: connect; No available r
    outer to destination
    at weblogic.rjvm.RJVMFinder.findOrCreateInternal(RJVMFinder.java:216)
    at weblogic.rjvm.RJVMFinder.findOrCreate(RJVMFinder.java:170)
    at weblogic.rjvm.ServerURL.findOrCreateRJVM(ServerURL.java:153)
    at weblogic.jndi.WLInitialContextFactoryDelegate.getInitialReference(WLI
    nitialContextFactoryDelegate.java:400)
    at weblogic.jndi.Environment.getInitialReference(Environment.java:245)
    Truncated. see log file for complete stacktrace
    java.rmi.ConnectException: Destination unreachable; nested exception is:
    java.net.ConnectException: Connection timed out: connect; No available r
    outer to destination
    at weblogic.rjvm.ConnectionManager.bootstrap(ConnectionManager.java:464)
    at weblogic.rjvm.ConnectionManager.bootstrap(ConnectionManager.java:315)
    at weblogic.rjvm.RJVMManager.findOrCreateRemoteInternal(RJVMManager.java
    :251)
    at weblogic.rjvm.RJVMManager.findOrCreate(RJVMManager.java:194)t
    at weblogic.rjvm.RJVMFinder.findOrCreateRemoteServer(RJVMFinder.java:238
    Truncated. see log file for complete stacktrace
    >
    <Aug 27, 2009 12:20:06 PM IST> <Notice> <WebLogicServer> <BEA-000365> <Server st
    ate changed to RUNNING>
    <Aug 27, 2009 12:20:06 PM IST> <Notice> <WebLogicServer> <BEA-000360> <Server st
    arted in RUNNING mode>
    I have reinstall it again and again but the same exception is coming.Please help me out.
    Thanks
    Ap

    It seem that you are missing libraries to start the application:
    Error while processing library references. Unresolved applic
    +ation library references, defined in weblogic-application.xml: [Extension-Name:+
    adf.oracle.domain, exact-match: false], [Extension-Name: *oracle.sdp.messaging*, e+
    +xact-match: false]..+
    weblogic.management.DeploymentException: J2EE:160149Error while processing lib
    rary references. Unresolved application library references, defined in weblogic-
    +application.xml: Extension-Name: adf.oracle.domain, exact-match: false, [Exten+
    sion-Name: oracle.sdp.messaging, exact-match: false].
    Either you haven't installed the libraries or you have installed them to the Admin server and need to activate them on the managed server. You should be able to see if they are installed if you look at the deployments overview in the weblogic console. I found this blog entry usefull when I needed to install the libraries for adf:
    http://one-size-doesnt-fit-all.blogspot.com/2009/01/configuring-weblogic-server.html
    If they are installed you might want to check each of them if they are assigned to you managed server target. You can select them in the deployment overview and choose the target option. There should be a check mark at the server you deployed your application to.
    Best regards,
    Sturla

  • DW CC  2014 Window--- Extensions--- Adobe Exchange Option Missing from Menu Toolbar

    I discovered that this option is not listed in the menu though from reading Adobe Dreamweaver * Extensions it should be.
    Then, I did a search and came up with Adobe Extension Manager CC at Adobe - Exchange : Download the Adobe Extension Manager.
    So.  I thought maybe I had to install the Adobe Extension Manager CC and the option would then appear under the Window menu items listed.
    I successfully performed the install of Adobe Extension Manager cc then started DW CC 2014..
    The option did not appear.
    Now, I suspect I can use Adobe Extension Manager CC just fine (assuming here) but I would prefer to manage extensions as advertised in Adobe Dreamweaver * Extensions.
    Can anyone give me some guidance?
    Thanks,
    Jerry

    For anyone else with this problem it is a pain but, yes Arpit is correct. Uninstall Photoshop CC 2014.1, go to the Adobe site and sign in, go to Apps, download Photoshop CC 2014 again and install. It should open as 2014.2. Then you can see Windows>Libraries
    I'm not sure why my system repeatedly would not see there was an update to Photoshop. That seems like a bug to me for a subscription based service. Wonder what else I might be missing out on?
    Now I hope my Libraries content (which shows up in Photoshop) will now start showing up in the cloud online. It is missing. Ugh.
    Hope this helps.

  • Help!  Reset the password and now master account at log in is missing??????

    I really need you help on this. Today I was helping my younger cousin with his macbook. He lost his password so I put in the disk that came with it and held down C and went to Utilities/reset password and reset the main account password. I might have reset the Home Permissions and ACLs. I reboot the computer and in the login screen only show the other that was made and not the main account. So the master account is mission how do back so I can log in it. Can anyone help?
    Mike

    is the other account admin? if yes, log in as the other user and run the following terminal command
    sudo rm /var/db/dslocal/nodes/Default/users/short-user-name.plist
    Instead of short-user-name put in the above the short name of your main user which is now missing. It's the same as the name of that user's home directory in /Users folder which should still be there.
    You'll have to enter the admin password which you won't see as you type it. that's normal.
    Please make sure you copy the command EXACTLY as given. it's very important. we don't want to delete the wrong thing here. this will delete the directory services record for the missing user.
    Restart, log in as the other user again and try creating an account with the short user name of your main missing user in system preferences->accounts. it will say that a home directory by that name already exists and ask if you want to use it. say "yes".
    this should bring the account back.
    if the only currently existing account on the computer is not admin then boot from the install DVd and using the password reset utility activate root (=System administrator). then log in as root and perform the same steps as above.

  • Error while compiling Web Dynpro program due to missing JAR files

    Hi Experts,
    I am getting error message while compiling Web Dynpro program. The erring lines are as below:
              Message message = new MimeMessage(session);
              try {
                   message.setFrom(new InternetAddress(fromMailId));
                   message.addRecipient(
                        Message.RecipientType.TO,
                        new InternetAddress(toMailId));
                   message.setSubject(mailSubject);
                   message.setText(mailBody);
                   message.setHeader("X-Mailer", "E-Mail");
                   message.setSentDate(new Date());
                   Transport.send(message);
    The error messages are:
    Message.ReceipientType can not be resolved
    The method send(Message) is undefined for the type Transport
    The method setFrom(InternetAddress) is undefined for the type Message
    The method setHeader(String, String) is undefined for the type MessageThe method setSentDate(Date) is undefined for the type Message
    The method setSubject(String) is undefined for the type Message
    The method setText(String) is undefined for the type Message
    Type mismatch: cannot convert from MimeMessage to Message
    Can you please help me in resolving the issue. It seems that some API is missing. I believe if some one can tell me the name of JAR file / API then I will be able to sort out the issue. I will add these JAR file in my program.
    Thanks,
    S

    HI Stuart,
    you are missing the jar files required for sending mail in java
    Installing JavaMail
    You will need the latest version of JavaMail (Version 1.2) available here:
    http://java.sun.com/products/javamail/
    Download and unzip the file, in the newly created top level JavaMail directory you will find a number of jar files,
    these need adding to your classpath.
    To do this in Eclipse, right click on your project in the tree view, select properties, select the libraries tab.
    Now click the 'Add external jars' button, navigate to your JavaMail directory and click on the jars.
    The tutorial also makes use of the Java Activation Framework, which is available here:
    http://java.sun.com/products/javabeans/glasgow/jaf.html
    Instalation of JAF is identical to JavaMail
    activation.jar / mail.jar are 2 distinct names i remember rest you will get above
    P.S: close the question to assist other users narrow the search and find solutions
    Message was edited by:
            Armin Reichert

  • Missing .jar files in the Weblogic Server 6.1 beta

    The files /weblogic/lib/weblogic_sp.jar and /weblogic/lib/poolorb.jar are required
    to be set in the
    classpath, according to the documentation. But they are missing in the downloaded
    version of the server.
    Is there any solution?

    Hi Rajashree,
    weblogic_sp.jar file is for service pack. I am assuming that you installed
    latest version from the download site. the latest one is a bundled version
    of wls6.0 with sp2. we put sp2 with 6.0 together, then you do not see that
    jar file.
    I am confused with poolorb.jar file. do you mean wlepool.jar and wleorb.jar?
    those 2 files are used when you need to make a connection pool to WLE
    server. if you do not use it, you do not need to include it in your
    classpath.
    Thanks
    yu
    Rajashree Desai <[email protected]> wrote in message
    news:3b53ea0c$[email protected]..
    >
    The files /weblogic/lib/weblogic_sp.jar and /weblogic/lib/poolorb.jar arerequired
    to be set in the
    classpath, according to the documentation. But they are missing in thedownloaded
    version of the server.
    Is there any solution?

  • Question about missing file

    Hello - I'm having an issue with Visual Studio, undoubtedly related to my own ignorance.  Here goes:  Installed VS2012, have dev site on Sharepoint Online, created new Sharepoint project in VS2012, which rolls out all the required files.  The
    default.aspx file, however, indicates that the sp.js file is missing.  However, the sp.runtime.js file is not missing?  Both of those files are present, installed with the Sharepoint Client Components.  The computer I'm using does NOT have Sharepoint
    installed on it, and since I'm trying to develop for Sharepoint online, my understanding was that should not be necessary.  I'm sure this is something simple, but I just don't understand what it means (or if I should be concerned about it.)   

    Yes, I've tried that.  Just now in fact, I tried it again.  Still doesn't work.  Yesterday, I noticed that I had two versions of the Sharepoint Client Components installed, so I removed the older one (thinking new is better, right?)
    Anyway, after doing that, now I see more errors!  Notice in the screenshot below, both sp.runtime.js and sp.js are marked as file not found:
    Also, here are the output messages from the Javascript Language Service:
    09:59:26.1179: Referenced file '~/_layouts/15/init.js' not found.
    09:59:26.1189: Referenced file '~/_layouts/15/SP.Core.js' not found.
    09:59:26.1189: Referenced file '~/_layouts/15/SP.Runtime.js' not found.
    09:59:26.1189: Referenced file '~/_layouts/15/SP.UI.Dialog.js' not found.
    09:59:26.1189: Referenced file '~/_layouts/15/SP.js' not found.
    The Sharepoint Client Components install, as mentioned in the article in my reply to Steve Curran, installs the Javascript files at this location:  C:\Program Files (x86)\SharePoint Client Components\Scripts .  I am not sure how Visual Studio knows
    where to find these files - I just did the dumb monkey install, clicking run and ok.  Is there something I need to do in Visual Studio to make the IDE or specifically the project aware of these files?

Maybe you are looking for

  • Is there any way to use bluetooth and force audio out at the same time?

    I have an older treadmill that uses IFit which means a program on my phone controls my treadmill via an aux audio cable. I like using BT headphones so I don't have cords hanging. So...I'm trying to figure some way to either a) have iphone connected p

  • Numbers won't open a Numbers doc downloaded from iCloud

    I just downloaded a Numbers document I created on my iPad2. When I try to open it, Numbers does one of two things: 1) It displays the opening progress bar but then doesn't open a window (even though the file is shown in the Windows menu). The minimis

  • Wifi WEP passphrase vs. key - how to connect?

    My iTouch only connects to my secure Wifi by using the 26 character WEP key when challenged for the Network password. How can I get my iTouch to connect using the passphrase, instead, which is much easier to remember? The network password gets blown

  • Lost - Need Info

    I didn't update the email address in the form I filled out for service. I wrote support but didn't get a response. Does anyone know how to get the address I am supposed to return the Nano to for service? Or how to get the address to return the Nano?

  • Migrate from G4 Powerbook to Intel Mini

    Greetings folks ! My trusty old PB died and I will take delivery of my new Mac Mini as replacement tomorrow. I have a current TM backup as well as a CCC clone at my disposal. What would be the most promising procedure to migrate my data and settings