Apache and Mid Tier Bounce

Hi
Plz help me on this,
When to bounce, apache bounce and mid-tier bounce
plz share the commands on this.
Thanx

Please refer this link
http://oracle.anilpassi.com/restart-or-bounce-apache-in-oracle-apps-11i-2.html
Hope it helps!!
Thanks
AJ

Similar Messages

  • After install infra and mid tier, how do I put into one Farm?

    If I installed the infra , then the mid tier (all on one machine) How do I include the mid tier in the a farm that includes the infra i already installed? How do I
    link the mid tiers to the infra. I can link to both , which have separate ports 1810 and 1811?
    thanks!
    maria

    You can re-download the software from Download CS5.5 products
    Install and enter your serial number when prompted.
    Find your serial number quickly

  • Set-up with different urls for login server and mid-tier

    The desired external host names are the following:
    Portal -> http://www.myportal.com
    Login Server -> http://www.login.com
    The real (internal) host names are the following:
    midtier -> midtier.xyz.com
    infrastructure-> infra.xyz.com
    How should the Oracle HTTP Server, Login/SSO server, portal be configured with this type of set-up?
    In particular, what should be in the httpd.conf, dads.conf, mod_osso.conf files and which values should be passed to the ssocfg and ptlasst scripts? Does the DAS url need to have the internal or external host name?

    How should the scenario described above be integrated into the instructions below? $HOSTNAME may refer to the internal or external midtier or infrastructure machine name. Which should be used?
    Assume HTTPS for the login server --> https://www.login.com.
    <PRE>
    Doc ID: Note:216126.1
    Subject: How to configure SSL with Portal 9.0.2
    Type: HOWTO
    Status: PUBLISHED
    Content Type: TEXT/PLAIN
    Creation Date: 25-OCT-2002
    Last Revision Date: 16-JAN-2003
    PURPOSE ------- This note explains how to set up SSL with Portal. There are several ways to configure SSL with Portal. This note uses SSL only between the browser and WebCache. The communication between the Webcache/Apache or PPE/Webcache is done in HTTP. This installation is a lot less CPU extensive than a full SSL configuration. Please note the configuration outlined here is not currently certified for Portal 9.0.2; however, it is fully supported by Oracle Support and Development. This means that this configuration was not tested by the Portal QA Department within Oracle. The difference in the QA test was that all components of the configuration were in SSL mode. SCOPE & APPLICATION ------------------- This note is intended for Portal administrators. This note is based on Unix. The Windows NT configuration is very similar. HISTORY ------- Version 1.0: SSL with a Unix shell script Version 1.1: Comment about the Webcache HTTP port How to configure SSL with Portal 9.0.2 -------------------------------------- Step 1 - Prerequisite --------------------- A. Get a SSL certificate ------------------------ IAS v2 is given with dummy certificates. You can use them. If you wish to use real SSL certificates, follow a note to configure SSL with Webcache like : - Note 161863.1 - Configuring WebCache with SSL - NT/2000 - Note 165305.1 - Configuring WebCache with SSL - Unix B. Password of the database schemas of portal --------------------------------------------- You need to have the passwords of the following database users: Database user Your passwords ---------------------------------------------- portal orasso orasso_ps orasso_pa These passwords are normally randomized during the installation of IAS V2. To find them, please follow one of these notes: - Note 206514.1 : IAS 9.0.2 : How to get the portal passwords to run the PTLASST script (Windows) - Note 199633.1 : Script to determine orasso password in 9iAS 9.0.2 on Unix - Note 205984.1 : Script to determine orasso password in 9iAS 9.0.2 on Windows C. Ports -------- During this installation, you will need to know a lot of ports of IAS V2. Please collect this information, before to begin. You can see the port list by going to the homepage of the midtier and of the infrastructure web page and clicking on the tab Port. You can also read the file portlist.ini that resides in both ORACLE_HOME in the directory $ORACLE_HOME/install. Here is the list, you need: Name of the port My port numbers Your port numbers --------------------------------------------------------------------- Midtier Web Cache HTTP port 7783 Midtier Web Cache HTTPS port 4459 Midtier Web Cache Admin port 4000 Midtier Web Cache Invalidation port 4001 --------------------------------------------------------------------- Infrastructure Oracle HTTP Server port 7784 Infrastructure Oracle HTTPS Server port 4460 Infrastructure Internet Directory(non-SSL) 4039 --------------------------------------------------------------------- D. Backups ---------- You should take a backup of your IAS installation in case that you want to revert all the changes done here and/or if you make a mistake during the configuration. The only good way to do a backup of IAS 9.0.2 is to have a full backup of the both ORACLE_HOMES of the Infrastructure and of the MidTier. Step 2 - Configure Portal to run in SSL --------------------------------------- 1) Edit the Webcache configuration Go to the administration port > http://hostname:web_admin_port/ > Typically http://hostname:4000/ Login: administrator/administrator Go to General Configuration / Site to Server Mapping -> Change the rule WebCache SSL - HTTP SSL -> Below the title Select "Application Web Servers" -> Check the checkbox with HTTP -> Uncheck the one with HTTPS -> Submit On the top of Webcache admin screen, press on <Apply the changes> Then restart WebCache. 2) Edit the dads.conf (in $MIDTIER_ORACLE_HOME/Apache/modplql/conf) Add a new line in the DAD: <Location /pls/portal> PlsqlCGIEnvironmentList REQUEST_PROTOCOL=HTTPS,SERVER_PORT=4459 Where 4459 is the HTTPS port of the MIDTIER. 3) Modify the web.xml of the portal application ($MIDTIER_ORACLE_HOME/j2ee/OC4J_Portal/applications/portal/portal/WEB-INF) Add several parameters to the page servlet (PPE). [...] <servlet> <servlet-name>page</servlet-name> [...] <init-param> <param-name>useWebCache</param-name> <param-value>true</param-value> </init-param> <init-param> <param-name>useScheme</param-name> <param-value>http</param-value> </init-param> <init-param> <param-name>usePort</param-name> <param-value>7783</param-value> </init-param> </servlet> [...] Where 7783 is the HTTP port of Webcache. Step 3 - Run the PTLASST ------------------------ Because of bug 2659809, we will remove an entry in OID before to run the PTLASST script. This entry will be recreated by PTLASST. Because of bug 2654938, we will reconfigure Webcache after PTLASST. Run this script, and modify the environment variables with the values found above. This scripts does 3 things: 1) It configures SSO/DAS to run in the infrastructure HTTPS port 2) It configures Portal in HTTPS mode, and associates Portal with SSO in HTTPS. 3) Restart OC4J and HTTP processes of the MIDTIER and INFRASTRUCTURE - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - portal_ssl.sh - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - export INFRA_ORACLE_HOME=/u01/oracle/product/infra902 export MIDTIER_ORACLE_HOME=/u01/oracle/product/ias902 export INFRA_SID=iasdb export MIDTIER_SID=ias902 export PORTAL_SID=$INFRA_SID export PORTAL_TNS=iasdb export MIDTIER_HTTP_PORT=7783 export MIDTIER_HTTPS_PORT=4459 export WEBCACHE_INV_PORT=4001 export WEBCACHE_ADM_PORT=4000 export INFRA_HTTP_PORT=7784 export INFRA_HTTPS_PORT=4460 export OID_PORT=4039 export EM_PORT=1810 export PORTAL_PASSWORD=ABCDEFGH export ORASSO_PASSWORD=ABCDEFGH export ORASSO_PA_PASSWORD=ABCDEFGH export ORASSO_PS_PASSWORD=ABCDEFGH export HOSTNAME=machine.domain.com export IAS_PASSWORD=ABCDEFGH export ORAENV_ASK=NO export ORACLE_SID=$INFRA_SID . oraenv unset ORAENV_ASK echo '******** PART 1 - SSO IN SSL **********' export LD_LIBRARY_PATH=$INFRA_ORACLE_HOME/lib:$LD_LIBRARY_PATH export PATH=$INFRA_ORACLE_HOME/jdk/bin:$PATH export PATH=$ORACLE_HOME/bin:$PATH # This step will change the URL used to login by default for # all partner application cd $INFRA_ORACLE_HOME/sso/bin ./ssocfg.sh HTTPS $HOSTNAME $INFRA_HTTPS_PORT # This step add a new partner application to SSO. # It associates the new URL used by OIDDAS with SSO. cd $INFRA_ORACLE_HOME/sso/lib java -jar $ORACLE_HOME/sso/lib/ossoreg.jar -host $HOSTNAME -port 1521 -sid $INFRA_SID -site_name ssl_$HOSTNAME -success_url https://$HOSTNAME:$INFRA_HTTPS_PORT/osso_login_success -cancel_url https://$HOSTNAME:$INFRA_HTTPS_PORT/ -logout_url https://$HOSTNAME:$INFRA_HTTPS_PORT/osso_logout_success -home_url https://$HOSTNAME:$INFRA_HTTPS_PORT/ -start_date 08012002 -admin_id oracle -ip_check false -config_mod_osso true -oracle_home_path $INFRA_ORACLE_HOME -u root -sso_server_version v1.2 echo '---------------------' echo 'Change the URL of DAS' echo '---------------------' rm das.ldif echo 'dn:cn=OperationURLs,cn=DAS,cn=Products,cn=OracleContext' > das.ldif echo 'changetype:modify' >> das.ldif echo 'replace:orcldasurlbase' >> das.ldif echo orcldasurlbase:https://$HOSTNAME:$INFRA_HTTPS_PORT/ >> das.ldif ldapmodify -h $HOSTNAME -p $OID_PORT -D "cn=orcladmin" -w "$IAS_PASSWORD" -f das.ldif echo '******** PART 2 - PORTAL IN SSL **********' echo '-----------------------' echo 'Delete an entry in LDAP' echo '-----------------------' ldapdelete -h $HOSTNAME -p $OID_PORT -D "cn=orcladmin" -w "$IAS_PASSWORD" "orclApplicationCommonName=PORTAL,cn=Portal,cn=Products,cn=OracleContext"
    echo '-------------' echo 'Configure SSL' echo '-------------' export ORACLE_HOME=$MIDTIER_ORACLE_HOME $MIDTIER_ORACLE_HOME/assistants/opca/ptlasst.csh -mode MIDTIER -i custom -s portal -sp $PORTAL_PASSWORD -c $HOSTNAME:1521:$PORTAL_SID -sdad portal -o orasso -op $ORASSO_PASSWORD -odad orasso -host $HOSTNAME -ssl -port $MIDTIER_HTTPS_PORT -ldap_h $HOSTNAME -ldap_p $OID_PORT -ldap_w $IAS_PASSWORD -pwd $IAS_PASSWORD -sso_c $HOSTNAME:1521:$PORTAL_SID -sso_h $HOSTNAME -sso_p $INFRA_HTTPS_PORT -ultrasearch -oh $MIDTIER_ORACLE_HOME -mc false -mi true -chost $HOSTNAME -cport_i $WEBCACHE_INV_PORT -cport_a $WEBCACHE_ADM_PORT -wc_i_pwd invalidator -emhost $HOSTNAME -emport $EM_PORT -pa orasso_pa -pap $ORASSO_PA_PASSWORD -ps orasso_ps -pp $ORASSO_PS_PASSWORD -pd portal_dblink -p_tns $PORTAL_TNS -s_tns $PORTAL_TNS -verbose -portal_only $MIDTIER_ORACLE_HOME/assistants/opca/ptlasst.csh -mode SSOPARTNERCONFIG -i custom -s portal -sp $PORTAL_PASSWORD -c $HOSTNAME:1521:$PORTAL_SID -sdad portal -o orasso -op $ORASSO_PASSWORD -odad orasso -host $HOSTNAME -ssl -port $MIDTIER_HTTPS_PORT -sso_c $HOSTNAME:1521:$PORTAL_SID -sso_h $HOSTNAME -sso_p $INFRA_HTTPS_PORT -pa orasso_pa -pap $ORASSO_PA_PASSWORD -ps orasso_ps -pp $ORASSO_PS_PASSWORD -p_tns $PORTAL_TNS -s_tns $PORTAL_TNS -verbose -silent echo '--------' echo 'WebCache' echo '--------' export ORACLE_HOME=$INFRA_ORACLE_HOME sqlplus portal/$PORTAL_PASSWORD@$PORTAL_TNS @$MIDTIER_ORACLE_HOME/portal/admin/plsql/wwc/cachseed.sql $HOSTNAME $WEBCACHE_INV_PORT $WEBCACHE_ADM_PORT invalidator on portal echo '********** Part 3 - restart the MIDTIER **************' export ORAENV_ASK=NO export ORACLE_SID=$MIDTIER_SID . oraenv unset ORAENV_ASK echo '--- MIDTIER: stop all the dcm processes' cd $ORACLE_HOME/dcm/bin dcmctl stop -v echo '--- MIDTIER: clear the PLSQL cache' rm -Rf $ORACLE_HOME/Apache/modplsql/cache/plsql echo '--- MIDTIER: start all the dcm processes' dcmctl start -v export ORAENV_ASK=NO export ORACLE_SID=$INFRA_SID . oraenv unset ORAENV_ASK echo '--- INFRA: stop all the dcm processes' cd $ORACLE_HOME/dcm/bin dcmctl stop -v echo '--- INFRA: start all the dcm processes' dcmctl start -v - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - SECURITY COMMENTS ----------------- This configuration has HTTP port of Webcache reachable from outside. Webcache has no way to limit the use of a port to a specific machine or IP address. This is not a real issue because the goal of SSL is not to avoid that people access your server but that people intercept the data sent between the browser and the webserver. But in case that you/your customer is very sensible about security and want a webserver with SSL only (what is very rare), you may want to add a firewall in front of Webcache to block the HTTP port. RELATED DOCUMENTS ----------------- Note 161863.1 - Configuring WebCache with SSL - NT/2000 Note 165305.1 - Configuring WebCache with SSL - Unix
    </PRE>

  • Not found Mid-tier

    Hi
    in a server (a) I have installed the infrastructure and in another server (b) it installs mid-tier, this to mid-tier in the server (b) aims at the infrastructure of the server (a), but when entrance with the OEM in the server (A) , to only shows the infrastructure me, but it does not show installed mid-tier to me in the server (b), although mid-tier I settle of satisfactory form, How I can verify that I am installed mid-tier correctly aiming at the infrastructure?
    Hector ulloa Ligarius

    The web-based admin user interface, called EM Application Server Control console (or iasconsole), is per instance. So both infra and mid-tier have one "OEM" each. In your case you should have something like:
    http://name-A:1810/emd/console/ and http://name-B:1810/emd/console/
    Try bouncing both AS Control servers:
    $ emctl status iasconsole
    $ emctl stop iasconsole
    $ emctl start iasconsole

  • Cannot install BPEL PM mid-tier flavor (2nd option) from beta3 drop

    On the instance repository information screen You have to provide orabpel and mid-tier ias_admin connect information. It pre-requisites an already populated bpel schema. Although I have run the scripts domain_oracle.ddl and server_oracle.ddl the following message appears when you press next in the OUI:
    Altert: The OracleAS infrastructure database has not been upgraded with the OracleAS BPEL PM 10.1.2 schema....
    Subsequently I cannot continue - any idea how to circumvent this message?
    Again I think I have a complete orabpel schema

    Hello Frank,
    we were running into the same problem, you can install the middle tier version only if you have setup up all the BPEL needed tables, views, procs in your database. With the beta3 ships a compressed file called irca.zip. It contains the IRCA ( Integration Repository Creation Assistant ). You need to run this assistant before the middle ware installation against your db. Following the db is prepared to be a repository for you BPEL middle ware.
    Hope this helps.
    Bye,
    Chris

  • CPUApr2007 Install - Inf/Mid-tier or both

    I have a question.
    I am getting ready to apply patches from the CPUApr2007. I am running Application Server 10.1.2.0.2 with 10.1.0.5 database. I am on Linux x86.
    My question is:
    How do I know if the patch pertains to the infrastructure and mid-tier or if it is just one of them.
    Patch 5901877 applies to the database, however I have seen posts where it has been applied to the mid-tier also.
    patch 5922120 - Has forms, reports and database. Has database bug fixes in it, and has bugs listed that are also listed in 5901877.
    Do I apply both patches, applying 5901877 first, to both or just infrastructure? Then apply 5922120 to both infrastructure and mid-tier?
    Thank you in advance.

    Brian,
    i guess it depends more upon security than performance. Depending upon what protocols you're maiking available will determine where to put the iFS server. Obviously you'll also need a 'fat' connection between you iFs and database machines. If all (public) access is through a web application then most performance will be gained from having app. servers with large memory and fast processors rather than the performance of the iFS server.

  • Move Mid-Tier onto another server

    Hi all
    The infrastructure (OracleHime1incl IASDB) and mid-tier (OracleHime2 portal and OracleHime3 discoverer) 10g Rel2 are installed on a windows 2003 server.
    I would like to know how to move the mid-tier (Portal and Discoverer) onto another new windows 2003 server thus improving performance. The server is used solely for reporting. Portal uses "portal providers".
    Or would it be better to move the infrastructure?
    Is there documentation on this?
    Thanks

    The Oracle Application Server Administrator's Guide describes how to move the Infrastructure to a new host. See:
    http://download-west.oracle.com/docs/cd/B14099_19/core.1012/b13995/chginfra.htm#i1011823
    and:
    http://download-west.oracle.com/docs/cd/B14099_19/core.1012/b13995/chginfra.htm#i1012229
    Helen

  • How do I bounce audio and midi tracks at the same time to burn a CD?

    Hi there,
    I would like to bounce a song with both audio and midi tracks recorded in it onto a CD.
    Despite ensuring that I am doing a realtime bounce (not offline) I am only getting the audio tracks burnt onto the CD - the midi isn't getting bounced to the final output.
    This must be a stupid question, if someone would be so kind as to give me an obvious answer I would be most grateful.
    Thankin y'all
    amata

    Hi A,
    if you use the instrument (with logic virtual synths) tracks for midi,
    it will.
    BTW, why don't you do it offline?
    It will be so much faster.
    Kindly regards,
    Jorge

  • OC4J 9.0.3 Standalone and 9iAS 9.0.2 mid-tier

    We are currently running Forms9i and Reports 9i services on a mid-tier installation of Oracle9iAS 9.0.2. (Solaris). We have also developed some JDeveloper 9.0.3 applications that need to be deployed onto the same server. I understand from previous discussions on both Metalink and OTN Discussion Forums that it is not possible to upgrade the OC4J components of the mid-tier installation to 9.0.3 as the Forms9i and Reports 9i services are only certified to work with 9iAS 9.0.2.
    My next question is can I install Oracle9iAS Release 2 OC4J 9.0.3 standalone components into a separate ORACLE_HOME from the mid-tier 9iAS 9.0.2 in order to deploy the JDeveloper 9.0.3 applications ?.
    Regards,
    Chris

    hello,
    i am not sure how you invoke report services from your java application. i assume you are using a URL to access the report. in that case your application will still be able to point back to the 902 servlet to access reports services.
    regarding the use of classes on the 903 application : reports services can only access classes that are in its classpath. so if you can put the classes you need in reports' classpath defined by the environment of the 902 instance you should be able to access it.
    you might also look into our Thin Client that is available here on OTN. http://otn-stage.us.oracle.com/products/reports/htdocs/getstart/examples/Tools/index.html
    regards,
    philipp

  • Patching mid tier and infrastructure tiers.

    Greetings!!!
    I am having some questions on patches and hope someone can help me here.
    We have two Oracle Application Server machines both on Windows 2003 servers 32-bit and both are on 10.1.2.0.2 release.
    The first machine is hosting HTTP Server, Forms (OC4J_BI_Forms), Reports, Webcache (Application/Mid tier). Release is 10.1.2.0.2
    The second machine is hosting OID+Metadata repository, Single Sign-On, HTTP Server, and OC4J_Security (Infrastructure Tier). Release is 10.1.2.0.2.
    I am now applying patches to both the servers.
    Here are the steps I have:
    1. Apply the Patch 4505133 on the Infrastructure (10.1.0.5 Patch Set)
    2. Apply the Patch 5983622 on the Mid-tier. (10.1.3 patch set)
    I have already completed step (1). I patched the infrastructure database from 10.1.0.4 to 10.1.0.5.
    Am I missing the other step to patch Infrastructure tier components? Should I also patch the HTTP Server and the Oracle Home on infrastructure tier? I am not talking about the infrastructure database here. I am already done with that step.
    If I only patch the Mid Tier with #5983622, then won't the mid tier will be on 10.1.3 release and infrastructure components (HTTP Server, SSO) will be on the same old 10.1.2.0.2.
    The primary requirement is that I need to upgrade HTTP servers on both the tiers to the same level. Can you suggest me the equivalent of patch 5983622 for infrastructure tier and the way forward? Will appreciate any answers!!! TY.

    Hello,
    I think u are mixing some things here.
    In order to apply 5983622, u have to update database version is 10.1.0.4 to 10.1.0.5. (patch 4505133) That must be done before patching the two homes of Application Server.
    Patch 5983622 is for Application Server. U have to apply it on Infrastructure Tier and on Application/Mid tier Home, in order to update Application Server from 10.1.2.2 to 10.1.2.3.
    regards,
    Pedro

  • MSExchange Mid-Tier Storage, Event id 10100 and 6002

    I have installed Exchange 2013 standard version in clean single domain structure with two Windows 2012 domain controllers and about 60 users that all have mailbox on the Exchange server.
     I’m getting MSExchange Mid-Tier Storage warning in event viewer 20 to 30 times a day. 
     It’s event id 10100 and 6002, mostly 10100. 
    Everything seems to be working but I want to get rid of this warning.
    Detailed.
    Log Name:      Application
    Source:       
    MSExchange Mid-Tier Storage
    Date:         
    4.2.2013 02:23:32
    Event ID:      10010
    Task Category: ResourceHealth
    Level:        
    Warning
    Keywords:      Classic
    User:         
    N/A
    Computer:      somecomputer.somedomain.com
    Description:
    Process: MSExchangeDelivery (1624), Db:ca5fd10f-3da0-4d83-96f3-a18387b678de,C:2,BT:00:00:00,
    Event Xml:
    <Event xmlns="http://schemas.microsoft.com/win/2004/08/events/event">
      <System>
        <Provider Name="MSExchange Mid-Tier Storage" />
        <EventID Qualifiers="32768">10010</EventID>
        <Level>3</Level>
        <Task>6</Task>
        <Keywords>0x80000000000000</Keywords>
        <TimeCreated SystemTime="2013-02-04T02:23:32.000000000Z" />
        <EventRecordID>224585</EventRecordID>
        <Channel>Application</Channel>
        <Computer>somecompter.somedomain.com</Computer>
        <Security />
      </System>
      <EventData>
        <Data>Process: MSExchangeDelivery (1624), Db:ca5fd10f-3da0-4d83-96f3-a18387b678de,C:2,BT:00:00:00,</Data>
      </EventData>
    </Event>

    I still have these warnings. I did not create any extra connectors
    ITSPECSRV
    6002
    Waarschuwing
    MSExchange Mid-Tier Storage
    Application
    16-7-2013 16:04:42
    ITSPECSRV
    6002
    Waarschuwing
    MSExchange Mid-Tier Storage
    Application
    16-7-2013 15:57:24
    ITSPECSRV
    3028
    Waarschuwing
    MSExchangeApplicationLogic
    Application
    16-7-2013 15:34:56
    ITSPECSRV
    3028
    Waarschuwing
    MSExchangeApplicationLogic
    Application
    16-7-2013 15:34:56
    ITSPECSRV
    6002
    Waarschuwing
    MSExchange Mid-Tier Storage
    Application
    16-7-2013 15:34:43
    ITSPECSRV
    6002
    Waarschuwing
    MSExchange Mid-Tier Storage
    Application
    16-7-2013 15:32:30
    ITSPECSRV
    6002
    Waarschuwing
    MSExchange Mid-Tier Storage
    Application
    16-7-2013 15:04:44
    ITSPECSRV
    6002
    Waarschuwing
    MSExchange Mid-Tier Storage
    Application
    16-7-2013 14:53:52
    ITSPECSRV
    6002
    Waarschuwing
    MSExchange Mid-Tier Storage
    Application
    16-7-2013 14:37:34
    ITSPECSRV
    6002
    Waarschuwing
    MSExchange Mid-Tier Storage
    Application
    16-7-2013 14:34:39
    ITSPECSRV
    6002
    Waarschuwing
    MSExchange Mid-Tier Storage
    Application
    16-7-2013 14:09:10
    ITSPECSRV
    6002
    Waarschuwing
    MSExchange Mid-Tier Storage
    Application
    16-7-2013 13:39:42
    ITSPECSRV
    6002
    Waarschuwing
    MSExchange Mid-Tier Storage
    Application
    16-7-2013 13:19:44
    ITSPECSRV
    6002
    Waarschuwing
    MSExchange Mid-Tier Storage
    Application
    16-7-2013 13:17:21
    ITSPECSRV
    6002
    Waarschuwing
    MSExchange Mid-Tier Storage
    Application
    16-7-2013 12:54:51
    ITSPECSRV
    6002
    Waarschuwing
    MSExchange Mid-Tier Storage
    Application
    16-7-2013 12:44:44
    ITSPECSRV
    6002
    Waarschuwing
    MSExchange Mid-Tier Storage
    Application
    16-7-2013 12:29:42
    ITSPECSRV
    6002
    Waarschuwing
    MSExchange Mid-Tier Storage
    Application
    16-7-2013 12:23:51
    ITSPECSRV
    6002
    Waarschuwing
    MSExchange Mid-Tier Storage
    Application
    16-7-2013 12:04:43
    ITSPECSRV
    6002
    Waarschuwing
    MSExchange Mid-Tier Storage
    Application
    16-7-2013 12:03:50
    ITSPECSRV
    6002
    Waarschuwing
    MSExchange Mid-Tier Storage
    Application
    16-7-2013 11:38:50
    ITSPECSRV
    6002
    Waarschuwing
    MSExchange Mid-Tier Storage
    Application
    16-7-2013 11:34:44
    ITSPECSRV
    6002
    Waarschuwing
    MSExchange Mid-Tier Storage
    Application
    16-7-2013 11:19:42
    ITSPECSRV
    6002
    Waarschuwing
    MSExchange Mid-Tier Storage
    Application
    16-7-2013 11:16:49
    ITSPECSRV
    6002
    Waarschuwing
    MSExchange Mid-Tier Storage
    Application
    16-7-2013 10:54:43
    ITSPECSRV
    6002
    Waarschuwing
    MSExchange Mid-Tier Storage
    Application
    16-7-2013 10:41:49
    ITSPECSRV
    6002
    Waarschuwing
    MSExchange Mid-Tier Storage
    Application
    16-7-2013 10:14:42
    ITSPECSRV
    6002
    Waarschuwing
    MSExchange Mid-Tier Storage
    Application
    16-7-2013 10:06:49
    ITSPECSRV
    6002
    Waarschuwing
    MSExchange Mid-Tier Storage
    Application
    16-7-2013 9:59:40
    ITSPECSRV
    6002
    Waarschuwing
    MSExchange Mid-Tier Storage
    Application
    16-7-2013 9:47:18
    ITSPECSRV
    6002
    Waarschuwing
    MSExchange Mid-Tier Storage
    Application
    16-7-2013 9:39:42
    ITSPECSRV
    3028
    Waarschuwing
    MSExchangeApplicationLogic
    Application
    16-7-2013 9:34:57
    ITSPECSRV
    3028
    Waarschuwing
    MSExchangeApplicationLogic
    Application
    16-7-2013 9:34:57
    ITSPECSRV
    3028
    Waarschuwing
    MSExchangeApplicationLogic
    Application
    16-7-2013 9:34:57
    ITSPECSRV
    6002
    Waarschuwing
    MSExchange Mid-Tier Storage
    Application
    16-7-2013 9:08:47
    ITSPECSRV
    6002
    Waarschuwing
    MSExchange Mid-Tier Storage
    Application
    16-7-2013 9:04:42
    ITSPECSRV
    6002
    Waarschuwing
    MSExchange Mid-Tier Storage
    Application
    16-7-2013 8:44:39
    ITSPECSRV
    6002
    Waarschuwing
    MSExchange Mid-Tier Storage
    Application
    16-7-2013 8:17:17
    ITSPECSRV
    6002
    Waarschuwing
    MSExchange Mid-Tier Storage
    Application
    16-7-2013 7:58:46
    ITSPECSRV
    6002
    Waarschuwing
    MSExchange Mid-Tier Storage
    Application
    16-7-2013 7:54:42
    ITSPECSRV
    6002
    Waarschuwing
    MSExchange Mid-Tier Storage
    Application
    16-7-2013 7:39:47
    ITSPECSRV
    6002
    Waarschuwing
    MSExchange Mid-Tier Storage
    Application
    16-7-2013 7:19:42
    ITSPECSRV
    6002
    Waarschuwing
    MSExchange Mid-Tier Storage
    Application
    16-7-2013 7:08:51
    ITSPECSRV
    6002
    Waarschuwing
    MSExchange Mid-Tier Storage
    Application
    16-7-2013 6:59:44
    ITSPECSRV
    6002
    Waarschuwing
    MSExchange Mid-Tier Storage
    Application
    16-7-2013 6:09:42
    ITSPECSRV
    6002
    Waarschuwing
    MSExchange Mid-Tier Storage
    Application
    16-7-2013 5:57:14
    ITSPECSRV
    6002
    Waarschuwing
    MSExchange Mid-Tier Storage
    Application
    16-7-2013 5:54:40
    ITSPECSRV
    6002
    Waarschuwing
    MSExchange Mid-Tier Storage
    Application
    16-7-2013 5:34:42
    ITSPECSRV
    6002
    Waarschuwing
    MSExchange Mid-Tier Storage
    Application
    16-7-2013 5:23:44
    ITSPECSRV
    6002
    Waarschuwing
    MSExchange Mid-Tier Storage
    Application
    16-7-2013 4:49:41
    ITSPECSRV
    6002
    Waarschuwing
    MSExchange Mid-Tier Storage
    Application
    16-7-2013 4:48:43
    ITSPECSRV
    6002
    Waarschuwing
    MSExchange Mid-Tier Storage
    Application
    16-7-2013 4:14:44
    ITSPECSRV
    6002
    Waarschuwing
    MSExchange Mid-Tier Storage
    Application
    16-7-2013 4:09:18
    ITSPECSRV
    6002
    Waarschuwing
    MSExchange Mid-Tier Storage
    Application
    16-7-2013 3:49:41
    ITSPECSRV
    6002
    Waarschuwing
    MSExchange Mid-Tier Storage
    Application
    16-7-2013 3:43:42
    ITSPECSRV
    3028
    Waarschuwing
    MSExchangeApplicationLogic
    Application
    16-7-2013 3:34:58
    ITSPECSRV
    3028
    Waarschuwing
    MSExchangeApplicationLogic
    Application
    16-7-2013 3:34:58
    ITSPECSRV
    6002
    Waarschuwing
    MSExchange Mid-Tier Storage
    Application
    16-7-2013 3:29:43
    ITSPECSRV
    6002
    Waarschuwing
    MSExchange Mid-Tier Storage
    Application
    16-7-2013 3:28:42
    ITSPECSRV
    6002
    Waarschuwing
    MSExchange Mid-Tier Storage
    Application
    16-7-2013 3:04:45
    ITSPECSRV
    1309
    Waarschuwing
    ASP.NET 4.0.30319.0
    Application
    16-7-2013 2:54:36
    ITSPECSRV
    6002
    Waarschuwing
    MSExchange Mid-Tier Storage
    Application
    16-7-2013 2:53:42
    ITSPECSRV
    1309
    Waarschuwing
    ASP.NET 4.0.30319.0
    Application
    16-7-2013 2:53:36
    ITSPECSRV
    1309
    Waarschuwing
    ASP.NET 4.0.30319.0
    Application
    16-7-2013 2:52:18
    ITSPECSRV
    7032
    Fout
    Microsoft-Windows-Service Control Manager
    System
    16-7-2013 2:48:55
    ITSPECSRV
    7031
    Fout
    Microsoft-Windows-Service Control Manager
    System
    16-7-2013 2:48:34
    ITSPECSRV
    5011
    Waarschuwing
    Microsoft-Windows-WAS
    System
    16-7-2013 2:47:59
    ITSPECSRV
    1309
    Waarschuwing
    ASP.NET 4.0.30319.0
    Application
    16-7-2013 2:47:49
    ITSPECSRV
    1309
    Waarschuwing
    ASP.NET 4.0.30319.0
    Application
    16-7-2013 2:46:49
    ITSPECSRV
    1309
    Waarschuwing
    ASP.NET 4.0.30319.0
    Application
    16-7-2013 2:45:48
    ITSPECSRV
    2003
    Fout
    Microsoft-Windows-IIS-W3SVC-PerfCounters
    Application
    16-7-2013 2:45:11
    ITSPECSRV
    2001
    Fout
    Microsoft-Windows-IIS-W3SVC-PerfCounters
    Application
    16-7-2013 2:44:57
    ITSPECSRV
    1309
    Waarschuwing
    ASP.NET 4.0.30319.0
    Application
    16-7-2013 2:44:48
    ITSPECSRV
    1309
    Waarschuwing
    ASP.NET 4.0.30319.0
    Application
    16-7-2013 2:43:48
    ITSPECSRV
    1309
    Waarschuwing
    ASP.NET 4.0.30319.0
    Application
    16-7-2013 2:42:48
    ITSPECSRV
    1309
    Waarschuwing
    ASP.NET 4.0.30319.0
    Application
    16-7-2013 2:41:19
    ITSPECSRV
    1309
    Waarschuwing
    ASP.NET 4.0.30319.0
    Application
    16-7-2013 2:39:48
    ITSPECSRV
    6002
    Waarschuwing
    MSExchange Mid-Tier Storage
    Application
    16-7-2013 2:39:44
    ITSPECSRV
    1309
    Waarschuwing
    ASP.NET 4.0.30319.0
    Application
    16-7-2013 2:38:48
    ITSPECSRV
    4109
    Fout
    MSExchange ADAccess
    Application
    16-7-2013 2:37:43
    ITSPECSRV
    6002
    Waarschuwing
    MSExchange Mid-Tier Storage
    Application
    16-7-2013 2:37:30
    ITSPECSRV
    1309
    Waarschuwing
    ASP.NET 4.0.30319.0
    Application
    16-7-2013 2:36:48
    ITSPECSRV
    1309
    Waarschuwing
    ASP.NET 4.0.30319.0
    Application
    16-7-2013 2:35:48
    ITSPECSRV
    1309
    Waarschuwing
    ASP.NET 4.0.30319.0
    Application
    16-7-2013 2:34:48
    ITSPECSRV
    1309
    Waarschuwing
    ASP.NET 4.0.30319.0
    Application
    16-7-2013 2:33:48
    ITSPECSRV
    1309
    Waarschuwing
    ASP.NET 4.0.30319.0
    Application
    16-7-2013 2:32:48
    ITSPECSRV
    1309
    Waarschuwing
    ASP.NET 4.0.30319.0
    Application
    16-7-2013 2:31:15
    ITSPECSRV
    5011
    Waarschuwing
    Microsoft-Windows-WAS
    System
    16-7-2013 2:26:59
    ITSPECSRV
    6002
    Waarschuwing
    MSExchange Mid-Tier Storage
    Application
    16-7-2013 2:18:49
    ITSPECSRV
    4109
    Fout
    MSExchange ADAccess
    Application
    16-7-2013 2:03:48
    ITSPECSRV
    6002
    Waarschuwing
    MSExchange Mid-Tier Storage
    Application
    16-7-2013 2:03:44
    ITSPECSRV
    1309
    Waarschuwing
    ASP.NET 4.0.30319.0
    Application
    16-7-2013 2:03:08
    ITSPECSRV
    1309
    Waarschuwing
    ASP.NET 4.0.30319.0
    Application
    16-7-2013 2:02:08
    ITSPECSRV
    1309
    Waarschuwing
    ASP.NET 4.0.30319.0
    Application
    16-7-2013 2:00:22
    ITSPECSRV
    7032
    Fout
    Microsoft-Windows-Service Control Manager
    System
    16-7-2013 1:57:12
    ITSPECSRV
    7031
    Fout
    Microsoft-Windows-Service Control Manager
    System
    16-7-2013 1:57:03
    ITSPECSRV
    5011
    Waarschuwing
    Microsoft-Windows-WAS
    System
    16-7-2013 1:56:16
    ITSPECSRV
    1309
    Waarschuwing
    ASP.NET 4.0.30319.0
    Application
    16-7-2013 1:55:21
    ITSPECSRV
    6002
    Waarschuwing
    MSExchange Mid-Tier Storage
    Application
    16-7-2013 1:48:16
    ITSPECSRV
    1309
    Waarschuwing
    ASP.NET 4.0.30319.0
    Application
    16-7-2013 1:46:46
    ITSPECSRV
    1309
    Waarschuwing
    ASP.NET 4.0.30319.0
    Application
    16-7-2013 1:45:27
    ITSPECSRV
    7032
    Fout
    Microsoft-Windows-Service Control Manager
    System
    16-7-2013 1:42:13
    ITSPECSRV
    7031
    Fout
    Microsoft-Windows-Service Control Manager
    System
    16-7-2013 1:42:04
    ITSPECSRV
    5011
    Waarschuwing
    Microsoft-Windows-WAS
    System
    16-7-2013 1:41:15
    ITSPECSRV
    1309
    Waarschuwing
    ASP.NET 4.0.30319.0
    Application
    16-7-2013 1:40:56
    ITSPECSRV
    6002
    Waarschuwing
    MSExchange Mid-Tier Storage
    Application
    16-7-2013 1:34:45
    ITSPECSRV
    4109
    Fout
    MSExchange ADAccess
    Application
    16-7-2013 1:33:13
    ITSPECSRV
    1309
    Waarschuwing
    ASP.NET 4.0.30319.0
    Application
    16-7-2013 1:32:25
    ITSPECSRV
    1309
    Waarschuwing
    ASP.NET 4.0.30319.0
    Application
    16-7-2013 1:31:24
    ITSPECSRV
    7009
    Fout
    Microsoft-Windows-Service Control Manager
    System
    16-7-2013 1:30:44
    ITSPECSRV
    7000
    Fout
    Microsoft-Windows-Service Control Manager
    System
    16-7-2013 1:30:44
    ITSPECSRV
    1309
    Waarschuwing
    ASP.NET 4.0.30319.0
    Application
    16-7-2013 1:30:21
    ITSPECSRV
    7009
    Fout
    Microsoft-Windows-Service Control Manager
    System
    16-7-2013 1:29:55
    ITSPECSRV
    7000
    Fout
    Microsoft-Windows-Service Control Manager
    System
    16-7-2013 1:29:55
    ITSPECSRV
    6002
    Waarschuwing
    MSExchange Mid-Tier Storage
    Application
    16-7-2013 1:28:21
    ITSPECSRV
    7009
    Fout
    Microsoft-Windows-Service Control Manager
    System
    16-7-2013 1:27:50
    ITSPECSRV
    7000
    Fout
    Microsoft-Windows-Service Control Manager
    System
    16-7-2013 1:27:50
    ITSPECSRV
    7009
    Fout
    Microsoft-Windows-Service Control Manager
    System
    16-7-2013 1:27:20
    ITSPECSRV
    7000
    Fout
    Microsoft-Windows-Service Control Manager
    System
    16-7-2013 1:27:20
    ITSPECSRV
    7031
    Fout
    Microsoft-Windows-Service Control Manager
    System
    16-7-2013 1:26:50
    ITSPECSRV
    5011
    Waarschuwing
    Microsoft-Windows-WAS
    System
    16-7-2013 1:26:00
    ITSPECSRV
    906
    Waarschuwing
    ESE
    Application
    16-7-2013 1:21:28
    ITSPECSRV
    906
    Waarschuwing
    ESE
    Application
    16-7-2013 1:13:53
    ITSPECSRV
    906
    Waarschuwing
    ESE
    Application
    16-7-2013 1:10:20
    ITSPECSRV
    9042
    Waarschuwing
    MSExchange Assistants
    Application
    16-7-2013 0:59:45
    ITSPECSRV
    6002
    Waarschuwing
    MSExchange Mid-Tier Storage
    Application
    16-7-2013 0:44:42
    ITSPECSRV
    6002
    Waarschuwing
    MSExchange Mid-Tier Storage
    Application
    16-7-2013 0:42:07
    ITSPECSRV
    6002
    Waarschuwing
    MSExchange Mid-Tier Storage
    Application
    16-7-2013 0:23:20
    ITSPECSRV
    6002
    Waarschuwing
    MSExchange Mid-Tier Storage
    Application
    16-7-2013 0:09:42
    ITSPECSRV
    6002
    Waarschuwing
    MSExchange Mid-Tier Storage
    Application
    15-7-2013 23:57:07
    ITSPECSRV
    6002
    Waarschuwing
    MSExchange Mid-Tier Storage
    Application
    15-7-2013 23:38:25
    ITSPECSRV
    6002
    Waarschuwing
    MSExchange Mid-Tier Storage
    Application
    15-7-2013 23:19:40
    ITSPECSRV
    6002
    Waarschuwing
    MSExchange Mid-Tier Storage
    Application
    15-7-2013 23:17:18
    ITSPECSRV
    6002
    Waarschuwing
    MSExchange Mid-Tier Storage
    Application
    15-7-2013 22:54:17
    ITSPECSRV
    6002
    Waarschuwing
    MSExchange Mid-Tier Storage
    Application
    15-7-2013 22:13:11
    ITSPECSRV
    6002
    Waarschuwing
    MSExchange Mid-Tier Storage
    Application
    15-7-2013 21:52:23
    ITSPECSRV
    3028
    Waarschuwing
    MSExchangeApplicationLogic
    Application
    15-7-2013 21:34:58
    ITSPECSRV
    6002
    Waarschuwing
    MSExchange Mid-Tier Storage
    Application
    15-7-2013 21:16:16
    ITSPECSRV
    6002
    Waarschuwing
    MSExchange Mid-Tier Storage
    Application
    15-7-2013 20:59:41
    ITSPECSRV
    6002
    Waarschuwing
    MSExchange Mid-Tier Storage
    Application
    15-7-2013 20:42:04
    ITSPECSRV
    6002
    Waarschuwing
    MSExchange Mid-Tier Storage
    Application
    15-7-2013 20:39:43
    ITSPECSRV
    6002
    Waarschuwing
    MSExchange Mid-Tier Storage
    Application
    15-7-2013 20:14:44
    ITSPECSRV
    6002
    Waarschuwing
    MSExchange Mid-Tier Storage
    Application
    15-7-2013 19:44:45
    ITSPECSRV
    6002
    Waarschuwing
    MSExchange Mid-Tier Storage
    Application
    15-7-2013 19:43:08
    ITSPECSRV
    6002
    Waarschuwing
    MSExchange Mid-Tier Storage
    Application
    15-7-2013 19:19:41
    ITSPECSRV
    6002
    Waarschuwing
    MSExchange Mid-Tier Storage
    Application
    15-7-2013 19:17:14
    ITSPECSRV
    6002
    Waarschuwing
    MSExchange Mid-Tier Storage
    Application
    15-7-2013 18:59:44
    ITSPECSRV
    6002
    Waarschuwing
    MSExchange Mid-Tier Storage
    Application
    15-7-2013 18:49:14
    ITSPECSRV
    6002
    Waarschuwing
    MSExchange Mid-Tier Storage
    Application
    15-7-2013 18:44:42
    ITSPECSRV
    6002
    Waarschuwing
    MSExchange Mid-Tier Storage
    Application
    15-7-2013 18:19:43
    ITSPECSRV
    6002
    Waarschuwing
    MSExchange Mid-Tier Storage
    Application
    15-7-2013 18:08:07
    ITSPECSRV
    6002
    Waarschuwing
    MSExchange Mid-Tier Storage
    Application
    15-7-2013 17:59:41
    ITSPECSRV
    6002
    Waarschuwing
    MSExchange Mid-Tier Storage
    Application
    15-7-2013 17:47:00
    ITSPECSRV
    6002
    Waarschuwing
    MSExchange Mid-Tier Storage
    Application
    15-7-2013 17:29:41
    ITSPECSRV
    6002
    Waarschuwing
    MSExchange Mid-Tier Storage
    Application
    15-7-2013 17:09:43
    ITSPECSRV
    6002
    Waarschuwing
    MSExchange Mid-Tier Storage
    Application
    15-7-2013 16:44:45
    ITSPECSRV
    6002
    Waarschuwing
    MSExchange Mid-Tier Storage
    Application
    15-7-2013 16:29:13
    ITSPECSRV
    6002
    Waarschuwing
    MSExchange Mid-Tier Storage
    Application
    15-7-2013 16:19:46
    Leo

  • When i put my bounced track to CDJ 900, the sound quality drops, Hi and Mid Pass sound like they "Shrink In", doesn't sound the same when playback in logic. I set my bouncing setup as highest.

    when i put my bounced track to CDJ 900, the sound quality drops, Hi and Mid Pass sound like they "Shrink In", doesn't sound the same when playback in logic. I set my bouncing setup as highest.

    Hi Eriksimon,
    Firstly, thanks for your message.
    What I meant by "hi pass mid pass shrinking in" is EXACTLY what you menat, I got a heavy bass and muffed high and mid content. Apologised for my poor English.
    I haven't checked the setting of the playback device yet but instead I tested it with some professional produced tracks. I know the sound tends to vary a little bit when playing from computer and CD player such as the CDJ 900 that I am using. The differences were not as significant as my own track. They tend to get a rather good balance. My track is well balanced and mixed (I guess) in Logic but it turns out completely different when using the CD player.
    I bounced my work to MP3 with highest BIte Rate.

  • AS Console (Em) Mid Tier Forms and discoverer Link Is missing

    When accessing the iasconsole for 904 Mid tier the "forms" and "Discoverer" service link hyperlink is missing and the check box cannot be clicked.

    If components are missing they might be disabled under Enable/disable Components.
    What installation type is it and did you configure the "missing" components?

  • Installation BPEL PM mid-tier flavor beta3 fails during deployment

    During the deployment of applications and adapters
    "E:\as10g101\jdk\bin\java -Dant.home=E:\as10g101
    (CONNECT_DATA=(SERVICE_NAME=oi10g))) -quiet -e -buildfile bpminstall.xml init-midtier
    Inserting OPMN fragment ...
    BUILD FAILED
    E:\as10g101\integration\bpelpm\runtime\install\ant-tasks\bpminstall.xml:321: The following error occurred while executing this line:
    E:\as10g101\integration\bpelpm\runtime\install\ant-tasks\init-midtier.xml:80: Java returned: 1
    Total time: 0 seconds"
    It dies
    At the same time I have an OC4J_BPEL container within my mid-tier but I cannot connect to my BPEL console and I am not certain what else I am missing
    Does anybody know how to circumvent this deployment failure?

    Frank I assume you have now succesfully installed the schemas in your 10g database and went on to install BPEL on the AS midtier. I assume you have the 10.1.2 production midtier (j2ee & webcache) installed?
    Please add the relevant part of the install log file.
    Sandor,
    Thanks for your prompt response.
    Yes I was able to install irca.zip file - indeed there was java command line example in there.
    And yes I have a mid-tier installed. It seems that a part was succesfull since I have an OC4J_BPEL container.
    Herby the logging from the Configuration Assistants,
    including the succesfull BUILD:
    Preprocessing configuration files ...
    E:\as10g101\jdk\bin\java -Dant.home=E:\as10g101\integration\bpelpm\orabpel -classpath E:\as10g101\integration\bpelpm\orabpel\lib\ant_1.6.2.jar;E:\as10g101\integration\bpelpm\orabpel\lib\ant-launcher_1.6.2.jar org.apache.tools.ant.Main -Dinstall.type=Midtier -Dob.home=E:\as10g101\integration\bpelpm\orabpel -Dbpm.home=E:\as10g101\integration\bpelpm\runtime -Djava.home=E:\as10g101\jdk -Doracle.home=E:\as10g101 -Dhost.name=dellxp32 -Dhttp.proxy.set=false -Dhttp.port=80 -quiet -e -buildfile bpminstall.xml install-sa patch-orabpel instantiate-orabpel-files
    BUILD SUCCESSFUL
    Total time: 14 seconds
    Warning: Unable to remove existing file E:\as10g101\integration\bpelpm\orabpel\lib\bpm-infra.jar
    Warning: Unable to remove existing file E:\as10g101\integration\bpelpm\orabpel\lib\olite40.jar
    Exit: 0
    TASK: oracle.tip.install.tasks.UpdateConfigFiles
    Updating configuration files ...
    TASK: oracle.tip.install.tasks.RegisterOlite
    Registering Olite ...
    No Olite registration required.
    TASK: oracle.tip.install.tasks.DeployApps
    Deploy applications and adapters
    E:\as10g101\jdk\bin\java -Dant.home=E:\as10g101\integration\bpelpm\orabpel -classpath E:\as10g101\integration\bpelpm\orabpel\lib\ant_1.6.2.jar;E:\as10g101\integration\bpelpm\orabpel\lib\ant-launcher_1.6.2.jar org.apache.tools.ant.Main -Dinstall.type=Midtier -Dob.home=E:\as10g101\integration\bpelpm\orabpel -Dbpm.home=E:\as10g101\integration\bpelpm\runtime -Djava.home=E:\as10g101\jdk -Doracle.home=E:\as10g101 -Dhost.name=dellxp32 -Dias.name=as10g101.dellxp32 -Dorabpel.password=orabpel -Ddb.connect.string=(DESCRIPTION=(ADDRESS_LIST=(ADDRESS=(PROTOCOL=tcp)(HOST=dellxp32)(PORT=1521)))(LOAD_BALANCE=yes)(CONNECT_DATA=(SERVICE_NAME=oi10g))) -quiet -e -buildfile bpminstall.xml init-midtier
    Inserting OPMN fragment ...
    BUILD FAILED
    E:\as10g101\integration\bpelpm\runtime\install\ant-tasks\bpminstall.xml:321: The following error occurred while executing this line:
    E:\as10g101\integration\bpelpm\runtime\install\ant-tasks\init-midtier.xml:80: Java returned: 1
    Total time: 0 seconds
    Exit: 1
    Configuration assistant "Oracle BPEL Process Manager Configuration Assistant" was canceled
    In addition I would like to add the following:
    I am able to connect to the BPEL console (localhost:80/BPELConsole) but I cannot for example deploy the LoanFlow demo - I receive the following error in the command box:
    [ear] Building ear: E:\as10g101\integration\bpelpm\orabpel\system\appserve
    r\oc4j\j2ee\home\applications\StarLoanUI.ear
    deployStarLoanUIoc4j:
    [java] Error: Unable to find Java:comp/ServerAdministrator:
    The reason for that could be that I need to startup the BPEL server. But that would confuses me since the oc4j container is running and I can connect to the BPEL console. At the same time if I look in the startorabpel.bat the olite lines are still active and within data-sources.xml file the Oracle9i lines are inactive - although I have provided the Oracle10g schema during the installation. Hopefully you are still with me and are able to shed some light on this,
    Frank

  • Solution for "Error while trying to synchronize Audio and MIDI" and "System Overload" messages

    Article for those who hate Logic error windows
    Seen in Logic Pro 9.1.7 on Mac OS X Lion 10.7.4
    and Logic Pro 9.0.0 on Mac OS X Snow Leopard 10.6.5
    Logic Pro:
    System Overload.
    The audio engine was not able to process all required data in time.
    (-10011)
    Error while trying to synchronize Audio and MIDI.
    Sample Rate xxxxx recognized.
    Check conflict between Logic Pro and external device.
    The search in the help given as follows: overload occurs when you use a lot of tracks and a lot of effects on them, and the synchronization is lost when the selected MIDI track for recording or playback. Yes, this is all that is written in the resources. And here are useful tips that have been found:
    The Bounce function allows the entire instrument track to be recorded as an audio file. This bounced audio file can then be used (as an audio region) on a standard audio track, allowing you to reassign the available processing power for further software instrument tracks. For more details, see "Bouncing Your Project."
    You can also make use of the Freeze function to capture the output of a software instrument track, again saving processing power. For details, see "Freezing Tracks in the Arrange Area."
    These tips - about the timing. About overload - there are no tips, except as "reducing the number of plug-ins" and "increasing latency". Zero useful tips - I got two errors in the test project with a blank audio track with no effects, MIDI drums and standard synthesizer, it was no aux buses, and the entire project was only a single plugin in the master track.
    Here is the configuration of my computer:
    iMac12, 2
    CPU: Intel Core i5 3,1 GHz
    Memory: 4 GB
    And here's a project that almost immediately stops Logic, all instruments and plug-ins with the init-patch, ie not the most demanding settings:
    It's sad.
    When this happened the first time, I could start the project only if the empty audio track has been selected, a track specially designed so that you can at least start the project. Then, this problem has evaporated along with the changing conditions of work and I forgot about it until the last case.
    I was looking for the cause of the problem in the console and the system monitor for two days, and finally I found that Logic ping to the network frequently. I remembered the exact time of occurrence of the problem, and system logs revealed that the problems began immediately, as soon as I deactivate the service of the Internet.
    Solution: enable the Internet, or add a new network service on a computer with no Internet. I just created the Ethernet connection to the ip address 1.0.0.0
    Logic immediately began to sing.

    Hi gabaghoul
    Yes, it worked for me on four different OS and Logic versions (10.6 - 10.8 and 9.0 - 9.1.6)
    It does not work in some cases, hard enough to tell in which one, but you can try, it very easy: go to the net settings and create new Ethernet connection to the ip address 1.0.0.0 and connect LAN cable to the port.
    Also you can try to figure out what happens in your system while Logic error occured - fot that you just start Console and search "logicpro"
    Pay attention to repetitive events in a console and events with suitable timing, not so far from error
    The problem may be related to the GUI or system memory, sometimes turning off Safari (or Chrome, others browsers) might help.
    Message was edited by: spred

Maybe you are looking for