Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Add xml request body parsing + xpath #48

Open
hhalex opened this issue Dec 13, 2023 · 0 comments
Open

Add xml request body parsing + xpath #48

hhalex opened this issue Dec 13, 2023 · 0 comments

Comments

@hhalex
Copy link
Collaborator

hhalex commented Dec 13, 2023

Request body should be accessible when crafting the response.
Multiple possibilities can be studied:

Request body

<rootnode>
  <value>
    hello
  </value>
</rootnode>

api.yml

rules:
  - matches: POST /test
     response: !Inline [200, "<ok>{{body.xml.rootnode.value}}</ok>", "application/xml"] 

Or with a handlebars helper
api.yml

rules:
  - matches: POST /test
     response: !Inline [200, "<ok>{{#xpath body //value}}<anothervalue>{{@this}}</anothervalue>{{/xpath}}</ok>", "application/xml"] 
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment
Labels
None yet
Projects
None yet
Development

No branches or pull requests

1 participant