Giter VIP home page Giter VIP logo

Comments (3)

EmreCihanbeyoglu avatar EmreCihanbeyoglu commented on June 12, 2024 1

It seems that both file format and text format are working fine with simple requests and responses. But I don't know if it can handle SOAP services for more complex scenarios / requests. Do you have any comment / news on it?

#users.json file:

[
  {
    "id": "get-users",
    "url": "/api/users",
    "method": "GET",
    "variants": [
      {
        "id": "success",
        "type": "json",
        "options": {
          "status": 200,
          "body": [
            {
              "id": 1,
              "name": "my name"
            },
            {
              "id": 2,
              "name": "my brother's name"
            }
          ]
        }
      },
      {
        "id": "xml-sample-with-file",
        "type": "file",
        "options": {
          "status": 200,
          "path": "mocks/routes/xml-sample.xml"
        }
      },
      {
        "id": "xml-sample-with-text",
        "type": "text",
        "options": {
          "status": 200,
          "headers": {
            "Content-type": "application/xml"
          },
          "body": "<note>\n<to>Tove</to>\n<from>Jani</from>\n<heading>Reminder</heading>\n<body>Don't forget me this weekend!</body>\n</note>"
        }
      }
    ]
  }
]

#collections.json file:

[
  {
    "id": "base",
    "routes": ["get-users:xml-sample-with-text"]
  }
]

from main.

javierbrea avatar javierbrea commented on June 12, 2024

Hi @jobe451 , I don't know much about SOAP, but I suppose that you could simulate it with mocks-server if the protocol is HTTP. You could send XML responses using the text route variants.

Anyway, I will let this issue opened in order to investigate further about how to provide a better support and documentation for SOAP services.

from main.

javierbrea avatar javierbrea commented on June 12, 2024

Hi @EmreCihanbeyoglu ,
Could you be more specific about the "more complex scenarios / requests" that you need to handle?

from main.

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.