View Single Post
  #443 (permalink)  
Old 03-28-2009, 07:33 AM
wolfroma wolfroma is offline
Project Contributor
 
Posts: 106
Default

Quote:
Originally Posted by UMDjwain View Post
Currently starting a deployment of Zimbra 5.0.13 with the recently released Funambol 7.1.0. Syncing appears to be a 50/50 situation- I've had successful results with tasks, calendars, and address books, but it's rare that every sync session completes without one (or more) failing at some point with a '511 to command SyncHdr []' error from the server.

BB clients are using the funambol 7.0.7 client and I'm using a recently compiled 0.5.1 ZimbraConnector.

My error log is attached if anybody can offer any help. Obviously our users aren't dead in the water since syncing happens on occasion, but I was hoping it would be more consistently reliable.
You Zimbra how I think in some reason doen't include <refresh> tag on autorization, but it does. Connector will not work while this cann't be fixed.

How to manualy check: Include debug level on funambol and see soap response on autentifiaction, it's should see like belove:

Code:
[2009-03-28 15:46:28,690] [funambol.zimbra.soap] [DEBUG] [8F0109C373CE0236459409A931855D82] [fol-UkJMSVpORVRTOlJCbGl6bmV0cw==] [user1] [stask] 
<?xml version='1.0'?>
<soap:Envelope xmlns:soap="http://www.w3.org/2003/05/soap-envelope">
    <soap:Header>
        <context xmlns="urn:zimbra">
            <userAgent name='ZimbraFunambol Connector'
                       version='0.5.01'/>
        </context>
    </soap:Header>
    <soap:Body>
        <AuthRequest xmlns="urn:zimbraAccount">
            <account xmlns=""
                     by='name'>user1</account>
            <password xmlns="">********************</password>
        </AuthRequest>
    </soap:Body>
</soap:Envelope>

[2009-03-28 15:46:28,716] [funambol.zimbra.soap] [DEBUG] [8F0109C373CE0236459409A931855D82] [fol-UkJMSVpORVRTOlJCbGl6bmV0cw==] [user1] [stask] 
<?xml version='1.0'?>
<soap:Envelope xmlns:soap="http://www.w3.org/2003/05/soap-envelope">
    <soap:Header>
        <context xmlns="urn:zimbra">
            <sessionId id='110'>110</sessionId>
            <refresh>
                <version>5.0.14_GA_2850.UBUNTU8 20090303190551 20090303-1910 FOSS</version>
                <mbx s='20956'/>
                <tags/>
                <folder n='0'
                        l='11'
                        name='USER_ROOT'
                        s='0'
                        id='1'
                        rev='1'>
                    <folder view='document'
                            n='0'
                            l='1'
                            name='Briefcase'
                            s='0'
                            id='16'
                            rev='1'/>
                    <folder view='appointment'
                            f='#'
                            n='0'
                            l='1'
                            name='Calendar'
                            s='0'
                            id='10'
                            rev='1'/>
                    <folder view='message'
                            n='0'
                            l='1'
                            name='Chats'
                            s='0'
                            id='14'
                            rev='1'/>
                    <folder view='contact'
                            n='4'
                            l='1'
                            name='Contacts'
                            s='6251'
                            id='7'
                            rev='1'/>
                    <folder view='message'
                            n='0'
                            l='1'
                            name='Drafts'
                            s='0'
                            id='6'
                            rev='1'/>
                    <folder view='contact'
                            n='0'
                            l='1'
                            name='Emailed Contacts'
                            s='0'
                            id='13'
                            rev='1'/>
                    <folder view='message'
                            n='0'
                            l='1'
                            name='Inbox'
                            s='0'
                            id='2'
                            rev='1'/>
                    <folder view='message'
                            n='0'
                            l='1'
                            name='Junk'
                            s='0'
                            id='4'
                            rev='1'/>
                    <folder view='wiki'
                            n='0'
                            l='1'
                            name='Notebook'
                            s='0'
                            id='12'
                            rev='1'/>
                    <folder view='message'
                            n='0'
                            l='1'
                            name='Sent'
                            s='0'
                            id='5'
                            rev='1'/>
                    <folder view='task'
                            f='#'
                            n='0'
                            l='1'
                            name='Tasks'
                            s='0'
                            id='15'
                            rev='1'/>
                    <folder n='9'
                            l='1'
                            name='Trash'
                            s='14705'
                            id='3'
                            rev='1'/>
                </folder>
            </refresh>
            <change token='57'/>
        </context>
    </soap:Header>
    <soap:Body>
        <AuthResponse xmlns="urn:zimbraAccount">
            <authToken>xxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxx</authToken>
            <lifetime>172799999</lifetime>
            <sessionId id='110'>110</sessionId>
            <skin>beach</skin>
        </AuthResponse>
    </soap:Body>
</soap:Envelope>
__________________
ZimbraFunambol Connector: http://sourceforge.net/projects/zimbrafunambol/
Reply With Quote