编程语言
首页 > 编程语言> > JAVA EWS item.load throws请求失败.仍然分配连接

JAVA EWS item.load throws请求失败.仍然分配连接

作者:互联网

我希望有人能帮助我.
我正在使用EWS Java API构建Web客户端电子邮件.

这是抛出异常的代码片段:

if (mailList != null){
                for (Item item : mailList.getItems()){      
                    synchronized (item) {
                        es = Utils.initiateExchangeService(mailAccountData);
                        em = EmailMessage.bind(es, item.getId(), emPropSet);
                        item.load(new PropertySet(BasePropertySet.FirstClassProperties));

抛出异常的行是:
item.load(new PropertySet(BasePropertySet.FirstClassProperties));

我知道,当我们使用相同的ExchangeService类实例时,通常会抛出此异常,但此处不会.

感谢任何帮助

解决方法:

到目前为止,唯一的解决方案似乎是使用单个ExchangeService实例并同步对它的访问(一次只允许一个线程).

https://github.com/OfficeDev/ews-java-api/issues/276

标签:java,exchangewebservices
来源: https://codeday.me/bug/20190711/1431605.html