Using Exchange Web Services for email

My exchange administrators are saying that I need Appian to use Exchange Web Services. How can I get Appian to talk using this protocol?

Thanks in advance. I did a search and I didn't see anything after 2015...

OriginalPostID-258508

  Discussion posts and replies are publicly visible

Parents
  • 0
    Certified Lead Developer
    I have used same code to find items(FindItemsResults<Item> findResults = service.findItems(WellKnownFolderName.Inbox,view);) and it is working fine for me. Can you please check with the connection? I have used auto discover url.

    service.autodiscoverUrl(email, new RedirectionUrlCallback());
               service.setTraceEnabled(true);


    public static class RedirectionUrlCallback implements IAutodiscoverRedirectionUrl {
    public boolean autodiscoverRedirectionUrlValidationCallback(String redirectionUrl) {
    return redirectionUrl.toLowerCase().startsWith("https://");
    }
    }
Reply
  • 0
    Certified Lead Developer
    I have used same code to find items(FindItemsResults<Item> findResults = service.findItems(WellKnownFolderName.Inbox,view);) and it is working fine for me. Can you please check with the connection? I have used auto discover url.

    service.autodiscoverUrl(email, new RedirectionUrlCallback());
               service.setTraceEnabled(true);


    public static class RedirectionUrlCallback implements IAutodiscoverRedirectionUrl {
    public boolean autodiscoverRedirectionUrlValidationCallback(String redirectionUrl) {
    return redirectionUrl.toLowerCase().startsWith("https://");
    }
    }
Children
No Data