Joakim Erdfelt
Joakim Erdfelt
Do you have an example APK that causes this?
Can you unpack the apk file (using a zip or jar utility) and email me the AndroidManifest.xml? [email protected]
I don't see why not. I'll take a look into this when i have time.
Looking at https://github.com/Comcast/money/blob/master/samples/samples-springmvc/pom.xml#L14 It references Jetty 8.x, which is EOL (End of Life) and should not be used. Jetty 8.x is also subject to several security issues, be aware of...
what you want is idle timeout
Looks like testng has a new minimum JVM requirement. ``` bad class file: /home/runner/.m2/repository/org/testng/testng/7.6.1/testng-7.6.1.jar(org/testng/Assert.class) class file has wrong version 55.0, should be 52.0 Please remove or make sure it appears...
> I am not sure why you are reviewing this PR when the description says not to review it. This PR is not intended to be merged. It is only...
If we have core level MimeTypes, does that mean the Servlet level inherits the configuration from core, and then applies it's own MimeTypes on top of it (eg: from the...
We should decode all characters that do not result in a character in the URI `reserved` set (aka: delimiters) From https://datatracker.ietf.org/doc/html/rfc3986#section-2.2 ``` reserved = gen-delims / sub-delims gen-delims = ":"...
Some equivalent URI examples. Are these equivalent? Example: 1 ``` URI A - /api/foo?y=z URI B - /api/foo%3Fy=z ``` Example: 2 ``` /api/foo?y=z?x=y /api/foo?y=z%3Fx=y ```