我正在尝试实施WCF Rest服务而不修改 App.config 文件。
我的服务界面如下所示:
[ServiceContract]
public interface IService
{
[OperationContract]
[WebInvoke(Method = "POST",
ResponseFormat = WebMessageFormat.Json,
RequestFormat = WebMessageFormat.Json,
BodyStyle = WebMessageBodyStyle.Bare,
UriTemplate = "/teststr/?string={aStr}")]
string TestString(string aStr);
}
服务实施非常基础:
public class TestService : IService
{
public string TestString(string aStr = null)
{
Console.WriteLine("The Test() method was called at {0}"
+ "\n\rThe given string was {1}\n\r"
, DateTime.Now.ToString("H:mm:ss")
, aStr);
return aStr;
}
}
我的主要程序运行一切:
// Step 1 Create a URI to serve as the base address.
Uri baseAddress = new Uri("http://localhost:8000/ServiceSample/");
// Step 2 Create a ServiceHost instance
ServiceHost selfHost = new ServiceHost(typeof(TestService), baseAddress);
try
{
// Step 3 Add a service endpoint.
selfHost.AddServiceEndpoint(typeof(IService), new WebHttpBinding(),
"TestService");
// Step 4 Enable metadata exchange.
ServiceMetadataBehavior smb = new ServiceMetadataBehavior();
smb.HttpGetEnabled = true;
selfHost.Description.Behaviors.Add(smb);
// Step 5 Start the service.
selfHost.Open();
Console.WriteLine("The service is ready.");
Console.WriteLine("Press <ENTER> to terminate service.");
Console.ReadLine();
// Close the ServiceHostBase to shutdown the service.
selfHost.Close();
}
catch (CommunicationException ce)
{
Console.WriteLine("An exception occurred: {0}", ce.Message);
selfHost.Abort();
}
当我运行此命令并输入以下网址时:
http://localhost:8000/ServiceSample/TestService/teststr/?string=thisisatest
我收到此消息:
// The message with To '...' cannot be processed at the receiver, due to an
// AddressFilter mismatch at the EndpointDispatcher. Check that the sender
// and receiver's EndpointAddresses agree.
我看过类似的SO问题,建议I add the <webHttp/>
behavour(但Step 4
已经做过{{1}}了吗?),其他人说adding [ServiceBehavior..]。这些都没有奏效,我没有发现相关的SO问题有用。
我是否需要修改App.config文件?我在这里做错了什么?
答案 0 :(得分:9)
我意识到上面的评论中有一个答案,但我会尝试说明我在尝试找到问题的解决方案时所学到的知识,因为这是Google搜索中出现的第一页错误信息。
我试图用JavaScript调用第三方SOAP Web服务(我知道很糟糕),我遇到了这个问题。
我调用的SOAP 1.2服务要求我在git pull origin master
的{{1}}中放置:To
SOAP寻址标头。在完成此操作以及添加我从WSDL获得的<soap:Header>
之后,我才是金色的。
SOAP Header最终看起来像什么:
<soap:Envelope>
有用的网站: