??
DICOM RESTFul服務中好多請求url都是類似:{SERVICE}/studies/{StudyInstanceUID}, UID如1.2.156.112605.75006881735343.1369658683.4.4.1。
我們默認建立的Asp Net WebApi 服務時,如果請求url包含‘.',則返回404錯誤。?
解決辦法:
需要在web.config文件中添加如下節點。
<configuration>
<system.webServer>
???<modules runAllManagedModulesForAllRequests="true"/>
</system.webServer>
</configuration>