- android - 多次调用 OnPrimaryClipChangedListener
- android - 无法更新 RecyclerView 中的 TextView 字段
- android.database.CursorIndexOutOfBoundsException : Index 0 requested, 光标大小为 0
- android - 使用 AppCompat 时,我们是否需要明确指定其 UI 组件(Spinner、EditText)颜色
我不确定“using”来自什么语言,但 Coldfusion 的等价物是什么?
using Microsoft.Exchange.WebServices.Data;
Appointment appointment = new Appointment(service);
appointment.Subject = subject;
appointment.Start = DateTime.Parse(StartDate);
appointment.End = DateTime.Parse(EndDate);
appointment.IsReminderSet = false;
appointment.Save();
最佳答案
我遇到这个问题是因为我需要解决 EWS API 的凭据问题。我包含了我的 Coldfusion 代码解决方案。我有这个与 CF 9.1 和 CF 10 一起工作。
<!DOCTYPE HTML PUBLIC "-//W3C//DTD HTML 4.01 Transitional//EN">
<html>
<head>
<title>EWS test</title>
</head>
<body>
<cfoutput>
<!--- Init the credentials and serversettings for testing--->
<!---
The username can be any of the following formats depending on the AD settings
ewstest
ewstest@myDomain
ewstest\ADdomain
--->
<cfset myUsername = "ewstest" >
<cfset myPassword = "*******" >
<!---
The ADdomain must mach. It might not be the same as the e-mail domainname.
--->
<cfset myDomain = "ADdomain" >
<cfset myServer = "owaserver" >
<cfset theRecipient = "test@test.com">
</cfoutput>
<cfoutput>
<!---
Author : Lion van Koppenhagen
Version : 1.5
Notes : This sollution is shared by me at adobe.com at 2011-08-22
To allow developers to work with this sollution, Adobe included the needed libraries in Coldfusion 10.0 and up.
Description
===========
With Exchange 2007 Microsoft abandoned WebDav as an interface to Exchangeserver.
The standard Coldfusion Tags relied on WebDav and will not work anymore.
Since I needed a way to interface with Exchange Server I started looking for possible solutions and this is what I came up with.
In december 2010 Microsoft released the Exchange Managed Services Library for java.
You can find it here: http://archive.msdn.microsoft.com/ewsjavaapi/Release/ProjectReleases.aspx?ReleaseId=5691
In the getting started document it tells you it depends on 4 3rd party libraries which you need to be download separately:
- Apache Commons HttpClient 3.1 (commons-httpclient-3.1.jar)
- Apache Commons Codec 1.4 (commons-codec-1.4.jar)
- Apache Commons Logging 1.1.1 (commons-codec-1.4.jar)
- JCIFS 1.3.15 (jcifs-1.3.15.jar)
With Coldfusion 9.1 (the version I tested with) you only need
- JCIFS 1.3.15 (jcifs-1.3.15.jar) which you can download here: http://jcifs.samba.org/src/
Place the EWS Jar and the JCIFS Jar in your Coldfusion libray folder and after restarting CF server the following code should work.
With Coldfusion 10.0 the JCIFS jar and EWS jar are standard installed in the lib directory.
Additional notes
================
2015-05-01
While testing this sollution against a new customer a ran into a 401 access denied error.
After debugging with our client we found out the domain used to verify the credentials must match the internal AD domain.
--->
<!--- 1. I need an instance of the ExchangeService class --->
<cfobject type="Java" class="microsoft.exchange.webservices.data.ExchangeService" name="service">
<cfset service.init()>
<!--- 2. I need to set the credentials --->
<!--- 2a. Create an instance of the WebCredentials class --->
<cfobject type="Java" class="microsoft.exchange.webservices.data.WebCredentials" name="credentials">
<!--- 2b. Set the credentials --->
<cfset credentials.init("#myUsername#","#myPassword#", "#myDomain")>
<!--- 2c. Set the credentials in the service object --->
<cfset service.setCredentials(credentials) />
<!--- 3. In need to set the URL to Exchange (stay away from autodsicovery) --->
<!--- 3a. Create an instance of the Uri class --->
<cfobject type="Java" class="java.net.URI" name="uri">
<!--- 3b. Set the full path --->
<cfset uri.init("https://#myServer#/ews/exchange.asmx")>
<!--- 3c. Set the url in the service object --->
<cfset service.setUrl(uri) />
<!--- These are the steps you need to create valid a service object. --->
<!--- Now we need to do something with it. --->
<!--- I create a test message to my own mailbox to see if it works --->
<cfobject type="Java" action="create" class="microsoft.exchange.webservices.data.EmailMessage" name="message">
<cfset message = message.init(service) />
<cfset message.SetSubject("EWSTest")>
<cfset messageBody = CreateObject("java", "microsoft.exchange.webservices.data.MessageBody")>
<cfset messageBody.init("My EWS test message")>
<cfset message.SetBody( messageBody )>
<cfset message.ToRecipients.Add("#theRecipient#") >
#message.SendAndSaveCopy()#
</cfoutput>
</body>
关于c# - 将 EWS 代码转换为冷融合,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/22700736/
我正在为 Exchange 服务器开发电子邮件客户端.......我遇到了 EWS 和 EWS 托管 API。请帮助我了解我应该去哪一个? 最佳答案 如果你是: 使用 .Net 并且该功能在 EWS
有没有人知道使用 EWS 托管 API 在单个 EWS 调用中绑定(bind)到多个项目的任何方法,只给出相关项目的 ItemIds? 这是我的应用程序目前的工作方式: 反复调用 ExchangeSe
我正在尝试创建一个项目来使用 EWS 服务收听 Exchange 房间邮箱中的事件。 如果我们需要监控 20k 个邮箱,那么我们需要创建 20k 个打开的连接。而不是 EWS 允许我们在每个组中创建最
是否可以通过EWS获取用户的TimeZone和工作时间? 我能够为当前用户(用于初始化 ExchangeService 的帐户)提取 TZ 和工作时间 UserConfiguration usrCon
Exchange Web 服务 FindItems()调用有一些重载占用 SearchFilter object 和其他采用高级查询语法 (AQS) 的查询字符串。目前,我接受来自调用者对我的代码的
我使用 EWS 获取交换电子邮件,但如何从电子邮件正文中获取纯文本而不使用 html? 现在我用这个: EmailMessage item = (EmailMessage)outbox.Items[i
Note: This particular issue has significant impact on our customers, which translates to high busine
我的预约会重复一周。通过使用下面的代码行: FindItemsResults results = folder.findAppointments(cView); 结果返回同一约会的所有出现,我只想为每
这个问题已经有答案了: How to identify object types in java [duplicate] (4 个回答) 已关闭 7 年前。 我正在研究 EWS java api,我想
我可以成功实现 Restful 推送通知。我从 Exchange-server 2010 sp1 收到此通知:
我有以下代码: (交流预约中的会面) For Each Recipient As String In emailAdresses For i As Integer = 0 To Meeting
我尝试编写一个控制台应用程序,它将使用 EWS 建立与邮箱的连接,然后在每次收到新电子邮件时打印一行。 一旦我完成这项工作,最终结果就是将其变成一项服务,并且每次电子邮件到达某个邮箱时都会创建一个任务
我正在使用 EWS 托管 API 2.0。我希望将来能够搜索日历以交换约会的主题。 注意事项是: 只返回与主题=“测试”匹配的 future 约会 仅返回 future 90 天内的约会 我可以让 C
我正在使用 Exchange Web 服务来尝试获取所有未完成的 Outlook 任务的列表。 我有一个 ExchangeService 实例,并尝试像这样查找所有未完成的任务: SearchFilt
我想通过 EWS 删除 Appointments 但它不起作用。我有以下代码: private void deleteAppointment(object obj) { ServicePoin
这个问题在这里已经有了答案: Wrong mailbox items being retrieved using Exchange Web Services managed API in C# (2
我正在使用 Exchange Web Services Managed API 2.2 来监控用户收件箱,并且需要确定电子邮件是新邮件、回复邮件还是转发邮件。 我看过关于 SO 的各种文章,例如 ho
这可能是一个非常基本的问题,但我还没有找到任何答案。我在 Windows 服务中使用 Exchange Web 服务来监视通过请求订阅发送到我们的 Exchange 2010 服务器的新邮件。它工作得
我正在尝试使用 C# EWS 2.0 库列出一些事件。 它使用以下代码: public IEnumerable ListEvents(CalendarFolder folder, DateTi
如何使用 Java EWS 库指定 SearchFilter 来获取包含已定义主题行的邮件? 提前致谢。 最佳答案 假设您指的是 Microsoft 创建的库,这里是直接来自下载中包含的 EWS Ja
我是一名优秀的程序员,十分优秀!