2
我有一個ektron8.7應用程序,我試圖更新內容。 (我試圖使通過設置EXPIREDATE刪除內容)更新ektron中的內容時出錯
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
如何解決此錯誤?
該錯誤似乎沒有關係 - 如果您刪除這些代碼行會發生?另外,爲什麼不使用API的刪除方法? – MaxPRafferty
哪一行代碼導致錯誤?這是一個三層應用程序嗎? – egandalf
否..其2層應用程序 – Sudha