- Accessible user-defined properties on Outlook items: Every Outlook item object has a getUserProperties() method returning a UserPropertiesCollection object.
- Access to the address book content: The method Outlook.getAddressLists() returns a list containing AddressList and AddressEntry objects.
- Supported distribution lists: The OutlookDistributionList class handles a distribution list.
- Outlook automation and user interface related tasks can be performed with the library.
-
Version 2 of Java Outlook Connector released (10 messages)
- Posted by: Regina Lynch
- Posted on: August 09 2006 11:31 EDT
Version 2.0.0 of Java Outlook Connector, a Java library built to access the MS Outlook application, has been released. New features include:Threaded Messages (10)
- why not follow a standard by K S on August 09 2006 12:26 EDT
- Re: Version 2 of Java Outlook Connector released by shawn spencer on August 09 2006 13:08 EDT
- Connector value by Larry Edelstein on August 09 2006 14:07 EDT
-
Re: Connector value by Jason Carreira on August 09 2006 02:27 EDT
-
Java - Exchange connectivity. by Justin O'Dwyer on August 10 2006 05:24 EDT
-
Re: Java - Exchange connectivity. by John Brand on August 10 2006 07:40 EDT
- Re: Java - Exchange connectivity. by Hank Li on August 10 2006 06:21 EDT
- Re: Java - Exchange connectivity. by Vikram Roopchand on September 16 2008 03:54 EDT
-
Re: Java - Exchange connectivity. by John Brand on August 10 2006 07:40 EDT
-
Java - Exchange connectivity. by Justin O'Dwyer on August 10 2006 05:24 EDT
-
Re: Connector value by Jason Carreira on August 09 2006 02:27 EDT
- Re: Version 2 of Java Outlook Connector released by Joe Attardi on August 09 2006 14:39 EDT
- Connector value by Larry Edelstein on August 09 2006 14:07 EDT
- Re: Version 2 of Java Outlook Connector released by Mani Venkatesan on August 13 2006 22:21 EDT
-
why not follow a standard[ Go to top ]
- Posted by: K S
- Posted on: August 09 2006 12:26 EDT
- in response to Regina Lynch
Outlook connectivity should be able to fit under something like a JSR-170 api or at the very lease a JNDI mapping. -
Re: Version 2 of Java Outlook Connector released[ Go to top ]
- Posted by: shawn spencer
- Posted on: August 09 2006 13:08 EDT
- in response to Regina Lynch
whats the point of such a connector ? what advantage does it bring ? run a java based UI on top of outlook ? -
Connector value[ Go to top ]
- Posted by: Larry Edelstein
- Posted on: August 09 2006 14:07 EDT
- in response to shawn spencer
The connector should allow you to write Java applications that take advantage of Outlook for those users that aren't connected to Exchange. If you want to use Java, and you want to access, say, the Outlook address book, or the user's mail stores, or their task list, then this is for you. It seems a bit early to me to look to standards for this connector - it's pretty much the only one out there right now, and it is a niche product. Most Java developers who need to integrate with Outlook really need to integrate with Exchange, for which there is a stronger toolset. Integrating directly with Outlook, I would expect, is mostly for consumer applications, since almost all corporate Outlook users will have Exchange. -
Re: Connector value[ Go to top ]
- Posted by: Jason Carreira
- Posted on: August 09 2006 14:27 EDT
- in response to Larry Edelstein
The connector should allow you to write Java applications that take advantage of Outlook for those users that aren't connected to Exchange. If you want to use Java, and you want to access, say, the Outlook address book, or the user's mail stores, or their task list, then this is for you.
What's the toolset for integrating with Exchange? I'd be interested in playing around with it (if it's free)...
It seems a bit early to me to look to standards for this connector - it's pretty much the only one out there right now, and it is a niche product. Most Java developers who need to integrate with Outlook really need to integrate with Exchange, for which there is a stronger toolset. Integrating directly with Outlook, I would expect, is mostly for consumer applications, since almost all corporate Outlook users will have Exchange. -
Java - Exchange connectivity.[ Go to top ]
- Posted by: Justin O'Dwyer
- Posted on: August 10 2006 05:24 EDT
- in response to Jason Carreira
I've done a bit of work in this area, mainly evaluating "J-Integra for Exchange" by Intrinsyc, which is basically a Java wrapper for the Microsoft CDO API. There's a free evaluation download, if you're interested test driving it, but it is not a free product. I can't help thinking that using this type of product, while undeniably useful, is probably not the best solution for exchange integration. Aside from the licensing costs (which to be fair are actually pretty reasonable in the case of J-Integra) there's the hassle of dealing with the CDO API. At the risk of sounding like Wing Commander Buzzword, a web service based interface seems to me like the way to go - abstracting both the low level remoting stuff and the API in one go. I could, of course, be completely misguided. ;¬) -Justin. -
Re: Java - Exchange connectivity.[ Go to top ]
- Posted by: John Brand
- Posted on: August 10 2006 07:40 EDT
- in response to Justin O'Dwyer
I've done a bit of work in this area, mainly evaluating "J-Integra for Exchange" by Intrinsyc, which is basically a Java wrapper for the Microsoft CDO API.
Hmm...actually its not a wrapper, but a re-implementation of the DCOM wire protocol. I guess this means that it runs on non-windows boxes as well, which is pretty neat. -
Re: Java - Exchange connectivity.[ Go to top ]
- Posted by: Hank Li
- Posted on: August 10 2006 18:21 EDT
- in response to John Brand
it is interesting to know that some people would like to waster time to create a java tool to connect to outlook. -
Re: Java - Exchange connectivity.[ Go to top ]
- Posted by: Vikram Roopchand
- Posted on: September 16 2008 03:54 EDT
- in response to John Brand
Hi, Developers can also use j-XChange (http://sourceforge.net/projects/j-xchange/). It is a pure Java implementation of the entire Collaboration Data Objects (CDO 1.21) library, offered under LGPL license and allows interoperability with MS Exchange from all non-Windows platforms that support Java. This library is powered by j-Interop (www.j-interop.org). This library is functionally similar to Commercial "J-Integra for Exchange" offering. Thanks, best regards, Vikram -
Re: Version 2 of Java Outlook Connector released[ Go to top ]
- Posted by: Joe Attardi
- Posted on: August 09 2006 14:39 EDT
- in response to shawn spencer
whats the point of such a connector ? what advantage does it bring ? run a java based UI on top of outlook ?
One use I could think of for such a connector is write a bridge between Outlook and, say, Google Calendar, using their APIs to sync/export calendar data in one fell swoop... -
Re: Version 2 of Java Outlook Connector released[ Go to top ]
- Posted by: Mani Venkatesan
- Posted on: August 13 2006 22:21 EDT
- in response to Regina Lynch
How does this compare to the WebDAV interface for Exchange?