Сервисная документация WCF - PullRequest
7 голосов
/ 14 мая 2009

Как лучше всего документировать / публиковать информацию о сервисе WCF в техническом документе продукта, на который будут смотреть как программисты, так и непрограммисты? Кроме того, что является лучшим инструментом для публикации.

Ответы [ 3 ]

3 голосов
/ 14 мая 2009

В лучшем случае это сложная проблема! : -)

Вы можете экспортировать описание службы WCF в файл WSDL и обогатить его элементами <xs:documentation> и <xs:annotation>, а затем преобразовать его в читаемый HTML-документ с использованием преобразования XSLT - но это не так здорово и полезно, на самом деле ....

Вот ссылка, которая показывает, как это сделать: http://andrewtokeley.net/archive/2008/10/30/adding-wsdl-documentation-to-your-wcf-services.aspx

Некоторые из инструментов XML также предлагают способы документирования файлов WSDL - часто также из этих документов и тегов аннотаций - один пример здесь: http://www.oxygenxml.com/doc/ug-oxygen/generate-wsdl-documentation.html

Вот онлайн-версия (и загружаемое преобразование XSLT) для преобразования элементов документации и аннотаций из вашего WSDL: http://tomi.vanek.sk/index.php?page=wsdl-viewer

У меня нет окончательного ответа здесь - но страстный интерес к теме тоже!

Марк

1 голос
/ 14 мая 2009

Существует страница справки , которая создается при создании службы WCF REST с использованием WCF REST Starter Kit . Похоже, вы не используете REST, но я подумал, что упомяну об этом, потому что этот формат может вам подойти.

При этом используется описание операции для предоставления Atom Feed операций.

Небольшое отражение подняло этот образец:

public Atom10FeedFormatter GetFeed(ContractDescription contractDescription)
{
    List<SyndicationItem> items = new List<SyndicationItem>();
    foreach (OperationDescription od in contractDescription.Description.Operations)
    {
        WebGetAttribute get = od.Behaviors.Find<WebGetAttribute>();
        WebInvokeAttribute invoke = od.Behaviors.Find<WebInvokeAttribute>();
        string method = this.GetMethod(get, invoke);
        string requestFormat = null;
        if (invoke != null)
        {
            requestFormat = this.GetRequestFormat(invoke, od);
        }
        string responseFormat = this.GetResponseFormat(get, invoke, od);
        string uriTemplate = this.GetUriTemplate(get, invoke, od);
        WebMessageBodyStyle bodyStyle = this.GetBodyStyle(get, invoke);
        string requestSchemaLink = null;
        string responseSchemaLink = null;
        string requestExampleLink = null;
        string responseExampleLink = null;
        if (bodyStyle == WebMessageBodyStyle.Bare)
        {
            UriTemplate responseSchemaTemplate = new UriTemplate("help/{operation}/response/schema");
            responseSchemaLink = responseSchemaTemplate.BindByPosition(this.BaseUri, new string[] { od.Name }).AbsoluteUri;
            UriTemplate responseExampleTemplate = new UriTemplate("help/{operation}/response/example");
            responseExampleLink = responseExampleTemplate.BindByPosition(this.BaseUri, new string[] { od.Name }).AbsoluteUri;
            if (invoke != null)
            {
                UriTemplate requestSchemaTemplate = new UriTemplate("help/{operation}/request/schema");
                requestSchemaLink = requestSchemaTemplate.BindByPosition(this.BaseUri, new string[] { od.Name }).AbsoluteUri;
                UriTemplate requestExampleTemplate = new UriTemplate("help/{operation}/request/example");
                requestExampleLink = requestExampleTemplate.BindByPosition(this.BaseUri, new string[] { od.Name }).AbsoluteUri;
            }
        }
        uriTemplate = HttpUtility.HtmlEncode(string.Format("{0}/{1}", this.BaseUri.AbsoluteUri, uriTemplate));
        string xhtmlDescription = string.Format("<div xmlns=\"http://www.w3.org/1999/xhtml\"><table border=\"5\"><tr><td>UriTemplate</td><td>{0}</td></tr><tr><td>Method</td><td>{1}</td></tr>", uriTemplate, method);
        if (!string.IsNullOrEmpty(requestFormat))
        {
            xhtmlDescription = xhtmlDescription + string.Format("<tr><td>Request Format</td><td>{0}</td></tr>", requestFormat);
        }
        if (requestSchemaLink != null)
        {
            xhtmlDescription = xhtmlDescription + string.Format("<tr><td>Request Schema</td><td><a href=\"{0}\">{0}</a></td></tr>", HttpUtility.HtmlEncode(requestSchemaLink));
        }
        if (requestExampleLink != null)
        {
            xhtmlDescription = xhtmlDescription + string.Format("<tr><td>Request Example</td><td><a href=\"{0}\">{0}</a></td></tr>", HttpUtility.HtmlEncode(requestExampleLink));
        }
        xhtmlDescription = xhtmlDescription + string.Format("<tr><td>Response Format</td><td>{0}</td></tr>", responseFormat);
        if (responseSchemaLink != null)
        {
            xhtmlDescription = xhtmlDescription + string.Format("<tr><td>Response Schema</td><td><a href=\"{0}\">{0}</a></td></tr>", HttpUtility.HtmlEncode(responseSchemaLink));
        }
        if (responseExampleLink != null)
        {
            xhtmlDescription = xhtmlDescription + string.Format("<tr><td>Response Example</td><td><a href=\"{0}\">{0}</a></td></tr>", HttpUtility.HtmlEncode(responseExampleLink));
        }
        WebHelpAttribute help = od.Behaviors.Find<WebHelpAttribute>();
        if ((help != null) && !string.IsNullOrEmpty(help.Comment))
        {
            xhtmlDescription = xhtmlDescription + string.Format("<tr><td>Description</td><td>{0}</td></tr>", help.Comment);
        }
        xhtmlDescription = xhtmlDescription + "</table></div>";
        var item = new SyndicationItem() {
           Id = "http://tmpuri.org/" + od.Name,
           Content = new TextSyndicationContent(xhtmlDescription, TextSyndicationContentKind.XHtml),
           LastUpdatedTime = DateTime.UtcNow,
           Title = new TextSyndicationContent(string.Format("{0}: {1}", this.Description.Name, od.Name))
        };
        items.Add(item);
    }
    SyndicationFeed feed = new SyndicationFeed()
    {
       Title = new TextSyndicationContent("Service help page"),
       LastUpdatedTime = DateTime.UtcNow,
       Items = items
    };
    WebOperationContext.Current.OutgoingResponse.ContentType = "application/atom+xml";
    return feed.GetAtom10Formatter();
}
1 голос
/ 14 мая 2009
Добро пожаловать на сайт PullRequest, где вы можете задавать вопросы и получать ответы от других членов сообщества.
...