Kayako logo
SyncWorks Discussion, troubleshooting and feedback for SyncWorks application for Microsoft Office Outlook.

Reply
 
LinkBack Thread Tools Search this Thread Display Modes
  (#16) Old
Ryan Lederman Offline
Chief Operating Officer
 
Ryan Lederman's Avatar
 
Posts: 850
Join Date: May 2005
Location: Boise, Idaho
11-07-2007, 04:03 PM

Quote:
Originally Posted by Chris Boulton View Post
Can I ask why you're not storing the dates as a plain time() and using gmdate when displaying? That is the best approach you can use.

---

Well in the case of SyncWorks expecting the LastModificationTime to be GMT, that is definately not the case as I've just established.

I just modified a contact (at 10:38pm local time here) and then wrote a snippet of VBA code for Outlook to fetch the last modification time:
Code:
    Dim myOlApp As Outlook.Application
    Dim myNamespace As Outlook.NameSpace
    Dim myContacts As Outlook.Items
    Dim myItems As Outlook.Items
    Dim myItem As Object
    Set myOlApp = CreateObject("Outlook.Application")
    Set myNamespace = myOlApp.GetNamespace("MAPI")
    Set myContacts = myNamespace.GetDefaultFolder(olFolderContacts).Items
    Set myItems = myContacts
    For Each myItem In myItems
            MsgBox myItem.FullName & ": " & myItem.LastModificationTime
    End If
    Next
This returned the following for that specific contact:
Code:
---------------------------
Microsoft Office Outlook
---------------------------
Name: 11/07/2007 10:38:49 PM
---------------------------
OK   
---------------------------
Definitely not GMT.

So now I believe this is a SyncWorks issue - perhaps SyncWorks should reformat the LastModificationTime back to GMT based on the timezone of the local machine?

Chris
Chris,

Yes, that's what we plan to do. I will let you know as soon as I've uploaded the build with that code in place.


Ryan Lederman (ryan.lederman ]at[ kayako.com)
----------------------------------------------------------------
---
   
Reply With Quote
  (#17) Old
Ryan Lederman Offline
Chief Operating Officer
 
Ryan Lederman's Avatar
 
Posts: 850
Join Date: May 2005
Location: Boise, Idaho
11-07-2007, 07:53 PM

This build of SyncWorks sends modification times as UTC:

http://hotfix.kayako.com/syncworks/K...LE-3.1.2.9.exe

Please let me know if this helps.


Ryan Lederman (ryan.lederman ]at[ kayako.com)
----------------------------------------------------------------
---
   
Reply With Quote
  (#18) Old
Ryan Lederman Offline
Chief Operating Officer
 
Ryan Lederman's Avatar
 
Posts: 850
Join Date: May 2005
Location: Boise, Idaho
11-07-2007, 08:07 PM

Quote:
Originally Posted by Chris Boulton View Post
[edit] With the tasks - they're marked as complete in SupportSuite under the Teamwork module, but they keep being marked as incomplete in Outlook whenever a sync is run.

Any ideas?
I've been able to reproduce this and I'm taking a look at it now.


Ryan Lederman (ryan.lederman ]at[ kayako.com)
----------------------------------------------------------------
---
   
Reply With Quote
  (#19) Old
Ryan Lederman Offline
Chief Operating Officer
 
Ryan Lederman's Avatar
 
Posts: 850
Join Date: May 2005
Location: Boise, Idaho
11-07-2007, 08:21 PM

The tasks being marked as incomplete is a confirmed bug in 3.10.02. Please expect it to be fixed in the next release:

http://bugs.kayako.com/index.php?cmd=view&id=161


Ryan Lederman (ryan.lederman ]at[ kayako.com)
----------------------------------------------------------------
---
   
Reply With Quote
  (#20) Old
Chris Boulton Offline
Member
 
Posts: 146
Join Date: Jun 2003
Location: Sydney, Australia
12-07-2007, 01:40 AM

Quote:
This build of SyncWorks sends modification times as UTC:

http://hotfix.kayako.com/syncworks/K...LE-3.1.2.9.exe

Please let me know if this helps.
Installed and working fine.

Thanks for getting it fixed.

Chris
   
Reply With Quote
Reply

Tags
behaviour, funny, syncworks

Thread Tools Search this Thread
Search this Thread:

Advanced Search
Display Modes

Posting Rules
You may not post new threads
You may not post replies
You may not post attachments
You may not edit your posts

BB code is On
Smilies are On
[IMG] code is On
HTML code is Off
Trackbacks are On
Pingbacks are On
Refbacks are On



Powered by vBulletin® Version 3.7.2
Copyright ©2000 - 2008, Jelsoft Enterprises Ltd.
Search Engine Optimization by vBSEO 3.2.0
vBulletin Skin developed by: vBStyles.com


1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 41 42 43 44 45 46