leviysoft / mockingbird

Flexible mock server
Apache License 2.0
9 stars 3 forks source link

Fix query params handling #73

Closed ashashev closed 3 months ago

ashashev commented 3 months ago

Problem

Sometimes one can meet query parameter without a value, just a key, for example http://host.domain/app/srvice?wsdl. Mockingbird didn't let to add a condition for checking existing such query parameters. Also, it didn't pass them with proxy request.

Another problem was multiple values of one query parameter, e.g. http://host.domain?a=1&a=2. Mockingbird took only the last value and dropped all others.

@mockingbird/maintainers