View Single Post
  #463 (permalink)  
Old 08-06-2009, 02:50 AM
twouters twouters is offline
Trained Alumni
 
Posts: 7
Default Quick fix

I'm just going to add the same patch here as I've added to the bugtracker of the sourceforge project. This isn't a complete fix, I just work around the underlying problem, but it works...

This is a patch to make the connector work with zimbra 6.x

Code:
*** ru.korusconsulting/src/java/ru/korusconsulting/connector/base/ConnectionContext.java        2008-03-21 12:15:28.000000000 +0000
--- ru.korusconsulting-new/src/java/ru/korusconsulting/connector/base/ConnectionContext.java    2009-08-03 22:53:18.000000000 +0000
***************
*** 107,112 ****
--- 107,114 ----
              }
              context.add(userAgent);
          }
+         Element session = documentFactory.createElement("session", context.getNamespaceURI());
+         context.add(session);
          return context;
      }

Last edited by twouters; 08-06-2009 at 02:55 AM..
Reply With Quote