Unable to see aia extensions in jdev 11.1.1.2

Hi
I've been asked to install aia.jar and freemarker.jar and have placed these in the $JDEV_HOME/jdeveloper/jdev/lib directory but we are still not seeing them when we go to help about extensions
I've restarted and no joy - even tried to enable using Tools-preferences-SOA and add the jar file (if this is even related)
Has anyone got any ideas please
A colleague has done a laptop install and thats all ok but for some reason this isnt
This is on windows 2003 server
Thanks
Pete

Hi Narayana
Thanks for getting back to me - the only one :)
I tried what you suggested - I can go to check for updates - I am then given the option to search update centres or install from local file - If I chose local file its default is zip files if I open that up and chose the aia.jar file I get an error that it doesnt contain bunlde manifest in META-INF/bundle.xml
I didnt see the option for Official oracle Extensions and updates
Thanks
Pete

Similar Messages

  • Unable to see myplugin in Windows-- Extension File Menu of InDesign while Debugging/ Run .

    I couldn't able to see myplugin extesnion under file menu of Windows-->Extension of my MAC  while i try to run or debug .
    -myplugin.zxp is  provided to my testing team and they are  able to see it under file menu of Window-->Extension   as expected .
    -But this is not happening on my mac when i try to run/debug my application  .
    Mac     
    : CS 5.5 and Extesnion Builder 1.5   . (version 7.5.3)
    This was the same problem i faced on  windows , seems it was due to the latest updates taken by users  . ...But the problem was solved by changing version from 7.5 to 7.5.3  in  manifest file while Exporting the  build .
    - To run/debug i  will revert back version from 7.5.3 to 7.5 after providing the zxp , since my indesign version is 7.5 on Windows system .
    Windows  : CS 5.5  and  Extesnion Builder 1.5  .  (version 7.5)
    Can some please suggest me or point me something on this .
    Thanks ,
    Sai Charan

    Am facing another Interrelated  problem with CS6 too -->Issue 2 :
       -if inDesign users take update for InDesign Version 8.0.1 [since CS6 version would be 8.0 by default ] Users  Unable to See  myplugin.zxp in Windows-->Extesnion  .
      - I Exported myplugin.zxp  using InDesign  CS6 Version 8.0 / Flash Builder 4.5/ Extesnion Builder 2.0 .
      - This worked in all below  lowest versions perfectly but not with InDesign CS6 updated Version 8.0.1
    Windows 7PC :
    1) CS6 -->-- Adobe Extension Manager CS6 Version 6.0.0.412
              -- Adobe In Design CS6 Version 8.0
    2)CS5.5-->-- Adobe Extension Manager CS5.5 Version 5.5.163
              -- Adobe InDesign CS5.5 Version 7.5
    3)CS5.5-->-- Adobe Extension Manager CS5.5 Version 5.5.1.019
              -- Adobe In Design CS5.5 Version 7.5.3
    Mac Operating System :
    1) CS6 --> -- Adobe Extension Manager CS6 Version 6.0.0.412
               -- Adobe In Design CS6 Version 8.0
               -- Mac OS :10.7.4
    2)CS5.5--> -- Adobe Extension Manager CS5.5 Version 5.5.163
               -- Adobe InDesign CS5.5 Version 7.5.3
               -- Mac OS :10.6.8

  • How to install PMD extension for JDEV 11g TP4 ?

    Hi,
    I tried to install PMD extension to JDEV 11g TP4 without success.
    Check for updates doesn't bring this extension.
    Tools --> Preferences --> extension brings following message:
    The ide.extensions or ide.noextensions system properties are set and override user extension preferences. To configure extensions, unset these properties and restart.
    Release notes of JDev 11g TP4 says:
    In this release, users are unable to manage extensions from the Tools > Preferences, Extensions page. The user will instead see the following message:
    The ide.extensions or ide.noextensions system properties are set and override user extension preferences. To configure extensions, unset these properties and restart.
    Is there a other way to add this extension?
    regards
    Peter

    Hello John,
    But for TP1 there was an extension available.
    http://www.oracle.com/technology/products/jdev/101/update/exchange.xml#net.sourceforge.pmd.jdeveloper
    Does anyone know if PMD JDeveloper extension will be available in production release?
    regards
    Peter

  • Wired computers unable to see printer on Airport Express...help?

    Hi all,
    I recently set up an Airport Extreme on our office network to offer wireless network access piggybacked on our wired router. I then purchased an Airport Express which I was planning on using as a wireless print server for our Canon i9900 for all office computers connecting wired or wirelessly, which would interface with the network via the Airport Extreme Base Station.
    I have configured the Express as an extension of the existing Airport network, and attached the printer to it via USB. All the computers in the office which have airport cards onboard can see and print from the printer, which is great. The problem is that all of the computers connecting to the network via wires are unable to see the printer (this is under both 10.3.x and 10.4.x, all airport software completely updated.) The Extreme base station shows up for all office computers in their Airport Admin Utility, AND if the printer is connected directly to the Extreme Base Station via USB, all computers can see the printer over Bonjour/Rendevous.
    Anybody have ideas as to how I can get my wired machines to see the printer on the Airport Express?
    Thanks!!

    Applications > Utilities > Airport Admin Utility
    Scan and Select your Airport
    Click Configure
    On the Airport Tab
    Base Station Options...
    Check Enable Remote Printer Access
    iFelix

  • Unable to see Java 5 features from Doclet API

    The Doclet API was extended in Java 5 for getting information in generics, but I have been unable to get it to work. For example, calling ClassDoc.typeParameters and typeParamTags always returns an empty array.
    * @param <X> The X
    public class Test<X> {
    }And the Doclet is:
    import com.sun.javadoc.*;
    public class TestDoc extends Doclet {
        public static boolean start(RootDoc root) {
            for (ClassDoc cd : root.classes()) {
                System.out.println();
                System.out.println(cd);
                TypeVariable[] tv = cd.typeParameters();
             if (tv.length == 0) {
              System.out.println("No type parameters");
             } else {
              for (TypeVariable t : tv) {
                  System.out.println("tv: " + t);
             ParamTag[] pt = cd.typeParamTags();
             if (pt.length == 0) {
              System.out.println("No type parameter tags");
             } else {
              for (ParamTag t : pt) {
                  System.out.println("pt: " + t);
            return true;
    }For the Test class, it always prints out:
    No type parameters
    No type parameter tagsI'm running version 1.5.0_05. Is there some magic flag that needs to get passed? I have been unable to see any evidence that the new Java 5 API does anything at all.

    Implementing
         public static LanguageVersion languageVersion() {
              return LanguageVersion.JAVA_1_5;
    in my extension doclet solved the problem. Is part of the transition documentation from javadoc 1.2 to javadoc 1.5, but can not easily be found, not even a useful hint link.

  • Unable to install AIA FP 11.1.1.6 on Linux successfully

    Hi All,
    I am installing AIA FP 11.1.1.6 on top of SOA suite 11.1.1.6. My SOA suite installation is sucessful and I am able to deploy SOA composites on the soa server.
    After verifying this I started AIA FP installation on the same Linux server through command prompt using a response file.
    +/stage/SOA/AIA/aiafp/Disk1/runInstaller -silent -invPtrLoc /etc/oraInst.loc -jreloc /stage/SOA/SOA/jdk1.7.0_07/jre/ -novalidation -debug -force -ignoreSysPrereqs -responseFile /stage/SOA/AIA/aiafp/Disk1/misc/responseFiles/AIAFP_CompleteResponse.rsp+
    The installation says it had copied all the files 100% to the AIA home path.
    +"Initializing Java Virtual Machine from /stage/SOA/SOA/jdk1.7.0_07/jre/bin/java. Please wait...+
    +[oracle@MPBAORRORTSTPRA ~]$ Log: /u01/app/oracle/admin/oraInventory/logs/install2012-10-24_11-39-12AM.log+
    +Copyright (c) 1999, 2011, Oracle and/or its affiliates. All rights reserved.+
    +Reading response file..+
    +Verifying data......+
    +Copying Files...+
    +-----------20%----------40%----------60%----------80%--------100%+
    +"+
    Even after this installation I am not able to see AIA files are not deployed on to SOA server and also I am not able to access the localhost:7001/AIA page.
    Can someone help me to understand what could be wrong here and help me to proceed futher?
    Some references:
    I have gone through some of the logs and I got the below error message. I understand the server details are fine and the server is up as well.
    +"WLS_home.initConnection: calling connnectt3 /jndi/weblogic.management.mbeanservers.edit+
    +TestNM failed to get Domain Root. Exception is Unsupported protocol: t3+
    +Unable to connect to the SOA Server.+
    +Make sure that the Host Name, Port Number, SOA UserName and Admin Password are correct.+
    +Host Name : XXXX+
    +Port Number : 7001+
    +SOA UserName :weblogic+
    +TestNM failed to get Domain Root."+

    Hi..
    ensured that the nodemanager is up and running and performed the AIA installation again. Got the same error as mentioned above. Also I have looked into additional logs and found the error messages below.
    Looks like I got the below exception, even before as well.
    java.net.MalformedURLException: Unsupported protocol: t3
    +     at javax.management.remote.JMXConnectorFactory.newJMXConnector(JMXConnectorFactory.java:356)+
    +     at javax.management.remote.JMXConnectorFactory.connect(JMXConnectorFactory.java:266)+
    +     at oracle.as.install.soawl.screens.WLS_home.initConnection(Unknown Source)+
    +     at oracle.as.install.soawl.screens.TestNM.<init>(Unknown Source)+
    +     at oracle.as.install.soawl.installaction.SOAInstallAction.executeAfterCopy(Unknown Source)+
    +     at oracle.as.install.engine.modules.util.installaction.InstallActionProviderUtility.invokeExecuteAfterCopy(InstallActionProviderUtility.java:91)+
    +     at oracle.as.install.engine.modules.silent.SilentInstaller.processModuleEvent(SilentInstaller.java:503)+
    +     at oracle.as.install.engine.modules.util.PartnerModuleImpl.processEvent(PartnerModuleImpl.java:118)+
    +     at oracle.as.install.engine.InstallEngine.notifyListeners(InstallEngine.java:626)+
    +     at oracle.as.install.engine.InstallEngine.processEvent(InstallEngine.java:584)+
    +     at oracle.as.install.engine.modules.util.PartnerModuleImpl.notifyAllEventListenersHelper(PartnerModuleImpl.java:227)+
    +     at oracle.as.install.engine.modules.util.PartnerModuleImpl.notifyListeners(PartnerModuleImpl.java:158)+
    +     at oracle.as.install.engine.modules.install.InstallModule.onSuccess(InstallModule.java:479)+
    +     at oracle.as.install.engine.modules.install.action.InstallManager.notifySuccess(InstallManager.java:322)+
    +     at oracle.as.install.engine.modules.install.command.InstallSuccessCommand.execute(InstallSuccessCommand.java:42)+
    +     at oracle.as.install.engine.modules.install.action.InstallManager.onInstallEvent(InstallManager.java:334)+
    +     at oracle.as.install.engine.modules.install.action.AbstractOUIHandler.fireInstallEvent(AbstractOUIHandler.java:150)+
    +     at oracle.as.install.engine.modules.install.action.OUIInstaller.succeed(OUIInstaller.java:565)+
    +     at oracle.as.install.engine.modules.install.action.OUIInstaller.start(OUIInstaller.java:503)+
    +     at oracle.as.install.engine.modules.install.action.InstallManager.launchOUI(InstallManager.java:212)+
    +     at oracle.as.install.engine.modules.install.InstallModule.launchOUI(InstallModule.java:156)+
    +     at oracle.as.install.engine.modules.install.InstallModule$1.run(InstallModule.java:247)+
    Exception in thread "Thread-16" java.lang.NoClassDefFoundError: oracle/security/jps/mas/mgmt/jmx/credstore/PortableCredential
    +     at oracle.as.install.soawl.installaction.SOAInstallAction.executeAfterCopy(Unknown Source)+
    +     at oracle.as.install.engine.modules.util.installaction.InstallActionProviderUtility.invokeExecuteAfterCopy(InstallActionProviderUtility.java:91)+
    +     at oracle.as.install.engine.modules.silent.SilentInstaller.processModuleEvent(SilentInstaller.java:503)+
    +     at oracle.as.install.engine.modules.util.PartnerModuleImpl.processEvent(PartnerModuleImpl.java:118)+
    +     at oracle.as.install.engine.InstallEngine.notifyListeners(InstallEngine.java:626)+
    +     at oracle.as.install.engine.InstallEngine.processEvent(InstallEngine.java:584)+
    +     at oracle.as.install.engine.modules.util.PartnerModuleImpl.notifyAllEventListenersHelper(PartnerModuleImpl.java:227)+
    +     at oracle.as.install.engine.modules.util.PartnerModuleImpl.notifyListeners(PartnerModuleImpl.java:158)+
    +     at oracle.as.install.engine.modules.install.InstallModule.onSuccess(InstallModule.java:479)+
    +     at oracle.as.install.engine.modules.install.action.InstallManager.notifySuccess(InstallManager.java:322)+
    +     at oracle.as.install.engine.modules.install.command.InstallSuccessCommand.execute(InstallSuccessCommand.java:42)+
    +     at oracle.as.install.engine.modules.install.action.InstallManager.onInstallEvent(InstallManager.java:334)+
    +     at oracle.as.install.engine.modules.install.action.AbstractOUIHandler.fireInstallEvent(AbstractOUIHandler.java:150)+
    +     at oracle.as.install.engine.modules.install.action.OUIInstaller.succeed(OUIInstaller.java:565)+
    +     at oracle.as.install.engine.modules.install.action.OUIInstaller.start(OUIInstaller.java:503)+
    +     at oracle.as.install.engine.modules.install.action.InstallManager.launchOUI(InstallManager.java:212)+
    +     at oracle.as.install.engine.modules.install.InstallModule.launchOUI(InstallModule.java:156)+
    +     at oracle.as.install.engine.modules.install.InstallModule$1.run(InstallModule.java:247)+
    Caused by: java.lang.ClassNotFoundException: oracle.security.jps.mas.mgmt.jmx.credstore.PortableCredential
    +     at java.net.URLClassLoader$1.run(URLClassLoader.java:366)+
    +     at java.net.URLClassLoader$1.run(URLClassLoader.java:355)+
    +     at java.security.AccessController.doPrivileged(Native Method)+
    +     at java.net.URLClassLoader.findClass(URLClassLoader.java:354)+
    +     at java.lang.ClassLoader.loadClass(ClassLoader.java:423)+
    +     at sun.misc.Launcher$AppClassLoader.loadClass(Launcher.java:308)+
    +     at java.lang.ClassLoader.loadClass(ClassLoader.java:356)+
    +     ... 18 more+

  • Unable to see process activities in component palette

    Hi
    I am unable to see the diagram view of BPEL(Even after successful migration from 10.1.2)
    I am using 10.1.3 JDev
    I am unable to see Process activities list in the componenet palette
    Can anybody help me ...
    Thanks
    -Praveen

    yes got the same issue but hasnt gotten the solution yet..

  • Problem installing SVN extension in Jdev

    Hi,
    I am running Jdev Studio Edition 10.1.3.3.0.3 (This is Jdev with Oracle Application components version)
    I am trying to install the extension for SVN
    extensions as I understand it are
    VCS framework extension (I have successfully installed oracle.jdeveloper.vcs version 10.3.41.57 which has a pre-req of oracle.jdeveloper version of 10.3.41.57 which I have)
    Subversion VCS Extension version 10.3.41.57 which has a pre-req of oracle.jdeveloper.vcs 10.3.41.57)
    From what I see it should be compatible however after restarting jdev upon completing the Subversion Extension install the extension is not registered in the "About" screen and I cannot see the extension jar in the jdev extension directory?
    There are no errors or problems during the install process.
    Has anyone got any ideas what the problem maybe?
    Thanks
    Keith

    Im not sure what the issue was here but I have manually copied the bundle file to the extension directory in jdev and it is now working!

  • Unable to see "Sensors"(BAM) in BPEL Structure Pane

    Hello-
    I've created a simple BPEL process and would like to monitor the time consumed by each activity in the BPEL process. Hence I tried to create sensors (variables). But I'm unable to see "Sensors" in the structure pane to create variables? Where do I see these sensors? Do I need Jdev plugins for BAM?
    Would you provide steps to monitor the time consumed for each BPEL acitivity in BAM?
    Thanks

    Hello,
    guess you are using Jdeveloper 11.1.1.3...
    Click 'Monitor' button in the panel above the bpel diagram to change to monitor view, then you should see sensors in the structure window.
    No extra plugins required for creating sensors.
    regards, Matti

  • New to JHeadStart, unable to see JHeadStart Settings category in Tool  pref

    Hi all,
    I have downloaded both JDeveloper 10.1.2 and Jheadstart
    . Now As mentioned on oracle's below mentioned link
    http://www.oracle.com/technology/products/jdev/tips/muench/jhstutorial/index.html#startwithjdev
    I have placed the JHeadStart's related files in JDev Folder .
    The next step given on this link is
    After starting JDeveloper 10.1.2, select Tools | Preferences... from the main menu. Select the JHeadstart Settings category, and enter C:\JHeadstart for the value of the JHeadstart Home property.
    But when i start Jdev and select tools preferences
    I am unable to see JHeadstart Settings category
    Can anybody help ?
    Thanks n Regards,
    Anant.

    Hi Anant
    Please make sure you are using Jdeveloper 10.1.2(Base installation if you already have jdk 1.4 or above ) and JHeadStart 10.1.2.
    you can alos contact me on my mail id ,i will give you compleate installation guide (created by me).
    Then perform all the step and dont forget to set java home in <YourJdevHome>\Jdev\bin\jdev.conf file.
    Thaks & Regards
    Sandeep Sharma
    Traniee Programmer
    BAS-Business Application Solutions
    Atos Origin India Pvt. Ltd.
    Direct : +91 (0)22 5645 2585
    Mobile: +91 (0) 98190 38638
    Prism Towers, 6th Floor, 'A' Wing,
    MindSpace, Link Road,
    Goregaon (W),
    Mumbai 400 062,
    India
    http://www.atosorigin.com/

  • URGENT: Can not find SOA extension for JDev 11.1.1.5 anymore????

    I do not see the SOA extension when I did a check for updates anymore. Do you know where I can download this extension for JDev 11.1.1.5 please?
    Thanks

    check here at ..
    http://www.oracle.com/ocom/groups/public/@otn/documents/webcontent/156082.xml

  • My build is success through putt but i am unable to see AIAArtifacts in MDS

    Hi,
    I deployed schemas into AIA artifacts through Putty tool status is Build Success. But I go to MDS their I able to see root directress (Industry/Utilities/ECOEBO/product/V1 ) only . iam unable to see my Schemas. please help me on it

    Hi Gerhard this my BUILD status:
    [oracle@PDC-CRM-WEBLOGIC01 bin]$ pwd
    /usr/app/oracle/product/ECO/EcoAIA/aia_instances/AIA30/bin
    [oracle@PDC-CRM-WEBLOGIC01 bin]$ . ./aiaenv.sh
    [oracle@PDC-CRM-WEBLOGIC01 bin]$ ant -f /usr/app/oracle/product/ECO/EcoAIA/Infrastructure/Install/config/UpdateMetaData.xml
    Buildfile: /usr/app/oracle/product/ECO/EcoAIA/Infrastructure/Install/config/UpdateMetaData.xml
    updateData:
    [AIAXmlProperty] Decipher value does not exist for the key : oer.server.password
    Install:
    InstallDeploymentPlan:
    [echo]
    [echo]
    [echo]
    [echo] Deployment log -- /usr/app/oracle/product/ECO/EcoAIA/aia_instances/AIA30/logs/UpdateMetaDataDP_PreInstallScript_2012-11-21_17-53-51.log
    [echo]
    [echo]
    [echo] === Executing PreInstallScript of /usr/app/oracle/product/ECO/EcoAIA/aia_instances/AIA30/config/UpdateMetaDataDP.xml===
    [echo]
    [echo]
    [xslt] Processing /usr/app/oracle/product/ECO/EcoAIA/aia_instances/AIA30/config/UpdateMetaDataDP.xml to /usr/app/oracle/product/ECO/EcoAIA/aia_instances/AIA30/tmp/AIDExecuteDP_temp_1192088791.xml
    [xslt] Loading stylesheet /usr/app/oracle/product/ECO/EcoAIA/aia_instances/AIA30/tmp/AIDExtractxsl_temp_40736607.xsl
    executeDP:
    [delete] Deleting: /usr/app/oracle/product/ECO/EcoAIA/aia_instances/AIA30/tmp/AIDExecuteDP_temp_1192088791.xml
    [delete] Deleting: /usr/app/oracle/product/ECO/EcoAIA/aia_instances/AIA30/tmp/AIDExtractxsl_temp_40736607.xsl
    [echo]
    [echo] === Completed PreInstallScript of /usr/app/oracle/product/ECO/EcoAIA/aia_instances/AIA30/config/UpdateMetaDataDP.xml===
    [echo]
    [echo]
    [echo]
    [echo]
    [echo] Deployment log -- /usr/app/oracle/product/ECO/EcoAIA/aia_instances/AIA30/logs/UpdateMetaDataDP_Configurations_2012-11-21_17-53-51.log
    [echo]
    [echo]
    [echo] === Executing Configurations of /usr/app/oracle/product/ECO/EcoAIA/aia_instances/AIA30/config/UpdateMetaDataDP.xml===
    [echo]
    [echo]
    [xslt] Processing /usr/app/oracle/product/ECO/EcoAIA/aia_instances/AIA30/config/UpdateMetaDataDP.xml to /usr/app/oracle/product/ECO/EcoAIA/aia_instances/AIA30/tmp/AIDExecuteDP_temp_1192088791.xml
    [xslt] Loading stylesheet /usr/app/oracle/product/ECO/EcoAIA/aia_instances/AIA30/tmp/AIDExtractxsl_temp_40736607.xsl
    executeDP:
    [mkdir] Created dir: /usr/app/oracle/product/ECO/EcoAIA/aia_instances/AIA30/AIAMetaData/tempMetadata/apps/AIAMetaData
    [delete] Deleting: /usr/app/oracle/product/ECO/EcoAIA/aia_instances/AIA30/AIAMetaData/MetaData.zip
    [zip] Building zip: /usr/app/oracle/product/ECO/EcoAIA/aia_instances/AIA30/AIAMetaData/MetaData.zip
    [exec] CLASSPATH=/usr/app/oracle/product/ECO/Middleware/patch_wls1035/profiles/default/sys_manifest_classpath/weblogic_patch.jar:/usr/app/oracle/product/ECO/Middleware/patch_jdev1111/profiles/default/sys_manifest_classpath/weblogic_patch.jar:/usr/java/jdk1.6.0_34/lib/tools.jar:/usr/app/oracle/product/ECO/Middleware/wlserver_10.3/server/lib/weblogic_sp.jar:/usr/app/oracle/product/ECO/Middleware/wlserver_10.3/server/lib/weblogic.jar:/usr/app/oracle/product/ECO/Middleware/modules/features/weblogic.server.modules_10.3.5.0.jar:/usr/app/oracle/product/ECO/Middleware/wlserver_10.3/server/lib/webservices.jar:/usr/app/oracle/product/ECO/Middleware/modules/org.apache.ant_1.7.1/lib/ant-all.jar:/usr/app/oracle/product/ECO/Middleware/modules/net.sf.antcontrib_1.1.0.0_1-0b2/lib/ant-contrib.jar:.:/usr/app/oracle/product/ECO/Middleware/wlserver_10.3/server/lib/weblogic.jar:/usr/app/oracle/product/ECO/EcoAIA/lib/aia.jar:/usr/app/oracle/product/ECO/EcoAIA/lib/aia-utils.jar:/usr/app/oracle/product/ECO/Middleware/modules/net.sf.antcontrib_1.1.0.0_1-0b2/lib/ant-contrib.jar:/usr/app/oracle/product/ECO/Middleware/oracle_common/modules/oracle.mds_11.1.1/mdsrt.jar:/usr/app/oracle/product/ECO/Middleware/oracle_common/modules/oracle.jps_11.1.1/jps-ee.jar:/usr/app/oracle/product/ECO/Middleware/oracle_common/modules/oracle.jps_11.1.1/jps-common.jar:/usr/app/oracle/product/ECO/Middleware/oracle_common/modules/oracle.jps_11.1.1/jps-internal.jar:/usr/app/oracle/product/ECO/Middleware/oracle_common/modules/oracle.jps_11.1.1/jps-unsupported-api.jar:/usr/app/oracle/product/ECO/Middleware/oracle_common/modules/oracle.pki_11.1.1/oraclepki.jar:/usr/app/oracle/product/ECO/Middleware/oracle_common/modules/oracle.idm_11.1.1/identitystore.jar:/usr/app/oracle/product/ECO/Middleware/oracle_common/modules/oracle.webservices_11.1.1/oracle.webservices.standalone.client.jar:/usr/app/oracle/product/ECO/Middleware/Oracle_SOA1/soa/modules/oracle.soa.fabric_11.1.1/oracle-soa-client-api.jar:/usr/app/oracle/product/ECO/Middleware/oracle_common/soa/modules/oracle.soa.mgmt_11.1.1/soa-infra-mgmt.jar:/usr/app/oracle/product/ECO/Middleware/Oracle_SOA1/soa/modules/oracle.soa.mgmt_11.1.1/soa-infra-mgmt.jar:/usr/app/oracle/product/ECO/Middleware/oracle_common/modules/oracle.fabriccommon_11.1.1/fabric-common.jar:/usr/app/oracle/product/ECO/Middleware/Oracle_SOA1/soa/modules/oracle.soa.fabric_11.1.1/fabric-runtime.jar:/usr/app/oracle/product/ECO/Middleware/oracle_common/BC4J/jlib/commons-cli-1.0.jar:/usr/app/oracle/product/ECO/Middleware/oracle_common/jlib/commons-cli-1.0.jar::/usr/app/oracle/product/ECO/Middleware/oracle_common/modules/oracle.jrf_11.1.1/jrf-wlstman.jar:/usr/app/oracle/product/ECO/Middleware/oracle_common/common/wlst/lib/adfscripting.jar:/usr/app/oracle/product/ECO/Middleware/oracle_common/common/wlst/lib/adf-share-mbeans-wlst.jar:/usr/app/oracle/product/ECO/Middleware/oracle_common/common/wlst/lib/mdswlst.jar:/usr/app/oracle/product/ECO/Middleware/oracle_common/common/wlst/resources/auditwlst.jar:/usr/app/oracle/product/ECO/Middleware/oracle_common/common/wlst/resources/igfwlsthelp.jar:/usr/app/oracle/product/ECO/Middleware/oracle_common/common/wlst/resources/jps-wlst.jar:/usr/app/oracle/product/ECO/Middleware/oracle_common/common/wlst/resources/jrf-wlst.jar:/usr/app/oracle/product/ECO/Middleware/oracle_common/common/wlst/resources/oamap_help.jar:/usr/app/oracle/product/ECO/Middleware/oracle_common/common/wlst/resources/oamAuthnProvider.jar:/usr/app/oracle/product/ECO/Middleware/oracle_common/common/wlst/resources/ossoiap_help.jar:/usr/app/oracle/product/ECO/Middleware/oracle_common/common/wlst/resources/ossoiap.jar:/usr/app/oracle/product/ECO/Middleware/oracle_common/common/wlst/resources/ovdwlsthelp.jar:/usr/app/oracle/product/ECO/Middleware/oracle_common/common/wlst/resources/sslconfigwlst.jar:/usr/app/oracle/product/ECO/Middleware/oracle_common/common/wlst/resources/wsm-wlst.jar
    [exec]
    [exec] PATH=/usr/app/oracle/product/ECO/Middleware/wlserver_10.3/server/bin:/usr/app/oracle/product/ECO/Middleware/modules/org.apache.ant_1.7.1/bin:/usr/java/jdk1.6.0_34/jre/bin:/usr/java/jdk1.6.0_34/bin:.:/usr/java/jdk1.6.0_34/jre/bin:/usr/app/oracle/product/ECO/Middleware/modules/org.apache.ant_1.7.1/bin:/usr/app/oracle/product/ECO/EcoAIA/bin:/usr/app/oracle/product/ECO/EcoAIA/aia_instances/AIA30/bin:/usr/kerberos/bin:/usr/local/bin:/bin:/usr/bin:/home/oracle/bin:/usr/app/oracle/product/11.2.0/client_1/bin
    [exec]
    [exec] Your environment has been set.
    [exec]
    [exec] CLASSPATH=/usr/app/oracle/product/ECO/Middleware/patch_wls1035/profiles/default/sys_manifest_classpath/weblogic_patch.jar:/usr/app/oracle/product/ECO/Middleware/patch_jdev1111/profiles/default/sys_manifest_classpath/weblogic_patch.jar:/usr/java/jdk1.6.0_34/lib/tools.jar:/usr/app/oracle/product/ECO/Middleware/wlserver_10.3/server/lib/weblogic_sp.jar:/usr/app/oracle/product/ECO/Middleware/wlserver_10.3/server/lib/weblogic.jar:/usr/app/oracle/product/ECO/Middleware/modules/features/weblogic.server.modules_10.3.5.0.jar:/usr/app/oracle/product/ECO/Middleware/wlserver_10.3/server/lib/webservices.jar:/usr/app/oracle/product/ECO/Middleware/modules/org.apache.ant_1.7.1/lib/ant-all.jar:/usr/app/oracle/product/ECO/Middleware/modules/net.sf.antcontrib_1.1.0.0_1-0b2/lib/ant-contrib.jar:.:/usr/app/oracle/product/ECO/Middleware/wlserver_10.3/server/lib/weblogic.jar:/usr/app/oracle/product/ECO/EcoAIA/lib/aia.jar:/usr/app/oracle/product/ECO/EcoAIA/lib/aia-utils.jar:/usr/app/oracle/product/ECO/Middleware/modules/net.sf.antcontrib_1.1.0.0_1-0b2/lib/ant-contrib.jar:/usr/app/oracle/product/ECO/Middleware/oracle_common/modules/oracle.mds_11.1.1/mdsrt.jar:/usr/app/oracle/product/ECO/Middleware/oracle_common/modules/oracle.jps_11.1.1/jps-ee.jar:/usr/app/oracle/product/ECO/Middleware/oracle_common/modules/oracle.jps_11.1.1/jps-common.jar:/usr/app/oracle/product/ECO/Middleware/oracle_common/modules/oracle.jps_11.1.1/jps-internal.jar:/usr/app/oracle/product/ECO/Middleware/oracle_common/modules/oracle.jps_11.1.1/jps-unsupported-api.jar:/usr/app/oracle/product/ECO/Middleware/oracle_common/modules/oracle.pki_11.1.1/oraclepki.jar:/usr/app/oracle/product/ECO/Middleware/oracle_common/modules/oracle.idm_11.1.1/identitystore.jar:/usr/app/oracle/product/ECO/Middleware/oracle_common/modules/oracle.webservices_11.1.1/oracle.webservices.standalone.client.jar:/usr/app/oracle/product/ECO/Middleware/Oracle_SOA1/soa/modules/oracle.soa.fabric_11.1.1/oracle-soa-client-api.jar:/usr/app/oracle/product/ECO/Middleware/oracle_common/soa/modules/oracle.soa.mgmt_11.1.1/soa-infra-mgmt.jar:/usr/app/oracle/product/ECO/Middleware/Oracle_SOA1/soa/modules/oracle.soa.mgmt_11.1.1/soa-infra-mgmt.jar:/usr/app/oracle/product/ECO/Middleware/oracle_common/modules/oracle.fabriccommon_11.1.1/fabric-common.jar:/usr/app/oracle/product/ECO/Middleware/Oracle_SOA1/soa/modules/oracle.soa.fabric_11.1.1/fabric-runtime.jar:/usr/app/oracle/product/ECO/Middleware/oracle_common/BC4J/jlib/commons-cli-1.0.jar:/usr/app/oracle/product/ECO/Middleware/oracle_common/jlib/commons-cli-1.0.jar::/usr/app/oracle/product/ECO/Middleware/oracle_common/modules/oracle.jrf_11.1.1/jrf-wlstman.jar:/usr/app/oracle/product/ECO/Middleware/oracle_common/common/wlst/lib/adfscripting.jar:/usr/app/oracle/product/ECO/Middleware/oracle_common/common/wlst/lib/adf-share-mbeans-wlst.jar:/usr/app/oracle/product/ECO/Middleware/oracle_common/common/wlst/lib/mdswlst.jar:/usr/app/oracle/product/ECO/Middleware/oracle_common/common/wlst/resources/auditwlst.jar:/usr/app/oracle/product/ECO/Middleware/oracle_common/common/wlst/resources/igfwlsthelp.jar:/usr/app/oracle/product/ECO/Middleware/oracle_common/common/wlst/resources/jps-wlst.jar:/usr/app/oracle/product/ECO/Middleware/oracle_common/common/wlst/resources/jrf-wlst.jar:/usr/app/oracle/product/ECO/Middleware/oracle_common/common/wlst/resources/oamap_help.jar:/usr/app/oracle/product/ECO/Middleware/oracle_common/common/wlst/resources/oamAuthnProvider.jar:/usr/app/oracle/product/ECO/Middleware/oracle_common/common/wlst/resources/ossoiap_help.jar:/usr/app/oracle/product/ECO/Middleware/oracle_common/common/wlst/resources/ossoiap.jar:/usr/app/oracle/product/ECO/Middleware/oracle_common/common/wlst/resources/ovdwlsthelp.jar:/usr/app/oracle/product/ECO/Middleware/oracle_common/common/wlst/resources/sslconfigwlst.jar:/usr/app/oracle/product/ECO/Middleware/oracle_common/common/wlst/resources/wsm-wlst.jar:/usr/app/oracle/product/ECO/Middleware/utils/config/10.3/config-launch.jar::/usr/app/oracle/product/ECO/Middleware/wlserver_10.3/common/derby/lib/derbynet.jar:/usr/app/oracle/product/ECO/Middleware/wlserver_10.3/common/derby/lib/derbyclient.jar:/usr/app/oracle/product/ECO/Middleware/wlserver_10.3/common/derby/lib/derbytools.jar::
    [exec]
    [exec] Initializing WebLogic Scripting Tool (WLST) ...
    [exec]
    [exec] Welcome to WebLogic Server Administration Scripting Shell
    [exec]
    [exec] Type help() for help on available commands
    [exec]
    [exec] Connecting to t3://10.2.116.31:7001 with userid weblogic ...
    [exec] Successfully connected to Admin Server 'EcoAdminServer' that belongs to domain 'base_domain'.
    [exec]
    [exec] Warning: An insecure protocol was used to connect to the
    [exec] server. To ensure on-the-wire security, the SSL port or
    [exec] Admin port should be used instead.
    [exec]
    [exec] soa_server1
    [exec] Location changed to domainRuntime tree. This is a read-only tree with DomainMBean as the root.
    [exec] For more help, use help(domainRuntime)
    [exec]
    [exec] Uploading metadata to server
    [exec] Importing metadata into repository . . .
    [exec] Metadata transfer operation completed
    [exec]
    [exec] Import Metadata Successful !!
    [exec] Disconnected from weblogic server: EcoAdminServer
    [delete] Deleting: /usr/app/oracle/product/ECO/EcoAIA/aia_instances/AIA30/tmp/keyFile
    [delete] Deleting: /usr/app/oracle/product/ECO/EcoAIA/aia_instances/AIA30/tmp/propFile
    [delete] Deleting directory /usr/app/oracle/product/ECO/EcoAIA/aia_instances/AIA30/AIAMetaData/tempMetadata
    [delete] Deleting: /usr/app/oracle/product/ECO/EcoAIA/aia_instances/AIA30/tmp/AIDExecuteDP_temp_1192088791.xml
    [delete] Deleting: /usr/app/oracle/product/ECO/EcoAIA/aia_instances/AIA30/tmp/AIDExtractxsl_temp_40736607.xsl
    [echo]
    [echo] === Completed Configurations of /usr/app/oracle/product/ECO/EcoAIA/aia_instances/AIA30/config/UpdateMetaDataDP.xml===
    [echo]
    [echo]
    [echo]
    [echo]
    [echo] Deployment log -- /usr/app/oracle/product/ECO/EcoAIA/aia_instances/AIA30/logs/UpdateMetaDataDP_Deployments_2012-11-21_17-53-51.log
    [echo]
    [echo]
    [echo] === Executing Deployments of /usr/app/oracle/product/ECO/EcoAIA/aia_instances/AIA30/config/UpdateMetaDataDP.xml===
    [echo]
    [echo]
    [xslt] Processing /usr/app/oracle/product/ECO/EcoAIA/aia_instances/AIA30/config/UpdateMetaDataDP.xml to /usr/app/oracle/product/ECO/EcoAIA/aia_instances/AIA30/tmp/AIDExecuteDP_temp_1192088791.xml
    [xslt] Loading stylesheet /usr/app/oracle/product/ECO/EcoAIA/aia_instances/AIA30/tmp/AIDExtractxsl_temp_40736607.xsl
    executeDP:
    [delete] Deleting: /usr/app/oracle/product/ECO/EcoAIA/aia_instances/AIA30/tmp/AIDExecuteDP_temp_1192088791.xml
    [delete] Deleting: /usr/app/oracle/product/ECO/EcoAIA/aia_instances/AIA30/tmp/AIDExtractxsl_temp_40736607.xsl
    [echo]
    [echo] === Completed Deployments of /usr/app/oracle/product/ECO/EcoAIA/aia_instances/AIA30/config/UpdateMetaDataDP.xml===
    [echo]
    [echo]
    [echo]
    [echo]
    [echo] Deployment log -- /usr/app/oracle/product/ECO/EcoAIA/aia_instances/AIA30/logs/UpdateMetaDataDP_PostInstallScript_2012-11-21_17-53-51.log
    [echo]
    [echo]
    [echo] === Executing PostInstallScript of /usr/app/oracle/product/ECO/EcoAIA/aia_instances/AIA30/config/UpdateMetaDataDP.xml===
    [echo]
    [echo]
    [xslt] Processing /usr/app/oracle/product/ECO/EcoAIA/aia_instances/AIA30/config/UpdateMetaDataDP.xml to /usr/app/oracle/product/ECO/EcoAIA/aia_instances/AIA30/tmp/AIDExecuteDP_temp_1192088791.xml
    [xslt] Loading stylesheet /usr/app/oracle/product/ECO/EcoAIA/aia_instances/AIA30/tmp/AIDExtractxsl_temp_40736607.xsl
    executeDP:
    [delete] Deleting: /usr/app/oracle/product/ECO/EcoAIA/aia_instances/AIA30/tmp/AIDExecuteDP_temp_1192088791.xml
    [delete] Deleting: /usr/app/oracle/product/ECO/EcoAIA/aia_instances/AIA30/tmp/AIDExtractxsl_temp_40736607.xsl
    [echo]
    [echo] === Completed PostInstallScript of /usr/app/oracle/product/ECO/EcoAIA/aia_instances/AIA30/config/UpdateMetaDataDP.xml===
    [echo]
    BUILD SUCCESSFUL
    Total time: 3 minutes 44 seconds
    [oracle@PDC-CRM-WEBLOGIC01 bin]$
    Thanku

  • Unable to see local variable values when debugging java

    Hi,
    I am using JDev 10.1.2 with java version 1.4.2_04.
    I have been using JDev to debug my java programs. But suddenly from this morning I am unable to see local variable values. I am able to see class and instance variables. This has happened to me before and I had restarted my machine couple of time, to get this sorted. But this time, nothing helps. Going thru the forum I found out that Include Debug information (Project Properties -> Compiler Option) need to be turned ON. It is already turned ON for me.
    I would greatly appreciate if you could let me know how to crack this problem.
    Thanks in advance.

    No. The local variables 'used' to show up during debugging. But erratically it doesn't show up local variable values. I had to restart my machine couple of times whenever this happens, inorder to see the local variable values. But this time even restarting doesn't help.
    Is there any preference setup that need to be turned on/off to see local variables?
    Also I can't step into a static method now. Any idea why this happens?

  • Unable to see interface on ASA 5510 Firewall

    Hi All,
    I am unable to see 4th interface on my firewall i.e fastether0/3 on my firewall ASA 5510.
    Below is the output.
    ciscoasa# sh int ip br
    Interface                  IP-Address      OK? Method Status                Protocol
    Ethernet0/0                x.x.x.x           YES CONFIG up                    up
    Ethernet0/1                x.x.x.x           YES CONFIG up                    up
    Ethernet0/2                unassigned      YES unset  administratively down down
    Internal-Control0/0        127.0.1.1       YES unset  up                    up
    Internal-Data0/0           unassigned      YES unset  up                    up
    Management0/0              192.168.1.1     YES CONFIG up                    up
    Please suggest what could be the reason.
    Regards
    Pankaj

    Hi Ramraj,
    Even i have the base license for my ASA 5510 which is showing all the 4 interfaces in sh ver. I don't think so license would be an issue. There should be some IOS code bug that needs to be upgraded. If this goes for an OS upgrade it should get resolved.
    Its not showing up in sh ver . As Karsten said he might be running on old IOS version.
    fy-a# sh ver
    Cisco Adaptive Security Appliance Software Version 8.4(4)1
    Device Manager Version 6.4(5)
    Compiled on Thu 14-Jun-12 11:20 by builders
    System image file is "disk0:/asa844-1-k8.bin"
    Config file at boot was "startup-config"
    fy-a up 1 day 1 hour
    Hardware:   ASA5510, 1024 MB RAM, CPU Pentium 4 Celeron 1600 MHz
    Internal ATA Compact Flash, 256MB
    BIOS Flash M50FW016 @ 0xfff00000, 2048KB
    Encryption hardware device : Cisco ASA-55x0 on-board accelerator (revision 0x0)
                                 Boot microcode   : CN1000-MC-BOOT-2.00
                                 SSL/IKE microcode: CNLite-MC-SSLm-PLUS-2.03
                                 IPSec microcode  : CNlite-MC-IPSECm-MAIN-2.06
                                 Number of accelerators: 1
    0: Ext: Ethernet0/0         : address is 2c54.2d0c.8f1a, irq 9
    1: Ext: Ethernet0/1         : address is 2c54.2d0c.8f1b, irq 9
    2: Ext: Ethernet0/2         : address is 2c54.2d0c.8f1c, irq 9
    3: Ext: Ethernet0/3         : address is 2c54.2d0c.8f1d, irq 9
    4: Ext: Management0/0       : address is 2c54.2d0c.8f1e, irq 11
    5: Int: Not used            : irq 11
    6: Int: Not used            : irq 5
    Licensed features for this platform:
    Maximum Physical Interfaces       : Unlimited      perpetual
    Maximum VLANs                     : 50             perpetual
    Inside Hosts                      : Unlimited      perpetual
    Failover                          : Disabled       perpetual
    VPN-DES                           : Enabled        perpetual
    VPN-3DES-AES                      : Enabled        perpetual
    Security Contexts                 : 0              perpetual
    GTP/GPRS                          : Disabled       perpetual
    AnyConnect Premium Peers          : 2              perpetual
    AnyConnect Essentials             : Disabled       perpetual
    Other VPN Peers                   : 250            perpetual
    Total VPN Peers                   : 250            perpetual
    Shared License                    : Disabled       perpetual
    AnyConnect for Mobile             : Disabled       perpetual
    AnyConnect for Cisco VPN Phone    : Disabled       perpetual
    Advanced Endpoint Assessment      : Disabled       perpetual
    UC Phone Proxy Sessions           : 2              perpetual
    Total UC Proxy Sessions           : 2              perpetual
    Botnet Traffic Filter             : Disabled       perpetual
    Intercompany Media Engine         : Disabled       perpetual
    This platform has a Base license.
    Serial Number: JMX1AXXXXX
    Running Permanent Activation Key: XXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXX
    Configuration register is 0x1
    Configuration has not been modified since last system restart.
    fy-a#
    Ramraj please do correct me if am wrong.
    Please do rate if the given information helps.
    By
    Karthik

  • When using the camera downloader in Adobe Bridge CS6 with Nikon D5200 we are unable to see previews of the photos and it is very slow to download. The issue occurs under a the users rights, but not under admin level. This is a new issue

    When using the camera downloader in Adobe Bridge CS6 with Nikon D5200 we are unable to see previews of the photos and it is very slow to download. The issue occurs under a the users rights, but not under admin level. This is a new issue.

    Hi Jdentremont,
    Lync client gets user photos by first querying the Address Book Web Query (ABWQ) service on the server, which is exposed through the Distribution List Expansion web service. The client receives
    the image file and then copies it to the user's cache to avoid downloading the image each time it needs to be displayed. The attribute values returned from the query are also stored in the cached Address Book Service entry for the user. The Address Book Service
    deletes all cached images every 24 hours, which means that it can take up to 24 hours for new user images to be updated in the cache on the server.
    To troubleshoot your problem, please follow the steps below:
    1.  Navigate to
     “X:\share\1-WebServices-1\ABfiles\000000000\000000000” folder. (ABS file share)
    You should see some photo files in this folder as the following screenshot.
    2. Delete all the files in this folder.
    3. On test PC, delete local cache files.
    %userprofile%\AppData\Local\Microsoft\Office\15.0\Lync\[email protected]
    4. Sign-in Lync with the test account.
    5. Go back to the ABS file share, check if there is any Photo file in the folder.
    Best regards,
    Eric
    Please remember to mark the replies as answers if they help, and unmark the answers if they provide no help. If you have feedback for TechNet Support, contact [email protected]

Maybe you are looking for

  • Momentary gamma shifts in PS-CS6 composed image h.264 video

    Before I finalize a bug report, wonder what others are seeing? Having discovered the problem in a more complex scenario, I've narrowed down to a simple set of jpg images placed sequentially in a video group, and exported as an h.264 video from Photos

  • How to transfer video from iPhone to ipad

    How do you transfer video from iPhone to ipad

  • Installed Maverick, now Macbook Pro will not boot in normal or safe mode. UPSET!

    Hello to anyone who can be of help to me. I have been without my 2008 Macbook Pro for months due to installing Maverick. After installing it, within a day or two, it crashed and now will not reboot in normal mode or sade mode. I've never had any prob

  • Making a webdynpro through Web Service| VERY URGENT

    Hi ,    I am having a problem in the scenario when I am trying to make a webdynpro application using a WSDL file . When I deploy the application in my first view which is a search view the field appears disabled and I am not able to input the values

  • Problem with the comunication

    Hi Experts i got this problem, i got 4 interfaces Proxy(abap) to jdbc in production exactly the same scenario, but one of them interface don't works, i tried to run  Dev. but i dont receiv any record in PI, I checked the RFC conection and it works, t