GithubHelp home page GithubHelp logo

Comments (6)

abelsilva avatar abelsilva commented on July 23, 2024

can you show me the signature for
POST /v1/rest/sots/{timestamp}

from swaggerwcf.

tdjastrzebski avatar tdjastrzebski commented on July 23, 2024

[OperationContract]
[WebGet(ResponseFormat = WebMessageFormat.Json, UriTemplate = "sots/{timestamp}")]
SOTObject[] GetSOTsForUser(string timestamp);

from swaggerwcf.

abelsilva avatar abelsilva commented on July 23, 2024

that's for the GET operation, don't you have another function for the POST ?

the swagger json shows another one (or maybe it's a bug when parsing functions)


    "/v1/rest/sots/{timestamp}": {
      "get": {
        "consumes": [ "application/xml" ],
        "produces": [ "application/json" ],
        "parameters": [
          {
            "name": "timestamp",
            "in": "path",
            "required": true,
            "type": "string"
          }
        ],
        "responses": {
          "default": {
            "description": "not available",
            "schema": {
              "type": "array",
              "items": { "$ref": "#/definitions/Company.SOT.DataMembers.SOTObject" }
            }
          }
        }
      },
      "post": {
        "consumes": [ "application/xml" ],
        "produces": [ "application/json" ],
        "parameters": [
          {
            "name": "sotObjects",
            "in": "body",
            "required": true,
            "schema": { "$ref": "#/definitions/Company.SOT.DataMembers.SOTObject[]" }
          },
          {
            "name": "timestamp",
            "in": "path",
            "required": true,
            "type": "string"
          }
        ],
        "responses": {
          "default": {
            "description": "not available",
            "schema": {
              "type": "array",
              "items": { "$ref": "#/definitions/Company.SOT.DataMembers.SOTObject" }
            }
          }
        }
      }
    },

from swaggerwcf.

abelsilva avatar abelsilva commented on July 23, 2024

I'm suspecting an issue when we have an array as a parameter in the body

        "parameters": [
          {
            "name": "sotObjects",
            "in": "body",
            "required": true,
            "schema": { "$ref": "#/definitions/Company.SOT.DataMembers.SOTObject[]" }
          },

the schema should probably be:

"type": "array",
"items": { "$ref": "#/definitions/Company.SOT.DataMembers.SOTObject" }

but first show me the POST function just to be sure

from swaggerwcf.

tdjastrzebski avatar tdjastrzebski commented on July 23, 2024

That is right, here is the POST method.
[OperationContract]
[WebInvoke(ResponseFormat = WebMessageFormat.Json, UriTemplate = "sots/{timestamp}", Method ="POST" )]
SOTObject[] SubmitSOTs(SOTObject[] sotObjects, string timestamp);

from swaggerwcf.

abelsilva avatar abelsilva commented on July 23, 2024

yes, that's it, the definition of the array is wrong.

after changing it and removing this definition from the json:

    "Company.SOT.DataMembers.SOTObject[]": {
      "type": "array",
      "items": { "$ref": "#/definitions/" }
    },

the json is valid in the swagger editor

I'll look into it, thanks for the help

from swaggerwcf.

Related Issues (20)

Recommend Projects

  • React photo React

    A declarative, efficient, and flexible JavaScript library for building user interfaces.

  • Vue.js photo Vue.js

    🖖 Vue.js is a progressive, incrementally-adoptable JavaScript framework for building UI on the web.

  • Typescript photo Typescript

    TypeScript is a superset of JavaScript that compiles to clean JavaScript output.

  • TensorFlow photo TensorFlow

    An Open Source Machine Learning Framework for Everyone

  • Django photo Django

    The Web framework for perfectionists with deadlines.

  • D3 photo D3

    Bring data to life with SVG, Canvas and HTML. 📊📈🎉

Recommend Topics

  • javascript

    JavaScript (JS) is a lightweight interpreted programming language with first-class functions.

  • web

    Some thing interesting about web. New door for the world.

  • server

    A server is a program made to process requests and deliver data to clients.

  • Machine learning

    Machine learning is a way of modeling and interpreting data that allows a piece of software to respond intelligently.

  • Game

    Some thing interesting about game, make everyone happy.

Recommend Org

  • Facebook photo Facebook

    We are working to build community through open source technology. NB: members must have two-factor auth.

  • Microsoft photo Microsoft

    Open source projects and samples from Microsoft.

  • Google photo Google

    Google ❤️ Open Source for everyone.

  • D3 photo D3

    Data-Driven Documents codes.