Analytics
2011年1月18日 星期二
[WCF]解決 There was no endpoint listening at http://localhost:1104/MyService.svc that could accept the message. This is often caused by an incorrect address or SOAP action. See InnerException, if present, for more details.
問題
There was no endpoint listening at http://localhost:1104/MyService.svc that could accept the message. This is often caused by an incorrect address or SOAP action. See InnerException, if present, for more details.
當在開發WCF服務的時候,出現此錯誤:
There was no endpoint listening at http://localhost:1104/MyService.svc that could accept the message. This is often caused by an incorrect address or SOAP action. See InnerException, if present, for more details.
解決方法
看詳細說明:
指出問題是無法連到remote server
但由於是處於開發階段,怎會有remote server呢?原因是出在ASP.NET的Development Server尚未啟動,所以處於開發時期的wcf service找不到http://localhost:1104/MyService.svc 這個port為1104的service
解決方式如下:
在MyServices.svc按下右鍵=>選擇使用瀏覽器檢視
你就會看到ASP.NET Development Server自動啟動了
如果錯誤一樣發生,請檢查一下WCF Service的config所設的<endpoint/>是否位置正確
訂閱:
張貼留言 (Atom)
熱門文章
-
問題 在SERVER 2008 R2上佈署Web站台,發生以下錯誤訊息: 指出HTTP錯誤 500.19 – Internal Server Error 詳細錯誤 無法讀取設定檔案,因為權限不足 解決方法 在要佈署的專案資料夾上右鍵=>安全性=>...
-
問題 IIS 7發生HTTP 錯誤 500.19 - Internal Server Error 無法存取要求的網頁,因為與該網頁相關的設定資料不正確。 錯誤訊息如下: 解決方法 1.資料夾=>右鍵內容=>安全性 2.點選”編輯”=>...
-
問題 如何 於QNAP NAS上設定Shadowsocks Server 解決方法 1.在QNAP上安裝對應版本的 Shadowsocks Server 2.安裝好後開啟Shadowsocks 這時候如果進不去,就代表這台NAS躲在ROUTER後面,所...
-
問題 嘗試載入 Crystal Reports 執行階段時發生錯誤。可能是 Crystal Reports 登錄機碼權限不足,或是 Crystal Reports 執行階段安裝不正確。請安裝適當的 Crystal Reports 可轉散佈程式 (CRRedist*.msi)...
-
問題 使用 DataTable.Select對DataTable做資料查詢 解決方法 資料查詢除了對資料庫下語法查詢以外,若已經將資料載入DataTable時,要從中下條件以取得特定資料的話,可以如下方式 //假設資料來源是這樣取的 DataTable dt = ...
-
問題 ACER 5738ZG-422G32Mno 安裝Windows 7 x64 解決方法 ACER的NB款式真的出得太多了,一樣是ASPIRE 5738ZG就有分很多款,讓人即使要自行安裝也都不知道要安裝哪一個驅動程式,昏倒~ 原廠規格: 作業系統 ...
-
問題 使用 Math.Round 取小數點第N位 如果想取得小數點第幾位時,可以用Math.Round(數值,小數點第幾位)來做到 解決方法 取得以下小數點第2位 double d = 1.333333; d=Math.Round(d,2); //d會等於1.33
-
問題 WebService部署在IIS 7上出現 定義了重複的 'system.web.extensions/scripting/scriptResourceHandler' 區段 錯誤 解決方法 新增應用程式集區(ApplicationPool...
-
問題 使用 Windows 7 IIS建立FTP 與授權連線 解決方法 建立FTP站台 1.Windows開始=>控制台=>程式集=>開啟或關閉Windows功能=>Internet Infornation Service=>FTP...
-
問題 使用 Math.Sqrt 算出n開根號 解決方法 double _sum=100; int_Sqrt = Math.Sqrt(_sum);
沒有留言:
張貼留言