0

我查看了 xsd.exe、wsdl.exe 和 svcutil.exe 实用程序,以找到基于 XSD 文件和服务合同生成 WSDL 文件的方法,但看不到解决方案。

服务合同是这样的:

[ServiceContract]
public interface IMessageManager
{
    [OperationContract]
    string ConvertToUpper(string text);
}

public class MessageManager : IMessageManager
{
    public string ConvertToUpper(string text)
    {
        return text.ToUpper();
    }
} 

如果有人可以建议如何以任何方式做到这一点,我将不胜感激。

先感谢您。

戈兰

4

1 回答 1

0

我无法理解您的问题,我假设您需要使用 XSD 来提取数据合同,为此尝试 -

http://wscfblue.codeplex.com/

于 2012-09-25T09:47:39.043 回答