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
    You can use "Document" type to send the attachments as output for the smart service. Appian API will help you on this.
    forum.appian.com/.../

    1. Create Document object and set all the required properties.
    Document doc = new Document();
    doc.setName("Test Doc");....etc

    2. Create/Upload this document into Appian.
    cs.create(doc, ContentConstants.UNIQUE_NONE); where cs is a ContentService object

    3. Read the attachment data and write it to "doc" object using FileOutputStream
Reply
  • 0
    Certified Lead Developer
    You can use "Document" type to send the attachments as output for the smart service. Appian API will help you on this.
    forum.appian.com/.../

    1. Create Document object and set all the required properties.
    Document doc = new Document();
    doc.setName("Test Doc");....etc

    2. Create/Upload this document into Appian.
    cs.create(doc, ContentConstants.UNIQUE_NONE); where cs is a ContentService object

    3. Read the attachment data and write it to "doc" object using FileOutputStream
Children
No Data