Exception raised while trying to join Table and Stream

I have written a sample Project to fetch the data from a Table and join it with the Input Stream. Followed the same procedure specified at http://download.oracle.com/docs/cd/E17904_01/doc.1111/e14301/processorcql.htm#CIHCCADG
I am getting the exception:
<Error> <Deployment> <BEA-2045016> <The application context "Plugin" could not be started. Could not initialize component "<unknown>":
Invalid statement: "select PROMOTIONAL_ORDER.ORDER_ID as orderId ,PROMOTIONAL_ORDER.UFD_ID as ufdId, PROMOTIONAL_ORDER.WEB_USER_ID as webUserId
               from helloworldInputChannel [now] as dataStream, PROMOTIONAL_ORDER where >>PROMOTIONAL_ORDER.ORDER_ID = dataStream.ORDER_ID<<"
Cause: wrong number or types of arguments in call to et
Action: Check the spelling of the registered function. Also confirm that its call is correct and its parameters are of correct datatypes.>
If the where condition is removed then the application runs fine fetching the data from the Tables.
Following is the config.xml for processor:
======================================
<?xml version="1.0" encoding="UTF-8"?>
<n1:config xmlns:n1="http://www.bea.com/ns/wlevs/config/application">
     <processor>
          <name>helloworldProcessor</name>
          <rules>
               <query id="dummyRule"> <![CDATA[
               select PROMOTIONAL_ORDER.ORDER_ID as orderId ,PROMOTIONAL_ORDER.UFD_ID as ufdId, PROMOTIONAL_ORDER.WEB_USER_ID as webUserId
               from helloworldInputChannel [now] as dataStream, PROMOTIONAL_ORDER where PROMOTIONAL_ORDER.ORDER_ID = dataStream.ORDER_ID
               ]]></query>
          </rules>
     </processor>
</n1:config>
Following is the assembly file:
<?xml version="1.0" encoding="UTF-8"?>
<beans xmlns="http://www.springframework.org/schema/beans"
     xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance" xmlns:osgi="http://www.springframework.org/schema/osgi"
     xmlns:wlevs="http://www.bea.com/ns/wlevs/spring"
     xsi:schemaLocation="
http://www.springframework.org/schema/beans
http://www.springframework.org/schema/beans/spring-beans.xsd
http://www.springframework.org/schema/osgi
http://www.springframework.org/schema/osgi/spring-osgi.xsd
http://www.bea.com/ns/wlevs/spring
http://www.bea.com/ns/wlevs/spring/spring-wlevs-v11_1_1_3.xsd">
     <wlevs:event-type-repository>
          <wlevs:event-type type-name="CorpInterfaceEvent">
               <wlevs:class>com.bea.wlevs.event.example.helloworld.CorpInterfaceEvent</wlevs:class>
          </wlevs:event-type>
          <wlevs:event-type type-name="PromotionalOrderEvent">
               <wlevs:properties>
                    <wlevs:property name="ORDER_ID" type="bigint" />
                    <wlevs:property name="UFD_ID" type="bigint"/>
                    <wlevs:property name="WEB_USER_ID" type="bigint" />
               </wlevs:properties>
          </wlevs:event-type>
          <wlevs:event-type type-name="DummyEvent">
               <wlevs:properties>
                    <wlevs:property name="ORDER_ID" type="bigint" />
                    <wlevs:property name="UFD_ID" type="bigint"/>
                    <wlevs:property name="WEB_USER_ID" type="bigint" />
               </wlevs:properties>
          </wlevs:event-type>
     </wlevs:event-type-repository>
     <!--
          Adapter can be created from a local class, without having to go
          through a adapter factory
     -->
     <wlevs:adapter id="helloworldAdapter"
          class="com.bea.wlevs.adapter.example.helloworld.HelloWorldAdapter">
          <wlevs:instance-property name="message"
               value="HelloWorld - the current time is:" />
     </wlevs:adapter>
     <wlevs:channel id="helloworldInputChannel" event-type="CorpInterfaceEvent">
          <wlevs:listener ref="helloworldProcessor" />
          <wlevs:source ref="helloworldAdapter" />
     </wlevs:channel>
     <!-- The default processor for OCEP 11.0.0.0 is CQL -->
     <wlevs:processor id="helloworldProcessor">
          <wlevs:table-source ref="PROMOTIONAL_ORDER" />
     </wlevs:processor>
     <wlevs:channel id="helloworldOutputChannel" event-type="CorpInterfaceEvent"
          advertise="true">
          <wlevs:listener>
               <bean class="com.bea.wlevs.example.helloworld.HelloWorldBean" />
          </wlevs:listener>
          <wlevs:source ref="helloworldProcessor" />
     </wlevs:channel>
     <wlevs:table id="PROMOTIONAL_ORDER" event-type="PromotionalOrderEvent"
          data-source="wlevsDatasource" />
</beans>
CorpInterfaceEvent.java:
package com.bea.wlevs.event.example.helloworld;
public class CorpInterfaceEvent {
private Long orderId;
public Long ORDER_ID;
private Long ufdId;
private Long webUserId;
public CorpInterfaceEvent(){
     super();
public Long getOrderId() {
     return orderId;
public void setOrderId(Long orderId) {
     this.orderId = orderId;
public Long getORDER_ID() {
     return ORDER_ID;
public void setORDER_ID(Long oRDERID) {
     ORDER_ID = oRDERID;
public Long getUfdId() {
     return ufdId;
public void setUfdId(Long ufdId) {
     this.ufdId = ufdId;
public Long getWebUserId() {
     return webUserId;
public void setWebUserId(Long webUserId) {
     this.webUserId = webUserId;
Adapter:
/* (c) 2006-2009 Oracle. All rights reserved. */
package com.bea.wlevs.adapter.example.helloworld;
import java.math.BigDecimal;
import java.text.DateFormat;
import java.util.Date;
import com.bea.wlevs.ede.api.RunnableBean;
import com.bea.wlevs.ede.api.StreamSender;
import com.bea.wlevs.ede.api.StreamSource;
import com.bea.wlevs.event.example.helloworld.CorpInterfaceEvent;
public class HelloWorldAdapter implements RunnableBean, StreamSource {
private static final int SLEEP_MILLIS = 300;
private DateFormat dateFormat;
private String message;
private boolean suspended;
private StreamSender eventSender;
public HelloWorldAdapter() {
super();
dateFormat = DateFormat.getTimeInstance();
/* (non-Javadoc)
* @see java.lang.Runnable#run()
public void run() {
suspended = false;
while (!isSuspended()) { // Generate messages forever...
generateHelloMessage();
suspend();// This would generate the messages only once..
try {
synchronized (this) {
wait(SLEEP_MILLIS);
} catch (InterruptedException e) {
e.printStackTrace();
public void setMessage(String message) {
this.message = message;
private void generateHelloMessage() {
String message = this.message + dateFormat.format(new Date());
CorpInterfaceEvent event = new CorpInterfaceEvent();
//event.setOrderId(1);
event.setORDER_ID(Long.valueOf(1));
eventSender.sendInsertEvent(event);
/* (non-Javadoc)
* @see com.bea.wlevs.ede.api.StreamSource#setEventSender(com.bea.wlevs.ede.api.StreamSender)
public void setEventSender(StreamSender sender) {
eventSender = sender;
/* (non-Javadoc)
* @see com.bea.wlevs.ede.api.SuspendableBean#suspend()
public synchronized void suspend() {
suspended = true;
private synchronized boolean isSuspended() {
return suspended;
Kindly let me know if you need further info.

Issue identified. The datatypes of the stream order id and the one from the tables differ.
The Long could not be casted to the bigint format of CQL.
On changing the datatype of ORDER_ID in the CorpInterfaceEvent to int, the join is successful.

Similar Messages

  • Pages '08 crashes while trying to edit tables and charts

    Pages '08 crashes if I try to edit the contents of a cell in a table or if I try to edit charts. It only happens while editing not copy-pasting data.

    I had the same problem on Ipad Pages. I copied the entire document and pasted it into a newly created Ipad Pages doc and so far it is working again. Good luck.

  • Exception caught while trying to initialize Oracle RouteServer

    Hi,
    While starting my application server, i am facing this error.
    05/09/02 14:32:53 Exception caught while trying to initialize Oracle RouteServer
    05/09/02 14:32:53 oracle.spatial.router.engine.RoutingEngineException: [REE-0126: Node reference for start  node 42788087 of
    edge -23202655 is missing in partition 0]
    05/09/02 14:32:53 at oracle.spatial.router.engine.Partition.fillNonBoundaryEdgesWithNodeReferences(Partition.java:183)
    05/09/02 14:32:53 at oracle.spatial.router.engine.Partition.readPartition(Partition.java:110)
    05/09/02 14:32:53 at oracle.spatial.router.engine.PartitionCache.loadPartitionFromDatabase(PartitionCache.java:276)
    05/09/02 14:32:53 at oracle.spatial.router.engine.PartitionCache.obtainPartitionReference(PartitionCache.java:234)
    05/09/02 14:32:53 at oracle.spatial.router.engine.Network.<init>(Network.java:62)
    05/09/02 14:32:53 at oracle.spatial.router.server.RouteServerImplementation.<init>(RouteServerImplementation.java:128)
    05/09/02 14:32:53 at oracle.spatial.router.server.RouteServerServlet.init(RouteServerServlet.java:191)
    05/09/02 14:32:53 at com.evermind.server.http.HttpApplication.loadServlet(HttpApplication.java:2094)
    05/09/02 14:32:53 at com.evermind.server.http.HttpApplication.findServlet(HttpApplication.java:4523)
    05/09/02 14:32:53 at com.evermind.server.http.HttpApplication.initPreloadServlets(HttpApplication.java:4617)
    05/09/02 14:32:53 at com.evermind.server.http.HttpApplication.initDynamic(HttpApplication.java:765)
    05/09/02 14:32:53 at com.evermind.server.http.HttpApplication.<init>(HttpApplication.java:497)
    05/09/02 14:32:53 at com.evermind.server.Application.getHttpApplication(Application.java:886)
    05/09/02 14:32:53 at com.evermind.server.http.HttpServer.getHttpApplication(HttpServer.java:688)
    05/09/02 14:32:53 at com.evermind.server.http.HttpSite.initApplications(HttpSite.java:570)
    05/09/02 14:32:53 at com.evermind.server.http.HttpSite.setConfig(HttpSite.java:263)
    05/09/02 14:32:53 at com.evermind.server.http.HttpServer.setSites(HttpServer.java:259)
    05/09/02 14:32:53 at com.evermind.server.http.HttpServer.setConfig(HttpServer.java:160)
    05/09/02 14:32:53 at com.evermind.server.ApplicationServer.initializeHttp(ApplicationServer.java:2325)
    05/09/02 14:32:53 at com.evermind.server.ApplicationServer.setConfig(ApplicationServer.java:1498)
    05/09/02 14:32:53 at com.evermind.server.ApplicationServerLauncher.run(ApplicationServerLauncher.java:93)
    05/09/02 14:32:53 at java.lang.Thread.run(Thread.java:534)
    Can you suggest something on this..!
    Thanks and Regards
    Ashish Dhawan

    Hi,
    Please refer to the answers for your questions:
    Q) I assume you imported this data, what tables did you import? Was it non-Router schema data that was massaged into the Routers schema? Was is it limited data from another Router schema (NODE, EDGE and SIGN_POST tables)? How was the data exported/imported? Could you run the following query and post the result?
    Ans:) The data had been downloaded from the
    http://www.adci.com/products/navteq/index.html.
    This was a sample oracle 10g data of "pinellas-county"
    Import statments used were:
    1. Create User that will "house" the Spatial data. Should be the same name as the user being exported.
         CREATE USER ADCI PROFILE "DEFAULT"
         IDENTIFIED BY "ADCI" DEFAULT TABLESPACE "USERS"
         TEMPORARY TABLESPACE "TEMP"
         ACCOUNT UNLOCK;
         GRANT "CONNECT" TO "ADCI";
    GRANT imp_full_database, create table, create sequence TO ADCI;
    2. Create directory for import (The directory will be the location of the dump file)
         CREATE DIRECTORY adci_dump_dir AS '<location of dump file>';
         GRANT READ, WRITE ON DIRECTORY adci_dump_dir TO adci;
         ALTER USER adci QUOTA UNLIMITED ON USERS;
    3. Import Tablespace by running the following command. (Modify the datafile location)
         ** Note - You may need to convert the endian format before importing the datafile.
         (The source datafile is from platform id #10 - See below)
         impdp adci@<database alias> DIRECTORY=adci_dump_dir DUMPFILE=tts.dmp TRANSPORT_DATAFILES='<directory location>\adci_data.ora'
         ** Ignore ORA-31684 Errors on MDSYS objects
         Oracle10g Release 1 note:
         Oracle 10g Release 1 may report several errors when importing the transportable tables. These errors can be safely ignored. There are two types of errors:
         ORA-31684: Object type TYPE:"MDSYS"."XXXXX" already exists
         ORA-39083: Object type TYPE failed to create with error:
         ORA-02311: cannot alter with COMPILE option a valid type with type or table dependents
         Failing sql is:
         ALTER TYPE "MDSYS"."XXXXX" COMPILE SPECIFICATION
         and:
         ORA-31684: Object type TYPE_BODY:"MDSYS"."SDO_GEOMETRY" already exists
         At the end of the import, the message will be:
         Job "MAPPER"."SYS_IMPORT_TRANSPORTABLE_01" completed with 11 error(s)
    4. Alter tablespace to be in read write mode.
         ALTER TABLESPACE ADCI_DATA READ WRITE;
    5. Grant unlimited quota on transportable tablespace to user created in step 1
         ALTER USER ADCI QUOTA UNLIMITED ON ADCI_DATA;
    6. Initialize Spatial Indexes as owner of all spatial indexes
         EXEC SDO_UTIL.INITIALIZE_INDEXES_FOR_TTS
    7. Run the following script to build indexes, add metadata
         CONNECT ADCI@<ALIAS NAME>
         INSERT INTO USER_SDO_MAPS SELECT * FROM SDO_MAPS;
         INSERT INTO USER_SDO_THEMES SELECT * FROM SDO_THEMES;
         INSERT INTO USER_SDO_STYLES SELECT * FROM SDO_STYLES;     
         COMMIT;
    8. Collect Schema statistics
         Run following command while connected as a priviledged user.
         exec dbms_stats.gather_schema_stats(ownname=>'ADCI',cascade=>TRUE,estimate_percent=>15);
    Q) select index_name from USER_INDEXES where table_name='EDGE';
    Ans:)
    INDEX_NAME
    EDGE_NAME_IDX
    START_NODE_ID_IDX
    END_NODE_ID_IDX
    EDGE_ID_IDX
    EDGE_SIN
    SYS_IL0000095839C00014$$
    SYS_IL0000095839C00015$$
    Step>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>Drop tables:
    drop table EDGE_PART; Table Dropped
    drop table NODE_PART; Table Dropped
    drop table PARTITION; Table Dropped
    drop table NEW_PARTITION; Table doesnot exist
    Step>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>> If the delete works, great. If the delete doesn't work drop all of the Router shema tables, reimport the data and try the above delete command again.
    Processing object type TRANSPORTABLE_EXPORT/PLUGTS_BLK
    Processing object type TRANSPORTABLE_EXPORT/TYPE/TYPE_SPEC
    ORA-31684: Object type TYPE:"MDSYS"."NUM_ARRAY" already exists
    ORA-31684: Object type TYPE:"MDSYS"."SDO_ORDINATE_ARRAY" already exists
    ORA-39083: Object type TYPE failed to create with error:
    ORA-02311: cannot alter with COMPILE option a valid type with type or table dependents
    Failing sql is:
    ALTER TYPE "MDSYS"."SDO_ORDINATE_ARRAY" COMPILE SPECIFICATION PLSQL_OPTIMIZE_LEVEL= 2 PLSQ
    L_CODE_TYPE= INTERPRETED PLSQL_DEBUG= FALSE
    ORA-31684: Object type TYPE:"MDSYS"."SDO_ELEM_INFO_ARRAY" already exists
    ORA-39083: Object type TYPE failed to create with error:
    ORA-02311: cannot alter with COMPILE option a valid type with type or table dependents
    Failing sql is:
    ALTER TYPE "MDSYS"."SDO_ELEM_INFO_ARRAY" COMPILE SPECIFICATION PLSQL_OPTIMIZE_LEVEL= 2 PLS
    QL_CODE_TYPE= INTERPRETED PLSQL_DEBUG= FALSE
    ORA-31684: Object type TYPE:"MDSYS"."SDO_POINT_TYPE" already exists
    ORA-39083: Object type TYPE failed to create with error:
    ORA-02311: cannot alter with COMPILE option a valid type with type or table dependents
    Failing sql is:
    ALTER TYPE "MDSYS"."SDO_POINT_TYPE" COMPILE SPECIFICATION PLSQL_OPTIMIZE_LEVEL= 2 PLSQL_CO
    DE_TYPE= INTERPRETED PLSQL_DEBUG= FALSE
    ORA-31684: Object type TYPE:"MDSYS"."SDO_KEYWORDARRAY" already exists
    ORA-31684: Object type TYPE:"MDSYS"."SDO_GEOMETRY" already exists
    ORA-39083: Object type TYPE failed to create with error:
    ORA-02311: cannot alter with COMPILE option a valid type with type or table dependents
    Failing sql is:
    ALTER TYPE "MDSYS"."SDO_GEOMETRY" COMPILE SPECIFICATION PLSQL_OPTIMIZE_LEVEL= 2 PLSQL_CODE
    TYPE=  INTERPRETED    PLSQLDEBUG= FALSE
    Processing object type TRANSPORTABLE_EXPORT/TYPE/GRANT/OBJECT_GRANT
    Processing object type TRANSPORTABLE_EXPORT/TYPE/TYPE_BODY
    ORA-31684: Object type TYPE_BODY:"MDSYS"."SDO_GEOMETRY" already exists
    Processing object type TRANSPORTABLE_EXPORT/TABLE
    Processing object type TRANSPORTABLE_EXPORT/INDEX
    Processing object type TRANSPORTABLE_EXPORT/INDEX_STATISTICS
    Processing object type TRANSPORTABLE_EXPORT/TABLE_STATISTICS
    Processing object type TRANSPORTABLE_EXPORT/DOMAIN_INDEX/TABLE
    Processing object type TRANSPORTABLE_EXPORT/DOMAIN_INDEX/INDEX
    Processing object type TRANSPORTABLE_EXPORT/TTE_POSTINST/PLUGTS_BLK
    Job "ADCI"."SYS_IMPORT_TRANSPORTABLE_01" completed with 11 error(s) at 12:11
    As the data already exists in MDSYS user for the same data, thus these errors have started cropping up. What do you suggest..Now i think the data has crashed completely. What do you suggest...??
    Thanks and Regards
    Ashish Dhawan

  • Exception raised while creating Advisor

    Hi,
    I've built a portal based on the exampleportal. I'm now trying to integrate personalization.
    I've loaded 2 documents in the default content repository using loaddocs, and
    created a content selector in the EBCC (I synchronized after that). When creating
    my content selection rules, I can do a preview, and see my two documents, so the
    rule is working. Now, when I use the <pz:contentSelector ...> tag, exactly as
    described in the documentation, I get a stack trace saying : " Exception raised
    while creating Advisor". The stack doesn't tell anything about the error...
    I also tried using the <cm:select...> tag in various fashions, but it always
    returns me an array of size 0, or null.
    I haven't changed the configuration for the DocumentManager... What could have
    gone wrong ?
    Any help would be greatly appreciated !
    Thanks
    Phil

    Hello Philippe,
    Did you restart the docPool after you ran the BulkLoader (with loaddocs)?
    ( http://e-docs.bea.com/wlp/docs70/dev/conmgmt.htm#1023455 )
    That's probably not the problem, becuase I'd guess that you may have
    already restarted your server a few times and you still have the problem,
    but I thought I'd start there.
    Also, did you make sure your portal contains all the components necessary
    for the features you are using? Are you using Portal 7.0? If you are using
    Portal 7.0 and you created your portal domain with the domain configuration
    wizard, then your portal does not contain all of the tag libraries that it
    needs for full personalization. Compare your portal to the sampleportal.
    There is a note about this in the Release Note for CR079828
    http://e-docs.bea.com/wlp/docs70/relnotes/relnotes.htm#305089
    Ture Hoefner
    BEA Systems, Inc.
    www.bea.com
    "Philippe Cote" <[email protected]> wrote in message
    news:3db85f30$[email protected]..
    >
    Hi,
    I've built a portal based on the exampleportal. I'm now trying tointegrate personalization.
    I've loaded 2 documents in the default content repository using loaddocs,and
    created a content selector in the EBCC (I synchronized after that). Whencreating
    my content selection rules, I can do a preview, and see my two documents,so the
    rule is working. Now, when I use the <pz:contentSelector ...> tag, exactlyas
    described in the documentation, I get a stack trace saying : " Exceptionraised
    while creating Advisor". The stack doesn't tell anything about theerror...
    >
    I also tried using the <cm:select...> tag in various fashions, but italways
    returns me an array of size 0, or null.
    I haven't changed the configuration for the DocumentManager... What couldhave
    gone wrong ?
    Any help would be greatly appreciated !
    Thanks
    Phil

  • An Error Occurred while trying to join "my wireless access point"

    Hi,
    I've been using wireless access for a year and never had a problem connecting.
    But starting yesterday I get a +*An Error Occurred while trying to join "my wireless access point", Please try again.+* Message.
    I have 2 Mac's and have no problem connecting with the other one. It’s just the IMac.
    I tried everything including resetting router, changing password, adding a $ to the password, accessing without password, deleting the whole air port and create a new one, but still getting the same message.
    I might need to add, while I was working with the IMac I didn’t use wireless for a few hours, but when I got back to my browser I noticed that I was connected to a different wireless service. (FONFREEINTERNET if it matters) I have no idea why, since I didn’t change it.
    Anyways, I tried to switch back to my access point, but it wouldn’t let me. It’ll just give me the +*An Error Occurred while trying to join "my wireless access point", Please try again.+* Message.
    Funny is when I use the FONFREEINTERNET access point the internet seems to work fine.
    I could look up Google without a problem, but when I tried to connect to Facebook for example it won’t let me. Instead a FONFREEINTERNET page will pop up with some options on how to pay! (by minute/or day/or week…)
    I get the strange feeling that they planted some kind of bug/virus!!!
    I don’t know what else to do.
    Anyone knows that problem? What can I do?
    Any help is greatly appreciated!
    I researched on FONFREEINTERNET, there’s a spot close to my house/guess that’s the one I used…
    http://maps.fon.com/ ZIP CODE 904-0113 and you’ll see a coffee pod, which is about 2 minutes walk from my house.

    Hello Tesserax,
    I get the same error message again...
    I tried the 3 suggested steps again, but unfortunately it did not work.
    After a Restart, Sleep or just the awaking from Screensaver mode I’m disconnected from my wireless Network anymore.
    Even if the Computer was asleep for just a second!
    I am able to fix the problem temporarily with Network Preferences → Assist me → Diagnostics
    Choose Airport → Choose network → Enter Password (Even if I check safe password it’ll ask me every time) → and than usually all lights on the left menu switch from red to green and I get the popup message “A Network Change has been detected. Your Internet seems to work fine.” (similar - I’m at work and don’t remember exactly)
    And it works fine…until the screensaver comes on or it sleeps again
    I have the Problem with my IMac and Mini but the IMac at least remembers my password…
    Any Ideas
    I’m connected through a Buffalo WZR2-G300N wireless router

  • Error while trying to synchronise audio and midi

    Hi
    Logic worked all day and suddenly start giving this message:
    error while trying to synchronise audio and midi.
    Nothing was changed and we also have no sound.
    We don't have any midi device, its just the G5 and Logic installed.
    Any idea how to solve this issue.
    Jeanne

    Howdo
    Someone else has been having this problem and I've tried to help 'cos it used to happen to me too. Try adjusting your I/O buffer level in your Logic Audio Driver preferences - raise it a bit higher and the problem should go away. Problem is you get more latency. (I'm assuming it's set lower than 512, but not knowing your audio hardware... and your not using internal audio are you???)

  • 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

  • An exception occurred while trying to run "cmicnfg.cpl, cmCtrlwND"

    I have recently installed the MSI KT6 Delta main-board with the VIA KT600 chipset On loading windows XP home edition the following error message appears:
    RUNDLL
    An exception occurred while trying to run “cmicnfg.cpl, cmCtrlwND”
    I think the error messages is related to the on-board sound card software in the control panel, but have been unable to remove the error message. The sound card works fine.
    Cheers

    I think there is an autostart function of C-Media that you have disabled or is not working properly. Run MSCONFIG and check the autostart tab. Either you disable the C-media post or enable it. If the sound is OK I suggest you disable.
    If you just want to get rid of the message, we can dive into the Registry, but we wait a little I think.
    (Possibly Windows trying to handle the sound department since it might think it has better drivers. Find the latest for XP. Unzip or whatever, go to Device Manager and update drivers. )

  • Javax.servlet.ServletException: exception raised while creating Advisor

    I am adding some personalization to a jsp in portal 7.0 which worked fine in 4.0.
    I am importing the pz.tld and using the pz:div tag '<pz:div rule="admin">'. We
    have 'admin' set up as a segment in the EBCC just like in 4.0. When the jsp compiles,
    I get a 'javax.servlet.servletexception: exception raised while creating advisor'
    exception.
    I'm just really unfamiliar with the Advisor and am not sure where to start. Any
    help would be much appreciated.

    It appears this error might occur on JNDI lookup failure. If you do a
    diff between the web.xml and weblogic.xml files between 4.0 and 7.0 in
    your webapp's web-inf directory what differences do you find? Are the
    ejb-ref and ejb-reference entries for the Advisor and other EJB's present?
    Is the ejbadvisor.jar deployed in your application? Is it present in
    the application directory? Is there a ejb component entry in config.xml?
    Is there a module entry in application.xml?
    If you find that this is not the right direction to look for the problem
    please post the full stack trace and a pz:div code snippet.
    -- Jim
    chris wrote:
    I am adding some personalization to a jsp in portal 7.0 which worked fine in 4.0.
    I am importing the pz.tld and using the pz:div tag '<pz:div rule="admin">'. We
    have 'admin' set up as a segment in the EBCC just like in 4.0. When the jsp compiles,
    I get a 'javax.servlet.servletexception: exception raised while creating advisor'
    exception.
    I'm just really unfamiliar with the Advisor and am not sure where to start. Any
    help would be much appreciated.

  • Keep getting an error message that reads, "LR An error has occurred while creating the book on Blurb" An error has occurred while trying to create texts and fonts.  Pleas advise as Blurb has said that it's a LR issue.

    Keep getting an error message that reads, "LR An error has occurred while creating the book on Blurb" An error has occurred while trying to create texts and fonts.  Pleas advise as Blurb has said that it's a LR issue.

    Are you behind a firewall or double NAT??
    What is the device that is immediately plugged into the main modem or router? Has that one been able to update?
    It is plugged in of course isn't it.. no nasty join wireless anywhere??
    The best way to work around these sort of problems is to simplify the network.. Plug each device directly into the main router.. by ethernet. You can trigger the firmware upgrade by wireless but use ipad or iphone version of airport utility and see what happens.

  • "Error while trying to sync Audio and Midi"

    "Error while trying to sync Audio and Midi" I have been having this problem now and then for some time. Now, I can't run any audio files without a lot of popping. I tried all the suggestions on the support document for this issue. I even downloaded new drivers from Motu for my Express XT Midi interface and my 828MK11 Audio interface. There has been no change. HEEEEEEEEEEEEEEEEEEEEEEEEEEEEEEEELP!!!!!!
    Also, I have tried reseting the 828 to factory default and that does not help.
    Jonathan Jenkins

    Hi,
    I solved my own problem by resetting the factory presets:
    Follow these steps to restore the MOTU 828mkII to Factory Default Settings.
    Disconnect the firewire cable from the 828mkII
    Press the Setup knob
    Turn the Setup knob all the way to the right
    Press the Select knob
    Press the Value knob
    Power off the interface and plug the firewire cable back in
    Power the interface back on
    The same steps can be followed to restore the Factory Default Settings on a Traveler.
    -Robert

  • "Error While Trying To Synchronise Audio And Midi"...non-tempo event found

    "Error While Trying To Synchronise Audio And Midi"...non-tempo event found
    now when I shutdown Logic And relaunch the Project, the notes hang and "WHAT THE FRIIGIN"
    (this was a bug way back when Logic7 was first released)
    this is bad!
    SvK

    Thanks Steven.
    big help. In our session we keep getting this problem where the song counter stops, the music keeps playing and we get an error message saying:
    Non Tempo-Event found in Sync Reference
    We looked in the tempo list and somehow there was a tempo event of 0.00 tempo in there.
    We deleted it, got the same error message, but the prob seems to be fixed.
    Apple, please fix this!
    Thanks
    Felix

  • "error while trying to synchronize Audio and MIDI"

    Hello All,
    Just got Logic 8... installed (as upgrade from 7)
    I keep (consistantly) getting this:
    "error while trying to synchronize Audio and MIDI" when in play or record mode... has anyone any ideas regarding a 'fix' or maybe even to point out stupidity on my part re settings; I'm open to comments here and would obviously love to get this fixed/sorted out.
    System is basically: G5 Dual 1.8/OS 10.4.10/MOTU 828 Mk2
    Thanks in advance.

    Hi,
    I first did what the manual was telling me but that made no difference as the sync would drop within 5 to 15 bars... very frustrating.
    Since my original posting I have spoken with MOTU regarding this Audio/MIDI sync problem. There is evidently a simple reset that needs to be done (that is if like me you are using a MOTU 828 Mk2 interface), you have to toggle through both digital input and output settings in the Audio Control Panel. The problem then goes away.
    I hope that is helpful. I think that this probably is relevant to all MOTU interfaces, or is at least worth trying if you are having this problem... maybe other manufacturers too... ?
    Cheers, Kick

  • Error while trying to synchronize audio and MIDI.  Sample rate 42804 recognized.  Check conflict between Garageband and external device.

    Sometimes, while playing back my software instrument songs, I get an intermittent pop-up error message, saying "Error while trying to synchronize audio and MIDI.  Sample rate 42804 recognized.  Check conflict between Garageband and external device."
    (Sometimes the five digit number is different, but remains a five-digit number beginning with "4".)
    Simultaneously, the song stops until I press the "Okay" button in the pop-up window.
    When I continue to play the song, the sound is jerky and clipped, and the playhead doesn't keep up with the song, and then suddenly jumps to the part of the song currently being played.
    There's also a sound of static.
    The issue seems to occur whether or not I have my MIDI controller turned on and plugged into my desktop Imac.
    Tony

    Hello,
    open your Audio MIDI Setup utility and set the input to 44100
    https://discussions.apple.com/message/12710638#12710638

  • Error while trying to synchronize Audio and MIDI. plz help i cant hear anything

    plz help me i cant hear nothing and its says: Error while trying to synchronize Audio and MIDI.
    Sample Rate 38536 recognized.
    Check conflict between Logic Pro X and external device. ????????   PLZ HELP

    It means you are overtaxing the CPU, likely with just one (3rd party-)software instrument plugin. Ignore the word "external", in this context it often means "3rd party plugin".
    So what synth is it? Since you're Dutch, it's probably one of the trancy dancy synths, such as Albino, Diva, Sylenth or Massive... I could be wrong though...
    The best way to avoid this message is to Freeze the track with the guilty synner - however, a frozen track cannot be edited, so if that is a problem, you will have to make the synth itself run lighter, which can be achieved by turning of internal effects that are ON the synth itself, especially reverb.
    http://help.apple.com/logicpro/mac/10/#lgcpf1cbfd51

Maybe you are looking for