ServletContextListener not receiving event

Hi
Running 9.0.3 Enterpise with Webcache on Windows2000.
I have a test servlet that wait for the ServletContextListener event to fire. This happens on OC4J standalone but not on Enterpise release...
Here is servlet
package co.za.mtn.wizard.servlets;
import javax.servlet.ServletContextListener;
import javax.servlet.ServletContextEvent;
import javax.servlet.ServletContext;
public class TestListener implements ServletContextListener
private ServletContext context = null;
public void contextInitialized(ServletContextEvent event)
System.out.println("Doing servlet context listener in TestListener");
context = event.getServletContext();
public void contextDestroyed(ServletContextEvent event)
context = event.getServletContext();
This is configured in WEB.XML as first element
<listener>
<listener-class>co.za.mtn.wizard.servlets.TestListener</listener-class>
</listener>
Any ideas as how to get this to fire?
Tks
Andre

adding to the above
I have two servlets that implements this listener:
One in AppserverRoot and one in wizprepaid
Both application are set to auto-start.
From the log this only fires on the first action to this applciation.
Here is server.xml
<?xml version = '1.0'?>
<!DOCTYPE application-server PUBLIC "-//Evermind//DTD Orion Application-server//EN" "http://xmlns.oracle.com/ias/dtds/application-server.dtd">
<application-server localhostIsAdmin="true" application-directory="../applications" deployment-directory="../application-deployments" connector-directory="../connectors">
     <rmi-config path="./rmi.xml"/>
     <jms-config path="./jms.xml"/>
     <log>
          <file path="../log/server.log"/>
     </log>
     <transaction-config timeout="30000"/>
     <java-compiler name="modern" in-process="false" extdirs="c:\Oracle9i_App\jdk\jre\lib\ext"/>
     <global-application name="default" path="application.xml"/>
     <application name="AppserverRoot" path="../applications/AppserverRoot.ear" auto-start="true"/>
     <application name="MtnIsis" path="../applications/MtnIsis.ear" parent="AppserverRoot" auto-start="true"/>
     <application name="WizIsis" path="../applications/WizIsis.ear" parent="MtnIsis" auto-start="true"/>
     <application name="wizprepaid" path="../applications/wizprepaid.ear" parent="WizIsis" auto-start="true"/>
     <application name="WizardNis" path="../applications/WizardNis.ear" parent="wizprepaid" auto-start="true"/>
     <application name="WizPPMED" path="../applications/WizPPMED.ear" parent="WizardNis" auto-start="true"/>
     <application name="WizardSMS" path="../applications/WizardSMS.ear" parent="WizPPMED" auto-start="true"/>
     <application name="CheckStatus" path="../applications/CheckStatus.ear" parent="WizardSMS" auto-start="true"/>
     <application name="Wizescalations" path="../applications/Wizescalations.ear" auto-start="true"/>
     <application name="WizIntegration" path="../applications/WizIntegration.ear" parent="CheckStatus" auto-start="true"/>
     <application name="wizmonitor" path="../applications/wizmonitor.ear" auto-start="true"/>
     <global-web-app-config path="global-web-application.xml"/>
     <web-site default="true" path="./default-web-site.xml"/>
     <cluster id="-485368505"/>
</application-server>
Tks
Andre

Similar Messages

  • VI containing Event Structure will not receive front panel events in LabVIEW Real-Time.

    Hi again, I'm working in my first UI (attached VI).
    It works when running directly from PC. It doesn't when running from cRIO, there's the message "VI containing Event Structure will not receive front panel events in LabVIEW Real-Time". I've been reading and I found that "Event structures on RT targets do not support events associated with user interface objects, such as VI panels or controls. For example, associating the Value Change event with a control does not work. RT targets support only user events".
    Is that the problem? If it is, how can I create Mouse Up, Mouse Enter, Value Change (or other user interface events) user events?
    If I run my VI in FPGA mode should it run?
    Attachments:
    HMI.vi ‏33 KB

    Since it looks like you are new to the whole RT and machine control, I recommend giving this a good read: NI LabVIEW for CompactRIO Developer's Guide
    There are only two ways to tell somebody thanks: Kudos and Marked Solutions
    Unofficial Forum Rules and Guidelines

  • Not receiving COMPLETE event in URLLoader

    Hi:
    I'm querying a web application in a remote server through XML files and receiving answers in the same file format. Until now, sometimes I received a connection error:
    Error #2044: Unhandled ioError:. text=Error #2032: Stream Error. URL: http://server/Services/startSesion.com
        at reg_jugadores_fla::MainTimeline/queryGQ()
        at reg_jugadores_fla::MainTimeline/reg_jugadores_fla::frame1()
    When this occurs, trying to access the services through a web browser, there's a test page where you can try queries, returns a "500 Internal server error". I managed that problem adding a listener to catch the error:
    xmlSendLoad.addEventListener(IOErrorEvent.IO_ERROR, catchIOError);
    But since yesterday I can't connect anymore using Flash while it's possible to access the test page. I'm not able to talk to any support guy as the company is closed for vacations! I added listeners to try to know what's happening and this is the result in the output window:
    openHandler: [Event type="open" bubbles=false cancelable=false eventPhase=2]
    progressHandler loaded:154 total: 154
    httpStatusHandler: [HTTPStatusEvent type="httpStatus" bubbles=false cancelable=false eventPhase=2 status=200]
    AFAIK, status=200 means OK but why the COMPLETE event isn't dispatched?. So, is there anything I can do or just wait until the tech guys return from the beach?
    Thanks in advance
    queryGQ(sessionURL,sessionQS);  // Start session
    stop();
    function queryGQ(url:String,qs:String):void {
    var serviceURL:URLRequest = new URLRequest("http://server/Services/"+url);
    serviceURL.data = qs;
    serviceURL.contentType = "text/xml";
    serviceURL.method = URLRequestMethod.POST;
    var xmlSendLoad:URLLoader = new URLLoader();
    configureListeners(xmlSendLoad);
    xmlSendLoad.load(serviceURL);
    function configureListeners(dispatcher:IEventDispatcher):void {
    dispatcher.addEventListener(Event.COMPLETE, loadXML);
    dispatcher.addEventListener(Event.OPEN, openHandler);
    dispatcher.addEventListener(ProgressEvent.PROGRESS, progressHandler);
    dispatcher.addEventListener(SecurityErrorEvent.SECURITY_ERROR, securityErrorHandler);
    dispatcher.addEventListener(HTTPStatusEvent.HTTP_STATUS, httpStatusHandler);
    dispatcher.addEventListener(IOErrorEvent.IO_ERROR, catchIOError);
    function openHandler(event:Event):void {
    trace("openHandler: " + event);
    function progressHandler(event:ProgressEvent):void {
    trace("progressHandler loaded:" + event.bytesLoaded + " total: " + event.bytesTotal);
    function securityErrorHandler(event:SecurityErrorEvent):void {
    trace("securityErrorHandler: " + event);
    function httpStatusHandler(event:HTTPStatusEvent):void {
    trace("httpStatusHandler: " + event);
    function ioErrorHandler(event:IOErrorEvent):void {
    trace("ioErrorHandler: " + event);

    Hugo,
    View may not fire events. View may call method on other controller (component / custom) and this controller fires event.
    You are absolutely right: in WD only instantiated controllers receives the event, event itself does not cause controller instantiation.
    The only controller that is always instantiated is component controller.
    Custom controllers instantiated on demand when their context is accessed or user-defined method called.
    As far as view may not have externally visible context nodes and methods (you may not add view controller as required to other one and use nodes/methods of view), the only time when view is instantiated is when it get visible for first time.
    To solve your problem, try the following:
    1. Save event parameters to component controller context node element before firing event.
    2. Create mapped node in target view and set node from controller as source.
    3. In wdDoInit of target view insert the following code:
    wdThis.<eventHandlerName>(
    null, //no wdEvent
    wdConext.current<NameOfMappedNode>Element().get<NameOfParamA>(),
    wdConext.current<NameOfMappedNode>Element().get<NameOfParamB>(),
    Valery Silaev
    SaM Solutions
    http://www.sam-solutions.net

  • Not Receiving Sync Event

    Hello, All!!!
    I am creating one Application with the FMS 3.
    I am creating a connection on the FMS 3.
    I can see that user is connected to the Flash Media Server3.
    But I am unable to receiving the Event of the Sync of the
    Remote Shared Object.
    Even I have tried the documentation Sample named
    "SharedBalls" Application of the FMS.
    Even in this application I am not Receiving Sync
    Event.
    I am using Flash Prof CS4 and Windows 7.
    Help me to solve this...
    Thanks in Advance.....

    Hi,
    Using the same application which you have mentioned, i am able to get the sync event triggered at the client side. But i tried in WIndows XP as client. Can you pls give me the exact player version which you are publishing and the flash player associated with the Flash CS4. Which version of FMS are you using?
    Regards,
    Janaki L

  • Event dispatch between two objects not received

    Hi,
    In my application there are two objects: one is
    myAc:ArrayCollection and the second is a mySprite:Sprite. myAC
    stores coordinates and other custom fields of the mySprite objects.
    I would like the sprite object to dispatch an event to the
    array so that when changes are made to the mySprite object the myAC
    can update itself.
    In the mySprite object I have added the following code to
    dispatch the event.
    var e:Event = new Event("spriteMove", true);
    dispatchEvent(e);
    trace("dispatched");
    In the myAC object I have set the following listener
    this.addEventListener("spriteMove", spriteMoveHandler, true);
    private function spriteMoveHandler( event:Event ):void
    trace("recd event");
    var sp:Object = event.target;
    trace(sp.x);
    I do not receive the event in the myAC object.
    However, when I set a similar thing between the mySprite
    object and one of its subobjects viz. myPoint I am able to receive
    the event.
    Thanks for the help,
    Raju

    Please do not duplicate your posts. It can be very confusing when two different persons answer the post in different ways.

  • TFS2013 Checkin Event Notification not received

    Hi all,
    (Very new to TFS, first time posting)
    We have just started exploring TFS2013, and are trying to listen to a checkin event from the collection WSSAS. This was attempted by using BisSubscribe.exe tool. The command run was
    "%bispath%" /eventType CheckinEvent /deliveryType EmailPlaintext /collection "http://server:8080/tfs/WSSAS" /address "%myemail%"
    But checkin notifications (in this case we do commit and push) were not received. Checking [tbl_EventSubscription] under database TFS_WSSAS it seems the subscription registration is successful. The record is there with EventType=CheckinEvent with a subscriberId=some
    GUID, Schedule=0, DeliveryType=1 & Address=my email address.
    After each commit and push new records can be seen under [tbl_JobHistory] in database TFS_Configuration with ResultMessage in the last added record as
    Notification Job Summary:
    0/0 emails delivered.
    0/0 soap notifications delivered. 
    0 errors.
    0 warnings.
    I also tried to alter EventType=GitPushEvent in the subscription, still unsuccessful.
    Can anyone please let me know what I am doing wrong? Thanks :(
    Ange

    Hi Ange,  
    Thanks for your post.
    First, please ensure you configured the Email Alert Settings in your TFS 2013 Admin Console, and you can receive the test email successfully after clicked the
    Send Test Email.
    http://msdn.microsoft.com/en-us/library/ms400808.aspx.
    Second, create a new check-in alert in your team project Web Access admin
    Alerts tab page, then check the if you can receive the check-in alert.
     http://msdn.microsoft.com/en-us/library/ms181334.aspx.
    We are trying to better understand customer views on social support experience, so your participation in this interview project would be greatly appreciated if you have time. Thanks for helping make community forums a great place.
    Click
    HERE to participate the survey.

  • Exchange: receives email but not cal events?

    I set up an Exchange email account on my iPhone. It receives email fine (when logged into my corporate VPN) but does not receive Outlook calendar events. Can anyone else confirm this behavior? Is there a fix?
    It seems strange that the iPhone Mail client would selectively filter out the meeting notices. The Mail app on OS X receives the Outlook meeting notices fine (with basically the same Mail account setup).

    Thanks, Jose. But I am not "syncing" my iPhone calendar. I am simply downloading emails from the Exchange server (I guess I'm technically syncing emails to the server). And as far as I understand, the Outlook meeting notices are simply emails with attachments. This is why I don't understand why the meeting notices aren't showing up.
    I don't expect these Outlook meetings to show up in the iPhone calendar (unless I sync with a host computer). But I do want the iPhone Mail client to show me the emails that contain these calendar events.

  • Not receiving email notifications of iCal event invitations from other parties.

    I am not receiving emails for iCal event invitations from other parties, but the invitations ARE in my iCal Inbox. I don't use iCal often, so I never proactively go in to check my Inbox there, but rather have always depended on receiving the email notification of an event invite to know to add it to my iCal. I can SEND invitations to others successfully with other parties receiving MY email notifications, I'm just not receiving them via email.
    I've now missed two very important meetings because I never received the email invitations to add an event, which were the only forms of correspondence for both. Can anyone help me? Thank you!

    Hello mcdannej,
    While a Verizon employee may occasionally post here, this community is meant mainly for peer-to-peer support. If you need to talk to a Verizon representative, you should contact customer service directly through our Support Page or Contact Us.

  • My schedule does not receive invitations to events

    My schedule does not receive invitations to events, i Have a icloud Account, my invites arrive to my friends, but theyr never arrive, why?

    Hi matthuynh,
    Welcome to the Apple Support Communities!
    I understand you are not receiving iMessages when you are not connected to the internet. You will need some sort of data connection to receive an iMessage, Wi-Fi or cellular data. If you are connected to data and are still not receiving iMessages please you the information in the following article to isolate and resolve the situation.
    iOS: Troubleshooting Messages
    http://support.apple.com/kb/ts2755
    Please let me know if I can be of further assistance.
    Have a great day,
    -Joe

  • Problem receiving event invitation-not on "me" card

    I have been trying to delete past event notifications/invitation, but when I select them, I get the error message "Problem receiving event invitation - not on "me" card. Someone invited you to an event using an email address that isn’t on your “me” card in Address Book. Find your email address in the following list and add it to your card in Address Book."
    What does this mean? The message does not show a 'following list'. I checked my Address Book "me" card, and it contains all my e-mail addresses.
    thanks!

    I get these all the time, and have yet to figure out how to get them to add to my calendar.
    I'm trying to figure out how to "open" it so I can see what the address conflict is. There appears to be no way to view the actual event, so I can see what address the event thinks is "missing.
    I will keep trying to resolve this (what I call a bug) problem, and will reply here if I come up with something.
    Steve

  • Calendar Server user can not receive external invites

    Hi,
    We have a MacPro running ML Server 10.8.5 with 10 user accounts using the calendar and file server services.
    Calendar server is where the issue is. We have 10 + users that are set up to send and receive external invites in calendar server without a problem. Recently, one of the user accounts stopped receiving external invites. The problem began not long after I set up a second account for the same user for their shared calendars (they requested this so all shared cals were not on their iOS devices). Although I used a separate email, it was an alias of the first so may have caused a conflict / problem (?). I got rid of the second account with no change to the first. 
    The account still receives invites from the other internal user accounts and the other services such as file sharing are unaffected. There are no other problems with the functionality of that user, in calendar or otherwise.
    I have tried changing the email associated with that user account and setting up a new test user account (in Server). The email invite will still not come through.
    I have changed it back to the way it was originally.
    Summary
    One of 10 user accounts does not receive external invites
    Was working until recently
    The account can send invites to external addresses
    Same email address will not work even when associated with a different account
    I have included a large section of the calendar error log from the part that references the email address (in red) attached to the user account in question. Apologies, I am not familiar with deciphering this information. That is why I've come here.
    Any help would be very much appreciated. Thanks.
    Error Log Info
    2013-10-01 15:50:43+1000 [-] [caldav-1]  [PooledMemCacheProtocol,client] [twistedcaldav.cache.MemcacheResponseCache#debug] Adding to cache: '21a0cc58845276ae69a523c52cc9d642' = '((I0\\nNtp1\\nI6863881604889304901\\n(I0\\nNtp2\\n(dp3\\n(I207\\n(dp4\\nS\\'DA V\\'\\np5\\n(lp6\\nS\\'1, access-control, calendar-access, calendar-schedule, calendar-auto-schedule, calendar-availability, inbox-availability, calendar-proxy, calendarserver-private-events, calendarserver-private-comments, calendarserver-sharing, calendarserver-sharing-no-scheduling, calendar-query-extended, calendar-default-alarms, addressbook, extended-mkcol, calendarserver-principal-property-search, calendarserver-principal-search\\'\\np7\\nasS\\'Content-Type\\'\\np8\\n(lp9\\nS \\'text/xml\\'\\np10\\nasS"<?xml version=\\'1.0\\' encoding=\\'UTF-8\\'?>\\\\n<multistatus xmlns=\\'DAV:\\'>\\\\r\\\\n  <response>\\\\r\\\\n    <href>/principals/__uids__/E47FA586-0340-45AF-8DDB-70F0B77E5A06/</href>\\\\r\\\ \n    <propstat>\\\\r\\\\n      <prop>\\\\r\\\\n        <calendar-user-address-set xmlns=\\'urn:ietf:params:xml:ns:caldav\\'>\\\\r\\\\n          <href xmlns=\\ (truncated, continued)
    2013-10-01 15:50:43+1000 [-] [caldav-1] 'DAV:\\'>/principals/__uids__/E47FA586-0340-45AF-8DDB-70F0B77E5A06/</href>\\\\r \\\\n          <href xmlns=\\'DAV:\\'>/principals/users/ashtonbishop/</href>\\\\r\\\\n          <href xmlns=\\'DAV:\\'>mailto:[email protected]</href>\\\\r\\\\n          <href xmlns=\\'DAV:\\'>urn:uuid:E47FA586-0340-45AF-8DDB-70F0B77E5A06</href>\\\\r\\\\n         </calendar-user-address-set>\\\\r\\\\n        <displayname>Ashton Bishop</displayname>\\\\r\\\\n        <email-address-set xmlns=\\'http://calendarserver.org/ns/\\'>\\\\r\\\\n          <email-address>[email protected]</email-address>\\\\r\\\\n        </email-address-set>\\\\r\\\\n      </prop>\\\\r\\\\n      <status>HTTP/1.1 200 OK</status>\\\\r\\\\n    </propstat>\\\\r\\\\n  </response>\\\\r\\\\n</multistatus>"\\np11\\ntt.'
    2013-10-01 15:50:43+1000 [-] [caldav-1]  [PooledMemCacheProtocol,client] [twistedcaldav.memcachepool.MemCachePool#debug] Busied client: <twistedcaldav.memcachepool.PooledMemCacheProtocol instance at 0x10a50e200>
    2013-10-01 15:50:43+1000 [-] [caldav-1]  [PooledMemCacheProtocol,client] [twistedcaldav.memcachepool.MemCachePool#debug] Clients #free: 4, #busy: 1, #pending: 0, #queued: 0
    2013-10-01 15:50:43+1000 [-] [caldav-1]  [PooledMemCacheProtocol,client] [twistedcaldav.memcachepool.MemCachePool#debug] Freed client: <twistedcaldav.memcachepool.PooledMemCacheProtocol instance at 0x10a50e200>
    2013-10-01 15:50:43+1000 [-] [caldav-1]  [PooledMemCacheProtocol,client] [twistedcaldav.memcachepool.MemCachePool#debug] Clients #free: 5, #busy: 0, #pending: 0, #queued: 0
    2013-10-01 15:50:43+1000 [-] [caldav-1]  [HTTPChannel,31943,192.168.15.1] [twext.web2.server#info] PROPFIND /calendars/__uids__/AE518560-2AD4-49AC-8DA6-05CCB82C4D7C/719e7bd2-73b9-485b-b1c 8-83ad63011a05/ HTTP/1.1
    2013-10-01 15:50:43+1000 [-] [caldav-1]  [HTTPChannel,31943,192.168.15.1] [twistedcaldav.directory.digest.DigestCredentialsMemcache#debug] Getting Cache Token for '178760298581319517811431231781551239741271129174943556363'
    2013-10-01 15:50:43+1000 [-] [caldav-1]  [HTTPChannel,31943,192.168.15.1] [twistedcaldav.memcachepool.MemCachePool#debug] Busied client: <twistedcaldav.memcachepool.PooledMemCacheProtocol instance at 0x10a50e200>
    2013-10-01 15:50:43+1000 [-] [caldav-1]  [HTTPChannel,31943,192.168.15.1] [twistedcaldav.memcachepool.MemCachePool#debug] Clients #free: 4, #busy: 1, #pending: 0, #queued: 0
    2013-10-01 15:50:43+1000 [-] [caldav-1]  [PooledMemCacheProtocol,client] [twistedcaldav.memcachepool.MemCachePool#debug] Freed client: <twistedcaldav.memcachepool.PooledMemCacheProtocol instance at 0x10a50e200>
    2013-10-01 15:50:43+1000 [-] [caldav-1]  [PooledMemCacheProtocol,client] [twistedcaldav.memcachepool.MemCachePool#debug] Clients #free: 5, #busy: 0, #pending: 0, #queued: 0
    2013-10-01 15:50:43+1000 [-] [caldav-1]  [PooledMemCacheProtocol,client] [calendarserver.platform.darwin.od.opendirectory#debug] Checking digest auth for user 'intern2' (tries remaining: 3)
    2013-10-01 15:50:43+1000 [-] [caldav-1]  [PooledMemCacheProtocol,client] [calendarserver.platform.darwin.od.opendirectory#debug] Digest auth for user 'intern2' result: True
    2013-10-01 15:50:43+1000 [-] [caldav-1]  [-] [twistedcaldav.cache.MemcacheResponseCache#debug] hashing key for get: ('PROPFIND', '/principals/__uids__/AE518560-2AD4-49AC-8DA6-05CCB82C4D7C/', '/calendars/__uids__/AE518560-2AD4-49AC-8DA6-05CCB82C4D7C/719e7bd2-73b9-485b-b1 c8-83ad63011a05/', '0', -6078480706465304126) to '97c1466c67a97bfc6d06eb3e3f7a3153'
    2013-10-01 15:50:43+1000 [-] [caldav-1]  [-] [twistedcaldav.cache.MemcacheResponseCache#debug] Checking cache for: '97c1466c67a97bfc6d06eb3e3f7a3153'
    2013-10-01 15:50:43+1000 [-] [caldav-1]  [-] [twistedcaldav.memcachepool.MemCachePool#debug] Busied client: <twistedcaldav.memcachepool.PooledMemCacheProtocol instance at 0x10a50e200>
    2013-10-01 15:50:43+1000 [-] [caldav-1]  [-] [twistedcaldav.memcachepool.MemCachePool#debug] Clients #free: 4, #busy: 1, #pending: 0, #queued: 0
    2013-10-01 15:50:43+1000 [-] [caldav-1]  [PooledMemCacheProtocol,client] [twistedcaldav.memcachepool.MemCachePool#debug] Freed client: <twistedcaldav.memcachepool.PooledMemCacheProtocol instance at 0x10a50e200>
    2013-10-01 15:50:43+1000 [-] [caldav-1]  [PooledMemCacheProtocol,client] [twistedcaldav.memcachepool.MemCachePool#debug] Clients #free: 5, #busy: 0, #pending: 0, #queued: 0
    2013-10-01 15:50:43+1000 [-] [caldav-1]  [PooledMemCacheProtocol,client] [twistedcaldav.cache.MemcacheResponseCache#debug] Not in cache: '97c1466c67a97bfc6d06eb3e3f7a3153'
    2013-10-01 15:50:43+1000 [-] [caldav-1]  [PooledMemCacheProtocol,client] [twistedcaldav.memcacher.Memcacher#debug] Getting Cache Token for 'AE518560-2AD4-49AC-8DA6-05CCB82C4D7C'
    2013-10-01 15:50:43+1000 [-] [caldav-1]  [PooledMemCacheProtocol,client] [twistedcaldav.memcachepool.MemCachePool#debug] Busied client: <twistedcaldav.memcachepool.PooledMemCacheProtocol instance at 0x10a50e200>
    2013-10-01 15:50:43+1000 [-] [caldav-1]  [PooledMemCacheProtocol,client] [twistedcaldav.memcachepool.MemCachePool#debug] Clients #free: 4, #busy: 1, #pending: 0, #queued: 0
    2013-10-01 15:50:43+1000 [-] [caldav-1]  [PooledMemCacheProtocol,client] [twistedcaldav.memcachepool.MemCachePool#debug] Freed client: <twistedcaldav.memcachepool.PooledMemCacheProtocol instance at 0x10a50e200>
    2013-10-01 15:50:43+1000 [-] [caldav-1]  [PooledMemCacheProtocol,client] [twistedcaldav.memcachepool.MemCachePool#debug] Clients #free: 5, #busy: 0, #pending: 0, #queued: 0
    2013-10-01 15:50:43+1000 [-] [caldav-1]  [PooledMemCacheProtocol,client] [txdav.base.datastore.util.QueryCacher#debug] Getting Cache Token for 'homeMetaData:6262'
    2013-10-01 15:50:43+1000 [-] [caldav-1]  [PooledMemCacheProtocol,client] [twistedcaldav.memcachepool.MemCachePool#debug] Busied client: <twistedcaldav.memcachepool.PooledMemCacheProtocol instance at 0x10a50e200>
    2013-10-01 15:50:43+1000 [-] [caldav-1]  [PooledMemCacheProtocol,client] [twistedcaldav.memcachepool.MemCachePool#debug] Clients #free: 4, #busy: 1, #pending: 0, #queued: 0
    2013-10-01 15:50:43+1000 [-] [caldav-1]  [PooledMemCacheProtocol,client] [twistedcaldav.memcachepool.MemCachePool#debug] Freed client: <twistedcaldav.memcachepool.PooledMemCacheProtocol instance at 0x10a50e200>
    2013-10-01 15:50:43+1000 [-] [caldav-1]  [PooledMemCacheProtocol,client] [twistedcaldav.memcachepool.MemCachePool#debug] Clients #free: 5, #busy: 0, #pending: 0, #queued: 0
    2013-10-01 15:50:43+1000 [-] [caldav-1]  [PooledMemCacheProtocol,client] [twistedcaldav.memcacher.Memcacher#debug] Getting Cache Token for '6262'
    2013-10-01 15:50:43+1000 [-] [caldav-1]  [PooledMemCacheProtocol,client] [twistedcaldav.memcachepool.MemCachePool#debug] Busied client: <twistedcaldav.memcachepool.PooledMemCacheProtocol instance at 0x10a50e200>
    2013-10-01 15:50:43+1000 [-] [caldav-1]  [PooledMemCacheProtocol,client] [twistedcaldav.memcachepool.MemCachePool#debug] Clients #free: 4, #busy: 1, #pending: 0, #queued: 0
    2013-10-01 15:50:43+1000 [-] [caldav-1]  [PooledMemCacheProtocol,client] [twistedcaldav.memcachepool.MemCachePool#debug] Freed client: <twistedcaldav.memcachepool.PooledMemCacheProtocol instance at 0x10a50e200>
    2013-10-01 15:50:43+1000 [-] [caldav-1]  [PooledMemCacheProtocol,client] [twistedcaldav.memcachepool.MemCachePool#debug] Clients #free: 5, #busy: 0, #pending: 0, #queued: 0
    2013-10-01 15:50:43+1000 [-] [caldav-1]  [PooledMemCacheProtocol,client] [txdav.base.datastore.util.QueryCacher#debug] Getting Cache Token for 'objectWithName:6262:719e7bd2-73b9-485b-b1c8-83ad63011a05'
    2013-10-01 15:50:43+1000 [-] [caldav-1]  [PooledMemCacheProtocol,client] [twistedcaldav.memcachepool.MemCachePool#debug] Busied client: <twistedcaldav.memcachepool.PooledMemCacheProtocol instance at 0x10a50e200>
    2013-10-01 15:50:43+1000 [-] [caldav-1]  [PooledMemCacheProtocol,client] [twistedcaldav.memcachepool.MemCachePool#debug] Clients #free: 4, #busy: 1, #pending: 0, #queued: 0
    2013-10-01 15:50:43+1000 [-] [caldav-1]  [PooledMemCacheProtocol,client] [twistedcaldav.memcachepool.MemCachePool#debug] Freed client: <twistedcaldav.memcachepool.PooledMemCacheProtocol instance at 0x10a50e200>
    2013-10-01 15:50:43+1000 [-] [caldav-1]  [PooledMemCacheProtocol,client] [twistedcaldav.memcachepool.MemCachePool#debug] Clients #free: 5, #busy: 0, #pending: 0, #queued: 0
    2013-10-01 15:50:43+1000 [-] [caldav-1]  [-] [twistedcaldav.memcacher.Memcacher#debug] Getting Cache Token for 'E47FA586-0340-45AF-8DDB-70F0B77E5A06'
    2013-10-01 15:50:43+1000 [-] [caldav-1]  [-] [twistedcaldav.memcachepool.MemCachePool#debug] Busied client: <twistedcaldav.memcachepool.PooledMemCacheProtocol instance at 0x10a50e200>
    2013-10-01 15:50:43+1000 [-] [caldav-1]  [-] [twistedcaldav.memcachepool.MemCachePool#debug] Clients #free: 4, #busy: 1, #pending: 0, #queued: 0
    2013-10-01 15:50:43+1000 [-] [caldav-1]  [PooledMemCacheProtocol,client] [twistedcaldav.memcachepool.MemCachePool#debug] Freed client: <twistedcaldav.memcachepool.PooledMemCacheProtocol instance at 0x10a50e200>
    2013-10-01 15:50:43+1000 [-] [caldav-1]  [PooledMemCacheProtocol,client] [twistedcaldav.memcachepool.MemCachePool#debug] Clients #free: 5, #busy: 0, #pending: 0, #queued: 0
    2013-10-01 15:50:43+1000 [-] [caldav-1]  [PooledMemCacheProtocol,client] [txdav.base.datastore.util.QueryCacher#debug] Getting Cache Token for 'homeMetaData:6241'
    2013-10-01 15:50:43+1000 [-] [caldav-1]  [PooledMemCacheProtocol,client] [twistedcaldav.memcachepool.MemCachePool#debug] Busied client: <twistedcaldav.memcachepool.PooledMemCacheProtocol instance at 0x10a50e200>
    2013-10-01 15:50:43+1000 [-] [caldav-1]  [PooledMemCacheProtocol,client] [twistedcaldav.memcachepool.MemCachePool#debug] Clients #free: 4, #busy: 1, #pending: 0, #queued: 0
    2013-10-01 15:50:43+1000 [-] [caldav-1]  [PooledMemCacheProtocol,client] [twistedcaldav.memcachepool.MemCachePool#debug] Freed client: <twistedcaldav.memcachepool.PooledMemCacheProtocol instance at 0x10a50e200>
    2013-10-01 15:50:43+1000 [-] [caldav-1]  [PooledMemCacheProtocol,client] [twistedcaldav.memcachepool.MemCachePool#debug] Clients #free: 5, #busy: 0, #pending: 0, #queued: 0
    2013-10-01 15:50:43+1000 [-] [caldav-1]  [PooledMemCacheProtocol,client] [twistedcaldav.memcacher.Memcacher#debug] Getting Cache Token for '6241'
    2013-10-01 15:50:43+1000 [-] [caldav-1]  [PooledMemCacheProtocol,client] [twistedcaldav.memcachepool.MemCachePool#debug] Busied client: <twistedcaldav.memcachepool.PooledMemCacheProtocol instance at 0x10a50e200>
    2013-10-01 15:50:43+1000 [-] [caldav-1]  [PooledMemCacheProtocol,client] [twistedcaldav.memcachepool.MemCachePool#debug] Clients #free: 4, #busy: 1, #pending: 0, #queued: 0
    2013-10-01 15:50:43+1000 [-] [caldav-1]  [PooledMemCacheProtocol,client] [twistedcaldav.memcachepool.MemCachePool#debug] Freed client: <twistedcaldav.memcachepool.PooledMemCacheProtocol instance at 0x10a50e200>
    2013-10-01 15:50:43+1000 [-] [caldav-1]  [PooledMemCacheProtocol,client] [twistedcaldav.memcachepool.MemCachePool#debug] Clients #free: 5, #busy: 0, #pending: 0, #queued: 0
    2013-10-01 15:50:43+1000 [-] [caldav-1]  [PooledMemCacheProtocol,client] [txdav.base.datastore.util.QueryCacher#debug] Getting Cache Token for 'objectWithName:6241:calendar'
    2013-10-01 15:50:43+1000 [-] [caldav-1]  [PooledMemCacheProtocol,client] [twistedcaldav.memcachepool.MemCachePool#debug] Busied client: <twistedcaldav.memcachepool.PooledMemCacheProtocol instance at 0x10a50e200>
    2013-10-01 15:50:43+1000 [-] [caldav-1]  [PooledMemCacheProtocol,client] [twistedcaldav.memcachepool.MemCachePool#debug] Clients #free: 4, #busy: 1, #pending: 0, #queued: 0
    2013-10-01 15:50:43+1000 [-] [caldav-1]  [PooledMemCacheProtocol,client] [twistedcaldav.memcachepool.MemCachePool#debug] Freed client: <twistedcaldav.memcachepool.PooledMemCacheProtocol instance at 0x10a50e200>
    2013-10-01 15:50:43+1000 [-] [caldav-1]  [PooledMemCacheProtocol,client] [twistedcaldav.memcachepool.MemCachePool#debug] Clients #free: 5, #busy: 0, #pending: 0, #queued: 0
    2013-10-01 15:50:43+1000 [-] [caldav-1]  [PooledMemCacheProtocol,client] [txdav.base.datastore.util.QueryCacher#debug] Getting Cache Token for 'homeChildMetaData:6242'
    2013-10-01 15:50:43+1000 [-] [caldav-1]  [PooledMemCacheProtocol,client] [twistedcaldav.memcachepool.MemCachePool#debug] Busied client: <twistedcaldav.memcachepool.PooledMemCacheProtocol instance at 0x10a50e200>
    2013-10-01 15:50:43+1000 [-] [caldav-1] 

    Thanks so much for your comment ~morgen.
    Sorry, I should have mentioned, that it what my first thought so I tested by ensuring the email address associated with the user account (not hosted on the server but by Google Apps) is recieving all other mail.
    I have also tried:
    - Setting all accounts (calendar, email and contact card with associated email address) in another local user on a defferent Mac. So it's not a local user or Mail app issue.
    - Sending invites from different Calendar apps and email accounts - iCloud, Gmail (both using Apple Calendar and the web interface).
    That's why I came back around to thinking it must be calendar server related. However is there is absolutly no conntact with the server with incoming email invites I must be looking in the wrong place (and the wrong forum - sorry!).
    Does anyone have any ideas where I should be focusing my efforts?
    Many thanks in advance.

  • ICal invites are not received by some people (I know why, but Apple won't fix it)

    I switched to icloud a while back and have the maddening problem of SOME people not receiving invites, and have discovered what causes it (at least in my case):
    If the user you are sending to has an itunes (or apple id) account with that email as the login (and that email is NOT an icloud email) they will never receive the iCal invite! Instead it gets routed to their (non setup) icloud account. If they start using icloud for their calendars with this same external email address as login, they will receive them there (directly on their calendar if it is setup). Apple refuses to forward it to their real email address, the one we are sending it to. I have reported it to Apple several times but they are not inclined to fix it, probably because they want to force external users to use icloud. This is mega frustrating. Many of my friends do not receive invites, forcing me to use Google calendar for events with those friends. I prefer the general interface and look of icloud/ical invites, but I need to be able to actually invite people!

    ssuess wrote:
    Not for me, but let me verify the following type scenario with you:
    1. Your person to invite has a gmail address ([email protected])
    2. That gmail address is their Apple ID/iTunes login name (this is the most important piece)
    3. They may have some icloud service on (like note syncing) but do not use icloud calendaring or mail (or may have signed up for mail but never check it)
    4. Your icloud/ical invite arrives properly in their gmail inbox (at [email protected])?
    Is all the above true? For me, the above scenario results in no email being received at the address I sent it to (number 4), it gets routed/lost in icloud if that is their Apple ID login.
    Like I said, I do not have the issue you have, all my invites are received regardless of the email provider and user ID's I just send to the correct address and that's it. Frankly if what you said was common the service would be useless, but it works for millions. The problem is at your end, not everybody's.
    The login name is just a text string to iCloud, not an address.

  • Exchange 2013 SP1 users not receiving quota warning email message

    Hi,
    We are on Exchange 2013 SP1 and Exchange 2010 SP3 co-existence mode and currently migrating users from Exchange 2010 to 2013.  We have noticed that users are not receiving email message when their mailbox quota warning when its near to maximum limit.
    If I log in via OWA it shows the notification (Pop up) that your mailbox is almost full but no message received in email.  Most of the users do not log into OWA but only uses Outlook.
    It looks like other people are also seeing this similar issue but I am unable to find any solution for it.
    How users will know if their mailbox is almost full if they are traveling and only using Mobile phone for emails to send and receive.
    Thanks,
    Raman

    Hi Thanks for your response. Our Quota is set on Database level. I am seeing these event ids as well.
    Log Name: Application Source: MSExchangeIS Date: 12/31/2014 10:07:12 PM Event ID: 1077 Task Category: MAPI Level: Warning Keywords: Classic User: N/A Computer: Exch2013mail01.company.com Description: The mailbox e3d48b23-0740-46ab-89f7-3b035dacf28f on database
    326f0997-4fe5-4b31-873b-6a3396e7a91c is approaching its storage limit. A notification has been sent to the user. This warning will not be sent again for at least twenty four hours.
    ========================
    Log Name: Application Source: MSExchange Store Driver Submission Date: 12/31/2014 10:07:12 PM Event ID: 1012 Task Category: MSExchangeStoreDriverSubmission Level: Error Keywords: Classic User: N/A Computer: Exch2013mail01.company.com Description: The store
    driver failed to submit event 8237691 mailbox e3d48b23-0740-46ab-89f7-3b035dacf28f MDB 326f0997-4fe5-4b31-873b-6a3396e7a91c and couldn't generate an NDR due to exception Microsoft.Exchange.MailboxTransport.StoreDriverCommon.InvalidSenderException at Microsoft.Exchange.MailboxTransport.Shared.SubmissionItem.SubmissionItemUtils.CopySenderTo(SubmissionItemBase
    submissionItem, TransportMailItem message) at Microsoft.Exchange.MailboxTransport.Submission.StoreDriverSubmission.MailItemSubmitter.GenerateNdrMailItem() at Microsoft.Exchange.MailboxTransport.Submission.StoreDriverSubmission.MailItemSubmitter.<>c__DisplayClass1.<SubmitNdrForFailedSubmission>b__0()
    at Microsoft.Exchange.MailboxTransport.StoreDriverCommon.StorageExceptionHandler.RunUnderTableBasedExceptionHandler(IMessageConverter converter, StoreDriverDelegate workerFunction).
    Raman

  • Why my clients are not receiving KB943729? Logs on the replica server indicate they are being received properly.

    Hello Everyone.
    Thank you very much for looking into this,
    Let me explain a little bit of the big corporate picture, we have one main upstream server, and 50+ replica server
    that monthly receives updates from our upstream server. my boss asked me to deploy to all Windows XP machines the update: KB943729, This is in the "Update" category, I selected it and approved for all the 50+ facilities, (each one has one replica
    server on its site). according to the below logs it is supposed that the update was approved and deployed correct?  
    The issue is that none of all the Windows XP machines at none of the 50+ facilities report or show the update installed or ready to be installed. please look at the log I collected from one of the replica servers on path %ProgramFiles%\Update
    Services\LogFiles. this is part of the Change.log:
    2014-10-02 23:29:40.571 UTC
    Successfully deployed deployment(Install) of Group Policy Preference Client Side Extensions for Windows
    XP x64 Edition (KB943729) by DomainName\joe.gallo UpdateID:32B49C6F-47E3-4D3B-B189-CE3560D11AD3 Revision Number:104 TargetGroup:All-FAC-GRP
    2014-10-02 23:29:40.852 UTC
    Successfully deployed deployment(Install) of Group Policy Preference Client Side Extensions for Windows
    XP (KB943729) by DomainName\joe.gallo UpdateID:B71AD818-A99D-4309-B350-83FE9399B437 Revision Number:105 TargetGroup:All-FAC-GRP
    2014-10-02 23:29:48.180 UTC
    Downloading retried
    2014-10-02 23:30:06.118 UTC
    Synchronization manually started
    2014-10-02 23:30:06.806 UTC
    WSUS configuration has been changed
    2014-10-02 23:30:17.462 UTC
    Downloading retried
    It looks like it has been properly distributed from the upstream server correct?
    but in this replica server on the WSUS Console in Syncronization as you can see I ran two manuall synchronization afterwards, and I still see 0 new updates, revised or expired.
    Is this ok? since this is coorporate i can not see the Windows or log into an XP machine in fact, to verify, but might they have received the update? people are reporting they dont see it installed.
    Thank you very much, any help is greatly appreciated.

    I was able to retrieve the WindowsUpdate.log from one of the XP machines that is not receiving any update.
    2014-10-03 11:53:44:425
    1436 51c
    PT +++++++++++  PT: Synchronizing server updates  +++++++++++
    2014-10-03 11:53:44:425
    1436 51c
    PT  + ServiceId = {3DA21691-E39D-4DA6-8A4B-B43877BCB1B7}, Server URL = http://replica1.domainname.net/ClientWebService/client.asmx
    2014-10-03 11:53:44:597
    1436 51c
    PT WARNING: Cached cookie has expired or new PID is available
    2014-10-03 11:53:44:597
    1436 51c
    PT Initializing simple targeting cookie, clientId = 85a90155-a5de-4835-8475-42aa15b21a69, target group =
    All-FAC-GRP, DNS name = winxpcomputer.domainname.net
    2014-10-03 11:53:44:597
    1436 51c
    PT  Server URL = http://replica1.domainname.net/SimpleAuthWebService/SimpleAuth.asmx
    2014-10-03 11:53:44:597
    1436 51c
    PT WARNING: GetAuthorizationCookie failure, error = 0x80244001, soap client error = 1, soap error code = 0, HTTP status code = 200
    2014-10-03 11:53:44:597
    1436 51c
    PT WARNING: Failed to initialize Simple Targeting Cookie: 0x80244001
    2014-10-03 11:53:44:597
    1436 51c
    PT WARNING: PopulateAuthCookies failed: 0x80244001
    2014-10-03 11:53:44:597
    1436 51c
    PT WARNING: RefreshCookie failed: 0x80244001
    2014-10-03 11:53:44:597
    1436 51c
    PT WARNING: RefreshPTState failed: 0x80244001
    2014-10-03 11:53:44:597
    1436 51c
    PT WARNING: Sync of Updates: 0x80244001
    2014-10-03 11:53:44:597
    1436 51c
    PT WARNING: SyncServerUpdatesInternal failed: 0x80244001
    2014-10-03 11:53:44:597
    1436 51c
    Agent  * WARNING: Failed to synchronize, error = 0x80244001
    2014-10-03 11:53:44:768
    1436 51c
    Report WARNING: CEventNamespaceDefinition::Init failed = 8024f002.
    2014-10-03 11:53:44:768
    1436 51c
    Report WARNING: InitReportingComponents failed: 8024f002
    2014-10-03 11:53:44:768
    1436 51c
    Agent  * WARNING: Exit code = 0x80244001
    2014-10-03 11:53:44:768
    1436 51c
    Agent *********
    2014-10-03 11:53:44:768
    1436 51c
    Agent **  END  **  Agent: Finding updates [CallerId = AutomaticUpdates]
    2014-10-03 11:53:44:768
    1436 51c
    Agent *************
    2014-10-03 11:53:44:768
    1436 51c
    Agent WARNING: WU client failed Searching for update with error 0x80244001
    2014-10-03 11:53:44:784
    1436 12cc
    AU >>##  RESUMED  ## AU: Search for updates [CallId = {7B025166-FFE8-45EE-BBC5-34FF0153A674}]
    2014-10-03 11:53:44:784
    1436 12cc
    AU  # WARNING: Search callback failed, result = 0x80244001
    2014-10-03 11:53:44:784
    1436 12cc
    AU  # WARNING: Failed to find updates with error code 80244001
    2014-10-03 11:53:44:784
    1436 12cc
    AU #########
    2014-10-03 11:53:44:784
    1436 12cc
    AU ##  END  ##  AU: Search for updates [CallId = {7B025166-FFE8-45EE-BBC5-34FF0153A674}]
    2014-10-03 11:53:44:784
    1436 12cc
    AU #############
    2014-10-03 11:53:44:784
    1436 12cc
    AU AU setting next detection timeout to 2014-10-03 23:53:44
    2014-10-03 11:53:44:784
    1436 12cc
    AU Setting AU scheduled install time to 2014-10-04 11:00:00
    2014-10-03 12:23:23:038
    1436 ac8
    AU AU received policy change subscription event
    2014-10-03 14:21:25:602
    1436 ac8
    AU AU received policy change subscription event

  • SBWP inbox not receiving mails

    Hi Team ,
    I have a query , two sap user ids say A and B .i am sending mails to sap inbox for both the users A and B . A user is receiving mails in documents but B is not receiving any documents ...in workflow log the step executed succesfully..
    when i checked the settings of both users try to send sample mails from both users . for A it is working fine but for B mails are going to the default id maintained in SU01 tcode ..
    compared the settings of both users but i am not getting correctly ..try to suggest me where actually to check the settings of both the users to find the solution..
    thanks ,
    sandeep chennoju

    Hi Modak ,
    My requirement is three level approval of product creation(article) , completely custom screen,table,business object and workflow template .
    When a product is created i am triggering the workflow  by using 'create' event(custom), and created two more events approve and reject which acts as  terminating events for the approval task . two outcomes are came from task one from approve and one from reject ..here inside task i am using asynchronous method to call the screen ..
    when approved goes to second level and so on when rejects intimation should go to below approvers ..
    here every thing is working fine but for user B when ever the approve or reject event triggers it is getting error in event receiver mail is getting to his sap office mail .
    SBWP : when double click the error in event receiver mail
    SWETYPV :
    in swel 'feed back after error' is coming .
    thanks ,
    sandeep ch

Maybe you are looking for

  • Multiple calendars from different users on one machine

    I would like to have a computer near our phone that has each family member's ical calendar information displayed on one calendar. Is it possible to sync a computer to multiple ical accounts and have all those accounts displayed on one calendar ... au

  • Web Service Model ---javax.xml.rpc.soap.SOAPFaultException

    Hi Experts,                  I am working with webservices model Using NWDS 7.013. One application (webservice model) was developed in old portal server after that portal server was scrapped. XI server only available now. Currently i have a new serve

  • Service PO Account assignment Error

    Hello All We have created Service PO with 10 line items ( Cost centre K ) & Deleted all the line  & again restored the  same but in service line deletion indicator is still there in each line. During removal of deletion indicator it is giving error P

  • I want to create an ALV  with two row fields name

    Hi I want to create an ALV  with two row fields name. please suggest how to do it or send some sample code thanks

  • Lightroom 4 - creates a new copy of the catalog

    I use to have all my pictures in a single catalog - "MyPics". It contains around 50.000 photos. Last week, LR4 has silently created a new copy of my catalog: "MyPics-2". No warning, no message. I did not notice immediately. The 2 catalog files have r