Calendar object with Microsoft DST patch

We have been testing changes to the 2007 daylight saving time. We applied Microsoft DST patch to Windows 2000 with Java 1.3.1_18 and Windows 2003 with Java 5.0 Update 8. On both systems the calendar object return time zone of GMT although the system clock is set for Eastern.
If the Microsoft patch is removed, the correct time zone is again returned. Has anyone else seen this behavior when Windows OS patch is applied?

> Does anyone know exactly what the problem is (what has Microsoft changed) ?
a) Go to <http://www.ciac.org/ciac/bulletins/p-006.shtml> and search for the "CAN-" links. Each component has a one paragraph description.
b) According to <http://patch-info.de/IE/2004/10/12/20-35-16.html> it contains:
mshtml.dll (6,0,2800,1476 - 29,09,2004)
urlmon.dll (6,0,2800,1474 - 23,09,2004)
shdocvw.dll (6,0,2800,1584 - 27,08,2004)
wininet.dll (6,0,2800,1468 - 23,08,2004)
browseui.dll (6,0,2800,1584 - 22,08,2004)
shlwapi.dll (6,0,2800,1584 - 20,08,2004)
c) Some of the things that could be breaking are DOM references and DHTML, which are advanced features that not every application uses.
From <http://www.microsoft.com/technet/security/bulletin/MS04-038.mspx>:
"Caveats: Microsoft Knowledge Base Article 834707 <http://support.microsoft.com/?id=834707> documents the currently known issues that customers may experience when they install this security update. The article also documents recommended solutions for these issues."
Among other issues, that page says [<b>emphasis</b> added]:
- After you install the MS04-038 security updates for Internet Explorer, some dynamic HTML (DHTML) <b>drag-and-drop operations are blocked</b> by Internet Explorer.
- Security update 834707 includes a change to the way that Internet Explorer handles function pointers. This change in functionality occurs when an event handler points directly to a Document Object Model (DOM) function [...] Change in Internet Explorer function pointer behavior <b>causes code to not be executed</b> when an event handler is set to directly reference a DOM function after installing MS04-038 security updates.
BTW, Note 785308 has been updated with a workaround.
Regards,
Sean

Similar Messages

  • Calendar Connectivity with Microsoft Exchange Server

    Hi Everybody,
    We want to use Calendar scheduling activity of Micrsoft Exchange Server in NW Portal Version 7 SP9. However we are stuck up with the following problem.
    The Scenario is like:
    1)The IIS Server and MS Exchange Server are in same domain.
    2)MSX-A component has been /copied installed on IIS Server 5.
    3)DLL registered.
    4)We are using MS Oultook 2003 and Exchange Server 2003.
    5)An IIS website has been created following the guidelines from a PDF document( Its wihtout SSO).
    6)Logon Locally permissions given to all users.
    When the CDO Version test is executed the common error "Microsoft Outlook not configured for Corporate/Work group access. Reconfigure MS Outlook and try again" is thrown.
    As per the information from sdn only MS Outlook 2000 needs to be configured for this.
    When the Data Retrieval test is executed an error message "CDO MAPI_E_NOT_INITIALIZED(80040605)" is shown.
    Please share your views on this situation.
    Suresh Yadav

    If I were you, I would create an OSS customer message for this.
    Maybe a quick fix though... Have you installed Outlook 2003 on the same server as IIS is running on?  Have you run outlook at least once and connected it to your Exchange server, setting it as the default mail client?
    Also, there is a note about what to do for exchange transports when you do a portal patch.  Applying those steps might be a good idea even if you have not done an upgrade.
    Good Luck.
    Regards,
    Graham.

  • IPad Calendar sync with Microsoft Exchange problem

    I use Microsoft Exchange to sync my Google Calendars with my iPad & iPhone. I have a work, personal & business calendar. On my iPhone it sync all three calendars, but on my iPad it only sync my personal calendar. What can I do to fix this, if anything or does there need to be a software update?

    Go to m.google.com/sync and set which calendars you wish to show up. Nothing broken.

  • Problems deserializing objects with Microsoft VM

    I am getting a 30 second delay when deserializing objects: using Java 1.1.8 ObjectOutputStream.defaultReadObject() causes a 30 second delay. This only happens on Internet Explorer using the Microsoft Virtual Machine.Any ideas what's causing this delay?

    HERE'S THE CODE ..
    URLConnection con = servlet.openConnection();
    con.setDoInput(true);
    con.setDoOutput(true);
    con.setUseCaches(false);
    con.setRequestProperty("Content-Type", "application/x-www-form-urlencoded");
    ObjectOutputStream out = new ObjectOutputStream(SecurityToolkit.openOutputStream(con));
    int numObjects = objs.length;
    for (int x = 0; x < numObjects; x++) {
    out.writeObject(objs[x]);
    out.flush();
    out.close();
    InputStream inStream = SecurityToolkit.openInputStream(con);
    ObjectInputStream in = new ObjectInputStream(inStream);
    return in;
    So .. this is the ObjectInputStream returned and objects are read off this stream. But reading hangs for 30 seconds and then starts reading again.

  • Changing TimeZone for Calendar object doesnt change its time

    Hy, I have a Calendar object with I have set with a Date but I I want from this calendar with the Date set, set other timezone for this calendar and get the corresponding time(always gettting the correct time if is in daylightsavings) but I get the same time.
    Calendar calendario = Calendar.getInstance
    calendario.setTime(new Date());
    System.out.println(calendario.getTime()); *// for example I get the 14:12:25 hours for GMT+01:00*
    calendario.setTimeZone(TimeZone.getTimeZone("GMT+02:00")); *//change time zone using GMT*
    System.out.println(calendario.getTime()); *// I get the same hour: 14:12:25*
    Why? How to do it using GMT format?
    Thanks
    Edited by: user13162080 on 13-sep-2011 14:31
    Edited by: user13162080 on 13-sep-2011 14:48

    user13162080 wrote:
    Ok, thanks. The last question, this changing of timezone and the hour I am getting, is respecting the timezone daylight saving?, I mean if the TimeZone I set is in daylight savings, I will get the correct hour according to this?What DrClap said.
    However, I think you still may be under some misapprehension about time zones:
    1. A Date does NOT have a timezone, even though it stores a date/time value.
    2. Setting a Calendar's timezone does NOT change the time stored in the Calendar. You may even need to run its complete() or computeFields() method to have the timezone change reflected in all its fields (not sure).
    3. As DrClap said, if you are using a DateFormat to display the Calendar, you need to set its* timezone in order to see what you want (for reason 2 above).
    It's amazing to me that after 10 years this API still gives so many problems (and believe me, you're not the only one).
    One thing you might also want to do is have a look at [url http://joda-time.sourceforge.net/]Joda Time. It's been around for a long time now, and so is quite mature; and is fully interchangeable with standard Java date/time classes. In fact, many of its ideas were under consideration for Java Version 7 as JSR-310, but were decided against (still not quite sure why, as in my view the current API is very poor).
    Winston

  • 10.3.9 Daylight Savings Time Problem (DST Patch applied), it was working

    We have about 30 Macs running 10.3.9, all of which were patched last year with the DST patch (2007). They are all configured to set the date and time automatically using time.apple.com. The user account used by the people using them is a non-administrator account.
    Since Daylight Savings Time changed in March 9, 2008, they correctly changed their time until late last week (end of March), when several of them went back to the old time. If I open the Date & Time System Preference Pane and authenticate, the clock changes to the correct time, without any further input from me other than authenticating as the admin. Once changed, some but not all go back to the incorrect time about a day later.
    Any ideas? I am trying to see if there is a simpler solution that resetting PRAM, throwing away cache files, etc.
    Other machines running newer versions of the OS don't have the issue.
    Thanks in advance for any input and/or advice.

    hypermouse1, welcome to Apple Discussions.
    How long has it been since you changed the internal memory battery? Check this site for battery part numbers and sources.
    Mac PRAM, NVRAM, CUDA/PMU & Battery Tutorial
    http://www.geocities.com/texas_macman/pram.html
     Cheers, Tom

  • Anyone having issues syncing iPhone with Microsoft Outlook 2007?  iTunes says it is syncing but it will not update calendar or contacts.  It just stopped working a few weeks ago.

    Anyone having issues syncing iPhone 3GS with Microsoft Outlook 2007?  iTunes says it is syncing but it will not update calendar or contacts.  It just stopped working a few weeks ago.

    I'm glad to hear that I'm not the only person struggling with exact issue.  I've rebooted, upgraded, re-installed, pulled all my hair out as nothing works.
    The biggest dissapointment with this thread is that nobody seems to have responded with a solution.
    And yes I've managed to pull together enough intellegence to tick the box "sync to outlook" in iTunes - still nothing man.
    Definately does not sync from phone to PC and is very hit and miss on PC to Phone.  In other words now running 2 seperate calendars - Not helpful Jan.

  • Can you sync your I-phone 3S calendar with Microsoft Outlook 2007 calendar?

    I would like to sync my home email account calendar with Microsoft Outlook 2007 with my I-phone 3GS. Is it possible to do this?
    I could sync my work calendar with phone calendar. My employer used office 2010 Outlook. Not sure if that is the reason or is it something in my settings etc.
    I'd appreciate any advice or tips on how to do this.
    Thanks,
    BoilerMike57

    Hello BoilerMike57,
    According to iOS: How to transfer or sync content to your computer (http://support.apple.com/kb/HT1296), you are able to use Outlook 2007 to sync your iPhone:
    You can sync calendars with:
    Microsoft Outlook 2003, Microsoft Outlook 2007, Microsoft Office 2010 (Windows XP, Windows Vista, or Windows 7)
    If you are having trouble syncing your Outlook calendar with your iPhone, you can follow the steps in this article:
    iPhone, iPad, iPod touch: Troubleshooting contact and calendar syncing via USB on Windows
    http://support.apple.com/kb/HT1692
    Thank you for posting in the Apple Support Communities.  
    Best,
    Sheila M.

  • Integration of CRM Enterprise Calendar with Microsoft Outlook

    Hi Guys,
    I need some info regarding the outlook calendar synch with the SAP CRM 4.0 calendar.
    Right now we have the synch working with the mobile client and the outlook. It synchronized the task and activity data from the mobile sales client to the outlook.
    Now I want the same functionality with the CRM online server and the outlook.
    So whenever we create an activity like calling a person X on certain date the event should be synchronized on the responsible person outlook calendar.
    For this to work do we still need to download all the BP from the server to the outlook public/private folder?
    Do we also need to download all the customizing objects?
    When I searced in help.sap
    http://help.sap.com/saphelp_crm40/helpdata/en/cc/89607aaa6311d497cd00a0c92f27cb/content.htm
    I found that there is SAP MAPI Service Provider which integrates the outlook calendar with the R/3 calendar.
    So can we use the same provider to integrate the CRM calendar with the Outllok.
    So can I know how different it is to the Groupware integrator.
    RGDS

    Hi Jack,
    can u send me the documents on integration of outlook calendar and crm 4.0 calendat to below id
    [email protected]
    shridhar

  • Printing Date with Calendar Object

    I am trying to print the current date of a calender object in a mm/dd/yyyy format.
    When I call system.out.println(now.getInstance()); and scroll through the console, it shows DAY_OF_MONTH=29, YEAR=2006, MONTH=6 for July 29, 2006. I realize months are zero based, so month is really 7. My question is, why does:
    System.out.println(now.MONTH + " " + now.DAY_OF_MONTH + " " + now.YEAR);
    print 2 5 1.
    Logic tells me it should print 6 29 2006.
    I have searched previous posts, and couldn't find one that answers my question. How do I take a Calendar object and print its current set date?

    My question is, why does:My question is: why do you care how a Calendar stores its data? If you want to print it, get a Date instance from it and run it through a SimpleDateFormat to get a String representation of the date.
    Don't mix up data and presentation.
    And to answer your question: you don't print the Calendar's date attributes, but the values of some static constants.

  • Help! problem with Calendar objects.

    I'm trying to figure out somebody's age based on their birthday inputed in MM/DD/YYYY format. I've created two Calendar objects; now, dob. I initialize both of them using the getInstance() method than I set the year, month, and day fields for dob to the user inputs. Then I subject the number of years between them(eg. 2005 - 1984 = 21). Then I add 21 to the year field for dob and compare that to now to see if the day has passed yet this year, and if it hasn't I would subtract 1 from 21 to get the age.
    I use the before() method to see if now is before dob, which returns the answer I want except for when the dob's month is the same as now's month.
    When is use 10/10/1984 I get the age as being 20 but it should be 21, however if I use any month before Oct. I get the correct age.
    Here's the code I'm using, any help would be greatly appreciated.Calendar calendar1;
    Calendar calendar2;
    int age;
    calendar1 = Calendar.getInstance();
    calendar2 = Calendar.getInstance();
    // the following three lines would be user input
    calendar2.set(Calendar.YEAR,1984);
    calendar2.set(Calendar.DAY_OF_MONTH,1);
    calendar2.set(Calendar.MONTH,10);
    int currentYear = calendar1.get(Calendar.YEAR);
    int birthYear = calendar2.get(Calendar.YEAR);
    age = currentYear - birthYear;
    calendar2.add(Calendar.YEAR, age);
    if(calendar1.before(calendar2))
        age -= 1;
    System.out.println(age);

    When is use 10/10/1984 I get the age as being 20 but
    it should be 21, however if I use any month before
    Oct. I get the correct age.Probably because January is month 0 according to Calendar. So when you do
    calendar2.set(Calendar.MONTH,10);you are actually setting the month to November.

  • Time Zones/Calendaring ActiveSync with Exchange 2010

    Hi all,
    I am wondering if someone can shed some light on this, or test it in their environment if they have something similar to see if they can reproduce.
    What we are experiencing is:
    A user creates a calendar appointment for lets say the 7th at 8AM UNTIL the 8th at 11AM (an appointment spanning more than 24 hours.)
    The appointment then gets placed on the calendar for the 8th through the 9th, effectively shifting the appointment one whole day...
    Any thoughts on this?

    I've read of this issue before. I believe this is a "known" issue that can occur with Outlook, particularly when time changes are involved. I did a search on the Microsoft Knowledgebase on "All Day Appoitments' and the situation you describe as well as some potential fixes are described. One of the solutions Microsoft suggests is to verify that Outlook has the DST patch, but in addition to that they suggest NOT scheduling multi day events, just making two single day events, each from, say, 900am to 500pm or whatever. There is something weird about how multi day events are handled that causes the issue you describe to occur. But do a search on the knowledgebase on that topic and you'll get some other ideas. Hope this helps.

  • WSUS 3.0 SP2 - synchronization with Microsoft Update failed

    Hi!
    The new installed WSUS Server (W2K8 R2 Std. x64 - full patched, SQL 2008 R2 on remote host) with KB2720211 update.
    If I try sync WSUS Server with Microsoft Update than sync failed with error
    TypeInitializationException: The type initializer for 'Microsoft.UpdateServices.ServerSyncWebServices.ServerSync.ServerSyncProxy' threw an exception. ---> System.Net.WebException: The remote name could not be resolved: '<wsusserver.LOCAL.DOMAIN>'
    at Microsoft.UpdateServices.Internal.ClassFactory.CreateInstance(Type type, Object[] args)
       at Microsoft.UpdateServices.ServerSync.ServerSyncLib.GetWebServiceProxyInternal(UpdateServerConfiguration serverConfig, WebServiceCommunicationHelper webServiceHelper, Boolean useCompressionProxy)
       at Microsoft.UpdateServices.ServerSync.ServerSyncLib.GetWebServiceCompressionProxy(UpdateServerConfiguration serverConfig, WebServiceCommunicationHelper webServiceHelper)
       at Microsoft.UpdateServices.ServerSync.CatalogSyncAgentCore.RetrieveSubscriptionData()
       at Microsoft.UpdateServices.ServerSync.CatalogSyncAgentCore.ExecuteSyncProtocol(Boolean allowRedirect)
    WSUS is configured for using ssl.
    Any idea?
    Regards
    Wojciech Sciesinski

    Hi,
    It is the common issue that may occur when KB2720211 is installed.
    WSUS server stops synchronizing with Microsoft Update.
    Workaround: remove WSUS , leaving the database on the uninstall.
    When removing WSUS , the first screen after asking to uninstall will be what are the items you want to remove with the uninstall. Leave all options UNCHECKED.
    Proceed with uninstalling. After finishing, install WSUS again.
    Add the role again in Server manager (Windows Server 2008 and Windows Server 2008 R2) or download WSUS 3 SP2 from the following location:
    http://www.microsoft.com/en-us/download/details.aspx?id=5216
    Start the install and choose the options to connect to the database server or Windows Internal database. As in the example, I am connecting to my Windows Internal Database.
    Then choose “use existing database” and proceed with the install.
    For more references:http://blogs.technet.com/b/sus/archive/2012/06/20/wsus-kb272011-common-issues-encountered-and-how-to-fix-them.aspx
    Regards,
    Clarence
    TechNet Subscriber Support
    If you are
    TechNet Subscription
    user and have any feedback on our support quality, please send your feedback
    here.
    Please remember to click “Mark as Answer” on the post that helps you, and to click “Unmark as Answer” if a marked post does not actually answer your question. This can be beneficial to other community members reading the thread.

  • Problems with Outlook Calendar syncing with my Palm TX

    I have recently started have problems getting my Palm TX to sync with Outlook 2003 Calendar. I don't have any issues with Contacts or Tasks syncing. In the Hot Sync log, I get the following error code "OLERR:03-0024 (0x8000ffff)". Any ideas what causing this?
    Post relates to: Treo 700p (Sprint)
    Post relates to: Treo 700p (Sprint)

    Relates to Palm TX but probably applies to other Palm's.
    I had same Calendar sync problem but with Outlook 2007 (Win XP). One day I could sync, next I could not.  I tried resets, re-installing software, running DbFixIt but nothing worked. I kept getting a log saying "Sync with Calendar had failed."
    The solution turned out to be more simple than I imagined.  Just make sure you have the Microsoft 2007 patch installed if you are running Office 2007.
    Here goes...
    Right click on the sync symbol on your PC. Left click on "Custom" from the drop-down menu.
    Under the Custom menu, select Calendar (Outlook). On the right side click "Change".
    Make sure the button is checked for "Syncronize the files".
    Next click on Settings. Decide what you prefer, e.g Handheld wins" in the drop-down menu.
    You might also decide you want to sync two computers (e.g. a desktop and a laptop). You will see an option to apply that setting on the same Setting menu.
    Click OK. Then you MUST make sure the "Set As Default" box is checked for this to take effect in future.
    Finally click "OK".
    If you are having the same problem with Contacts, it is the same procedure except you pick Contacts (Outlook) in the Custom menu.
    It fixed my Calendar sync problem and everything is back to normal.
    Post relates to: Palm TX

  • Is there a way to add event details using a calendar object vs. those dumb field entry boxes?

    I have switched from PC to Mac over a year and a half ago, and have been plagued with the "dumb" date entry boxes in iCal and now Reminders on the mac. For one, they don't show you the DAY OF WEEK for an event, it assumes you are parked on that day, but of course reality sets in and causes constant date changes for events. Picking a date in the future would be much more helpful if Apple followed some usability norms in iCal. For instance, if you are booking a flight online, those helpful little calendar objects pop up, and further, they are smart about "end dates and times" for events, knowing it can't be earlier than the start date. Apple iCal unfortunately always thinks you are creating an ALL DAY event, and when you change the start time, it creates the end time for the next day. Not very smart. Or is it me that is not very smart for constantly hawking every little data entry field for correctness. Why, oh why dear lord has Apple not given some usability attention to iCal on the mac??? At least match the interface of the iPhone with a nice little slot machine rolling control.
    Is there an add in?
    Is there hope that Apple will ever fix its lagging Mail and iCal apps on the Mac?
    Please advise. Or just offer a kind word of consolation if there is no hope for a better interface.

    In the future, Swing related questions should be posted in the Swing forum.
    The code you posted is of little use since it uses custom classes so we can't see the behaviour of your code.
    In general if you add a component to a Container at run time then you just use
    container.revalidate()
    This will invoke the LayoutManager and repaint the components in the container based on the new layout.

Maybe you are looking for

  • Web Dynpro application Session time expired in Portal

    Hi All ,    I am runnnig my web dynpro application in portal. When i log in for first time its working fine. But if if lof off and try to log in again in portal in same browser and try to access that web dynpro application then i am gettting error as

  • Creating Activity Diagram from existing code in 11g

    Hi, How can I create activity diagram for an existing application in 11.1.2.2.0 version? -Infy

  • "The application Safari quit unexpectedly" help!

    I keep getting dropped from the internet with the notice, "the application Safari quit unexpectedly.  The problem may have been caused by the FlashPlayer -10.4-10.5 plug in." I have a MAC mini OSX 10.5.8 and I use Safari 5.0.6 I've read this discussi

  • Winter time - clock always 20 minutes off

    Hi, Twice a year, the time changes here, and in october the time changes to winter time. Apparently my Archlinux does that automatically, how nice of it. However, EVERY time, so I go through this shit twice a year, the week or two weeks after such a

  • Replacing bluetooth mouse with USB mouse

    I have no need for a wireless mouse, and so just plugged in an old usb mouse, which works OK, except that when I reboot the computer, the USB mouse is not recognized at the login screen. Also, after I log in using the keyboard, the USB mouse is still