Combined SOAP/JSON/XML in WCF, using UriTemplate

前端 未结 3 1072
谎友^
谎友^ 2021-01-30 11:25

I\'m trying to build a generic web service interface using WCF, to allow 3rd party developers to hook into our software. After much struggling and reading (this question helped

3条回答
  •  终归单人心
    2021-01-30 11:54

    You have specified integer parameters in your operation. URI template does not work well with int parameters. Please change it to string , It will work.

    I think you have to write your own QuerystringConverter to use int with URITemplate.

提交回复
热议问题