我有一个现有的 Java 客户端,我需要在 .NET 4.0 中构建一个 Web 服务。该接口已经使用 WSDL 文件定义,因此我创建了一个类库并使用WSCF.blue生成了服务器端存根(我也尝试了 svcutil,但没有成功)。WSCF.blue 负责引用并添加文件(很棒的工具:-))所以我只用一些代码替换了生成的 System.NotImplementedException。然后我将结果托管在一个 ASP.NET 开发服务器中。
我想我需要一些额外的步骤,因为我得到了著名的“在服务'Hello' 实现的合同列表中找不到合同名称'WsdlWebService.IHello'。” 在浏览器中查找服务时(请参阅WCF Contract Name 'IMyService' could not be found?)。但这里是一个 ServiceContractAttribute,我希望它可以完成这项工作。
如果有人能指出我所缺少的,我将不胜感激......
这是生成的接口和实现:
namespace WsdlWebService
{
[System.CodeDom.Compiler.GeneratedCodeAttribute("System.ServiceModel", "4.0.0.0")]
[System.ServiceModel.ServiceContractAttribute(Namespace="http://webservice.com", ConfigurationName="IHello")]
public interface IHello
{
[System.ServiceModel.OperationContractAttribute(Action="http://webservice.com/IHello/helloName", ReplyAction="http://webservice.com/IHello/helloNameResponse")]
[System.ServiceModel.XmlSerializerFormatAttribute(SupportFaults=true)]
[return: System.ServiceModel.MessageParameterAttribute(Name="helloNameReturn")]
string helloName(string name);
}
[System.ServiceModel.ServiceBehaviorAttribute(InstanceContextMode=System.ServiceModel.InstanceContextMode.PerCall, ConcurrencyMode=System.ServiceModel.ConcurrencyMode.Single)]
public class Hello : IHello
{
public virtual string helloName(string name)
{
return "Hello world from (via wsdl extraced server) " + name + "!";
}
}
}
这是 web.config:
<?xml version="1.0"?>
<configuration>
<system.web>
<compilation debug="false" targetFramework="4.0" />
</system.web>
<system.webServer>
<modules runAllManagedModulesForAllRequests="true"/>
</system.webServer>
<system.serviceModel>
<behaviors>
<serviceBehaviors>
<behavior name="MyServiceTypeBehaviors">
<serviceMetadata httpGetEnabled="true" />
<serviceDebug includeExceptionDetailInFaults="false" />
</behavior>
</serviceBehaviors>
</behaviors>
<services>
<service name="WsdlWebService.Hello"
behaviorConfiguration="MyServiceTypeBehaviors">
<endpoint address="" binding="basicHttpBinding"
contract="WsdlWebService.IHello"/>
<endpoint contract="IMetadataExchange"
binding="mexHttpBinding" address="mex"/>
</service>
</services>
</system.serviceModel>
</configuration>