Events in Application View

Hi,
Am using Weblogic 6.0 Sp2 and WLAI 2.0.
I was working with DBMS adapter that comes along with WLAI. I created an
Application View and added
2 update events, on the same table, to it. But only 1 event gets registered
with it. What I mean is, as both the
events are on the same table (CUSTOMER_TABLE in this case) and of same type
(UPDATE here), only one
of them is notified of the event.
I was testing both of these events simultaneously on 2 separate browsers
(with sufficient wait time), and only 1 of
them was notified on the event, the other was timed out. I tried with more
than 2 events of same type, and the same thing
happened.
It seems that weblogic is registering only 1 event of each type defined for
the same table.
Like I defined 3 insert events and 4 updated events on the same table (in
the same application view),
and only 1 of each type, i.e. one of insert and one of update, got
registered, and only those are notified,
others just time out.
Is there anything wrong am doing, or is it a bug somewhere ?
Thanks
Amit Chauhan

Hi Chris,
Everything was on 1 machine. Weblogic server as well as all the 3
browsers.
Out of the 3 events, one of them generated the event using an
'updateService' in the application view,
which updated just 1 record. (While testing the event you have the option of
manual or service).
The other 2 events were waiting with sufficient time delay. (running with
manual option of testing the event)
But after the event only 1 of them got notified and all other timed out.
Thanks
Amit
Chris Stead <[email protected]> wrote in message
news:[email protected]...
Amit,
Were you on three different machines, or did you have three browsers onone
machine?
Were you updating different records (customers) or the same record?
Chris
Amit wrote:
Chris,
Its not my requirement, I was just working with and testing the DBMS
adapter that comes along with WLAI.
This is what I did. I created an Application View AV1. I created 3
update
events E1, E2 and E3 in this application view.
All were update events on the same Customer_Table. Again, its not the
requierment, I was just trying out, how these events work.
I tested all these three events simulatenously in 3 differnt browsers.So
they all were waiting for that event to occur. I updated a customer
record, so I was hoping that event notification will come to all the 3
events in the 3 browsers. But only 1 of them got notified, other 3 timed
out.
So I was just wondering, is it the correct behaviour of events or isthere
something wrong ?
Hope am a bit clear.
Thanks
Amit
Chris Stead <[email protected]> wrote in message
news:[email protected]...
Amit,
Please explain what you are hoping to accomplish with creating 3
events of
the
same event type. The application view sees an insert on theCustomer_Table as
one event, even if it is defined three times.
When a customer get inserted into the Customer_Table, from the EIS'perspective,
that is one event. We can define several business rules based on that
one
event
and don't need to define the event three times. But, maybe I am
missing
something, please let us know why you have approached it this way.Thanks.
Cheers,
Chris
Amit wrote:
Thanks Mitch.
Can you please also explain the behaviour, in case of 1 Application
View
AV1
having 3 events E1, E2 and E3 all
related to Customer_Table insert evetns. According to what you told,
it
will
create 1 insert trigger on customer_table
for all the 3 events. So when the a customer record will be insertedinto
the table, then it will generate 1 event and will
pass on to the event router, and then event router should route this
to
all
the 3 listeners.
But whats actually happening is, the event router, delivers the
event
notification to only 1 of the 3 events.
You can try this on the DBMS adapter that comes along with ADK.
I was using WLAI 2.0
Thanks
Amit
Amit Chauhan
eTouch System
510-795-4800 ext 113
Mitch Upton <[email protected]> wrote in message
news:[email protected]...
Amit,
In general, you can only have one trigger of a given type on a
table.
Some
databases support multiple 'insert' triggers, but some don't.
As your original problem, you can have multiple application viewsagainst
the same
database instance (same server in the case of MSSQL) and each can
have
multiple
events that are named differently, but refer to the same table and
trigger
type
(e.g. insert, update, delete). The event router elliminates
duplicate
table/trigger combinations and sends the unique list to the eventgenerator. The
router DOES remember all event types, and will deliver events to
all
subscribers
regardless if they were the 'first' to request a table/triggercombination.
For example, I can have 2 app views AV1, and AV2, where AV1
defines E1
to
be
related to Customer_Table insert events, and E2 to be related toCustomer_Table
insert events. The event generator attached to the database
instance
will
see only
E1's subscription, and install a trigger on Customer_Table for
insert.
>>>>>
When I insert a record into Customer_Table, the generator willgenerate a
SINGLE
event, and deliver it to the router. The router will deliver TWO
events,
one to
AV1 (as E1 event type), and one to AV2 (as E2 event type).
Deleting AV1.E1 will NOT cause the generator to delete the insert
trigger
on
Customer_Table. It will remain until someone deletes AV2.E2.
I hope this helps...
Mitch
Amit wrote:
Thanks Steven,
Is this a restriction from ADK coz this is not a restriction
from
database. I think, in database, you can have n number oftriggers
of one type on one table. Like there can be 5 update triggers on
customer_table.
Thanks
Amit
Steven Donovan <[email protected]> wrote:
Amit,
I am not sure if you can have multiple events of the same
type on the same table. The database itself can only have
one trigger on the table for an update and/or one for an
insert. However, with a single event, I was able to get
both browsers notified of the event by using the test feature
for one in manual mode (this will cause it to simply wait for
the specified time listening for events) and testing the other
with a service that generated an event. You will have to
start the manual one first for this.
Hope this helps,
Steven Donovan
Amit wrote:
Hi,
Am using Weblogic 6.0 Sp2 and WLAI 2.0.
I was working with DBMS adapter that comes along with WLAI. I
created
an
Application View and added
2 update events, on the same table, to it. But only 1 event
gets
registered
with it. What I mean is, as both the
events are on the same table (CUSTOMER_TABLE in this case)
and of
same
type
(UPDATE here), only one
of them is notified of the event.
I was testing both of these events simultaneously on 2
separate
browsers
(with sufficient wait time), and only 1 of
them was notified on the event, the other was timed out. I
tried
with
more
than 2 events of same type, and the same thing
happened.
It seems that weblogic is registering only 1 event of each
type
defined
for
the same table.
Like I defined 3 insert events and 4 updated events on the
same
table
(in
the same application view),
and only 1 of each type, i.e. one of insert and one of
update,
got
registered, and only those are notified,
others just time out.
Is there anything wrong am doing, or is it a bug somewhere ?
Thanks
Amit Chauhan--
Mitch Upton
Architect - Application Integration
BEA Systems
Denver, 5th Floor
[email protected]
(720)528-6087

Similar Messages

  • Testing Events on an Application View

    Hi,
    I am testing an event on an application view using a service. The execution of
    the service should generate two events, but I only got one back during the test.
    Does the com.bea.wlai.client.EventTester suppose to return ALL the events of that
    type generated by a service? Or only the first one? I want to make sure that no
    events were lost due to bugs in my adapter.
    Thanks for your help.
    Yongtao You
    [email protected]

    Instead of
    :APP_USER
    use
    v('APP_USER')
    Denes Kubicek
    http://deneskubicek.blogspot.com/
    http://www.opal-consulting.de/training
    http://apex.oracle.com/pls/otn/f?p=31517:1
    -------------------------------------------------------------------

  • Error in Events Packaged Application

    Hello,
    I've been interested for some time in the "Events" packaged application. It was great to see it become available recently. I downloaded, installed, and ran it. It had a problem in changing the calendar type for display. I wanted a daily calendar, showing the hours, and couldn't figure it out.
    I went and looked, and on page 201, "Events" region, Calendar attributes, the Calendar Type Column is defined as P1_CALENDAR_TYPE. This should be changed to P201_CALENDAR_TYPE. Once this is done, you can switch to weekly and daily calendars using the buttons on the calendar page.
    Hope that saves some others from problems.
    Now, I'd like to see how the region could be changed to display 15 minute increments within the hour. How is this possible (is it)? Can someone maybe help me on this portion?
    Thanks,
    Mike Riley
    Vice President - Oracle Development Tools User Group

    Guess I should have added: Ideally, I'd like to see this like the Outlook daily calendar, where the events are shown in increments and blocked for the duration of the event (switch to the day view if you use Outlook to see an example).
    Thanks,
    Mike

  • Ical cannot create event in month view

    iCal cannot create event in month view. Is this a bug?
    I've tried double clicking in a day as I always did but nothing.

    Ko be,
    Application UI issues are in many cases, caused by a corrupt plist file.
    Quit iCal, and try removing the com.apple.iCal.plist file from your Macintosh HD/Users/yourusername/Library/Preferences Folder. Since that Library is now hidden, you have to use the Finder>Go Menu>Depress the "Option" key>Library. Drag the .plist file to your desktop, and log out/in or restart and check iCal for functionality.
    Also read Apple iCal 5 Office Software Review | Macworld for a description of Lion iCal.

  • A problem when I try to create a application view throug a Bea MQSeries Adapter8.1

              Hi, guys!
              I have installed Weblogic platform 8.1 beta, and try to use the MQSeries Adapter
              which provide by Bea weblogic, and it's seems I must deploy the .ear file which
              is an application include the MQ Adapter, on a domain which provide the Integration
              function, the ear file I was download from bea site. So I deploy it in the samples/domain/platform
              domain as the docs told me. And after that I create a new directory called session
              and a subdirectory contain a manifest.xml file, I do this also due to the docs
              provide by Bea. And then I can create the application view in the application
              view console, BUT, when I try to add a Event in the console, the page and OS console
              both print this message :
              DEBUG 21 ?? 2003 20:43:11,906 BEA_MQSERIES_1_0.DesignTime - getMergedDictionary
              got exception:
              DEBUG 21 ?? 2003 20:43:11,906 BEA_MQSERIES_1_0.DesignTime -
              StackTrace:
              java.lang.NullPointerException
              at com.ibi.beamqseries.web.DesignTimeRequestHandler.getMergedDictionary(DesignTimeRequestHandler.java:372)
              at jsp_servlet.__addservc._jspService(__addservc.java:120)
              at weblogic.servlet.jsp.JspBase.service(JspBase.java:33)
              at weblogic.servlet.internal.ServletStubImpl$ServletInvocationAction.run(ServletStubImpl.java:1047)
              at weblogic.servlet.internal.ServletStubImpl.invokeServlet(ServletStubImpl.java:383)
              at weblogic.servlet.internal.ServletStubImpl.invokeServlet(ServletStubImpl.java:301)
              at weblogic.servlet.internal.RequestDispatcherImpl.include(RequestDispatcherImpl.java:547)
              at weblogic.servlet.internal.RequestDispatcherImpl.include(RequestDispatcherImpl.java:364)
              at weblogic.servlet.jsp.PageContextImpl.include(PageContextImpl.java:153)
              at jsp_servlet.__display._jspService(__display.java:632)
              at weblogic.servlet.jsp.JspBase.service(JspBase.java:33)
              at weblogic.servlet.internal.ServletStubImpl$ServletInvocationAction.run(ServletStubImpl.java:1047)
              at weblogic.servlet.internal.ServletStubImpl.invokeServlet(ServletStubImpl.java:383)
              at weblogic.servlet.internal.ServletStubImpl.invokeServlet(ServletStubImpl.java:301)
              at weblogic.servlet.internal.WebAppServletContext$ServletInvocationAction.run(WebAppServletContext.java:6319)
              at weblogic.security.acl.internal.AuthenticatedSubject.doAs(AuthenticatedSubject.java:317)
              at weblogic.security.service.SecurityManager.runAs(SecurityManager.java:97)
              at weblogic.servlet.internal.WebAppServletContext.invokeServlet(WebAppServletContext.java:3525)
              at weblogic.servlet.internal.ServletRequestImpl.execute(ServletRequestImpl.java:2553)
              at weblogic.kernel.ExecuteThread.execute(ExecuteThread.java:178)
              at weblogic.kernel.ExecuteThread.run(ExecuteThread.java:151)
              And I'm not quit sure about how to make the Schema directory correcttly, I just
              make one manifest.xml file. and hope I can find more document about the adapter,
              or can fix this problem.
              by the way, I just have userguid, installguide and releasenotes pdf file which
              can be download from Bea
              Regards,
              shannon
              

    Can you tell me the exact url of the BEA_MQSERIES_8_1.ear?
              Please give it to me... Thanks in advance...

  • Use of an application view for SAP R/3

    Hello,
    I created an Application View of my SAP R/3 backend and integrated it into Weblogic
    Workshop.
    I fire a request to the BAPI through the App View, but nothing happens. I thought
    I get a response through the response event??? Maybe someone has an idea... here
    the code:
    import weblogic.jws.control.JwsContext;
    import MySAPControllerControl.MySAPServiceRequest;
    import MySAPControllerControl.MySAPServiceResponse;
    import MySAPControllerControl.MySAPEventEvent;
    * @jws:target-namespace namespace="com.js.sap"
    public class SapService
    * @jws:control
    private MySAPControllerControl SAPController;
    /** @jws:context */
    JwsContext context;
    * @jws:operation
    public void CallSapConnector()
    try
    MySAPControllerControl.MySAPServiceRequest.PurchaseOrderGetDetail peter
    = new MySAPControllerControl.MySAPServiceRequest.PurchaseOrderGetDetail();
    peter.PURCHASEORDER = "4500006374";
    peter.ITEMS = "X";
    SAPController.MySAPService(peter);
    catch(Exception ex)
    System.out.println(ex.getMessage());
    private void SAPController_onMySAPServiceResponse(java.lang.String requestID,
    MySAPServiceResponse.PurchaseOrderGetDetailResponse PurchaseOrderGetDetailResponse)
    String a = PurchaseOrderGetDetailResponse.PO_ITEMS.toString();
    System.out.println(a);
    System.out.println(requestID);
    private void SAPController_onMySAPEvent(MySAPEventEvent.BAPI_PO_GETDETAIL
    BAPIPOGETDETAIL)
    System.out.println("Event:" + BAPIPOGETDETAIL.ITEMS);
    private void SAPController_onAsyncServiceResponse(java.lang.Object asyncResp)
    private void SAPController_onEvent(java.lang.Object event)
    private void SAPController_onAsyncServiceError(java.lang.String asyncError,
    java.lang.String asyncError2)
    thanks for any response!
    regards, uggar

    can u pls tell me how u solved it
    I am working on  Production system  when I go to rsa5 it displaying the msg
    No valid application component hierarchy exists
    Message no. R8053
    Diagnosis
    Currently no application component hierarchy ("APCO_MERGED", database table RODSAPPL and RODSAPPLT) exists in the system. This is required in BW so that the DataSources can be displayed correctly in the source system tree.
    Procedure
    Copy the application component hierarchy from the Content using transaction RSA9.
    In development system I went to RSA9 & transferred the application componet then its asks or pkg name I have given the pkg  name also before use the datasrcs , I have transported the same thing to production before transporting the datasrcs but in production the application component herarachy did not get transported I think that why its giving the msg No valid application component hierarchy exists but my datasrcs got transported ,pls suggest me what has to be done
    Should I import the same request in to production again
    Or shall I run rsa9 again & transfer the application component hierarchy again & transport it to production id I do this will already transported datarscs have any effect in production

  • An error occurred during event processing in view InboxResultView_VP.htm

    Hi All,
    I am getting this specific error when I am trying to access one of the BSP application in HCM.
    An error occurred during event processing in view InboxResultView_VP.htm
    An exception has occurredException Class CX_SY_REF_IS_INITIAL
    Text: Dereferencing of the NULL reference
    Program: CL_HREIC_IB_ENTITY_WI_VP======CP
    Include: CL_HREIC_IB_ENTITY_WI_VP======CM003
    Source Text Row: 20
    ASAP help would be required on the same.
    Thanks
    Swati

    Hi Swati,
    Check this links, it should help to you
    CRM ICWC
    ICWC View Cannot be Displayed
    Regards
    Ramesh

  • Application View Deigner GUI and File Adapter

    I am currently experiencing a problem with the Application View Designer GUI
    tool. When I tried to edit an user-defined application view or the
    associated Connection Factory for the File Adapter using the GUI tool, I got
    an "Unsupported Adapter Type" error message -Adapter BEA_FS_ADAPTER doe not
    support GUI-based configuration - please see attachment "error1.jpg" for the
    screen capture. This Event associated with this application view is
    currently functioning properly. It just seems that I am no longer able to
    make any change to the current configuration (I had successfully made the
    similar edits before without any problems).
    When the above problem occurred, I then tried to create a new application
    view based on the File Adapter, I got and "UnsupportedAdapterException"
    error-please see attachement "error2.jpg" for the screen capture.
    Has anyone encountered the similar errors before? Insight or thoughts?
    Perhaps it was due to corruption of certain files or database? Any
    information will be greatly appreciated!
    Thanks, Qianqian
    [error2.jpg]
    [error1.jpg]

    Hi,
    1.Status: TO_BE_DELIVERED
    Which means that the message was successfully delivered from Integration Server point of view and it states that the messages is initially handed over to the Messaging System.
    TO_BE_DELIVERED occurs while the message is put into the Messaging System receive queue.
    Regards
    Agasthuri Doss

  • Event 5000 | Application | Error | MSExchange Management Application | All Events

    We have a client who has a SBS 2011 Std SP1 running MSExchange 2010.  Recently we moved their locally hosted email to Office 365 and shut off all off the MSExchange services as none of them are necessary for the client anymore.
    Since the migration, we have been receiving the error in the title.  Below is the full error.
    Log: Application
    Type: Error
    Event: 5000
    Agent Time: 2015-04-07 03:01:44Z
    Event Time: 07:00:12 AM 7-Apr-2015 UTC
    Source: MSExchange Management Application
    Category: AdminAuditLog
    Username: N/A
    Computer: Servername.Domain.local
    Description: Failed to save admin audit log for this cmdlet invocation.
    Organization: 
    Log content:
    Subject: NT AUTHORITY\SYSTEM (DataCollectorSvc) : Update-SafeList
    Body:
    Cmdlet Name: Update-SafeList
    Object Modified: Domain.local/MyBusiness/Users/SBSUsers/Admin Assistant Modified Object Resolved Name: Admin Assistant
    Parameter: Identity = Domain.local/MyBusiness/Users/SBSUsers/Admin Assistant
    Caller: NT AUTHORITY\SYSTEM (DataCollectorSvc)
    Succeeded: False
    Error: Microsoft.Exchange.Data.Storage.ConnectionFailedTransientException: Cannot open mailbox /o=First Organization/ou=Exchange Administrative Group (FYDIBOHF23SPDLT)/cn=Configuration/cn=Servers/cn=DWSSERVER/cn=Microsoft System Attendant. ---&gt; Microsoft.Mapi.MapiExceptionNetworkError:
    MapiExceptionNetworkError: Unable to make connection to the server. (hr=0x80040115, ec=-2147221227)\nDiagnostic context:\n    ......\n    Lid: 10648   dwParam: 0x6D9      Msg: EEInfo: Generating
    component: 2\n    Lid: 14744   dwParam: 0x6D9      Msg: EEInfo: Status: 1753\n    Lid: 9624    dwParam: 0x6D9      Msg: EEInfo: Detection location: 501\n   
    Lid: 13720   dwParam: 0x6D9      Msg: EEInfo: Flags: 0\n    Lid: 11672   dwParam: 0x6D9      Msg: EEInfo: NumberOfParameters: 4\n    Lid: 8856   
    dwParam: 0x6D9      Msg: EEInfo: prm[0]: Unicode string: ncacn_ip_tcp\n    Lid: 8856    dwParam: 0x6D9      Msg: EEInfo: prm[1]: Unicode string: Servername.domain.local\n   
    Lid: 12952   dwParam: 0x6D9      Msg: EEInfo: prm[2]: Long val: -1527653632\n    Lid: 12952   dwParam: 0x6D9      Msg: EEInfo: prm[3]: Long val: 382312662\n   
    Lid: 59505   StoreEc: 0x824     \n    Lid: 36081  \n    Lid: 52465   StoreEc: 0x80040115\n    Lid: 60065  \n    Lid: 33777   StoreEc: 0x80040115\n   
    Lid: 59805  \n    Lid: 52209   StoreEc: 0x80040115\n    Lid: 56583  \n    Lid: 52487   StoreEc: 0x80040115\n    Lid: 19778  \n    Lid: 27970  
    StoreEc: 0x80040115\n    Lid: 17730  \n    Lid: 25922   StoreEc: 0x80040115\r\n   at Microsoft.Mapi.MapiExceptionHelper.InternalThro...
    We are going to rebuild them a new server soon, but we would like to stop the event alerts.  Please assist.

    Ryan
    Can we get your event viewer logs?  Have you run a malwarebytes scan?  I cant find anything about that application other than on malware forums, what is it?
    Please provide us with your Event Viewer administrative logs by following these steps:
    Click Start Menu
    Type eventvwr into Search programs and files (do not hit enter)
    Right click eventvwr.exe and click Run as administrator
    Expand Custom Views
    Click Administrative Events
    Right click Administrative Events
    Save all Events in Custom View As...
    Save them in a folder where you will remember which folder and save as Errors.evtx
    Go to where you saved Errors.evtx
    Right click Errors.evtx -> send to -> compressed (zipped) folder
    Upload the .zip file to Onedrive or a file sharing service and put a link to it in your next post
    If you have updated to win 8.1 and you get the error message "the system cannot find the file specified" it is a known problem.  The
    work around is to edit the registry.  If you are not comfortable doing this DONT.  If you are, backup the key before you do
    Press Win+"R" and input regedit
    Navigate to:
    HKEY_LOCAL_MACHINE\SOFTWARE\Microsoft\Windows\CurrentVersion\WINEVT\Channels. Delete "Microsoft-Windows-DxpTaskRingtone/Analytic"
    Wanikiya and Dyami--Team Zigzag

  • Problem with flash in events packaged application

    Hi,
    I´v installed the Events packaged application.
    On page 24 you can show some flash-reports. But I get an error: xml loading failed (flow_flash_chart_Rxxxxx).
    What can be the reason? serverside or desktopside?
    Any reaction will be appreciated.
    Leo

    Try the following
    close all browser windows and open Windows Explorer
    in the address bar type %appdata%\Adobe
    delete the 'Flash Player' folder in there
    in the address bar type %appdata%\Macromedia
    delete the 'Flash Player' folder in there
    Now try again to change any Flash Player settings.

  • What is the diffrence between sap events and application events

    Hi all,
    what is the diffrence between sap events and application events.Can any one tell me with examples.
    regards,

    Hi,
    Look at this,
    <b>System Events (Default)</b>
    The event is passed to the application server, but does not trigger the PAI. If you have registered an event handler method in your ABAP program for the event (using the SET HANDLER statement), this method is executed on the application server.
    Within the event handler method, you can use the static method SET_NEW_OK_CODE of the global class CL_GUI_CFW to set a function code and trigger the PAI event yourself. After the PAI has been processed, the PBO event of the next screen is triggered.
    The advantage of using this technique is that the event handler method is executed automatically and there are no conflicts with the automatic input checks associated with the screen. The disadvantage is that the contents of the screen fields are not transported to the program, which means that obsolete values could appear on the next screen. You can work around this by using the SET_NEW_OK_CODE method to trigger field transport and the PAI event after the event handler has finished.
    <b>Application Events</b>
    The event is passed to the application server, and triggers the PAI. The function code that you pass contains an internal identifier. You do not have to evaluate this in your ABAP program. Instead, if you want to handle the event, you must include a method call in a PAI dialog module for the static method DISPATCH of the global class CL_GUI_CFW. If you have defined an event handler method in your ABAP program for the event (using the SET HANDLER statement), the DISPATCH method calls it. After the event handler has been processed, control returns to the PAI event after the DISPATCH statement and PAI processing continues.
    The advantage of this is that you can specify yourself the point at which the event is handled, and the contents of the screen fields are transported to the application server beforehand. The disadvantage is that this kind of event handling can lead to conflicts with the automatic input checks on the screen, causing events to be lost.
    Hope u understood.
    Thanks&Regards,
    Ruthra.R

  • Application view creation in WLI SERVER

              Hi folks,
              w,r.to my previous mail,Iam getting the following errors while i try to login
              to the Application view console in WLI
              Server.pl. anyone try to help me to sort this problem.Iam new to WLI Server.
              <Cannot startup connection pool "wliPool" java.sql.SQLException: No suitable driver>
              <Jun 13, 2003 5:02:45 PM IST> <Error> <JDBC> <001059> <Error during Data Source
              creation: weblogic.common.ResourceException: DataSource(WLAI_DataSource) can't
              be created with non-existent Pool (connection or multi) (wliPool)
              at weblogic.jdbc.common.internal.JdbcInfo.validateConnectionPool(JdbcInfo.java:127)
              at weblogic.jdbc.common.internal.JdbcInfo.startDataSource(JdbcInfo.java:260)
              at weblogic.jdbc.common.internal.JDBCService.addDeploymentx(JDBCService.java:293)
              at weblogic.jdbc.common.internal.JDBCService.addDeployment(JDBCService.java:270)
              <Jun 13, 2003 5:02:49 PM IST> <Alert> <JMS> <040052> <JMSServer "WLIJMSServer",
              store failed to open, java.io.IOException: JMS JDBC store, connection pool = <wliPool>,
              prefix = <myserver___PBPUBLIC>: connection pool does not exist.
              java.io.IOException: JMS JDBC store, connection pool = <wliPool>, prefix = <myserver___PBPUBLIC>:
              connection pool does not exist
              >
              <Jun 13, 2003 5:02:52 PM IST> <Error> <Connector> <190024> << Calumma LDAP JCA
              Resource Adapter_LdapConnector > Error making initial connections for pool. Reason:
              CreateManagedConnection Error: 192.168.66.144:389>
              <Jun 13, 2003 5:03:04 PM IST> <Error> <AI> <000000> <Failed to initialize the
              WLI-Application Integration enterprise application due to an exception while initializing
              JMS resources.
              com.bea.wlai.JMSResourceException: Failed to initialize the WLAI asynchronous
              service request JMS Queue 'WLAI_ASYNC_REQUEST_QUEUE' bound at JNDI context 'com.bea.wlai.ASYNC_REQUEST_QUEUE'.
              Root Cause: javax.naming.NameNotFoundException: Unable to resolve 'com.bea.wlai.ASYNC_REQUEST_QUEUE'
              Resolved: 'com.bea.wlai' Unresolved:'ASYNC_REQUEST_QUEUE' ; remaining name 'ASYNC_REQUEST_QUEUE'
              at weblogic.rmi.internal.ServerRequest.sendReceive(ServerRequest.java:174)
              at weblogic.rmi.cluster.ReplicaAwareRemoteRef.invoke(ReplicaAwareRemoteRef.java:263)
              at weblogic.rmi.cluster.ReplicaAwareRemoteRef.invoke(ReplicaAwareRemoteRef.java:230)
              at weblogic.jndi.internal.ServerNamingNode_WLStub.lookup(Unknown Source)
              at weblogic.jndi.internal.WLContextImpl.lookup(WLContextImpl.java:337)
              at weblogic.jndi.internal.WLContextImpl.lookup(WLContextImpl.java:332)
              at javax.naming.InitialContext.lookup(InitialContext.java:347)
              at com.bea.wlai.JMSHelper.initQueue(Unknown Source)
              <Jun 13, 2003 5:03:05 PM IST> <Critical> <WebLogicServer> <000286> <Failed to
              invoke startup class "LwcStartup", java.lang.ClassNotFoundException: com.bea.lwclient.Startup>
              <Jun 13, 2003 5:03:07 PM IST> <Notice> <Management> <141052> <Application Poller
              started for development server.>
              <Jun 13, 2003 5:03:11 PM IST> <Error> <HTTP> <101165> <Could not load user defined
              filter: com.bea.b2b.transport.http.TransportServletFilter
              java.lang.ClassNotFoundException: com.bea.b2b.transport.http.TransportServletFilter
              at weblogic.utils.classloaders.GenericClassLoader.findClass(GenericClassLoader.java:179)
              at weblogic.utils.classloaders.ChangeAwareClassLoader.findClass(ChangeAwareClassLoader.java:62)
              at java.lang.ClassLoader.loadClass(ClassLoader.java:306)
              at java.lang.ClassLoader.loadClass(ClassLoader.java:262)
              at weblogic.utils.classloaders.ChangeAwareClassLoader.loadClass(ChangeAwareClassLoader.java:41)
              at weblogic.servlet.internal.WebAppServletContext.loadClass(WebAppServletContext.java:4714)
              at weblogic.servlet.internal.WebAppServletContext.registerFilter(WebAppServletContext.java:2446)
              at weblogic.servlet.internal.WebAppServletContext.initFilters(WebAppServletContext.java:2433)
              at weblogic.servlet.internal.WebAppServletContext.preloadResources(WebAppServletContext.java:2703)
              at weblogic.servlet.internal.HttpServer.preloadResources(HttpServer.java:563)
              at weblogic.servlet.internal.WebService.preloadResources(WebService.java:476)
              at weblogic.t3.srvr.ServletInitRunner$1.run(ServletInitRunner.java:50)
              at weblogic.security.service.SecurityServiceManager.runAs(SecurityServiceManager.java:780)
              at weblogic.t3.srvr.ServletInitRunner.run(ServletInitRunner.java:46)
              at java.lang.Thread.run(Thread.java:536)
              >
              <Jun 13, 2003 5:03:11 PM IST> <Error> <socket> <000433> <Unable to load performance
              pack, using Java I/O instead.
              Please ensure that libmuxer library is in :'/home/tsuresh/j2sdk1.4.0/jre/lib/i386/client:/home/tsuresh/j2sdk1.4.0/jre/lib/i386:/home/tsuresh/j2sdk1.4.0/jre/../lib/i386'
              java.lang.UnsatisfiedLinkError: no muxer in java.library.path
              java.lang.UnsatisfiedLinkError: no muxer in java.library.path
              at java.lang.ClassLoader.loadLibrary(ClassLoader.java:1410)
              at java.lang.Runtime.loadLibrary0(Runtime.java:772)
              at java.lang.System.loadLibrary(System.java:832)
              at weblogic.socket.PosixSocketMuxer.<init>(PosixSocketMuxer.java:180)
              at sun.reflect.NativeConstructorAccessorImpl.newInstance0(Native Method)
              at sun.reflect.NativeConstructorAccessorImpl.newInstance(NativeConstructorAccessorImpl.java:39)
              at sun.reflect.DelegatingConstructorAccessorImpl.newInstance(DelegatingConstructorAccessorImpl.java:27)
              at java.lang.reflect.Constructor.newInstance(Constructor.java:274)
              at java.lang.Class.newInstance0(Class.java:296)
              at java.lang.Class.newInstance(Class.java:249)
              at weblogic.socket.SocketMuxer.makeTheMuxer(SocketMuxer.java:54)
              at weblogic.socket.SocketMuxer.getMuxer(SocketMuxer.java:37)
              at weblogic.t3.srvr.ListenThread.run(ListenThread.java:205)
              >
              <Jun 13, 2003 5:03:12 PM IST> <Notice> <Management> <141030> <Starting discovery
              of Managed Server... This feature is on by default, you may turn this off by passing
              -Dweblogic.management.discover=false>
              <Jun 13, 2003 5:03:12 PM IST> <Notice> <WebLogicServer> <000354> <Thread "ListenThread.Default"
              listening on port 7010>
              <Jun 13, 2003 5:03:12 PM IST> <Notice> <WebLogicServer> <000331> <Started WebLogic
              Admin Server "myserver" for domain "ldap_adapterdomain" running in Development
              Mode>
              <Jun 13, 2003 5:03:15 PM IST> <Notice> <WebLogicServer> <000365> <Server state
              changed to RUNNING>
              <Jun 13, 2003 5:03:15 PM IST> <Notice> <WebLogicServer> <000360> <Server started
              in RUNNING mode>
              <Jun 13, 2003 5:04:18 PM IST> <Error> <AI> <000000> <Could not create NamespacePersistence
              Object.
              -------- Begin level 0 Exception Stack Trace --------
              com.bea.wlai.repository.PersistenceException: Failed to initialize WLI repository
              access layer for the Application Integration subcomponent because the JDBC data
              source was not found at JNDI name WLAI_DataSource due to Unable to resolve 'WLAI_DataSource'
              Resolved: '' Unresolved:'WLAI_DataSource'
              at com.bea.wlai.repository.NamespacePersistence.initDataSource(Unknown
              Source)
              at com.bea.wlai.repository.NamespacePersistence.<init>(Unknown Source)
              at com.bea.wlai.NamespaceManagerImpl.<init>(Unknown Source)
              at com.bea.wlai.NamespaceManagerImpl.getInstance(Unknown Source)
              at com.bea.wlai.client.bean.NamespaceManagerBean.establishImpl(Unknown
              Source)
              at com.bea.wlai.client.bean.NamespaceManagerBean.ejbCreate(Unknown Source)
              at com.bea.wlai.client.bean.NamespaceManagerBean_k6j0cj_Impl.ejbCreate(NamespaceManagerBean_k6j0cj_Impl.java:122)
              at sun.reflect.NativeMethodAccessorImpl.invoke0(Native Method)
              at sun.reflect.NativeMethodAccessorImpl.invoke(NativeMethodAccessorImpl.java:39)
              at sun.reflect.DelegatingMethodAccessorImpl.invoke(DelegatingMethodAccessorImpl.java:25)
              at java.lang.reflect.Method.invoke(Method.java:324)
              at weblogic.ejb20.pool.StatelessSessionPool.createBean(StatelessSessionPool.java:151)
              at weblogic.ejb20.pool.StatelessSessionPool.getBean(StatelessSessionPool.java:101)
              at weblogic.ejb20.manager.StatelessManager.preInvoke(StatelessManager.java:142)
              at weblogic.ejb20.internal.BaseEJBObject.preInvoke(BaseEJBObject.java:127)
              at weblogic.ejb20.internal.StatelessEJBObject.preInvoke(StatelessEJBObject.java:61)
              at com.bea.wlai.client.bean.NamespaceManagerBean_k6j0cj_EOImpl.getRootNamespace(NamespaceManagerBean_k6j0cj_EOImpl.java:83)
              at jsp_servlet.__nshierarchy._jspService(__nshierarchy.java:115)
              at weblogic.servlet.jsp.JspBase.service(JspBase.java:27)
              at weblogic.servlet.internal.ServletStubImpl$ServletInvocationAction.run(ServletStubImpl.java:1058)
              at weblogic.servlet.internal.ServletStubImpl.invokeServlet(ServletStubImpl.java:401)
              at weblogic.servlet.internal.ServletStubImpl.invokeServlet(ServletStubImpl.java:306)
              at weblogic.servlet.internal.RequestDispatcherImpl.include(RequestDispatcherImpl.java:543)
              at weblogic.servlet.internal.RequestDispatcherImpl.include(RequestDispatcherImpl.java:369)
              at weblogic.servlet.jsp.PageContextImpl.include(PageContextImpl.java:136)
              at jsp_servlet.__display._jspService(__display.java:511)
              at weblogic.servlet.jsp.JspBase.service(JspBase.java:27)
              at weblogic.servlet.internal.ServletStubImpl$ServletInvocationAction.run(ServletStubImpl.java:1058)
              rgds
              Suresh.K
              

    1) http://commerce.bea.com/showproduct.jsp?family=WLP&major=8.1&minor=4
              2)Make sure you add your JDBC drivers to the beginning of CLASSPATH in either setDomainenv.cmd or setEnv.cmd
              3)What really helped was BEA support and playing with BEA's JDBC example that shows how to create and deploy and use a data source.
              http://dev2dev.bea.com/codelibrary/code/examples_jdbc.jsp

  • Multi day events in Month View.

    Multi day events in month view only display on the first day. Checking all day event fixes this, but none of my multi day events are in fact all day. If I sync with my iphone, it does mark both days on the multi day event in month view.
    In week view they display correctly, but I like to have the month drawn out.
    I am surprised to come across this hang up. Other calendars I have used always displayed such events across the month view.
    Is this a bug or lack of feature?
    R

    Bug or design flaw?
    Try setting it as a recurring event (yeah, I know, it's not a great solution, but it gets the job done)

  • Multi-day events only showing up on first day of event in year view

    There are several things about iCal that I find annoying (makes me miss my old Palm PDA sometimes), such as being able to set my own default meeting times, meetings being defaulted to all-day, no way to connect a contact to the event without having to invite them to join (my old Palm did this and it was a very useful tool). Each of these has many discussions already on these topics with a solution (except adding a contact to an event), such as simply typing in the meeting time when you setup the event.
    However, I can't find a discussion on the following question, and therefore no solution. Hope someone out there knows the answer:
    Why do Multi-day events only show up on the first day of the event in year view, and is there a way to change it?
    Thanks in advance!

    Greetings,
    Perhaps I'm not setting up my events as you are but I see a color for each day of my multi-day event.
    My steps:
    1. Add a multi-day event to iCal:
    2. Switch to Year view and observe the matching date range (26th - 29th):
    Suggestions:
    Make sure you have all your updates installed (Apple > Software Update).
    Toggle the "all day" check box for the events in question and see if that makes the events show up in Year view.
    If that doesn't help, please provide a screen shot of the edit window of the event in question so we can see how you have it configured:
    Cheers!

  • ICal multi-day (not all day) event  in Month view not displayed over days

    What is it when I have an event that starts on a Wednesday and 4:00pm and goes to Friday at 6:00pm (not clicked as an All Day Event), (in Month view) the only day showing the event is the first day?! Shouldn't it show it over the course of the 3 days!? Outlook does that (I can't believe I just referenced Outlook in an Apple Discussion... in a positive light no less). Is it a setting?

    Yes, Apple any help for this would be great. The only way I've come to work around is to use multiple events. So for a flight out of town would be one event, and the return another. I would create a third event then for the actual time out of town. There must be some way to easily fix this.

Maybe you are looking for

  • Best practice for creating RFC destination entries for 3rd parties(Biztalk)

    Hi, We are on SAP ECC 6 and we have been creating multiple RFC destination entries for the external 3rd party applications such as Biz-talk and others using TCP/IP connection type and sharing the programid. The RFC connections with IDOC as data flow

  • I have managed to lose the space bar on my keyboard. How do I get it back?

    Just got my ipad for Xmas. It really is great, but I have a lot to learn. Somehow when exploring the keyboard I have managed to replace the keyboard with various other exclamation marks etc. I can't get the space bar back. Please help a poor beginner

  • Error in Template field

    Hi I need to create a report with template by using Bi publisher. I have a xml data of the report and created rtf template with Desktop plugin.I made all placeholders and alloted required fields to them. Here the issue is i need to divide the field b

  • Why can't I password protect?

    I have password-protected a Numbers file, and yet it opens simply by clicking on it, without my having to enter a password.  So, apparently the password protection is not working. I would like to find out what is wrong with this feature in Numbers, a

  • USB 3.0 PORT wont work...

    I have a Toshiba Satellite P745-S4217.My only problem is that I can't get my 3.0 USB port to work.Kindly assist as it has been working before but now it can recognize any hardware.please someone........