Help Me .....exec()  InputSream

Hi !
I have got a problem on my program.
I use the commande exec() to execute one of my perl scripts like this :
Process p=Runtime.getRuntime().exec(cmd,null,dir);
the script launch by the commande "cmd" runs correctly.
My problem is that i want to read continously the output of my script (the script last 15 minutes) ... but I'm not able to do this ...
I can only recove the output at the end of the script(but not continously).
my code is like this....
public class ThreadLectureSortieScript extends Thread
private InputStream out;
private TextArea sortie;
private boolean ok=true;
public ThreadLectureSortieScript(InputStream o,TextArea s)
out=o;
sortie=s;
public void run()
DataInputStream dout=new DataInputStream(out);
byte []b=new byte[1];
int n;
try
while (ok)
n=dout.read();
sortie.append(""+(char)n);
sortie.append("lll");
catch (Exception ex)
ex.printStackTrace();
public void fin()
ok=false;
thank you in advance !!!
if you have some web site that talk about this subjet ....
bye Boubou

try this:
import java.io.*;
public class ProcessTest {
  class MyPrinter implements Runnable {
    private InputStream in;
    private OutputStream out;
    public MyPrinter(InputStream processI, OutputStream processO) {
      in = processI;
      out = processO;
    public void run() {
      try {
        for(int bytes; (bytes = in.read()) != -1; ) out.write(bytes);                    
     out.flush();
      } catch(IOException ioe) {
     ioe.printStackTrace();
  public ProcessTest() {
    try {          
      exec(new String[] {"C://Test.bat"}, System.out, System.out);           
    } catch (IOException ioe) {
      ioe.printStackTrace();
    } catch (InterruptedException ie) {
      ie.printStackTrace();
  private int exec(String[] cmd, OutputStream out, OutputStream err) throws IOException, InterruptedException {
    Process p = Runtime.getRuntime().exec(cmd);
    Thread tout = new Thread(new MyPrinter(p.getInputStream(), out));
    tout.start();
    Thread terr = new Thread(new MyPrinter(p.getErrorStream(), err));
    terr.start();
    p.waitFor();
    tout.join();
    terr.join();     
    return p.exitValue();
  public static void main(String[] argv) {
    new ProcessTest();           
}

Similar Messages

  • TRY ... CATCH doesn't work with EXEC SQL?

    When I created a native SQL statement, I knew before, that it would take a few tries to get it working. I decided to use exception classes to avoid short dumps, but it didn't work.
    Following code causes a short dump because of the dot after :xp_stras in the native SQL SELECT statement:
       try.
           EXEC SQL                     PERFORMING  list.
             SELECT LIFNR, NAME1, STRAS
                                    INTO  :xsl
                                    FROM  LFA1
             WHERE  UPPER( NAME1 )  LIKE  :xp_name1
             AND    UPPER( STRAS )  LIKE  :xp_stras.
           ENDEXEC.
                                                                                    catch CX_SY_NATIVE_SQL_ERROR.
           write: /1 'CX_SY_NATIVE_SQL_ERROR'.
       catch CX_SY_SQL_ERROR.
           write: /1 'CX_SY_SQL_ERROR'.
       catch CX_DYNAMIC_CHECK.
           write: /1 'CX_DYNAMIC_CHECK'.
       catch CX_ROOT.
           write: /1 'CX_SY_ROOT'.
       endtry.
    In ST22 you can see
    Name of runtime error: DBIF_DSQL2_SQL_ERROR
    Exception:
    The name of the exception is empty, in other short dumps you can find there the name of the exception class. Maybe that's the reason for CATCH does'nt work, but I don't understand it.
    Online help for EXEC SQL says:
    Catchable Exceptions
    CXSY_NATIVE_SQL_ERROR_
    Cause: SQL-Error at the execution of a Native SQL-command.
    Runtime Error: DBIF_DSQL2_SQL_ERROR
    We have SAP ECC 6.0 with SAP_BASIS rel. 700 lvl. 0013.
    If You have an idea why CATCH doesn't work, please tell me!
    Regards,
    Klaus

    Hi Rob,
    I tried out Your original code as program ZTEST5 and got a short dump (sorry, some of the short dump symbols are formatting this post in a wrong way ...):
    Short text
        An SQL error occurred when executing Native SQL.
    What happened?
        The error 919 occurred in the current database connection "DEFAULT".
    What can you do?
        Note down which actions and inputs caused the error.
        To process the problem further, contact you SAP system
        administrator.
        Using Transaction ST22 for ABAP Dump Analysis, you can look
        at and manage termination messages, and you can also
        keep them for a long time.
    How to correct the error
        Database error text........: "ORA-00919: invalid function"
        Database error code........: 919
        Triggering SQL statement...: "FETCH NEXT "
        Internal call code.........: "[DBDS/NEW DSQL]"
        Please check the entries in the system log (Transaction SM21).
        If the error occures in a non-modified SAP program, you may be able to
        find an interim solution in an SAP Note.
        If you have access to SAP Notes, carry out a search with the following
        keywords:
        "DBIF_DSQL2_SQL_ERROR" " "
        "ZTEST5" or "ZTEST5"
        "START-OF-SELECTION"
        If you cannot solve the problem yourself and want to send an error
        notification to SAP, include the following information:
        1. The description of the current problem (short dump)
           To save the description, choose "System->List->Save->Local File
        (Unconverted)".
        2. Corresponding system log
           Display the system log by calling transaction
           Restrict the time interval to 10 minutes befor
        after the short dump. Then choose "System->List->
        (Unconverted)".
        3. If the problem occurs in a problem of your own
        program: The source code of the program
           In the editor, choose "Utilities->More
        Utilities->Upload/Download->Download".
        4. Details about the conditions under which the e
        actions and input led to the error.
    System environment
        SAP-Release 700
        Application server... "lux01617"
        Network address...... "195.217.80.104"
        Operating system..... "Linux"
        Release.............. "2.6.5-7.283-smp"
        Hardware type........ "x86_64"
        Character length.... 16 Bits
        Pointer length....... 64 Bits
        Work process number.. 5
        Shortdump setting.... "full"
        Database server... "lux09208"
        Database type..... "ORACLE"
        Database name..... "D10"
        Database user ID.. "SAPDAT"
        Char.set.... "C"
        SAP kernel....... 700
        created (date)... "Dec 2 2007 20:18:08"
        create on........ "Linux GNU SLES-9 x86_64 cc3.3.3"
        Database version. "OCI_102 (10.2.0.2.0) "
        Patch level. 138
        Patch text.. " "
        Database............. "ORACLE 9.2.0.., ORACLE 10.1.0.., ORACLE 1
        SAP database version. 700
        Operating system..... "Linux 2.6"
        Memory consumption
        Roll.... 16192
        EM...... 16759392
        Heap.... 0
        Page.... 98304
        MM Used. 694160
        MM Free. 3493088
    User and Transaction
        Client.............. 500
        User................ "Z0000D2P"
        Language key........ "E"
        Transaction......... "SE38 "
        Transactions ID..... "48FE92EB921F51C3E1000000C3D95068"
        Program............. "ZTEST5"
        Screen.............. "SAPMSSY0 1000"
        Screen line......... 6
    Information on where terminated
        Termination occurred in the ABAP program "ZTEST5" - in "START-OF-SELECTION".
        The main program was "ZTEST5 ".
        In the source code you have the termination point in line 16
        of the (Include) program "ZTEST5".
    Source Code Extract
    Line  SourceCde
        1 REPORT ztest LINE-SIZE 80 MESSAGE-ID 00.
        2
        3 TABLES: lfa1.
        4
        5 DATA: BEGIN OF xsl,
        6         lifnr TYPE lfa1-lifnr,
        7         name1 TYPE lfa1-name1,
        8         stras TYPE lfa1-stras,
        9       END   OF xsl.
       10
       11 DATA: xp_name1 TYPE lfa1-name1,
       12       xp_stras TYPE lfa1-stras.
       13
       14 TRY.
       15     EXEC SQL PERFORMING list.
    >>>>>       SELECT LIFNR, NAME1, STRAS
       17       INTO :xsl
       18       FROM LFA1
       19       WHERE UPPER( NAME1 ) LIKE :xp_name1
       20       AND UPPER( STRAS ) LIKE :xp_stras.
       21     ENDEXEC.
       22
       23   CATCH cx_sy_native_sql_error.
       24     WRITE: /1 'CX_SY_NATIVE_SQL_ERROR'.
       25   CATCH cx_sy_sql_error.
       26     WRITE: /1 'CX_SY_SQL_ERROR'.
       27   CATCH cx_dynamic_check.
       28     WRITE: /1 'CX_DYNAMIC_CHECK'.
       29   CATCH cx_root.
       30     WRITE: /1 'CX_SY_ROOT'.
       31 ENDTRY.
       32
       33 &----
       34 *&      Form  LIST
       35 &----
    Edited by: Klaus Babl on Oct 22, 2008 6:42 AM

  • Java code in jsp source files is not allowed in ojsp.next mode.

    Hi,
    I’m working on WC Spaces Customization library “com.acme.custom.webcenter.spaces.war”. From time to time, when I deploy the library to WC Server, it errors out.
    weblogic.management.DeploymentException: Cannot undeploy library Extension-Name: com.acme.custom.webcenter.spaces, Specification-Version: 11.1.1, Implementation-Version: 11.1.1.2.113 from server WC_Spaces, because the following deployed applications reference it: webcenter-rest.war, spaces.war, sharepoint-servlet.war, webcenter-rss.war
    If I try to login the Spaces, I get “Java code in jsp source files is not allowed in ojsp.next mode.” Should I stop the Spaces server before the deployment? In this case, other people won’t have accesses to Spaces? The deployment error doesn’t happen all the time.
    oracle.jsp.parse.JavaCodeException: Line # 6, oracle.jsp.parse.JspParseTagScriptlet@5b9864ca
    Error: Java code in jsp source files is not allowed in ojsp.next mode.
    at oracle.jsp.parse.JspParseTagCore.createNode(JspParseTagCore.java:263)
    at oracle.jsp.parse.JspUtils.createChildNodes(JspUtils.java:2489)
    at oracle.jsp.parse.JspParseTagFile.createTree(JspParseTagFile.java:475)
    at oracle.jsp.parse.OracleJsp2Java.transformImpl(OracleJsp2Java.java:535)
    at oracle.jsp.parse.OracleJsp2Java.transform(OracleJsp2Java.java:593)
    at oracle.jsp.runtimev2.JspPageCompiler.attemptCompilePage(JspPageCompiler.java:691)
    at oracle.jsp.runtimev2.JspPageCompiler.compileBothModes(JspPageCompiler.java:490)
    at oracle.jsp.runtimev2.JspPageCompiler.parseAndGetTreeNode(JspPageCompiler.java:457)
    at oracle.jsp.runtimev2.JspPageInfo.compileAndLoad(JspPageInfo.java:624)
    at oracle.jsp.runtimev2.JspPageTable.compileAndServe(JspPageTable.java:645)
    at oracle.jsp.runtimev2.JspPageTable.service(JspPageTable.java:385)
    at oracle.jsp.runtimev2.JspServlet.internalService(JspServlet.java:802)
    at oracle.jsp.runtimev2.JspServlet.service(JspServlet.java:726)
    at javax.servlet.http.HttpServlet.service(HttpServlet.java:820)
    Buildfile: C:\JDeveloper\mywork\LamwWebCenterSpacesExtensions\WebCenterSpacesSharedLibExtension\build.xml
    =======
    init-wls:
    deploy-shared-lib:
    [echo] ----------------------------
    [echo] C:\JDeveloper\mywork\myuserconfigfile.secure C:\JDeveloper\mywork\myuserkeyfile.secure claptd01:7001 C:\JDeveloper\mywork\XxxWebCenterSpacesExtensions/WebCenterSpacesSharedLibExtension/deploy/exploded WC_Spaces com.acme.custom.webcenter.spaces
    [exec]
    [exec] CLASSPATH=C:\oracle\MIDDLE~1.5\patch_wls1035\profiles\default\sys_manifest_classpath\weblogic_patch.jar;C:\oracle\MIDDLE~1.5\patch_jdev1111\profiles\default\sys_manifest_classpath\weblogic_patch.jar;C:\oracle\MIDDLE~1.5\JDK160~1\lib\tools.jar;C:\oracle\MIDDLE~1.5\WLSERV~1.3\server\lib\weblogic_sp.jar;C:\oracle\MIDDLE~1.5\WLSERV~1.3\server\lib\weblogic.jar;C:\oracle\MIDDLE~1.5\modules\features\weblogic.server.modules_10.3.5.0.jar;C:\oracle\MIDDLE~1.5\WLSERV~1.3\server\lib\webservices.jar;C:\oracle\MIDDLE~1.5\modules\ORGAPA~1.1/lib/ant-all.jar;C:\oracle\MIDDLE~1.5\modules\NETSFA~1.0_1/lib/ant-contrib.jar;.;%JAVA_HOME\jre\lib;C:\Apache\apache-cxf\lib;C:\Apache\apache-cxf\lib\cxf-manifest.jar;.\build\classes;C:\Program Files\Java\jre6\lib\ext\QTJava.zip;C:\oracle\MIDDLE~1.5\ORACLE~1/modules/oracle.jrf_11.1.1/jrf-wlstman.jar;C:\oracle\MIDDLE~1.5\ORACLE~1\common\wlst\lib\ADF-SH~1.JAR;C:\oracle\MIDDLE~1.5\ORACLE~1\common\wlst\lib\ADFSCR~1.JAR;C:\oracle\MIDDLE~1.5\ORACLE~1\common\wlst\lib\mdswlst.jar;C:\oracle\MIDDLE~1.5\ORACLE~1\common\wlst\RESOUR~1\AUDITW~1.JAR;C:\oracle\MIDDLE~1.5\ORACLE~1\common\wlst\RESOUR~1\IGFWLS~1.JAR;C:\oracle\MIDDLE~1.5\ORACLE~1\common\wlst\RESOUR~1\jps-wlst.jar;C:\oracle\MIDDLE~1.5\ORACLE~1\common\wlst\RESOUR~1\jrf-wlst.jar;C:\oracle\MIDDLE~1.5\ORACLE~1\common\wlst\RESOUR~1\OAMAP_~1.JAR;C:\oracle\MIDDLE~1.5\ORACLE~1\common\wlst\RESOUR~1\OAMAUT~1.JAR;C:\oracle\MIDDLE~1.5\ORACLE~1\common\wlst\RESOUR~1\ossoiap.jar;C:\oracle\MIDDLE~1.5\ORACLE~1\common\wlst\RESOUR~1\OSSOIA~1.JAR;C:\oracle\MIDDLE~1.5\ORACLE~1\common\wlst\RESOUR~1\OVDWLS~1.JAR;C:\oracle\MIDDLE~1.5\ORACLE~1\common\wlst\RESOUR~1\SSLCON~1.JAR;C:\oracle\MIDDLE~1.5\ORACLE~1\common\wlst\RESOUR~1\wsm-wlst.jar
    [exec]
    [exec] PATH=C:\oracle\MIDDLE~1.5\patch_wls1035\profiles\default\native;C:\oracle\MIDDLE~1.5\patch_jdev1111\profiles\default\native;C:\oracle\MIDDLE~1.5\WLSERV~1.3\server\native\win\32;C:\oracle\MIDDLE~1.5\WLSERV~1.3\server\bin;C:\oracle\MIDDLE~1.5\modules\ORGAPA~1.1\bin;C:\oracle\MIDDLE~1.5\JDK160~1\jre\bin;C:\oracle\MIDDLE~1.5\JDK160~1\bin;C:\Program Files\PHP52\;C:\Program Files\Common Files\OTG;C:\oracle\product\10.2.0\client_1\bin;C:\oracle\ora_adi\bin;C:\PROGRA~1\REFLEC~1;C:\Program Files\Reflection;C:\Program Files\Oracle\jre\1.1.8\bin;C:\WINDOWS\system32;C:\WINDOWS;C:\WINDOWS\System32\Wbem;E:\MSSQL7\BINN;C:\Program Files\ATI Technologies\ATI.ACE\Core-Static;C:\Program Files\Common Files\Roxio Shared\DLLShared\;C:\Program Files\ATI Technologies\ATI.ACE\;C:\Program Files\Microsoft SQL Server\80\Tools\BINN;C:\Program Files\Microsoft SQL Server\80\Tools\Binn\;C:\Program Files\Microsoft SQL Server\90\Tools\binn\;C:\WINDOWS\system32\WindowsPowerShell\v1.0;C:\glassfish3\jdk\bin;C:\Program Files\TortoiseSVN\bin;C:\Program Files\Vim\vim73;c:\apache\ant\bin;c:\jboss\bin;C:\Apache\apache-cxf\bin;C:\glassfish\bin;C:\Program Files\QuickTime\QTSystem\;C:\oracle\MIDDLE~1.5\WLSERV~1.3\server\native\win\32\oci920_8
    [exec]
    [exec] Your environment has been set.
    [exec]
    [exec] CLASSPATH=C:\oracle\MIDDLE~1.5\patch_wls1035\profiles\default\sys_manifest_classpath\weblogic_patch.jar;C:\oracle\MIDDLE~1.5\patch_jdev1111\profiles\default\sys_manifest_classpath\weblogic_patch.jar;C:\oracle\MIDDLE~1.5\JDK160~1\lib\tools.jar;C:\oracle\MIDDLE~1.5\WLSERV~1.3\server\lib\weblogic_sp.jar;C:\oracle\MIDDLE~1.5\WLSERV~1.3\server\lib\weblogic.jar;C:\oracle\MIDDLE~1.5\modules\features\weblogic.server.modules_10.3.5.0.jar;C:\oracle\MIDDLE~1.5\WLSERV~1.3\server\lib\webservices.jar;C:\oracle\MIDDLE~1.5\modules\ORGAPA~1.1/lib/ant-all.jar;C:\oracle\MIDDLE~1.5\modules\NETSFA~1.0_1/lib/ant-contrib.jar;.;%JAVA_HOME\jre\lib;C:\Apache\apache-cxf\lib;C:\Apache\apache-cxf\lib\cxf-manifest.jar;.\build\classes;C:\Program Files\Java\jre6\lib\ext\QTJava.zip;C:\oracle\MIDDLE~1.5\ORACLE~1/modules/oracle.jrf_11.1.1/jrf-wlstman.jar;C:\oracle\MIDDLE~1.5\ORACLE~1\common\wlst\lib\ADF-SH~1.JAR;C:\oracle\MIDDLE~1.5\ORACLE~1\common\wlst\lib\ADFSCR~1.JAR;C:\oracle\MIDDLE~1.5\ORACLE~1\common\wlst\lib\mdswlst.jar;C:\oracle\MIDDLE~1.5\ORACLE~1\common\wlst\RESOUR~1\AUDITW~1.JAR;C:\oracle\MIDDLE~1.5\ORACLE~1\common\wlst\RESOUR~1\IGFWLS~1.JAR;C:\oracle\MIDDLE~1.5\ORACLE~1\common\wlst\RESOUR~1\jps-wlst.jar;C:\oracle\MIDDLE~1.5\ORACLE~1\common\wlst\RESOUR~1\jrf-wlst.jar;C:\oracle\MIDDLE~1.5\ORACLE~1\common\wlst\RESOUR~1\OAMAP_~1.JAR;C:\oracle\MIDDLE~1.5\ORACLE~1\common\wlst\RESOUR~1\OAMAUT~1.JAR;C:\oracle\MIDDLE~1.5\ORACLE~1\common\wlst\RESOUR~1\ossoiap.jar;C:\oracle\MIDDLE~1.5\ORACLE~1\common\wlst\RESOUR~1\OSSOIA~1.JAR;C:\oracle\MIDDLE~1.5\ORACLE~1\common\wlst\RESOUR~1\OVDWLS~1.JAR;C:\oracle\MIDDLE~1.5\ORACLE~1\common\wlst\RESOUR~1\SSLCON~1.JAR;C:\oracle\MIDDLE~1.5\ORACLE~1\common\wlst\RESOUR~1\wsm-wlst.jar;C:\oracle\MIDDLE~1.5\utils\config\10.3\config-launch.jar;C:\oracle\MIDDLE~1.5\WLSERV~1.3\common\derby\lib\derbynet.jar;C:\oracle\MIDDLE~1.5\WLSERV~1.3\common\derby\lib\derbyclient.jar;C:\oracle\MIDDLE~1.5\WLSERV~1.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]
    [exec] Deploy started at Wed Mar 28 12:25:08 2012
    [exec]
    [exec] Connecting to t3://claptd01:7001 with userid weblogic ...
    [exec] Successfully connected to Admin Server 'AdminServer' 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] Location changed to edit tree. This is a writable tree with
    [exec] DomainMBean as the root. To make changes you will need to start
    [exec] an edit session via startEdit().
    [exec]
    [exec] For more help, use help(edit)
    [exec] You already have an edit session in progress and hence WLST will
    [exec] continue with your edit session.
    [exec]
    [exec] Starting an edit session ...
    [exec] Started edit session, please be sure to save and activate your
    [exec] changes once you are done.
    [exec] Deploying application from C:\JDeveloper\mywork\XxxWebCenterSpacesExtensions\WebCenterSpacesSharedLibExtension\deploy\exploded\com.acme.custom.webcenter.spaces.war to targets WC_Spaces (upload=true) ...
    [exec] <Mar 28, 2012 12:25:10 PM EDT> <Info> <J2EE Deployment SPI> <BEA-260121> <Initiating deploy operation for application, com.acme.custom.webcenter.spaces [archive: C:\JDeveloper\mywork\XxxWebCenterSpacesExtensions\WebCenterSpacesSharedLibExtension\deploy\exploded\com.acme.custom.webcenter.spaces.war], to WC_Spaces .>
    [exec] You have an edit session in progress, hence WLST will not
    [exec] block for your deployment to complete.
    [exec] Started the Deployment of Application. Please refer to the returned WLSTProgress object or variable LAST to track the status.
    [exec]
    [exec] ### ### ###: Deploy done
    [exec]
    [exec] 0
    [exec]
    [exec] ### ### ###: Status of Deploy
    [exec]
    [exec] Current Status of your Deployment:
    [exec] Deployment command type: deploy
    [exec] Deployment State : running
    [exec] Deployment Message : [Deployer:149140]The task cannot be processed further until the current edit session is activated. When this occurs, task processing will continue. The user can exit the deployer tool without affecting the task.
    [exec]
    [exec]
    [exec] ### ### ###: Saving
    [exec]
    [exec] Saving all your changes ...
    [exec] Saved all your changes successfully.
    [exec]
    [exec] ### ### ###: Activating
    [exec]
    [exec] Activating all your changes, this may take a while ...
    [exec] The edit lock associated with this edit session is released
    [exec] once the activation is completed.
    [exec] This Exception occurred at Wed Mar 28 12:25:18 EDT 2012.
    [exec] weblogic.management.DeploymentException: Cannot undeploy library Extension-Name: com.acme.custom.webcenter.spaces, Specification-Version: 11.1.1, Implementation-Version: 11.1.1.2.113 from server WC_Spaces, because the following deployed applications reference it: webcenter-rest.war, spaces.war, sharepoint-servlet.war, webcenter-rss.war
    [exec]      at weblogic.deploy.event.DeploymentEventManager.sendVetoableDeploymentEvent(DeploymentEventManager.java:337)
    [exec]      at weblogic.deploy.internal.targetserver.operations.AbstractOperation.fireVetoableDeploymentEvent(AbstractOperation.java:781)
    [exec]      at weblogic.deploy.internal.targetserver.operations.AbstractOperation.prepare(AbstractOperation.java:216)
    [exec]      at weblogic.deploy.internal.targetserver.DeploymentManager.handleDeploymentPrepare(DeploymentManager.java:747)
    [exec]      at weblogic.deploy.internal.targetserver.DeploymentManager.prepareDeploymentList(DeploymentManager.java:1216)
    [exec]      at weblogic.deploy.internal.targetserver.DeploymentManager.handlePrepare(DeploymentManager.java:250)
    [exec]      at weblogic.deploy.internal.targetserver.DeploymentServiceDispatcher.prepare(DeploymentServiceDispatcher.java:159)
    [exec]      at weblogic.deploy.service.internal.targetserver.DeploymentReceiverCallbackDeliverer.doPrepareCallback(DeploymentReceiverCallbackDeliverer.java:171)
    [exec]      at weblogic.deploy.service.internal.targetserver.DeploymentReceiverCallbackDeliverer.access$000(DeploymentReceiverCallbackDeliverer.java:13)
    [exec]      at weblogic.deploy.service.internal.targetserver.DeploymentReceiverCallbackDeliverer$1.run(DeploymentReceiverCallbackDeliverer.java:46)
    [exec]      at weblogic.work.SelfTuningWorkManagerImpl$WorkAdapterImpl.run(SelfTuningWorkManagerImpl.java:528)
    [exec]      at weblogic.work.ExecuteThread.execute(ExecuteThread.java:209)
    [exec]      at weblogic.work.ExecuteThread.run(ExecuteThread.java:178)
    [exec] Caused by: weblogic.deploy.event.DeploymentVetoException: Cannot undeploy library Extension-Name: com.acme.custom.webcenter.spaces, Specification-Version: 11.1.1, Implementation-Version: 11.1.1.2.113 from server WC_Spaces, because the following deployed applications reference it: webcenter-rest.war, spaces.war, sharepoint-servlet.war, webcenter-rss.war
    [exec]      at weblogic.application.library.LibraryDeploymentListener.verifyLibrary(LibraryDeploymentListener.java:123)
    [exec]      at weblogic.application.library.LibraryDeploymentListener.vetoableApplicationActivate(LibraryDeploymentListener.java:58)
    [exec]      at weblogic.application.library.LibraryDeploymentListener.vetoableApplicationDeploy(LibraryDeploymentListener.java:64)
    [exec]      at weblogic.deploy.event.VetoableDeploymentEvent$2.notifyListener(VetoableDeploymentEvent.java:70)
    [exec]      at weblogic.deploy.event.DeploymentEventManager.sendVetoableDeploymentEvent(DeploymentEventManager.java:335)
    [exec] None
    [exec] #########################################################
    [exec] ##### Deployment Failed #########
    [exec] ##### Contact support with Exception Stack #########
    [exec] #########################################################
    [exec]
    [exec]
    [exec] Exiting WebLogic Scripting Tool.
    [exec]
    [exec] <Mar 28, 2012 12:25:18 PM EDT> <Warning> <JNDI> <BEA-050001> <WLContext.close() was called in a different thread than the one in which it was created.>
    [echo] ----------------------------
    [echo] Restarting the app
    [echo] ----------------------------
    [exec]
    [exec] CLASSPATH=C:\oracle\MIDDLE~1.5\patch_wls1035\profiles\default\sys_manifest_classpath\weblogic_patch.jar;C:\oracle\MIDDLE~1.5\patch_jdev1111\profiles\default\sys_manifest_classpath\weblogic_patch.jar;C:\oracle\MIDDLE~1.5\JDK160~1\lib\tools.jar;C:\oracle\MIDDLE~1.5\WLSERV~1.3\server\lib\weblogic_sp.jar;C:\oracle\MIDDLE~1.5\WLSERV~1.3\server\lib\weblogic.jar;C:\oracle\MIDDLE~1.5\modules\features\weblogic.server.modules_10.3.5.0.jar;C:\oracle\MIDDLE~1.5\WLSERV~1.3\server\lib\webservices.jar;C:\oracle\MIDDLE~1.5\modules\ORGAPA~1.1/lib/ant-all.jar;C:\oracle\MIDDLE~1.5\modules\NETSFA~1.0_1/lib/ant-contrib.jar;.;%JAVA_HOME\jre\lib;C:\Apache\apache-cxf\lib;C:\Apache\apache-cxf\lib\cxf-manifest.jar;.\build\classes;C:\Program Files\Java\jre6\lib\ext\QTJava.zip;C:\oracle\MIDDLE~1.5\ORACLE~1/modules/oracle.jrf_11.1.1/jrf-wlstman.jar;C:\oracle\MIDDLE~1.5\ORACLE~1\common\wlst\lib\ADF-SH~1.JAR;C:\oracle\MIDDLE~1.5\ORACLE~1\common\wlst\lib\ADFSCR~1.JAR;C:\oracle\MIDDLE~1.5\ORACLE~1\common\wlst\lib\mdswlst.jar;C:\oracle\MIDDLE~1.5\ORACLE~1\common\wlst\RESOUR~1\AUDITW~1.JAR;C:\oracle\MIDDLE~1.5\ORACLE~1\common\wlst\RESOUR~1\IGFWLS~1.JAR;C:\oracle\MIDDLE~1.5\ORACLE~1\common\wlst\RESOUR~1\jps-wlst.jar;C:\oracle\MIDDLE~1.5\ORACLE~1\common\wlst\RESOUR~1\jrf-wlst.jar;C:\oracle\MIDDLE~1.5\ORACLE~1\common\wlst\RESOUR~1\OAMAP_~1.JAR;C:\oracle\MIDDLE~1.5\ORACLE~1\common\wlst\RESOUR~1\OAMAUT~1.JAR;C:\oracle\MIDDLE~1.5\ORACLE~1\common\wlst\RESOUR~1\ossoiap.jar;C:\oracle\MIDDLE~1.5\ORACLE~1\common\wlst\RESOUR~1\OSSOIA~1.JAR;C:\oracle\MIDDLE~1.5\ORACLE~1\common\wlst\RESOUR~1\OVDWLS~1.JAR;C:\oracle\MIDDLE~1.5\ORACLE~1\common\wlst\RESOUR~1\SSLCON~1.JAR;C:\oracle\MIDDLE~1.5\ORACLE~1\common\wlst\RESOUR~1\wsm-wlst.jar
    [exec]
    [exec] PATH=C:\oracle\MIDDLE~1.5\patch_wls1035\profiles\default\native;C:\oracle\MIDDLE~1.5\patch_jdev1111\profiles\default\native;C:\oracle\MIDDLE~1.5\WLSERV~1.3\server\native\win\32;C:\oracle\MIDDLE~1.5\WLSERV~1.3\server\bin;C:\oracle\MIDDLE~1.5\modules\ORGAPA~1.1\bin;C:\oracle\MIDDLE~1.5\JDK160~1\jre\bin;C:\oracle\MIDDLE~1.5\JDK160~1\bin;C:\Program Files\PHP52\;C:\Program Files\Common Files\OTG;C:\oracle\product\10.2.0\client_1\bin;C:\oracle\ora_adi\bin;C:\PROGRA~1\REFLEC~1;C:\Program Files\Reflection;C:\Program Files\Oracle\jre\1.1.8\bin;C:\WINDOWS\system32;C:\WINDOWS;C:\WINDOWS\System32\Wbem;E:\MSSQL7\BINN;C:\Program Files\ATI Technologies\ATI.ACE\Core-Static;C:\Program Files\Common Files\Roxio Shared\DLLShared\;C:\Program Files\ATI Technologies\ATI.ACE\;C:\Program Files\Microsoft SQL Server\80\Tools\BINN;C:\Program Files\Microsoft SQL Server\80\Tools\Binn\;C:\Program Files\Microsoft SQL Server\90\Tools\binn\;C:\WINDOWS\system32\WindowsPowerShell\v1.0;C:\glassfish3\jdk\bin;C:\Program Files\TortoiseSVN\bin;C:\Program Files\Vim\vim73;c:\apache\ant\bin;c:\jboss\bin;C:\Apache\apache-cxf\bin;C:\glassfish\bin;C:\Program Files\QuickTime\QTSystem\;C:\oracle\MIDDLE~1.5\WLSERV~1.3\server\native\win\32\oci920_8
    [exec]
    [exec] Your environment has been set.
    [exec]
    [exec] CLASSPATH=C:\oracle\MIDDLE~1.5\patch_wls1035\profiles\default\sys_manifest_classpath\weblogic_patch.jar;C:\oracle\MIDDLE~1.5\patch_jdev1111\profiles\default\sys_manifest_classpath\weblogic_patch.jar;C:\oracle\MIDDLE~1.5\JDK160~1\lib\tools.jar;C:\oracle\MIDDLE~1.5\WLSERV~1.3\server\lib\weblogic_sp.jar;C:\oracle\MIDDLE~1.5\WLSERV~1.3\server\lib\weblogic.jar;C:\oracle\MIDDLE~1.5\modules\features\weblogic.server.modules_10.3.5.0.jar;C:\oracle\MIDDLE~1.5\WLSERV~1.3\server\lib\webservices.jar;C:\oracle\MIDDLE~1.5\modules\ORGAPA~1.1/lib/ant-all.jar;C:\oracle\MIDDLE~1.5\modules\NETSFA~1.0_1/lib/ant-contrib.jar;.;%JAVA_HOME\jre\lib;C:\Apache\apache-cxf\lib;C:\Apache\apache-cxf\lib\cxf-manifest.jar;.\build\classes;C:\Program Files\Java\jre6\lib\ext\QTJava.zip;C:\oracle\MIDDLE~1.5\ORACLE~1/modules/oracle.jrf_11.1.1/jrf-wlstman.jar;C:\oracle\MIDDLE~1.5\ORACLE~1\common\wlst\lib\ADF-SH~1.JAR;C:\oracle\MIDDLE~1.5\ORACLE~1\common\wlst\lib\ADFSCR~1.JAR;C:\oracle\MIDDLE~1.5\ORACLE~1\common\wlst\lib\mdswlst.jar;C:\oracle\MIDDLE~1.5\ORACLE~1\common\wlst\RESOUR~1\AUDITW~1.JAR;C:\oracle\MIDDLE~1.5\ORACLE~1\common\wlst\RESOUR~1\IGFWLS~1.JAR;C:\oracle\MIDDLE~1.5\ORACLE~1\common\wlst\RESOUR~1\jps-wlst.jar;C:\oracle\MIDDLE~1.5\ORACLE~1\common\wlst\RESOUR~1\jrf-wlst.jar;C:\oracle\MIDDLE~1.5\ORACLE~1\common\wlst\RESOUR~1\OAMAP_~1.JAR;C:\oracle\MIDDLE~1.5\ORACLE~1\common\wlst\RESOUR~1\OAMAUT~1.JAR;C:\oracle\MIDDLE~1.5\ORACLE~1\common\wlst\RESOUR~1\ossoiap.jar;C:\oracle\MIDDLE~1.5\ORACLE~1\common\wlst\RESOUR~1\OSSOIA~1.JAR;C:\oracle\MIDDLE~1.5\ORACLE~1\common\wlst\RESOUR~1\OVDWLS~1.JAR;C:\oracle\MIDDLE~1.5\ORACLE~1\common\wlst\RESOUR~1\SSLCON~1.JAR;C:\oracle\MIDDLE~1.5\ORACLE~1\common\wlst\RESOUR~1\wsm-wlst.jar;C:\oracle\MIDDLE~1.5\utils\config\10.3\config-launch.jar;C:\oracle\MIDDLE~1.5\WLSERV~1.3\common\derby\lib\derbynet.jar;C:\oracle\MIDDLE~1.5\WLSERV~1.3\common\derby\lib\derbyclient.jar;C:\oracle\MIDDLE~1.5\WLSERV~1.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]
    [exec] Redeploy of Spaces Application started at Wed Mar 28 12:25:21 2012
    [exec]
    [exec] Connecting to t3://claptd01:7001 with userid weblogic ...
    [exec] Successfully connected to Admin Server 'AdminServer' 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] Redeploying application webcenter ...
    [exec] <Mar 28, 2012 12:25:28 PM EDT> <Info> <J2EE Deployment SPI> <BEA-260121> <Initiating redeploy operation for application, webcenter#11.1.1.4.0 [archive: null], to WC_Spaces .>
    [exec] [Deployer:149140]The task cannot be processed further until the current edit session is activated. When this occurs, task processing will continue. The user can exit the deployer tool without affecting the task.
    [exec] ..........................................Failed to redeploy the application with status failed
    [exec] Current Status of your Deployment:
    [exec] Deployment command type: redeploy
    [exec] Deployment State : failed
    [exec] Deployment Message : java.lang.Exception: [DeploymentService:290036]Deployment for request id '1332951945158' is deferred since target 'WC_Spaces' is disconnected.
    [exec] No stack trace available.
    [exec] None
    [exec] #########################################################
    [exec] ##### ReDeploy Spaces Failed #########
    [exec] ##### Contact support with Exception Stack #########
    [exec] #########################################################
    [exec]
    [exec]
    [exec] Exiting WebLogic Scripting Tool.
    [exec]
    [exec] <Mar 28, 2012 12:27:34 PM EDT> <Warning> <JNDI> <BEA-050001> <WLContext.close() was called in a different thread than the one in which it was created.>
    BUILD SUCCESSFUL
    Total time: 2 minutes 31 seconds
    Edited by: 891549 on Mar 29, 2012 12:01 PM

    I don't think that this error is based on ojsp.next mode. The first error I see is that the application can't be undeployed. After that you get the 'ava code in jsp source files is not allowed in ojsp.next mode.' error. As you said this only happens sometimes which also point to an other problem and not to the jsp error.
    Have you ask this on the {forum:id=354} forum?
    For me it's more a deployment/redeployment question.
    Timo

  • Database View is not appearing in the ABAP Coding

    Dear Friends,
    I am very much new in the ABAP. Actually I worked last 8 years in the Oracle PL/SQL. Recently, my company implements SAP. The database is Oracle 10g. I would like to use my oracle experience in the project. But in everywhere I faced some problem.
    I have created one Database view by the Native sql. Here I am giving you the code.
    Create OR REPLACE view ZVMVSL_ALLTPORT
    AS
    SELECT T1.MVESSEL_NO, T1.MVESSEL_NAME, T1.SHIPPINGLINE, T2.MVOYAGENUMBER,
    T2.TRANSHIPMENTA AS TPORT, T2.ETDTSHIPMENTA AS ETD_TPORT,
    T3.MVESSEL_SRL_NO,
    T3.PORTOFDISCHARGE POD, T3.ETAPORT
    FROM ZSD_MOTHER_MST T1, ZSD_MOTHER_DTL T2, ZSD_MOTHER_VIA T3
    WHERE T1.MANDT = T2.MANDT
    AND T1.MVESSEL_NO = T2.MVESSEL_NO
    AND T1.MVESSEL_NO = T3.MVESSEL_NO
    AND T2.MVOYAGENUMBER = T3.MVOYAGENUMBER
    AND T2.TRANSHIPMENTA <>' '
    UNION
    SELECT T1.MVESSEL_NO, T1.MVESSEL_NAME, T1.SHIPPINGLINE, T2.MVOYAGENUMBER,
    T2.TRANSHIPMENTB AS TPORT, T2.ETDTSHIPMENTB AS ETD_TPORT,
    T3.MVESSEL_SRL_NO,
    T3.PORTOFDISCHARGE POD, T3.ETAPORT
    FROM ZSD_MOTHER_MST T1, ZSD_MOTHER_DTL T2, ZSD_MOTHER_VIA T3
    WHERE T1.MANDT = T2.MANDT
    AND T1.MVESSEL_NO = T2.MVESSEL_NO
    AND T1.MVESSEL_NO = T3.MVESSEL_NO
    AND T2.MVOYAGENUMBER = T3.MVOYAGENUMBER
    AND T2.TRANSHIPMENTB <>' '
    This view i could not use from ABAP codes, ABAP/4 only identified by views which we would create from T-code se11. Now tell me how could I solve this issue. Because in this query i did some UNION which is not directly available in teh se11.
    Please help me how to handle this situation. Because if I can use this sort of native sql views, I could solve lot of things in the development.
    rgds
    Farhad

    >
    Farhad Islam wrote:
    > This view i could not use from ABAP codes, ABAP/4 only identified by views which we would create from T-code se11. Now tell me how could I solve this issue. Because in this query i did some UNION which is not directly available in teh se11.
    >
    >
    > Please help me how to handle this situation. Because if I can use this sort of native sql views, I could solve lot of things in the development.
    >
    > rgds
    > Farhad
    You can use real SQL to query non SE11 created database tables - look at the SAP help on EXEC SQL - but this is really not a good idea.  For example, it is database specific which removes one of the 'advantages' of SAP ie that it is portable between different database platforms;using SAP's Open SQL should mean that if your company moves to eg SQL Server it shouldn't be necessary to doing any re-coding whereas anything you've done in Oracle SQL will have to be re-coded. There are also other disadvantages of using real SQL eg you don't get any help from the syntax checker and I think you would bypass the whole SAP security level - SAP security is defined at application level and not via database grants.
    I would bet a reasonable amount of money that there is nothing that you can do in real SQL that you can't replicate in SAP's Open SQL .  Ok the Open SQL solution might be a bit more convoluted and possibly less elegant but you can make it do the same thing.  If you want to stick with Oracle then I guess you should look for a job that uses Oracle rather than SAP.

  • How do I clear the screen in text mode (cls)

    How do I clear the screen in text mode (cls)
    Thanks,

    Clearing of console is an OS specific command, so
    in case of Windows you should try:
    Runtime.getRuntime().exec("cls");Though it wouldn't help, because exec() will be done as a separate
    process... :)
    Paul

  • Execute procedure in data base out of sap by dbcon

    Hi all
    I wish to execute procedure in outside oracle database
    And get as a result a cursor/list/table.
    The syntax in the abap help is:
    EXEC SQL.
    EXECUTE PROCEDURE PROC2 ( IN :Y, OUT :Z )
    ENDEXEC.
    This syntax treat only one filed OUT
    I am looking for the correct syntax for:
    Call procedure without IN data and get and be able to treat OUT data a cursor.
    Thanks

    Hi,
    Passing more than one input,just try this.
    EXEC SQL.
    CREATE OR REPLACE PROCEDURE proc_name ( X IN  number
    Z in number,
                                Y OUT number  )
    Y :=  X + Z;
    END proc_name;
    I don't think you can get more than one output.

  • Segmentation fault from libclntsh.so.10.1

    Hi,
    I try to use Pro*C arrays and have Segmentation fault from libclntsh.so.10.1.
    First I accumulate values in arrays and then INSERT them with help of      EXEC SQL FOR :m_entries_num
              INSERT INTO ETCASHMGR.BUY_ORDER
    statement. If error occurred I try to INSERT values in those arrays in DB using loop look this:
         for (int i = 0; i < m_entries_num; i++)
              EXEC SQL INSERT INTO ETCASHMGR.BUY_ORDER
    First statement works.
    However, if error occurs and control is undertaken by statement with loop segmentation fault occurs immediately.
    Here are stamens (without many fields to make long story shorter).
    void InsertBuyData::execute()
         EXEC SQL WHENEVER SQLERROR GOTO sql_error;
         EXEC SQL SAVEPOINT InsertBuyData_point;
         EXEC SQL FOR :m_entries_num
              INSERT INTO ETCASHMGR.BUY_ORDER
                   ticker_symbol,               
                   order_status,
                   order_timestamp,
                   ATS_fee_code,
                   RS_admintag,
                   MOC_order_flag
              VALUES
                   :p_ticker_symbol,               
                   :p_order_status,
                   TO_TIMESTAMP(:p_order_timestamp, 'yyyymmddhh24miss'),
                   :p_ATS_fee_code,
                   :p_RS_admintag,
                   :p_MOC_order_flag
         return;
    sql_error:
         return sql_error();
    void InsertBuyData::sql_error()
         EXEC SQL WHENEVER SQLERROR GOTO sql_error;
         ostringstream os;
         os << endl << "InsertBuyData::execute" << "     " << sqlca.sqlerrm.sqlerrmc << endl;
         cerr << os.str().c_str();     
    EXEC SQL ROLLBACK TO SAVEPOINT InsertBuyData_point;
         for (int i = 0; i < m_entries_num; i++)
              EXEC SQL INSERT INTO ETCASHMGR.BUY_ORDER
                   ticker_symbol,               
                   order_status,
                   order_timestamp,
                   ATS_fee_code,
                   RS_admintag,
                   MOC_order_flag
              VALUES
                   :p_ticker_symbol[i] ,               
                   :p_order_status[i] ,
                   TO_TIMESTAMP(:p_order_timestamp, 'yyyymmddhh24miss'),
                   :p_ATS_fee_code[i] ,
                   :p_RS_admintag[i] ,
                   :p_MOC_order_flag[i]
         return;
    sql_error:
         os << endl << "InsertBuyData::sql_error" << "     " << sqlca.sqlerrm.sqlerrmc << endl;
         cerr << os.str().c_str();
         return;
    Above I take values from arrays one by one (I don't know why "i" in brackets are not seen).
    Here is backtrace.
    Program received signal SIGSEGV, Segmentation fault.
    [Switching to Thread 182919222464 (LWP 7844)]
    0x0000002a957e2bdf in sqlbls ()
    from /usr/app/oracle/product/10gR2/lib/libclntsh.so.10.1
    (gdb) bt
    #0 0x0000002a957e2bdf in sqlbls ()
    from /usr/app/oracle/product/10gR2/lib/libclntsh.so.10.1
    #1 0x0000002a957d34d0 in sqlbdv ()
    from /usr/app/oracle/product/10gR2/lib/libclntsh.so.10.1
    #2 0x0000002a957cdaf1 in sqlexp ()
    from /usr/app/oracle/product/10gR2/lib/libclntsh.so.10.1
    #3 0x0000002a957c8d55 in sqlcmex ()
    from /usr/app/oracle/product/10gR2/lib/libclntsh.so.10.1
    #4 0x0000002a957c95f4 in sqlcxt ()
    from /usr/app/oracle/product/10gR2/lib/libclntsh.so.10.1
    #5 0x000000000041506b in InsertBuyData::sql_error (this=0x713b00)
    at DBClass.cpp:4281
    #6 0x000000000041326e in InsertBuyData::execute (this=0x713b00)
    at DBClass.cpp:3544
    Thank you for any help.
    YP
    Message was edited by:
    user572296

    Did some one find any solution to the above mentioned issue . I am also facing the same issue. Using Linux 64 bit machine with oracle 10.2client installed in it. but getting the following error.
    Loaded symbols for /usr/lib/oracle/xe/app/oracle/product/10.2.0/client/lib/libnnz10.so
    Reading symbols from /lib64/ld-linux-x86-64.so.2...(no debugging symbols found)...done.
    Loaded symbols for /lib64/ld-linux-x86-64.so.2
    Core was generated by `./AutoLoader'.
    Program terminated with signal 11, Segmentation fault.
    #0 0x00002aab0a0e9a53 in sqlcfx () from /usr/lib/oracle/xe/app/oracle/product/10.2.0/client/lib/libclntsh.so.10.1
    (gdb) bt
    #0 0x00002aab0a0e9a53 in sqlcfx () from /usr/lib/oracle/xe/app/oracle/product/10.2.0/client/lib/libclntsh.so.10.1
    #1 0x00002aab0a0cc149 in sqlcmex () from /usr/lib/oracle/xe/app/oracle/product/10.2.0/client/lib/libclntsh.so.10.1
    #2 0x00002aab0a0cca7c in sqlcxt () from /usr/lib/oracle/xe/app/oracle/product/10.2.0/client/lib/libclntsh.so.10.1
    #3 0x000000000040cbf8 in oracle_logon ()
    #4 0x000000000040bed8 in main ()
    Could someone please help me how to resolve it. Very urgent request :(

  • Cannot create Oracle model MS SQL 7 - Oracle 8.1.6

    Have MS SQL Server 7.0 and Oracle 8.1.6 running on same NT server. The SQL Server 7.0 Source Model is created with no problems - I can see each table and its owner (always dbo). When creating the Oracle model the tables from the MASTER database are loaded OK but when the user tables start every one fails. Error messages such as:
    OracleModelImpl_insertObjInfo() java.sql.SQLException: ORA-01400: cannot insert NULL into... [I cannot see to the end of this line]
    tbl_Batch_Prints: Table. Owner name is NULL. Check that SQL Server 7.0 MASTER database is correctly rec... [that's all i can see]
    EXCEPTION: SQLServer7SourceModelMap.mapTables(): tbl_Batch_Prints, oracle.mtg.migration.MigrationS... [end of visible error message]
    Where do I start to get this working?
    Thanks, Scott Doughty

    Very helpful! "exec sp_changedbowner 'sa'" did the trick. Almost... I can now start generating the Oracle model and just about everything gets mapped apart from some roles, triggers and stored procedures until the log window reads:
    [Timestamp] Mapping Roles mapped: 7, Roles NOT Mapped: 3
    [Timestamp] Mapping Mapping User Privileges
    [Timestamp] Mapping mapped user privilege :
    [Timestamp] Mapping mapped user privilege :
    [Timestamp] Mapping mapped user privilege :
    and then the screen hangs. It's been a few hours now and NT is showing no activity on any of the Oracle processes. Do I just need to be more patient, or has something gone wrong?

  • SELECT SUM( field1 field2 ) INTO C1

    Is that possible with a select statement in ABAP or do I need to sum each row by itself then add them together afterwords?

    Hi Craig,
    this is not possible with a select statement in ABAP. You can use the routine mentioned by you:
    DATA: C1 TYPE i,
          C2 TYPE i,
          total type i.
    SELECT SUM( field1 ) SUM( fiedl2 ) into ( c1 c2 )from tablename.
    total = c1 + c2.
    Of course you can use the exec sql statement proposed by Andreas, but you have to select for the cllient explicitly. There are some disadvantages for native sql, too:
    1. platform dependent
    2. no syntax check for the native sql part
    3. you bypass the SAP database buffer
    For more details refer to the online help about EXEC SQL.
    Cheers,
    Morten

  • Querying using Native SQL

    Hi Pals,
    I have a requirement which I would like to brief.
    I have an internal table with columns FIELD1 and FIELD2. For all the values in FIELD1 I have to query a table MSI(which does not form a part of the R/3 framework) through Native SQL statement and get the corresponding values for FIELD2.
    Could anybody suggest how I must proceed writing my statements between EXEC and ENDEXEC.
    Do I have to query the database table for each entry in my internal table or is it possible to use for all entries in my SQL statemnt.
    Your inputs would be highly appreciated.
    Thank You in advance.
    Regards,
    Gayathri N.

    Hai Gayathri
    check this document
    EXEC SQL.
    Addition
    ... PERFORMING form
    Effect
    Executes the Native SQL command enclosed by the statements EXEC SQL and ENDEXEC . In contrast to Open SQL , addressed database tables do not have to be known to the ABAP/4 Dictionary and the ABAP/4 program does not have to contain appropriate TABLES statements.
    Example
    Create the table AVERI_CLNT :
    EXEC SQL.
      CREATE TABLE AVERI_CLNT (
             CLIENT   CHAR(3)  NOT NULL,
             ARG1     CHAR(3)  NOT NULL,
             ARG2     CHAR(3)  NOT NULL,
             FUNCTION CHAR(10) NOT NULL,
             PRIMARY KEY (CLIENT, ARG1, ARG2)
    ENDEXEC.
    With Native SQL commands, passing data between an ABAP/4 program and the database is achieved using host variables . A host variable is an ABAP/4 variable prefixed by a "*" in the Native SQL statement.
    Example
    Display a section of the table AVERI_CLNT :
    DATA: F1(3), F2(3), F3(3).
    F3 = ' 1 '
    EXEC SQL.
      SELECT CLIENT, ARG1 INTO :F1, :F2 FROM AVERI_CLNT
             WHERE ARG2 = :F3
    ENDEXEC.
    WRITE: / F1, F2.
    To simplify the spelling of INTO lists in the SELECT command, you can specify a single structure as the target area as in Open SQL .
    Example
    Display a section of the table AVERI_CLNT :
    DATA: BEGIN OF WA,
            CLIENT(3), ARG1(3), ARG2(3),
          END OF WA.
    DATA  F3(3).
    F3 = ' 1 '
    EXEC SQL.
      SELECT CLIENT, ARG1 INTO :WA FROM AVERI_CLNT
             WHERE ARG2 = :F3
    ENDEXEC.
    WRITE: / WA-CLIENT, WA-ARG1.
    Notes
    In contrast to Open SQL , a client field in Native SQL is a field like any other and must be specified explicitly in calls.
    Authorization checks cannot be properly realized in EXEC SQL . You should perform these in the program.
    When you start the R/3 System, a CONNECT to the current database is executed automatically. An explicit CONNECT is unnecessary.
    A Native SQL command can (but does not have to) end with a ";". Under no circumstances should it end with a ".".
    Some database systems allow upper and lower case in table names and field names. If you want to take advantage of this, you must ensure that the spelling of names is correct. To enable entry of lower case letters in names in the ABAP/4 editor, you must set the attribute for upper/lower case in the report.
    Since there are no arrays in ABAP/4 , array operations are not possible in Native SQL . If the result of a SELECT command is a table, you can read this table line by line either with the Native SQL command FETCH or with the addition ... PERFORMING form .
    Unlike in ABAP/4 programs, the character " in a Native SQL statement does not introduce a comment until the end of the editor line.
    Addition
    ... PERFORMING form
    Effect
    If the result of a SELECT command is a table, you can read this table line by line in a processing loop. The subroutine form is called once for each line. In this subroutine, you can leave the loop by using EXIT FROM SQL . If the result of the selection is a single record, the subroutine is called only once.
    Example
    Display a section of the table AVERI_CLNT :
    DATA: F1(3), F2(3), F3(3).
    F3 = ' 1 '
    EXEC SQL PERFORMING WRITE_AVERI_CLNT.
      SELECT CLIENT, ARG1 INTO :F1, :F2 FROM AVERI_CLNT
             WHERE ARG2 = :F3
    ENDEXEC.
    FORM WRITE_AVERI_CLNT.
      WRITE: / F1, F2.
    ENDFORM.
    Note
    This addition is allowed only with a SELECT command.
    Related SELECT , INSERT , UPDATE , MODIFY , DELETE , OPEN CURSOR , FETCH , CLOSE CURSOR, COMMIT WORK and ROLLBACK WORK .
    go to se38
    type 'EXEC' and put cursor on 'EXEC' press f1-function key
    then you get help for EXEC
    Thanks & regards
    Sreenivasulu P
    Message was edited by: Sreenivasulu Ponnadi

  • AIA FP 11.1.1.6.0 "Metadata transfer operation failed"

    Hi,
    I wonder if anyone can help. I am receiving the error below while performing a fresh install of AIA FP 11.1.1.6.0
    "Metadata transfer operation failed" MDS-00597 failure to open the archive file /tmp/archive4766411343835100171.jar
    Sure the above error points to a non-existent file but where do I get this file from? The directory is not write protected and the user performing the installation can write to that
    directory. Also, there is adequate memory so I don't think its a system resource issue.
    It is important to note that this error appears at the "Deploy Application Configurations" stage of the install.
    System Info
    Weblogic 10.3.6.0
    SOA 11.1.1.6.0
    OER 11.1.1.6.0
    Oracle Database XE 10.2.0.1.0
    [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] Metadata tranfer operation failed
    [exec]
    [exec] This Exception occurred at .
    [exec] javax.management.MBeanException: MDS-00597: Failure to open the archive file /tmp/archive4766411343835100171.jar. Cannot create ArchiveMetadataStore for the archive file /tmp/archive4766411343835100171.jar.
    [exec] error in opening zip file
    [exec] Problem invoking WLST - Traceback (innermost last):
    [exec] File "/home/oracle/Oracle/Middleware/AIA/Infrastructure/Install/AID/lib/py/updateMetadata.py", line 53, in ?
    [exec] at sun.reflect.NativeConstructorAccessorImpl.newInstance0(Native Method)
    [exec] at sun.reflect.NativeConstructorAccessorImpl.newInstance(NativeConstructorAccessorImpl.java:39)
    [exec] at sun.reflect.DelegatingConstructorAccessorImpl.newInstance(DelegatingConstructorAccessorImpl.java:27)
    [exec] at java.lang.reflect.Constructor.newInstance(Constructor.java:513)
    [exec]
    [exec] java.lang.Exception: java.lang.Exception: Error!!! Import MetaData Failed !!
    [exec]
    BUILD FAILED
    /home/oracle/Oracle/Middleware/AIA/Infrastructure/Install/AID/AIAExecuteDriver.xml:222: The following error occurred while executing this line:
    /home/oracle/Oracle/Middleware/AIA/Infrastructure/Install/AID/AIAExecuteDriver.xml:65: The following error occurred while executing this line:
    /home/oracle/Oracle/Middleware/AIA/aia_instances/AIA/tmp/AIDExecuteDP_temp_1380328407.xml:94: The following error occurred while executing this line:
    /home/oracle/Oracle/Middleware/AIA/Infrastructure/Install/AID/lib/AIDConfigurationLibraryTasks.xml:845: exec returned: 1
    Total time: 5 minutes 27 seconds
    Deployment Command Return Value Configuration: 1

    You will face this issue when something goes wrong with SOA server.. your SOA server must be in running status..
    Edited by: 945735 on 09-Aug-2012 03:43

  • ZBF review and Issues on 871W

    Hello, i am working with 871w and i am trying to switch form ip inspect to zone-based firewall.  Below are the class-maps, policy-map, zone-pairs, zones, and ACLs.  The issues i am having is that onces i depoly the ZBF, i can not get ip via DHCP.  Please review and suggest any impovements or fixes needed?
    class-map type inspect match-any Egress-Filter match access-group name egress-filter
    class-map type inspect match-any Guest_Protocols match protocol http
    match protocol https match protocol dns
    class-map type inspect match-any Ingress-Filter match access-group name ingress-filter
    class-map type inspect match-any All_Protocols match protocol tcp
    match protocol udp match protocol icmp
    class-map type inspect match-all DHCP-Allow match access-group name dhcp-allow
    policy-map type inspect Self_to_Internet class type inspect Egress-Filter
      inspect
    class class-default
      drop log
    policy-map type inspect Internet_to_Self class type inspect Ingress-Filter
      inspect
    class class-default
      drop log
    policy-map type inspect Trusted_To_Self class type inspect All_Protocols
      inspect
    class type inspect DHCP-Allow
      pass
    class class-default
      drop log
    policy-map type inspect Guest_to_Internet class type inspect Guest_Protocols
      inspect
    class class-default
      drop log
    policy-map type inspect Internet_to_Guest class type inspect Ingress-Filter
      inspect
    class class-default
      drop log
    policy-map type inspect Trusted_to_Self class type inspect All_Protocols
      inspect
    class type inspect DHCP-Allow
      pass
    class class-default
      drop log
    policy-map type inspect Self_to_Trusted class type inspect All_Protocols
      inspect
    class type inspect DHCP-Allow
      pass
    class class-default
      drop log
    policy-map type inspect Trusted_to_Internet class type inspect All_Protocols
      inspect
    class class-default
      drop log
    policy-map type inspect Internet_to_Trusted class type inspect Ingress-Filter
      inspect
    class class-default
      drop log
    policy-map type inspect Guest_to_Self class type inspect All_Protocols  inspect
    class type inspect DHCP-Allow
      pass
    class class-default
      drop log
    policy-map type inspect Self_to_Guest
    class type inspect All_Protocols
      inspect
    class type inspect DHCP-Allow
      pass
    class class-default
      drop log
    zone-pair security Trusted->Internet source Trusted destination Internet service-policy type inspect Trusted_to_Internet
    zone-pair security Guest->Internet source Guest destination Internet service-policy type inspect Guest_to_Internet
    zone-pair security Internet->Trusted source Internet destination Trusted service-policy type inspect Internet_to_Trusted
    zone-pair security Internet->Guest source Internet destination Guest service-policy type inspect Internet_to_Guest
    zone-pair security Self->Internet source self destination Internet service-policy type inspect Self_to_Internet
    zone-pair security Internet->Self source Internet destination self service-policy type inspect Internet_to_Self
    zone-pair security Self->Trusted source self destination Trusted service-policy type inspect Self_to_Trusted
    zone-pair security Trusted->Self source Trusted destination self service-policy type inspect Trusted_to_Self
    zone-pair security Self->Guest source self destination Guest service-policy type inspect Self_to_Guest
    zone-pair security Guest->Self source Guest destination self service-policy type inspect Guest_to_Self
    zone security Trustedzone security Guestzone security Internet
    ip access-list extended NAT deny   ip 192.168.16.0 0.0.0.63 192.168.16.64 0.0.0.15
    permit ip any any
    ip access-list extended dhcp-allow permit udp any eq bootps any
    permit udp any any eq bootpc
    permit udp any any eq bootps
    permit udp any eq bootpc any
    ip access-list extended egress-filter permit ip <REMOVED> 0.0.0.2 any
    remark ----- Junk Traffic -----
    deny   ip any host <REMOVED>
    deny   ip any host <REMOVED>
    deny   ip host <REMOVED> any
    deny   ip host <REMOVED> any
    remark ----- Bogons Filter -----
    deny   ip 0.0.0.0 0.255.255.255 any
    deny   ip 10.0.0.0 0.255.255.255 any
    deny   ip 127.0.0.0 0.255.255.255 any
    deny   ip 169.254.0.0 0.0.255.255 any
    deny   ip 172.16.0.0 0.15.255.255 any
    deny   ip 192.0.0.0 0.0.0.255 any
    deny   ip 192.0.2.0 0.0.0.255 any
    deny   ip 192.168.0.0 0.0.255.255 any
    deny   ip 198.18.0.0 0.1.255.255 any
    deny   ip 198.51.100.0 0.0.0.255 any
    deny   ip 203.0.113.0 0.0.0.255 any
    deny   ip 224.0.0.0 31.255.255.255 any
    deny   ip any any
    ip access-list extended ingress-filter remark ----- Allow access from work
    permit ip <REMOVED> 0.0.0.127 any
    permit ip <REMOVED 0.0.0.31 any
    permit ip <REMOVED> 0.0.0.255 any
    permit esp any host <REMOVED>
    permit gre any host <REMOVED>
    permit udp any host <REMOVED> eq isakmp
    remark ----- To get IP form COX -----
    permit udp any eq bootps any eq bootpc deny   icmp any any
    deny   udp any any eq echo
    deny   udp any eq echo any
    deny   tcp any any fragments
    deny   udp any any fragments
    deny   ip any any fragments
    deny   ip any any option any-options
    deny   ip any any ttl lt 4
    deny   ip any host <REMOVED>
    deny   ip any host <REMOVED>
    deny   udp any any range 33400 34400
    remark ----- Bogons Filter -----
    deny   ip 0.0.0.0 0.255.255.255 any
    deny   ip 10.0.0.0 0.255.255.255 any
    deny   ip 127.0.0.0 0.255.255.255 any
    deny   ip 169.254.0.0 0.0.255.255 any
    deny   ip 172.16.0.0 0.15.255.255 any
    deny   ip 192.0.0.0 0.0.0.255 any
    deny   ip 192.0.2.0 0.0.0.255 any
    deny   ip 192.168.0.0 0.0.255.255 any
    deny   ip 198.18.0.0 0.1.255.255 any
    deny   ip 198.51.100.0 0.0.0.255 any
    deny   ip 203.0.113.0 0.0.0.255 any
    deny   ip 224.0.0.0 31.255.255.255 any
    remark ----- Internal networks -----
    deny   ip <REMOVED> 0.0.0.3 any
    deny   ip any any

    Running Config
    ! Last configuration change at 05:24:59 AZT Sun Feb 19 2012 by asucrews
    ! NVRAM config last updated at 05:25:57 AZT Sun Feb 19 2012 by asucrews
    version 12.4
    configuration mode exclusive auto expire 600
    parser cache
    no service log backtrace
    no service config
    no service exec-callback
    service nagle
    service slave-log
    no service slave-coredump
    no service pad to-xot
    no service pad from-xot
    no service pad cmns
    no service pad
    no service telnet-zeroidle
    service tcp-keepalives-in
    service tcp-keepalives-out
    service timestamps debug datetime msec localtime show-timezone
    service timestamps log datetime msec localtime show-timezone
    service password-encryption
    no service exec-wait
    service linenumber
    no service internal
    no service scripting
    no service compress-config
    service prompt config
    no service old-slip-prompts
    service pt-vty-logging
    no service disable-ip-fast-frag
    service sequence-numbers
    hostname rtwan
    boot-start-marker
    boot-end-marker
    logging exception 4096
    logging count
    no logging message-counter log
    no logging message-counter debug
    logging message-counter syslog
    no logging snmp-authfail
    no logging userinfo
    logging buginf
    logging queue-limit 100
    logging queue-limit esm 0
    logging queue-limit trap 100
    logging buffered 65536
    no logging persistent
    logging rate-limit 512 except critical
    logging console guaranteed
    logging console critical
    logging monitor debugging
    logging on
    enable secret 5
    enable password 7
    aaa new-model
    aaa group server radius rad_eap
    server auth-port 1645 acct-port 1646
    aaa group server radius rad_mac
    aaa group server radius rad_acct
    aaa group server radius rad_admin
    aaa group server tacacs+ tac_admin
    aaa group server radius rad_pmip
    aaa group server radius dummy
    aaa authentication login default local
    aaa authentication login eap_methods group rad_eap
    aaa authorization exec default local
    aaa accounting network acct_methods
    action-type start-stop
    group rad_acct
    aaa session-id common
    memory-size iomem 10
    clock timezone AZT -7
    clock save interval 8
    errdisable detect cause all
    errdisable recovery interval 300
    dot11 syslog
    dot11 activity-timeout unknown default 60
    dot11 activity-timeout client default 60
    dot11 activity-timeout repeater default 60
    dot11 activity-timeout workgroup-bridge default 60
    dot11 activity-timeout bridge default 60
    dot11 ssid guestonpg
    vlan 2
    authentication open
    authentication key-management wpa optional
    guest-mode
    wpa-psk ascii 7
    dot11 ssid playground
    vlan 1
    authentication open
    authentication key-management wpa optional
    wpa-psk ascii 7
    dot11 aaa csid default
    no ip source-route
    no ip gratuitous-arps
    ip icmp redirect subnet
    ip spd queue threshold minimum 73 maximum 74
    ip options drop
    ip dhcp bootp ignore
    ip dhcp excluded-address 192.168.16.33 192.168.16.40
    ip dhcp excluded-address 192.168.16.1 192.168.16.7
    ip dhcp pool vlan1pool
       import all
       network 192.168.16.0 255.255.255.224
       default-router 192.168.16.1
       domain-name jeremycrews.home
       lease 4
    ip dhcp pool vlan2pool
       import all
       network 192.168.16.32 255.255.255.224
       default-router 192.168.16.33
       domain-name guest.jeremycrews.home
       lease 0 6
    ip cef
    ip inspect name firewall tcp router-traffic
    ip inspect name firewall udp router-traffic
    ip inspect name firewall icmp router-traffic
    no ip bootp server
    no ip domain lookup
    ip domain name jeremycrews.home
    ip host rtwan.jeremycrews.home 192.168.16.1 192.168.16.33
    ip host ap1.jeremycrews.home 192.168.16.2 192.168.16.34
    ip host ap2.jeremycrews.home 192.168.16.3 192.168.16.35
    ip host ap3.jeremycrews.home 192.168.16.4 192.168.16.36
    ip host ooma.jeremycrews.home 192.168.16.5
    ip host xbox.jeremycrews.home 192.168.16.6
    ip host wii.jeremycrews.home 192.168.16.7
    ip name-server 8.8.8.8
    ip name-server 8.8.4.4
    ip accounting-threshold 100
    ip accounting-list 192.168.16.0 0.0.0.31
    ip accounting-list 192.168.16.32 0.0.0.31
    ip accounting-transits 25
    ip igmp snooping vlan 1
    ip igmp snooping vlan 1 mrouter learn pim-dvmrp
    ip igmp snooping vlan 2
    ip igmp snooping vlan 2 mrouter learn pim-dvmrp
    ip igmp snooping
    login block-for 120 attempts 5 within 60
    login delay 5
    login on-failure log
    parameter-map type inspect log
    audit-trail on
    dot1x system-auth-control
    memory free low-watermark processor 65536
    memory free low-watermark IO 16384
    file prompt alert
    emm clear 1b5b324a1b5b303b30480d
    vtp file flash:vlan.dat
    vtp mode server
    vtp version 1
    username privilege 15 password 7
    username privilege 15 password 7
    no crypto isakmp diagnose error
    archive
    log config
      no record rc
      logging enable
      no logging persistent reload
      no logging persistent
      logging size 255
      notify syslog contenttype plaintext
      no notify syslog contenttype xml
      hidekeys
    path tftp://192.168.16.12/rtwan-config
    maximum 10
    no rollback filter adaptive
    rollback retry timeout 0
    write-memory
    time-period 10080
    scripting tcl low-memory 28965007
    scripting tcl trustpoint untrusted terminate
    no scripting tcl secure-mode
    ip tcp synwait-time 10
    ip ssh time-out 60
    ip ssh authentication-retries 2
    ip ssh break-string ~break
    ip ssh logging events
    ip ssh version 2
    ip ssh dh min size 1024
    class-map type inspect match-any Egress-Filter
    match access-group name egress-filter
    class-map type inspect match-any Guest_Protocols
    match protocol http
    match protocol https
    match protocol dns
    match protocol bootpc
    match protocol bootps
    class-map type inspect match-any Ingress-Filter
    match access-group name ingress-filter
    class-map type inspect match-any All_Protocols
    match protocol tcp
    match protocol udp
    match protocol icmp
    class-map type inspect match-all DHCP-Allow
    match access-group name dhcp-allow
    policy-map type inspect Self_to_Internet
    class type inspect Egress-Filter
      inspect
    class class-default
      drop log
    policy-map type inspect Internet_to_Self
    class type inspect Ingress-Filter
      inspect
    class class-default
      drop log
    policy-map type inspect Self_To_Self
    class class-default
      drop log
    policy-map type inspect Trusted_To_Self
    class type inspect All_Protocols
      inspect
    class type inspect DHCP-Allow
      pass
    class class-default
      drop log
    policy-map type inspect Guest_to_Internet
    class type inspect Guest_Protocols
      inspect
    class class-default
      drop log
    policy-map type inspect Internet_to_Guest
    class type inspect Ingress-Filter
      inspect
    class class-default
      drop log
    policy-map type inspect Trusted_to_Self
    class type inspect All_Protocols
      inspect
    class type inspect DHCP-Allow
      pass
    class class-default
      drop log
    policy-map type inspect Self_to_Trusted
    class type inspect All_Protocols
      inspect
    class type inspect DHCP-Allow
      pass
    class class-default
      drop log
    policy-map type inspect Trusted_to_Internet
    class type inspect All_Protocols
      inspect
    class class-default
      drop log
    policy-map type inspect Internet_to_Trusted
    class type inspect Ingress-Filter
      inspect
    class class-default
      drop log
    policy-map type inspect Guest_to_Self
    class type inspect All_Protocols
      inspect
    class class-default
      drop log
    policy-map type inspect Self_to_Guest
    class type inspect All_Protocols
      inspect
    class class-default
      drop log
    zone security Trusted
    zone security Guest
    zone security Internet
    zone-pair security Trusted->Internet source Trusted destination Internet
    service-policy type inspect Trusted_to_Internet
    zone-pair security Guest->Internet source Guest destination Internet
    service-policy type inspect Guest_to_Internet
    zone-pair security Internet->Trusted source Internet destination Trusted
    service-policy type inspect Internet_to_Trusted
    zone-pair security Internet->Guest source Internet destination Guest
    service-policy type inspect Internet_to_Guest
    zone-pair security Self->Internet source self destination Internet
    service-policy type inspect Self_to_Internet
    zone-pair security Internet->Self source Internet destination self
    service-policy type inspect Internet_to_Self
    zone-pair security Self->Trusted source self destination Trusted
    service-policy type inspect Self_to_Trusted
    zone-pair security Trusted->Self source Trusted destination self
    service-policy type inspect Trusted_to_Self
    zone-pair security Self->Guest source self destination Guest
    service-policy type inspect Self_to_Guest
    zone-pair security Guest->Self source Guest destination self
    service-policy type inspect Guest_to_Self
    bridge irb
    interface Loopback0
    no ip address
    no ip redirects
    no ip unreachables
    no ip proxy-arp
    shutdown
    snmp trap link-status
    interface Null0
    no ip unreachables
    interface FastEthernet0
    description To switch
    switchport access vlan 1
    switchport trunk encapsulation dot1q
    switchport trunk native vlan 1
    switchport trunk allowed vlan 1-4094
    switchport mode trunk
    switchport voice vlan none
    switchport priority extend none
    switchport priority default 0
    snmp trap link-status
    ip igmp snooping tcn flood
    interface FastEthernet1
    switchport access vlan 1
    switchport trunk encapsulation dot1q
    switchport trunk native vlan 1
    switchport trunk allowed vlan 1-4094
    switchport mode trunk
    switchport voice vlan none
    switchport priority extend none
    switchport priority default 0
    shutdown
    snmp trap link-status
    spanning-tree portfast
    ip igmp snooping tcn flood
    interface FastEthernet2
    switchport access vlan 1
    switchport trunk encapsulation dot1q
    switchport trunk native vlan 1
    switchport trunk allowed vlan 1-4094
    switchport mode access
    switchport voice vlan none
    switchport priority extend none
    switchport priority default 0
    shutdown
    snmp trap link-status
    spanning-tree portfast
    ip igmp snooping tcn flood
    interface FastEthernet3
    description Ooma Hub 192.168.16.5
    switchport access vlan 1
    switchport trunk encapsulation dot1q
    switchport trunk native vlan 1
    switchport trunk allowed vlan 1-4094
    switchport mode access
    switchport voice vlan none
    switchport priority extend none
    switchport priority default 0
    shutdown
    snmp trap link-status
    spanning-tree portfast
    ip igmp snooping tcn flood
    interface FastEthernet4
    description Cox Internet Connection
    ip address dhcp
    no ip redirects
    no ip unreachables
    no ip proxy-arp
    ip accounting access-violations
    ip flow ingress
    ip flow egress
    ip nat outside
    no ip virtual-reassembly
    duplex auto
    speed auto
    snmp trap link-status
    no cdp enable
    zone-member security Internet
    interface Dot11Radio0
    description Radio b/g
    no ip address
    no ip redirects
    no ip unreachables
    no ip proxy-arp
    shutdown
    beacon period 100
    beacon dtim-period 2
    dot11 extension aironet
    encryption vlan 1 mode ciphers aes-ccm tkip wep128
    encryption vlan 2 mode ciphers aes-ccm tkip wep128
    broadcast-key vlan 1 change 3600 membership-termination
    broadcast-key vlan 2 change 3600 membership-termination
    ssid guestonpg
    ssid playground
    countermeasure tkip hold-time 60
    short-slot-time
    speed ofdm join
    speed basic-1.0 basic-2.0 basic-5.5 6.0 9.0 basic-11.0 12.0 18.0 24.0 36.0 48.0 54.0
    packet retries 64
    preamble-short
    channel least-congested
    fragment-threshold 2346
    station-role root
    rts threshold 2312
    rts retries 64
    antenna receive diversity
    antenna transmit diversity
    payload-encapsulation rfc1042
    snmp trap link-status
    interface Dot11Radio0.1
    description Home WLAN
    encapsulation dot1Q 1 native
    no ip redirects
    no ip unreachables
    no ip proxy-arp
    no snmp trap link-status
    bridge-group 1
    bridge-group 1 subscriber-loop-control
    bridge-group 1 spanning-disabled
    bridge-group 1 block-unknown-source
    no bridge-group 1 source-learning
    no bridge-group 1 unicast-flooding
    interface Dot11Radio0.2
    description Guest WLAN
    encapsulation dot1Q 2
    no ip redirects
    no ip unreachables
    no ip proxy-arp
    no snmp trap link-status
    bridge-group 2
    bridge-group 2 subscriber-loop-control
    bridge-group 2 spanning-disabled
    bridge-group 2 block-unknown-source
    no bridge-group 2 source-learning
    no bridge-group 2 unicast-flooding
    interface Vlan1
    description Home LAN
    no ip address
    no ip redirects
    no ip unreachables
    no ip proxy-arp
    ip nat inside
    no ip virtual-reassembly
    autostate
    snmp trap link-status
    bridge-group 1
    bridge-group 1 spanning-disabled
    interface Vlan2
    description Guest LAN
    no ip address
    no ip redirects
    no ip unreachables
    no ip proxy-arp
    ip nat inside
    no ip virtual-reassembly
    autostate
    snmp trap link-status
    bridge-group 2
    bridge-group 2 spanning-disabled
    interface BVI1
    description Home Bridge LAN to WLAN
    ip address 192.168.16.1 255.255.255.224
    no ip redirects
    no ip unreachables
    no ip proxy-arp
    ip nat inside
    no ip virtual-reassembly
    snmp trap link-status
    zone-member security Trusted
    interface BVI2
    description Guest Bridge LAN to WLAN
    ip address 192.168.16.33 255.255.255.240
    no ip redirects
    no ip unreachables
    no ip proxy-arp
    ip nat inside
    no ip virtual-reassembly
    snmp trap link-status
    zone-member security Guest
    ip classless
    ip forward-protocol nd
    no ip http server
    ip http port 80
    ip http authentication enable
    no ip http secure-server
    ip http secure-port 443
    ip http secure-active-session-modules all
    ip http max-connections 5
    ip http timeout-policy idle 180 life 180 requests 1
    ip http active-session-modules all
    ip http digest algorithm md5
    ip http client cache memory pool 100
    ip http client cache memory file 2
    ip http client cache ager interval 5
    ip http client connection timeout 10
    ip http client connection retry 1
    ip http client connection idle timeout 30
    ip http client response timeout 30
    ip http path
    ip flow-top-talkers
    top 10
    sort-by bytes
    ip nat inside source static tcp 192.168.16.6 53 interface FastEthernet4 53
    ip nat inside source static tcp 192.168.16.6 3074 interface FastEthernet4 3074
    ip nat inside source static udp 192.168.16.6 3074 interface FastEthernet4 3074
    ip nat inside source static tcp 192.168.16.6 80 interface FastEthernet4 80
    ip nat inside source static udp 192.168.16.6 88 interface FastEthernet4 88
    ip nat inside source static udp 192.168.16.6 53 interface FastEthernet4 53
    ip nat inside source list NAT interface FastEthernet4 overload
    ip access-list extended NAT
    deny   ip 192.168.16.0 0.0.0.63 192.168.16.64 0.0.0.15
    permit ip any any
    ip access-list extended dhcp-allow
    permit udp any eq bootps any
    permit udp any any eq bootpc
    permit udp any any eq bootps
    permit udp any eq bootpc any
    ip access-list extended egress-filter
    permit ip 0.0.0.2 any
    remark ----- Junk Traffic -----
    deny   ip any host
    deny   ip any host
    deny   ip host any
    deny   ip host any
    remark ----- Bogons Filter -----
    deny   ip 0.0.0.0 0.255.255.255 any
    deny   ip 10.0.0.0 0.255.255.255 any
    deny   ip 127.0.0.0 0.255.255.255 any
    deny   ip 169.254.0.0 0.0.255.255 any
    deny   ip 172.16.0.0 0.15.255.255 any
    deny   ip 192.0.0.0 0.0.0.255 any
    deny   ip 192.0.2.0 0.0.0.255 any
    deny   ip 192.168.0.0 0.0.255.255 any
    deny   ip 198.18.0.0 0.1.255.255 any
    deny   ip 198.51.100.0 0.0.0.255 any
    deny   ip 203.0.113.0 0.0.0.255 any
    deny   ip 224.0.0.0 31.255.255.255 any
    deny   ip any any
    ip access-list extended ingress-filter
    remark ----- Allow access from work
    permit ip 0.0.0.127 any
    permit ip 0.0.0.31 any
    permit ip 0.0.0.255 any
    permit esp any host
    permit gre any host
    permit udp any host eq isakmp
    remark ----- To get IP form COX -----
    permit udp any eq bootps any eq bootpc
    deny   icmp any any
    deny   udp any any eq echo
    deny   udp any eq echo any
    deny   tcp any any fragments
    deny   udp any any fragments
    deny   ip any any fragments
    deny   ip any any option any-options
    deny   ip any any ttl lt 4
    deny   ip any host
    deny   ip any host
    deny   udp any any range 33400 34400
    remark ----- Bogons Filter -----
    deny   ip 0.0.0.0 0.255.255.255 any
    deny   ip 10.0.0.0 0.255.255.255 any
    deny   ip 127.0.0.0 0.255.255.255 any
    deny   ip 169.254.0.0 0.0.255.255 any
    deny   ip 172.16.0.0 0.15.255.255 any
    deny   ip 192.0.0.0 0.0.0.255 any
    deny   ip 192.0.2.0 0.0.0.255 any
    deny   ip 192.168.0.0 0.0.255.255 any
    deny   ip 198.18.0.0 0.1.255.255 any
    deny   ip 198.51.100.0 0.0.0.255 any
    deny   ip 203.0.113.0 0.0.0.255 any
    deny   ip 224.0.0.0 31.255.255.255 any
    remark ----- Internal networks -----
    deny   ip 0.0.0.2 any
    deny   ip any any
    no ip sla logging traps
    ip sla 1
    icmp-echo 8.8.4.4 source-interface FastEthernet4
    frequency 120
    history hours-of-statistics-kept 1
    history filter failures
    ip sla schedule 1 life forever start-time now
    ip sla 2
    icmp-echo 8.8.8.8 source-interface FastEthernet4
    frequency 30
    history hours-of-statistics-kept 1
    history filter failures
    ip sla reaction-configuration 1 react connectionLoss threshold-type consecutive 5 action-type trapAndTrigger
    ip sla reaction-trigger 1 2
    logging history size 1
    logging history warnings
    logging trap informational
    logging delimiter tcp
    logging facility local7
    no logging source-interface
    access-list 1 permit 192.168.16.0 0.0.0.63
    access-list 20 permit 127.127.1.1
    access-list 20 permit 192.43.244.18
    access-list 20 permit 204.235.61.9
    access-list 20 permit 173.201.38.85
    access-list 20 permit 216.229.4.69
    access-list 20 permit 152.2.21.1
    access-list 20 permit 130.126.24.24
    access-list 21 permit 192.168.16.0 0.0.0.63
    access-list 22 permit 192.168.16.0 0.0.0.63
    mac-address-table aging-time 300
    cdp run
    snmp-server engineID local
    snmp-server view *ilmi system included
    snmp-server view *ilmi atmForumUni included
    snmp-server view v1default iso included
    snmp-server view v1default internet.6.3.15 excluded
    snmp-server view v1default internet.6.3.16 excluded
    snmp-server view v1default internet.6.3.18 excluded
    snmp-server view v1default ciscoMgmt.394 excluded
    snmp-server view v1default ciscoMgmt.395 excluded
    snmp-server view v1default ciscoMgmt.399 excluded
    snmp-server view v1default ciscoMgmt.400 excluded
    snmp-server view *tv.FFFFFFFF.FFFFFFFF.FFFFFFFF.FFFFFFFF7F ieee802dot11 included
    snmp-server view *tv.FFFFFFFF.FFFFFFFF.FFFFFFFF.FFFFFFFF7F internet included
    snmp-server community 1682CrewsSNMP v1default RW 22
    snmp-server priority normal
    no snmp-server trap link ietf
    snmp-server trap authentication vrf
    snmp-server trap authentication acl-failure
    snmp-server trap authentication unknown-content
    snmp-server packetsize 1500
    snmp-server queue-limit notification-host 10
    snmp-server chassis-id FHK111016LX
    snmp-server enable traps snmp authentication linkdown linkup coldstart warmstart
    snmp-server enable traps vrrp
    snmp-server enable traps tty
    snmp-server enable traps pw vc
    snmp-server enable traps isdn call-information
    snmp-server enable traps isdn layer2
    snmp-server enable traps isdn chan-not-avail
    snmp-server enable traps isdn ietf
    snmp-server enable traps disassociate
    snmp-server enable traps deauthenticate
    snmp-server enable traps authenticate-fail
    snmp-server enable traps dot11-qos
    snmp-server enable traps switch-over
    snmp-server enable traps rogue-ap
    snmp-server enable traps wlan-wep
    snmp-server enable traps adslline
    snmp-server enable traps flash insertion removal
    snmp-server enable traps config-copy
    snmp-server enable traps config
    snmp-server enable traps config-ctid
    snmp-server enable traps entity
    snmp-server enable traps fru-ctrl
    snmp-server enable traps resource-policy
    snmp-server enable traps event-manager
    snmp-server enable traps hsrp
    snmp-server enable traps ipmulticast
    snmp-server enable traps msdp
    snmp-server enable traps mvpn
    snmp-server enable traps ospf state-change
    snmp-server enable traps ospf errors
    snmp-server enable traps ospf retransmit
    snmp-server enable traps ospf lsa
    snmp-server enable traps ospf cisco-specific state-change nssa-trans-change
    snmp-server enable traps ospf cisco-specific state-change shamlink interface-old
    snmp-server enable traps ospf cisco-specific state-change shamlink neighbor
    snmp-server enable traps ospf cisco-specific errors
    snmp-server enable traps ospf cisco-specific retransmit
    snmp-server enable traps ospf cisco-specific lsa
    snmp-server enable traps cpu threshold
    snmp-server enable traps syslog
    snmp-server enable traps cef resource-failure peer-state-change peer-fib-state-change inconsistency
    snmp-server enable traps l2tun session
    snmp-server enable traps l2tun pseudowire status
    snmp-server enable traps vtp
    snmp-server enable traps aaa_server
    snmp-server enable traps atm subif
    snmp-server enable traps firewall serverstatus
    snmp-server enable traps isakmp policy add
    snmp-server enable traps isakmp policy delete
    snmp-server enable traps isakmp tunnel start
    snmp-server enable traps isakmp tunnel stop
    snmp-server enable traps ipsec cryptomap add
    snmp-server enable traps ipsec cryptomap delete
    snmp-server enable traps ipsec cryptomap attach
    snmp-server enable traps ipsec cryptomap detach
    snmp-server enable traps ipsec tunnel start
    snmp-server enable traps ipsec tunnel stop
    snmp-server enable traps ipsec too-many-sas
    snmp-server enable traps ipsla
    snmp-server host 192.168.16.10 traps version 1 udp-port 162
    snmp-server inform retries 3 timeout 15 pending 25
    snmp mib nhrp
    snmp mib notification-log globalsize 500
    snmp mib notification-log globalageout 15
    snmp mib community-map  ILMI engineid
    snmp mib community-map  engineid
    radius-server local
    no authentication mac
    eapfast authority id
    eapfast authority info
    eapfast server-key primary 7
    eapfast server-key secondary 7
    nas key 7
    group users
      vlan 1
      ssid playground
      block count 5 time 60
      reauthentication time 3600
    group guest
      vlan 2
      ssid guestonpg
      block count 3 time 60
      reauthentication time 3600
    user nthash 7 group users
    user nthash 7 group guest
    radius-server attribute 32 include-in-access-req format %h
    radius-server host auth-port 1645 acct-port 1646 key 7
    radius-server vsa send accounting
    control-plane
    bridge 1 protocol ieee
    bridge 1 route ip
    bridge 2 protocol ieee
    bridge 2 route ip
    bridge 3 protocol ieee
    bridge 3 route ip
    alias exec h help
    alias exec lo logout
    alias exec p ping
    alias exec r resume
    alias exec s show
    alias exec u undebug
    alias exec un undebug
    alias exec w where
    default-value exec-character-bits 7
    default-value special-character-bits 7
    default-value data-character-bits 8
    line con 0
    password 7
    logging synchronous
    no modem enable
    transport output ssh
    line aux 0
    password 7
    logging synchronous
    transport output ssh
    line vty 0 4
    password 7
    logging synchronous
    transport preferred ssh
    transport input all
    transport output ssh
    scheduler max-task-time 5000
    scheduler allocate 4000 1000
    scheduler interval 500
    process cpu threshold type total rising 80 interval 10 falling 40 interval 10
    ntp authentication-key 1 md5 7
    ntp authenticate
    ntp trusted-key 1
    ntp source FastEthernet4
    ntp access-group peer 20
    ntp access-group serve-only 21
    ntp master 1
    ntp server 152.2.21.1 maxpoll 4
    ntp server 204.235.61.9 maxpoll 4
    ntp server 130.126.24.24
    ntp server 216.229.4.69 maxpoll 4
    ntp server 173.201.38.85 maxpoll 4
    cns id hostname
    cns id hostname event
    cns id hostname image
    cns image retry 60
    netconf max-sessions 4
    netconf lock-time 10
    netconf max-message 0
    event manager scheduler script thread class default number 1
    event manager scheduler applet thread class default number 32
    event manager history size events 10
    event manager history size traps 10
    end

  • Logshipping.

    An Obsolette Db was deleted while its log-shippin was still enabled. After the deletion of DB, SQL Server is not allowing me to delete the Backup, Copy and Restore jobs. Worst is the LS_Alert job keeps buzzing for this deleted DB. The entry of logshipping
    is still present in the msdb.dbo.log_shipping_primary_databases.
    I have also tried to delete the entry with help of the SP as below query. but no luck. Please help.
    EXEC
    master.dbo.sp_delete_log_shipping_primary_secondary
    @primary_database
    =
    N'xxxx',
    @secondary_server
    =
    N'xxxxx',
    @secondary_database
    =
    N'xxxxx'

    if your ultimate aim is to drop all logshipping details and jobs for this deleted database , just try creating a dummy database with the same old name and then remove logshipping before db.
    You can also try this -
    http://jairohenao.blogspot.co.uk/2009/09/sqlserver-2005-drop-database-before.html
    Regards, Ashwin Menon My Blog - http:\\sqllearnings.com

  • AIA PIPS Patch installation error

    I installed the AIA Pre build Integrations 11.4 PIP on the AIA 11.7 after that i am trying to install the mandatory "patch 16483496" given by oracle in pip installation guide
    but i ran into errors.
    I also deployed the BRM JCA Adapter in the admin console and restarted the soa and admin servers but still getting problems.
    My Log File:
    [echo]
    [echo]
    [echo]
    [echo] Deployment log -- /export/home/MetaAIA/Oracle/Middleware/Oracle_AIA1/aia_instances/Oracle_AIA/logs/PatchDeploymentPlan_Deployments_2014-01-23_08-49-12.log
    [echo]
    [echo]
    [echo]  === Executing Deployments of /export/home/MetaAIA/Oracle/Middleware/Oracle_AIA1/pips/Communications/O2C/DeploymentPlans/Patch_16483496/PatchDeploymentPlan.xml===
    [echo]
    [echo]
    [xslt] Processing /export/home/MetaAIA/Oracle/Middleware/Oracle_AIA1/pips/Communications/O2C/DeploymentPlans/Patch_16483496/PatchDeploymentPlan.xml to /export/home/MetaAIA/Oracle/Middleware/Oracle_AIA1/aia_instances/Oracle_AIA/tmp/AIDExecuteDP_temp_924440562.xml
    [xslt] Loading stylesheet /export/home/MetaAIA/Oracle/Middleware/Oracle_AIA1/aia_instances/Oracle_AIA/tmp/AIDExtractxsl_temp_1986630405.xsl
    [UpdateDeployedComposites] Connecting to: service:jmx:t3://hostname:8001/jndi/weblogic.management.mbeanservers.runtime
    [UpdateDeployedComposites] SOA server, soa_server1, is not ready. Waiting for SOAServer to be ready....
    [UpdateDeployedComposites] Upgrade Deployment Plan created at : /export/home/MetaAIA/Oracle/Middleware/Oracle_AIA1/aia_instances/Oracle_AIA/tmp/AIDExecuteDP_temp_924440562.xml
    executeDP:
    [echo]  executing Endpoint Configurator over the dir : /export/home/MetaAIA/Oracle/Middleware/Oracle_AIA1/services/industry/Communications/Siebel/RequesterABCS/ProcessSalesOrderFulfillmentSiebelCommsReqABCSImpl
    [echo] oracle.home = /export/home/MetaAIA/Oracle/Middleware/Oracle_SOA1/bin/..
    [input] skipping input as property compositeDir has already been set.
    [input] skipping input as property compositeName has already been set.
    [input] skipping input as property revision has already been set.
    clean:
    [echo] deleting /export/home/MetaAIA/Oracle/Middleware/Oracle_AIA1/services/industry/Communications/Siebel/RequesterABCS/ProcessSalesOrderFulfillmentSiebelCommsReqABCSImpl/deploy/sca_ProcessSalesOrderFulfillmentSiebelCommsReqABCSImpl_rev1.0.jar
       [delete] Deleting: /export/home/MetaAIA/Oracle/Middleware/Oracle_AIA1/services/industry/Communications/Siebel/RequesterABCS/ProcessSalesOrderFulfillmentSiebelCommsReqABCSImpl/deploy/sca_ProcessSalesOrderFulfillmentSiebelCommsReqABCSImpl_rev1.0.jar
    init:
    scac-validate:
    [echo] Running scac-validate in /export/home/MetaAIA/Oracle/Middleware/Oracle_AIA1/services/industry/Communications/Siebel/RequesterABCS/ProcessSalesOrderFulfillmentSiebelCommsReqABCSImpl/composite.xml
    [echo] oracle.home = /export/home/MetaAIA/Oracle/Middleware/Oracle_SOA1/bin/..
    [input] skipping input as property compositeDir has already been set.
    [input] skipping input as property compositeName has already been set.
    [input] skipping input as property revision has already been set.
    scac:
    [scac] Validating composite "/export/home/MetaAIA/Oracle/Middleware/Oracle_AIA1/services/industry/Communications/Siebel/RequesterABCS/ProcessSalesOrderFulfillmentSiebelCommsReqABCSImpl/composite.xml"
    [scac] /export/home/MetaAIA/Oracle/Middleware/Oracle_AIA1/services/industry/Communications/Siebel/RequesterABCS/ProcessSalesOrderFulfillmentSiebelCommsReqABCSImpl/composite.xml:76: warning: schema -  (Error) Attribute 'http://www.w3.org/XML/1998/namespace:id' not expected.
    [scac] /export/home/MetaAIA/Oracle/Middleware/Oracle_AIA1/services/industry/Communications/Siebel/RequesterABCS/ProcessSalesOrderFulfillmentSiebelCommsReqABCSImpl/composite.xml:77: warning: schema -  (Error) Attribute 'http://www.w3.org/XML/1998/namespace:id' not expected.
    [scac] /export/home/MetaAIA/Oracle/Middleware/Oracle_AIA1/services/industry/Communications/Siebel/RequesterABCS/ProcessSalesOrderFulfillmentSiebelCommsReqABCSImpl/composite.xml:80: warning: schema -  (Error) Attribute 'http://www.w3.org/XML/1998/namespace:id' not expected.
    [scac] /export/home/MetaAIA/Oracle/Middleware/Oracle_AIA1/services/industry/Communications/Siebel/RequesterABCS/ProcessSalesOrderFulfillmentSiebelCommsReqABCSImpl/composite.xml:81: warning: schema -  (Error) Attribute 'http://www.w3.org/XML/1998/namespace:id' not expected.
    [scac] /export/home/MetaAIA/Oracle/Middleware/Oracle_AIA1/services/industry/Communications/Siebel/RequesterABCS/ProcessSalesOrderFulfillmentSiebelCommsReqABCSImpl/composite.xml:84: warning: schema -  (Error) Attribute 'http://www.w3.org/XML/1998/namespace:id' not expected.
    [scac] /export/home/MetaAIA/Oracle/Middleware/Oracle_AIA1/services/industry/Communications/Siebel/RequesterABCS/ProcessSalesOrderFulfillmentSiebelCommsReqABCSImpl/composite.xml:85: warning: schema -  (Error) Attribute 'http://www.w3.org/XML/1998/namespace:id' not expected.
    [scac] /export/home/MetaAIA/Oracle/Middleware/Oracle_AIA1/services/industry/Communications/Siebel/RequesterABCS/ProcessSalesOrderFulfillmentSiebelCommsReqABCSImpl/composite.xml:88: warning: schema -  (Error) Attribute 'http://www.w3.org/XML/1998/namespace:id' not expected.
    [scac] /export/home/MetaAIA/Oracle/Middleware/Oracle_AIA1/services/industry/Communications/Siebel/RequesterABCS/ProcessSalesOrderFulfillmentSiebelCommsReqABCSImpl/composite.xml:89: warning: schema -  (Error) Attribute 'http://www.w3.org/XML/1998/namespace:id' not expected.
    [scac] Setting BPELC option 'classpath' to /export/home/MetaAIA/Oracle/Middleware/Oracle_AIA1/lib/aia.jar
    [scac] ProcessSalesOrderFulfillmentSiebelCommsReqABCSImplProcess.bpel:243: warning: <from> value type "{http://www.w3.org/2001/XMLSchema}string" is not compatible with <to> value type "{http://xmlns.oracle.com/EnterpriseObjects/Core/Common/V2}CodeType"
    [scac] ProcessSalesOrderFulfillmentSiebelCommsReqABCSImplProcess.bpel:243: warning: <from> value type "{http://www.w3.org/2001/XMLSchema}string" is not compatible with <to> value type "{http://xmlns.oracle.com/EnterpriseObjects/Core/Common/V2}TextType"
    package:
    [echo] oracle.home = /export/home/MetaAIA/Oracle/Middleware/Oracle_SOA1/bin/..
    [input] skipping input as property compositeDir has already been set.
    [input] skipping input as property compositeName has already been set.
    [input] skipping input as property revision has already been set.
    compile-source:
    [mkdir] Created dir: /export/home/MetaAIA/Oracle/Middleware/Oracle_AIA1/services/industry/Communications/Siebel/RequesterABCS/ProcessSalesOrderFulfillmentSiebelCommsReqABCSImpl/dist
    [copy] Copying 15 files to /export/home/MetaAIA/Oracle/Middleware/Oracle_AIA1/services/industry/Communications/Siebel/RequesterABCS/ProcessSalesOrderFulfillmentSiebelCommsReqABCSImpl/dist
    [copy] Warning: /export/home/MetaAIA/Oracle/Middleware/Oracle_AIA1/services/industry/Communications/Siebel/RequesterABCS/.adf not found.
    [copy] Warning: /export/home/MetaAIA/Oracle/Middleware/Oracle_AIA1/services/industry/Communications/Siebel/RequesterABCS/src not found.
    [copy] Warning: /export/home/MetaAIA/Oracle/Middleware/Oracle_AIA1/services/industry/Communications/Siebel/RequesterABCS/ProcessSalesOrderFulfillmentSiebelCommsReqABCSImpl/src not found.
    [copy] Warning: /export/home/MetaAIA/Oracle/Middleware/Oracle_AIA1/services/industry/Communications/Siebel/RequesterABCS/ProcessSalesOrderFulfillmentSiebelCommsReqABCSImpl/SCA-INF/src not found.
    [copy] Warning: /export/home/MetaAIA/Oracle/Middleware/Oracle_AIA1/services/industry/Communications/Siebel/RequesterABCS/ProcessSalesOrderFulfillmentSiebelCommsReqABCSImpl/resources not found.
    [jar] Building jar: /export/home/MetaAIA/Oracle/Middleware/Oracle_AIA1/services/industry/Communications/Siebel/RequesterABCS/ProcessSalesOrderFulfillmentSiebelCommsReqABCSImpl/deploy/sca_ProcessSalesOrderFulfillmentSiebelCommsReqABCSImpl_rev1.0.jar
       [delete] Deleting directory /export/home/MetaAIA/Oracle/Middleware/Oracle_AIA1/services/industry/Communications/Siebel/RequesterABCS/ProcessSalesOrderFulfillmentSiebelCommsReqABCSImpl/dist
    [echo] oracle.home = /export/home/MetaAIA/Oracle/Middleware/Oracle_SOA1/bin/..
    deploy:
    [input] skipping input as property serverURL has already been set.
    [input] skipping input as property sarLocation has already been set.
    [input] skipping input as property password has already been set.
    [deployComposite] setting user/password..., user=weblogic
    [deployComposite] Processing sar=/export/home/MetaAIA/Oracle/Middleware/Oracle_AIA1/services/industry/Communications/Siebel/RequesterABCS/ProcessSalesOrderFulfillmentSiebelCommsReqABCSImpl/deploy/sca_ProcessSalesOrderFulfillmentSiebelCommsReqABCSImpl_rev1.0.jar
    [deployComposite] Adding sar file - /export/home/MetaAIA/Oracle/Middleware/Oracle_AIA1/services/industry/Communications/Siebel/RequesterABCS/ProcessSalesOrderFulfillmentSiebelCommsReqABCSImpl/deploy/sca_ProcessSalesOrderFulfillmentSiebelCommsReqABCSImpl_rev1.0.jar
    [deployComposite] INFO: Creating HTTP connection to host:hostname, port:8001
    [deployComposite] INFO: Received HTTP response from the server, response code=200
    [deployComposite] ---->Deploying composite success.
    setup:
    [copy] Copying 1 file to /export/home/MetaAIA/Oracle/Middleware/Oracle_AIA1/services/industry/Communications/Siebel/RequesterABCS/ProcessSalesOrderFulfillmentSiebelCommsReqABCSImpl
    [echo] /export/home/MetaAIA/Oracle/Middleware/modules/org.apache.ant_1.7.1/bin/ant -f /export/home/MetaAIA/Oracle/Middleware/Oracle_AIA1/Infrastructure/Install/AID//lib/XSLMerge.xml --noconfig -DforceMergeAIAConfigProperties=true -DaiainstanceName=Oracle_AIA -DcompositeDir=/export/home/MetaAIA/Oracle/Middleware/Oracle_AIA1/services/industry/Communications/Siebel/RequesterABCS/ProcessSalesOrderFulfillmentSiebelCommsReqABCSImpl xslMerge
    [exec] Buildfile: /export/home/MetaAIA/Oracle/Middleware/Oracle_AIA1/Infrastructure/Install/AID/lib/XSLMerge.xml
    [exec]
    [exec] xslMerge:
    [exec]
    [copy] Copying 1 file to /export/home/MetaAIA/Oracle/Middleware/Oracle_AIA1/aia_instances/Oracle_AIA/AIAMetaData/config
    [exec]
    [xslt] Processing /export/home/MetaAIA/Oracle/Middleware/Oracle_AIA1/aia_instances/Oracle_AIA/AIAMetaData/config/AIAConfigurationProperties.xml to /export/home/MetaAIA/Oracle/Middleware/Oracle_AIA1/aia_instances/Oracle_AIA/AIAMetaData/config/temp.xml
    [exec]
    [xslt] Loading stylesheet /export/home/MetaAIA/Oracle/Middleware/Oracle_AIA1/Infrastructure/Install/AID/lib/xsl/UpgradeMergeAIAConfigurationProperties.xsl
    [exec]
    [delete] Deleting: /export/home/MetaAIA/Oracle/Middleware/Oracle_AIA1/aia_instances/Oracle_AIA/AIAMetaData/config/AIAConfigurationProperties.xml
    [exec]
    [move] Moving 1 file to /export/home/MetaAIA/Oracle/Middleware/Oracle_AIA1/aia_instances/Oracle_AIA/AIAMetaData/config
    [exec]
    [delete] Deleting: /export/home/MetaAIA/Oracle/Middleware/Oracle_AIA1/services/industry/Communications/Siebel/RequesterABCS/ProcessSalesOrderFulfillmentSiebelCommsReqABCSImpl/AIAServiceConfigurationPropertiestemp.xml
    [exec]
    [exec] BUILD SUCCESSFUL
    [exec] Total time: 3 seconds
    [mkdir] Created dir: /export/home/MetaAIA/Oracle/Middleware/Oracle_AIA1/aia_instances/Oracle_AIA/AIAMetaData/tempMetadata/apps/AIAMetaData
    [copy] Copying 1 file to /export/home/MetaAIA/Oracle/Middleware/Oracle_AIA1/aia_instances/Oracle_AIA/AIAMetaData/tempMetadata/apps/AIAMetaData
       [delete] Deleting: /export/home/MetaAIA/Oracle/Middleware/Oracle_AIA1/aia_instances/Oracle_AIA/AIAMetaData/MetaData.zip
    [zip] Building zip: /export/home/MetaAIA/Oracle/Middleware/Oracle_AIA1/aia_instances/Oracle_AIA/AIAMetaData/MetaData.zip
    [exec]
    [exec] CLASSPATH=/export/home/MetaAIA/Oracle/Middleware/patch_wls1036/profiles/default/sys_manifest_classpath/weblogic_patch.jar:/export/home/MetaAIA/Oracle/Middleware/patch_ocp371/profiles/default/sys_manifest_classpath/weblogic_patch.jar:/usr/jdk/instances/jdk1.6.0/lib/tools.jar:/export/home/MetaAIA/Oracle/Middleware/wlserver_10.3/server/lib/weblogic_sp.jar:/export/home/MetaAIA/Oracle/Middleware/wlserver_10.3/server/lib/weblogic.jar:/export/home/MetaAIA/Oracle/Middleware/modules/features/weblogic.server.modules_10.3.6.0.jar:/export/home/MetaAIA/Oracle/Middleware/wlserver_10.3/server/lib/webservices.jar:/export/home/MetaAIA/Oracle/Middleware/modules/org.apache.ant_1.7.1/lib/ant-all.jar:/export/home/MetaAIA/Oracle/Middleware/modules/net.sf.antcontrib_1.1.0.0_1-0b2/lib/ant-contrib.jar:.:/export/home/MetaAIA/Oracle/Middleware/wlserver_10.3/server/lib/weblogic.jar:/export/home/MetaAIA/Oracle/Middleware/Oracle_AIA1/lib/aia-utils.jar:/export/home/MetaAIA/Oracle/Middleware/modules/net.sf.antcontrib_1.1.0.0_1-0b2/lib/ant-contrib.jar:/export/home/MetaAIA/Oracle/Middleware/oracle_common/modules/oracle.mds_11.1.1/mdsrt.jar:/export/home/MetaAIA/Oracle/Middleware/oracle_common/modules/oracle.jps_11.1.1/jps-ee.jar:/export/home/MetaAIA/Oracle/Middleware/oracle_common/modules/oracle.jps_11.1.1/jps-common.jar:/export/home/MetaAIA/Oracle/Middleware/oracle_common/modules/oracle.jps_11.1.1/jps-internal.jar:/export/home/MetaAIA/Oracle/Middleware/oracle_common/modules/oracle.jps_11.1.1/jps-unsupported-api.jar:/export/home/MetaAIA/Oracle/Middleware/oracle_common/modules/oracle.pki_11.1.1/oraclepki.jar:/export/home/MetaAIA/Oracle/Middleware/oracle_common/modules/oracle.idm_11.1.1/identitystore.jar:/export/home/MetaAIA/Oracle/Middleware/oracle_common/modules/oracle.webservices_11.1.1/oracle.webservices.standalone.client.jar:/export/home/MetaAIA/Oracle/Middleware/Oracle_SOA1/soa/modules/oracle.soa.fabric_11.1.1/oracle-soa-client-api.jar:/export/home/MetaAIA/Oracle/Middleware/oracle_common/soa/modules/oracle.soa.mgmt_11.1.1/soa-infra-mgmt.jar:/export/home/MetaAIA/Oracle/Middleware/Oracle_SOA1/soa/modules/oracle.soa.mgmt_11.1.1/soa-infra-mgmt.jar:/export/home/MetaAIA/Oracle/Middleware/oracle_common/modules/oracle.fabriccommon_11.1.1/fabric-common.jar:/export/home/MetaAIA/Oracle/Middleware/Oracle_SOA1/soa/modules/oracle.soa.fabric_11.1.1/fabric-runtime.jar:/export/home/MetaAIA/Oracle/Middleware/oracle_common/BC4J/jlib/commons-cli-1.0.jar:/export/home/MetaAIA/Oracle/Middleware/oracle_common/jlib/commons-cli-1.0.jar::/export/home/MetaAIA/Oracle/Middleware/oracle_common/modules/oracle.jrf_11.1.1/jrf-wlstman.jar:/export/home/MetaAIA/Oracle/Middleware/oracle_common/common/wlst/lib/adf-share-mbeans-wlst.jar:/export/home/MetaAIA/Oracle/Middleware/oracle_common/common/wlst/lib/adfscripting.jar:/export/home/MetaAIA/Oracle/Middleware/oracle_common/common/wlst/lib/mdswlst.jar:/export/home/MetaAIA/Oracle/Middleware/oracle_common/common/wlst/resources/auditwlst.jar:/export/home/MetaAIA/Oracle/Middleware/oracle_common/common/wlst/resources/igfwlsthelp.jar:/export/home/MetaAIA/Oracle/Middleware/oracle_common/common/wlst/resources/jps-wls-trustprovider.jar:/export/home/MetaAIA/Oracle/Middleware/oracle_common/common/wlst/resources/jps-wlst.jar:/export/home/MetaAIA/Oracle/Middleware/oracle_common/common/wlst/resources/jrf-wlst.jar:/export/home/MetaAIA/Oracle/Middleware/oracle_common/common/wlst/resources/oamAuthnProvider.jar:/export/home/MetaAIA/Oracle/Middleware/oracle_common/common/wlst/resources/oamap_help.jar:/export/home/MetaAIA/Oracle/Middleware/oracle_common/common/wlst/resources/ossoiap.jar:/export/home/MetaAIA/Oracle/Middleware/oracle_common/common/wlst/resources/ossoiap_help.jar:/export/home/MetaAIA/Oracle/Middleware/oracle_common/common/wlst/resources/ovdwlsthelp.jar:/export/home/MetaAIA/Oracle/Middleware/oracle_common/common/wlst/resources/sslconfigwlst.jar:/export/home/MetaAIA/Oracle/Middleware/oracle_common/common/wlst/resources/wsm-wlst.jar:/export/home/MetaAIA/Oracle/Middleware/utils/config/10.3/config-launch.jar::/export/home/MetaAIA/Oracle/Middleware/wlserver_10.3/common/derby/lib/derbynet.jar:/export/home/MetaAIA/Oracle/Middleware/wlserver_10.3/common/derby/lib/derbyclient.jar:/export/home/MetaAIA/Oracle/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://hostname:7001 with userid weblogic ...
    [exec] Successfully connected to Admin Server 'AdminServer' that belongs to domain 'MetaSOA_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: AdminServer
       [delete] Deleting: /export/home/MetaAIA/Oracle/Middleware/Oracle_AIA1/aia_instances/Oracle_AIA/tmp/keyFile
       [delete] Deleting: /export/home/MetaAIA/Oracle/Middleware/Oracle_AIA1/aia_instances/Oracle_AIA/tmp/propFile
       [delete] Deleting directory /export/home/MetaAIA/Oracle/Middleware/Oracle_AIA1/aia_instances/Oracle_AIA/AIAMetaData/tempMetadata
    [echo] AIASecurityConfigurationProperties.xml does not exist in /export/home/MetaAIA/Oracle/Middleware/Oracle_AIA1/services/industry/Communications/Siebel/RequesterABCS/ProcessSalesOrderFulfillmentSiebelCommsReqABCSImpl
    [echo]  executing Endpoint Configurator over the dir : /export/home/MetaAIA/Oracle/Middleware/Oracle_AIA1/services/industry/Communications/BRM/ProviderABCS/ProcessFulfillmentOrderBillingBRMCommsAddSubProcess
    [echo] oracle.home = /export/home/MetaAIA/Oracle/Middleware/Oracle_SOA1/bin/..
    [input] skipping input as property compositeDir has already been set.
    [input] skipping input as property compositeName has already been set.
    [input] skipping input as property revision has already been set.
    clean:
    [echo] deleting /export/home/MetaAIA/Oracle/Middleware/Oracle_AIA1/services/industry/Communications/BRM/ProviderABCS/ProcessFulfillmentOrderBillingBRMCommsAddSubProcess/deploy/sca_ProcessFulfillmentOrderBillingBRMCommsAddSubProcess_rev1.0.jar
    init:
    scac-validate:
    [echo] Running scac-validate in /export/home/MetaAIA/Oracle/Middleware/Oracle_AIA1/services/industry/Communications/BRM/ProviderABCS/ProcessFulfillmentOrderBillingBRMCommsAddSubProcess/composite.xml
    [echo] oracle.home = /export/home/MetaAIA/Oracle/Middleware/Oracle_SOA1/bin/..
    [input] skipping input as property compositeDir has already been set.
    [input] skipping input as property compositeName has already been set.
    [input] skipping input as property revision has already been set.
    scac:
    [scac] Validating composite "/export/home/MetaAIA/Oracle/Middleware/Oracle_AIA1/services/industry/Communications/BRM/ProviderABCS/ProcessFulfillmentOrderBillingBRMCommsAddSubProcess/composite.xml"
    [scac] /export/home/MetaAIA/Oracle/Middleware/Oracle_AIA1/services/industry/Communications/BRM/ProviderABCS/ProcessFulfillmentOrderBillingBRMCommsAddSubProcess/composite.xml:206: warning: schema -  (Error) Attribute 'http://www.w3.org/XML/1998/namespace:id' not expected.
    [scac] /export/home/MetaAIA/Oracle/Middleware/Oracle_AIA1/services/industry/Communications/BRM/ProviderABCS/ProcessFulfillmentOrderBillingBRMCommsAddSubProcess/composite.xml:207: warning: schema -  (Error) Attribute 'http://www.w3.org/XML/1998/namespace:id' not expected.
    [scac] /export/home/MetaAIA/Oracle/Middleware/Oracle_AIA1/services/industry/Communications/BRM/ProviderABCS/ProcessFulfillmentOrderBillingBRMCommsAddSubProcess/composite.xml:210: warning: schema -  (Error) Attribute 'http://www.w3.org/XML/1998/namespace:id' not expected.
    [scac] /export/home/MetaAIA/Oracle/Middleware/Oracle_AIA1/services/industry/Communications/BRM/ProviderABCS/ProcessFulfillmentOrderBillingBRMCommsAddSubProcess/composite.xml:211: warning: schema -  (Error) Attribute 'http://www.w3.org/XML/1998/namespace:id' not expected.
    [scac] /export/home/MetaAIA/Oracle/Middleware/Oracle_AIA1/services/industry/Communications/BRM/ProviderABCS/ProcessFulfillmentOrderBillingBRMCommsAddSubProcess/composite.xml:214: warning: schema -  (Error) Attribute 'http://www.w3.org/XML/1998/namespace:id' not expected.
    [scac] /export/home/MetaAIA/Oracle/Middleware/Oracle_AIA1/services/industry/Communications/BRM/ProviderABCS/ProcessFulfillmentOrderBillingBRMCommsAddSubProcess/composite.xml:215: warning: schema -  (Error) Attribute 'http://www.w3.org/XML/1998/namespace:id' not expected.
    [scac] /export/home/MetaAIA/Oracle/Middleware/Oracle_AIA1/services/industry/Communications/BRM/ProviderABCS/ProcessFulfillmentOrderBillingBRMCommsAddSubProcess/composite.xml:218: warning: schema -  (Error) Attribute 'http://www.w3.org/XML/1998/namespace:id' not expected.
    [scac] /export/home/MetaAIA/Oracle/Middleware/Oracle_AIA1/services/industry/Communications/BRM/ProviderABCS/ProcessFulfillmentOrderBillingBRMCommsAddSubProcess/composite.xml:219: warning: schema -  (Error) Attribute 'http://www.w3.org/XML/1998/namespace:id' not expected.
    [scac] /export/home/MetaAIA/Oracle/Middleware/Oracle_AIA1/services/industry/Communications/BRM/ProviderABCS/ProcessFulfillmentOrderBillingBRMCommsAddSubProcess/composite.xml:222: warning: schema -  (Error) Attribute 'http://www.w3.org/XML/1998/namespace:id' not expected.
    [scac] /export/home/MetaAIA/Oracle/Middleware/Oracle_AIA1/services/industry/Communications/BRM/ProviderABCS/ProcessFulfillmentOrderBillingBRMCommsAddSubProcess/composite.xml:223: warning: schema -  (Error) Attribute 'http://www.w3.org/XML/1998/namespace:id' not expected.
    [scac] /export/home/MetaAIA/Oracle/Middleware/Oracle_AIA1/services/industry/Communications/BRM/ProviderABCS/ProcessFulfillmentOrderBillingBRMCommsAddSubProcess/composite.xml:226: warning: schema -  (Error) Attribute 'http://www.w3.org/XML/1998/namespace:id' not expected.
    [scac] /export/home/MetaAIA/Oracle/Middleware/Oracle_AIA1/services/industry/Communications/BRM/ProviderABCS/ProcessFulfillmentOrderBillingBRMCommsAddSubProcess/composite.xml:227: warning: schema -  (Error) Attribute 'http://www.w3.org/XML/1998/namespace:id' not expected.
    [scac] /export/home/MetaAIA/Oracle/Middleware/Oracle_AIA1/services/industry/Communications/BRM/ProviderABCS/ProcessFulfillmentOrderBillingBRMCommsAddSubProcess/composite.xml:230: warning: schema -  (Error) Attribute 'http://www.w3.org/XML/1998/namespace:id' not expected.
    [scac] /export/home/MetaAIA/Oracle/Middleware/Oracle_AIA1/services/industry/Communications/BRM/ProviderABCS/ProcessFulfillmentOrderBillingBRMCommsAddSubProcess/composite.xml:231: warning: schema -  (Error) Attribute 'http://www.w3.org/XML/1998/namespace:id' not expected.
    [scac] Setting BPELC option 'classpath' to /export/home/MetaAIA/Oracle/Middleware/Oracle_AIA1/lib/aia.jar
    [scac] ProcessFulfillmentOrderBillingBRMCommsAddSubProcessProcess.bpel:264: warning: <from> value type "{http://www.w3.org/2001/XMLSchema}string" is not compatible with <to> value type "{http://xmlns.oracle.com/EnterpriseObjects/Core/Common/V2}TextType"
    [scac] ProcessFulfillmentOrderBillingBRMCommsAddSubProcessProcess.bpel:264: warning: <from> value type "{http://www.w3.org/2001/XMLSchema}string" is not compatible with <to> value type "{http://xmlns.oracle.com/EnterpriseObjects/Core/Common/V2}TextType"
    [scac] ProcessFulfillmentOrderBillingBRMCommsAddSubProcessProcess.bpel:342: warning: <from> value type "{http://www.w3.org/2001/XMLSchema}string" is not compatible with <to> value type "{http://xmlns.oracle.com/EnterpriseObjects/Core/Common/V2}CodeType"
    [scac] ProcessFulfillmentOrderBillingBRMCommsAddSubProcessProcess.bpel:342: warning: <from> value type "{http://www.w3.org/2001/XMLSchema}string" is not compatible with <to> value type "{http://xmlns.oracle.com/EnterpriseObjects/Core/Common/V2}TextType"
    [scac] ProcessFulfillmentOrderBillingBRMCommsAddSubProcessProcess.bpel:937: warning: xpath expression "bpws:getVariableData('BRMBASERouteToCAVS')" used in <case> may not return boolean type value, the xpath engine would automatically try to convert the return value to boolean
    [scac] ProcessFulfillmentOrderBillingBRMCommsAddSubProcessProcess.bpel:995: warning: <from> value type "{http://www.w3.org/2001/XMLSchema}string" is not compatible with <to> value type "{http://xmlns.oracle.com/EnterpriseObjects/Core/Common/V2}IdentifierType"
    [scac] ProcessFulfillmentOrderBillingBRMCommsAddSubProcessProcess.bpel:1134: warning: xpath expression "bpws:getVariableData('BRMBASERouteToCAVS')" used in <case> may not return boolean type value, the xpath engine would automatically try to convert the return value to boolean
    [scac] ProcessFulfillmentOrderBillingBRMCommsAddSubProcessProcess.bpel:1355: warning: xpath expression "bpws:getVariableData('BRMCUSTRouteToCAVS')" used in <case> may not return boolean type value, the xpath engine would automatically try to convert the return value to boolean
    [scac] ProcessFulfillmentOrderBillingBRMCommsAddSubProcessProcess.bpel:1616: warning: xpath expression "bpws:getVariableData('BRMSUBSCRIPTIONRouteToCAVS')" used in <case> may not return boolean type value, the xpath engine would automatically try to convert the return value to boolean
    [scac] ProcessFulfillmentOrderBillingBRMCommsAddSubProcessProcess.bpel:2013: warning: <from> value type "{http://xmlns.oracle.com/EnterpriseObjects/Core/Common/V2}DateTimeType" is not compatible with <to> value type "{http://www.w3.org/2001/XMLSchema}string"
    [scac] ProcessFulfillmentOrderBillingBRMCommsAddSubProcessProcess.bpel:2088: warning: <from> value type "{http://xmlns.oracle.com/EnterpriseObjects/Core/Common/V2}DateTimeType" is not compatible with <to> value type "{http://www.w3.org/2001/XMLSchema}string"
    [scac] ProcessFulfillmentOrderBillingBRMCommsAddSubProcessProcess.bpel:2109: warning: <from> value type "{http://xmlns.oracle.com/EnterpriseObjects/Core/Common/V2}DateTimeType" is not compatible with <to> value type "{http://www.w3.org/2001/XMLSchema}string"
    [scac] ProcessFulfillmentOrderBillingBRMCommsAddSubProcessProcess.bpel:2126: warning: <from> value type "{http://xmlns.oracle.com/EnterpriseObjects/Core/Common/V2}DateTimeType" is not compatible with <to> value type "{http://www.w3.org/2001/XMLSchema}string"
    [scac] ProcessFulfillmentOrderBillingBRMCommsAddSubProcessProcess.bpel:2143: warning: <from> value type "{http://xmlns.oracle.com/EnterpriseObjects/Core/Common/V2}DateTimeType" is not compatible with <to> value type "{http://www.w3.org/2001/XMLSchema}string"
    [scac] ProcessFulfillmentOrderBillingBRMCommsAddSubProcessProcess.bpel:2160: warning: <from> value type "{http://xmlns.oracle.com/EnterpriseObjects/Core/Common/V2}DateTimeType" is not compatible with <to> value type "{http://www.w3.org/2001/XMLSchema}string"
    [scac] ProcessFulfillmentOrderBillingBRMCommsAddSubProcessProcess.bpel:2221: warning: xpath expression "bpws:getVariableData('BRMSUBSCRIPTIONRouteToCAVS')" used in <case> may not return boolean type value, the xpath engine would automatically try to convert the return value to boolean
    [scac] ProcessFulfillmentOrderBillingBRMCommsAddSubProcessProcess.bpel:2305: warning: xpath expression "bpws:getVariableData('BRMSUBSCRIPTIONRouteToCAVS')" used in <case> may not return boolean type value, the xpath engine would automatically try to convert the return value to boolean
    package:
    [echo] oracle.home = /export/home/MetaAIA/Oracle/Middleware/Oracle_SOA1/bin/..
    [input] skipping input as property compositeDir has already been set.
    [input] skipping input as property compositeName has already been set.
    [input] skipping input as property revision has already been set.
    compile-source:
    [mkdir] Created dir: /export/home/MetaAIA/Oracle/Middleware/Oracle_AIA1/services/industry/Communications/BRM/ProviderABCS/ProcessFulfillmentOrderBillingBRMCommsAddSubProcess/dist
    [copy] Copying 40 files to /export/home/MetaAIA/Oracle/Middleware/Oracle_AIA1/services/industry/Communications/BRM/ProviderABCS/ProcessFulfillmentOrderBillingBRMCommsAddSubProcess/dist
    [copy] Warning: /export/home/MetaAIA/Oracle/Middleware/Oracle_AIA1/services/industry/Communications/BRM/ProviderABCS/.adf not found.
    [copy] Warning: /export/home/MetaAIA/Oracle/Middleware/Oracle_AIA1/services/industry/Communications/BRM/ProviderABCS/src not found.
    [copy] Warning: /export/home/MetaAIA/Oracle/Middleware/Oracle_AIA1/services/industry/Communications/BRM/ProviderABCS/ProcessFulfillmentOrderBillingBRMCommsAddSubProcess/src not found.
    [copy] Warning: /export/home/MetaAIA/Oracle/Middleware/Oracle_AIA1/services/industry/Communications/BRM/ProviderABCS/ProcessFulfillmentOrderBillingBRMCommsAddSubProcess/SCA-INF/src not found.
    [copy] Warning: /export/home/MetaAIA/Oracle/Middleware/Oracle_AIA1/services/industry/Communications/BRM/ProviderABCS/ProcessFulfillmentOrderBillingBRMCommsAddSubProcess/resources not found.
    [jar] Building jar: /export/home/MetaAIA/Oracle/Middleware/Oracle_AIA1/services/industry/Communications/BRM/ProviderABCS/ProcessFulfillmentOrderBillingBRMCommsAddSubProcess/deploy/sca_ProcessFulfillmentOrderBillingBRMCommsAddSubProcess_rev1.0.jar
       [delete] Deleting directory /export/home/MetaAIA/Oracle/Middleware/Oracle_AIA1/services/industry/Communications/BRM/ProviderABCS/ProcessFulfillmentOrderBillingBRMCommsAddSubProcess/dist
    [echo] oracle.home = /export/home/MetaAIA/Oracle/Middleware/Oracle_SOA1/bin/..
    deploy:
    [input] skipping input as property serverURL has already been set.
    [input] skipping input as property sarLocation has already been set.
    [input] skipping input as property password has already been set.
    [deployComposite] setting user/password..., user=weblogic
    [deployComposite] Processing sar=/export/home/MetaAIA/Oracle/Middleware/Oracle_AIA1/services/industry/Communications/BRM/ProviderABCS/ProcessFulfillmentOrderBillingBRMCommsAddSubProcess/deploy/sca_ProcessFulfillmentOrderBillingBRMCommsAddSubProcess_rev1.0.jar
    [deployComposite] Adding sar file - /export/home/MetaAIA/Oracle/Middleware/Oracle_AIA1/services/industry/Communications/BRM/ProviderABCS/ProcessFulfillmentOrderBillingBRMCommsAddSubProcess/deploy/sca_ProcessFulfillmentOrderBillingBRMCommsAddSubProcess_rev1.0.jar
    [deployComposite] INFO: Creating HTTP connection to host:hostname, port:8001
    [deployComposite] INFO: Received HTTP response from the server, response code=500
    [deployComposite] ---->response code=500, error:There was an error deploying the composite on soa_server1: [JCABinding] [ProcessFulfillmentOrderBillingBRMCommsAddSubProcess.BRMCUSTService/1.0]Unable to complete unload due to: null.
    [deployComposite]
    BUILD FAILED
    /export/home/MetaAIA/Oracle/Middleware/Oracle_AIA1/Infrastructure/Install/AID/AIAExecuteDriver.xml:119: The following error occurred while executing this line:
    /export/home/MetaAIA/Oracle/Middleware/Oracle_AIA1/Infrastructure/Install/AID/AIAExecuteDriver.xml:65: The following error occurred while executing this line:
    /export/home/MetaAIA/Oracle/Middleware/Oracle_AIA1/aia_instances/Oracle_AIA/tmp/AIDExecuteDP_temp_765031970.xml:5: The following error occurred while executing this line:
    /export/home/MetaAIA/Oracle/Middleware/Oracle_AIA1/Infrastructure/Install/AID/lib/AIDDeploymentLibraryTasks.xml:216: The following error occurred while executing this line:
    /export/home/MetaAIA/Oracle/Middleware/Oracle_AIA1/Infrastructure/Install/AID/lib/AIDDeploymentLibraryTasks.xml:286: The following error occurred while executing this line:
    /export/home/MetaAIA/Oracle/Middleware/Oracle_SOA1/bin/ant-sca-deploy.xml:214: There was an error deploying the composite on soa_server1: [JCABinding] [ProcessFulfillmentOrderBillingBRMCommsAddSubProcess.BRMCUSTService/1.0]Unable to complete unload due to: null.
    Can anyone please help on this.
    Thanks,
    Ajay Athuluri.

    Hi Ajay,
    Could you check the managed server logs on the server you are deploying to? I prefer the soa_server1.out file if its available. Hopefully there is something more telling on that side.
    My gut feeling is that there is a schema required by the ProcessFulfillmentOrderBillingBRMCommsAddSubProcess process has not been deployed (which sometimes happens with this PIP in particular).

  • Can't start Openbox from xinitrc

    When I put "exec startxfce4" in my ~/.xinitrc file, both X and Xfce start up fine, but when comment out that line and add "exec openbox", X does not start and I get "Fatal error: no screens found."
    Any help?

    exec openbox-session

Maybe you are looking for