我已經做了一個服務,部署在somee.com上,我得到處理程序錯誤。 http://rssfeed.somee.com/RSSFeed.svc 我不確定是什麼原因導致了這個問題,或者我在這裏失蹤了什麼。WCF Restful service IIS錯誤
0
A
回答
1
您可能需要在服務器上啓用WCF/http激活。
在Server 2012中,它是在服務器管理器 - >角色和功能 - >功能 - >的.NET Framework 4.5的功能 - > WCF服務 - > HTTP激活
在窗口7/8:程序和功能 - >打開或關閉Windows服務 - > .NET Framework高級服務 - > WCF - > Http激活。
試一下,運行IIS的somee.com重置和刷新你的服務
具體而言,在WCF服務使用SVC擴展;
如果您的WCF服務具有擴展名.svc,則需要在Web.Config文件中爲該擴展添加託管 處理程序。
的Web.Config處理器配置的例子:
V3
<system.webServer>
<handlers>
<add name=".svc" verb="*" path="*.svc" type="System.ServiceModel.Activation.HttpHandler, System.ServiceModel, Version=3.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089" />
V4
<system.webServer>
<handlers>
<add name=".svc" verb="*" path="*.svc" type="System.ServiceModel.Activation.ServiceHttpHandlerFactory, System.ServiceModel.Activation, Version=4.0.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35" />
來源:http://somee.com/doka/DoHelpTopics.aspx?docode=false&thnid=113
0
除了上面我還要檢查你的映射FO r web.config文件中的Web服務。
並結合你的類型的配置是using.For例如
<service behaviorConfiguration="RestBehavior" name="folder1.folder2.service">
<endpoint address="" behaviorConfiguration="web" binding="webHttpBinding" bindingConfiguration="webBinding"
contract="folder1.folder.Iservice" />
</service>
,然後你的約束力,以及你需要配置的定義。
相關問題
- 1. Restful WCF 4.0 IIS 7.5錯誤
- 2. WCF Restful service - image not showing
- 3. WCF Restful Service .NET 4 IIS 7.5問題(無法處理Action'消息)
- 4. WCF IIS svcutil錯誤
- 5. Restful WCF壞請求錯誤
- 6. IIS WCF net.tcp綁定錯誤
- 7. WCF IIS錯誤403
- 8. WCF/IIS 400錯誤
- 9. WCF Restful Service - 實現異步操作
- 10. Restful Web Service返回404,錯誤的web.xml?
- 11. WCF錯誤| IIS 7.5 | 500.24
- 12. WCF暴露爲RESTful
- 13. RESTful WCF返回錯誤代碼415?
- 14. Can not not access .svc on RESTFul WCF Service部署在本地IIS Web服務器上
- 15. 對RESTful WCF服務的錯誤請求強制IIS回收應用程序池
- 16. wcf rest service 400錯誤:地址
- 17. 調用wcf-service時的模擬錯誤
- 18. WCF REST Service EndPoint未找到WebInvoke錯誤
- 19. WCF rest service http to https錯誤404
- 20. IIS託管WCF服務錯誤
- 21. WCF Service with https
- 22. 錯誤在IIS託管WCF服務6.0
- 23. RESTful WCF補丁動詞401.3錯誤
- 24. RESTful WCF託管
- 25. wcf restful服務方法調用http錯誤的錯誤
- 26. wcf .net 4.6 iis 7.5 413錯誤
- 27. .Net 4.5 IIS 7.5上的WCF錯誤404.3
- 28. Restful Web Service javax.ws.rs.InternalServerErrorException:HTTP 500內部服務器錯誤
- 29. RESTful WCF服務
- 30. 在添加https綁定後,IIS中的Restful WCF(webhttpbinding)會中斷
它在我的本地系統上運行完美,發生的問題是當我上傳到服務器 –
我的IIS配置正確ive添加了MIME類型並激活了wcf http激活,問題出現在託管服務器上 –
WCF /在託管服務器上啓用了http激活功能嗎? –