Pete Cornish

Results 76 comments of Pete Cornish

Hi @tiagojco, thank you for opening this issue. One way we could look to achieve this would be to look for the XSD `import` element, e.g. ```xml ``` Another alternative...

Hi @matejkobza - thank you for raising this. Looks like we might need to update the regex that detects OpenAPI format path parameters. I can’t seem to find a canonical...

Thanks very much for the references @hilsonp. Digging into this, the issue is with the conversion of OpenAPI path params (which are permissive) to those in Vert.x Web. [The documentation](https://vertx.io/docs/vertx-web/java/#_capturing_path_parameters)...

This should be fixed in [v3.38.3](https://github.com/outofcoffee/imposter/releases). Please let us know if this resolves your issue, or re-open if not.

Hi @ian-starts, thanks for raising this. Sorry to hear this is causing issues. For a container image with more userspace binaries, here's an example of a custom Docker image: https://github.com/outofcoffee/imposter/blob/main/examples/docker/Dockerfile...

Hi @rnestler, sorry for providing the wrong path to the example `Dockerfile`. It should've been this: https://github.com/outofcoffee/imposter/blob/main/examples/docker-shell/Dockerfile In this file, there's a multistage build with the final image based on...

Hi @rnestler, sorry that you found this annoying: > I also found it very annoying to not have anything available to run in the container To run commands in the...

Hi @hilsonp, in the latest `beta` version, there are a couple of things that could help here. ### New `basePath` property This can be set at the root configuration and...

Hi @rnestler, thanks for raising this. tl;dr - this will do the job Working example: ```js var ObjectMapper = Java.type('com.fasterxml.jackson.databind.ObjectMapper'); var serialiser = new ObjectMapper(); var personsStore = stores.open('persons'); var...