java -jar wiremock-1.57-standalone.jar --proxy-all="http://www.cnn.com" --record-mappings
java -jar wiremock-1.57-standalone.jar
--proxy-all="https://www.reddit.com"
--record-mappings
--https-port=8443
--https-truststore="/Users/userName/.jks/privateKey.store"
--truststore-password="passpass"
--https-require-client-cert=true
But I get this response back from the CLI:
Exception in thread "main"
Exception: java.util.MissingResourceException thrown from the UncaughtExceptionHandler in thread "main"
I'm not sure what's going on here. I'm trying to set up a reverse proxy by following instructions here, but maybe I'm doing something wrong? Thanks very much for any help you can offer.
java -jar wiremock-1.57-standalone.jar --proxy-all="https://www.reddit.com" --record-mappings --https-port=8443
MissingResourceException thrown from the UncaughtExceptionHandler in thread "main"
Seems to be thrown whenever wiremock-standalone jar receives a parameter it cannot interpret.
Checkout the parameters here, some seem to have a standard posix format (parameter value) and others (parameter=value).
For me it was just a matter of a shell script adding some random parameter that I didn't see from the outside.