Min*_*her 4 asp.net wcf asp.net-ajax wcf-binding c#-4.0
我正在使用启用了Ajax的WCF,当我在网络浏览器中打开网址时,我收到此错误.
由于EndpointDispatcher上的ContractFilter不匹配,因此无法在接收方处理具有Action'http:// localhost:22219/MobileService.svc/GetProductCategories ' 的消息.这可能是由于合同不匹配(发送方与接收方之间的操作不匹配)或发送方与接收方之间的绑定/安全性不匹配.检查发送方和接收方是否具有相同的合同和相同的绑定(包括安全要求,例如消息,传输,无).
MobileService代码如下
namespace MobileService
{
[ServiceContract(Namespace = "")]
[AspNetCompatibilityRequirements(RequirementsMode = AspNetCompatibilityRequirementsMode.Allowed)]
public class MobileService
{
// To use HTTP GET, add [WebGet] attribute. (Default ResponseFormat is WebMessageFormat.Json)
// To create an operation that returns XML,
// add [WebGet(ResponseFormat=WebMessageFormat.Xml)],
// and include the following line in the operation body:
// WebOperationContext.Current.OutgoingResponse.ContentType = "text/xml";
[OperationContract]
public void DoWork()
{
// Add your operation implementation here
return;
}
[OperationContract]
[WebInvoke(Method = "POST", RequestFormat = WebMessageFormat.Json, ResponseFormat = WebMessageFormat.Json, BodyStyle = WebMessageBodyStyle.Wrapped, UriTemplate = "GetProductCategories")]
public List<String> GetProductCategories()
{
List<String> categoryList = new List<string>();
categoryList.AddRange(new String[] { "Electronics", "Housewares", "Computers", "Software", "Music" });
return categoryList;
}
// Add more operations here and mark them with [OperationContract]
}
}
Run Code Online (Sandbox Code Playgroud)
和服务web.config文件是
<?xml version="1.0"?>
<configuration>
<system.web>
<compilation debug="true" targetFramework="4.0" />
</system.web>
<system.serviceModel>
<behaviors>
<endpointBehaviors>
<behavior name="MobileService.MobileServiceAspNetAjaxBehavior">
</behavior>
</endpointBehaviors>
</behaviors>
<serviceHostingEnvironment aspNetCompatibilityEnabled="true"
multipleSiteBindingsEnabled="true" />
<services>
<service name="MobileService.MobileService">
<endpoint address="" behaviorConfiguration="MobileService.MobileServiceAspNetAjaxBehavior"
binding="webHttpBinding" contract="MobileService.MobileService" />
</service>
</services>
</system.serviceModel>
<system.webServer>
<modules runAllManagedModulesForAllRequests="true"/>
</system.webServer>
</configuration>
Run Code Online (Sandbox Code Playgroud)
任何人都可以帮助我,我犯了错误.
car*_*ira 14
您需要<webHttp/>
端点的端点行为.如果你添加它(见下文)它应该工作.
<endpointBehaviors>
<behavior name="MobileService.MobileServiceAspNetAjaxBehavior">
<webHttp/>
</behavior>
</endpointBehaviors>
Run Code Online (Sandbox Code Playgroud)