我有一个正在尝试更新内容的ektron8.7应用程序。(我正在尝试通过设置其 ExpireDate 来删除内容)
Dim contentItem As ContentData = contentApi.GetItem(contentId)
contentItem.ExpireDate = DateTime.Now.AddDays(-1)
contentApi.Update(contentItem)
我在这里收到以下异常
http://MyPC:8732/Ektron.ASM.EktronServices/CmsHelperService2.svc that could accept the message. This is often caused by an incorrect address or SOAP action. See InnerException, if present, for more details
而 InnerException 是,
"No connection could be made because the target machine actively refused it MyIP:8732"
我的网站从 ektron 8.0 升级到 8.7
如何解决此错误?