Mike Meessen

Results 29 comments of Mike Meessen

I'm also seeing this in a similar fashion on a ZTE phone with Android 6.0: I'm writing an app that plays audio and should continue playing in the background. I...

I think we'd need a way to get back to the mobile view (or in other words: to the default device behaviour), regardless of cookie lifetime or whether the view...

In the era of Docker and [12factor](https://12factor.net), I would argue against dropping the configurability via environment variables. I came across this project only yesterday, and just by putting together a...

Up until v0.13.0, xmpp.js seems to respond with the error as discussed above. I put in place a ping-response implementation: ```typescript client.on('stanza', (stanza) => { // XEP-0199: XMPP Ping if...

Thanks for correcting me, @sonnyp! I had looked at the @xmpp/client documentation but had overseen the fact that iq handling is (understandably) documented in the iq package.

I ran across a similar situation where I wanted to map two fields `firstName` and `lastName` onto one destination field `fullName`. I've been looking at global mappings and converters but...

For anyone stumbling upon this via google, here's an update: With Spring Boot 2.0.1.RELEASE, Vaadin 8.3.3 and Vaadin Spring extensions 2.0.0.RELEASE, the context path mapping seems to work with the...

Just wanted to cheer in: it also seems to have stopped working when using the `java-test-fixtures` plugin as explained in the docs [here](https://docs.gradle.org/current/userguide/java_testing.html#sec:java_test_fixtures). Eclipse error log showing nothing.

FYI: I guess this is related to https://github.com/gradle/gradle/issues/14932, which has been fixed in Gradle 6.8. I can confirm that it works again with STS 4.9.0 and Gradle 6.8. Can be...

I'm using Spring's `UriComponentsBuilder` to build the uri. Apparently, they encode according to RFC 3986, see http://stackoverflow.com/a/21460758 - So I think the representation should be fine. I can try your...