kutoman
kutoman
imho there is a value. My server has to provide both a web ui (for my backend) and a well documented api (for frontend clients). By using ktor it's pretty...
I found out that the wicket application [can be run without a web.xml](https://cwiki.apache.org/confluence/pages/viewpage.action?pageId=27848170). Thus, if possible, I just would need to add the application as a HttpServlet to ktor.
I've got this here: embeddedServer(Jetty, 8080, configure = { configureServer = server@ { this.handler = WebAppContext().apply { server = this@server contextPath = "/" war = "src/main/webapp" } } }) {...
as a workaround I'll use this for the moment: install(ContentNegotiation) { register(ContentType.Application.Json, GsonConverter()) } sendPipeline.intercept(ApplicationSendPipeline.Render) { subject -> if(subject is OutgoingContent.ByteArrayContent) { proceedWith(ContentWithResponseHeaders(subject, context.response.headers.allValues())) } } install(ConditionalHeaders)
the workaround I shared with you a year ago was actually causing the issue of duplication #1471. Therefore the fix needs to happen in the feature itself
will be resolved by #3427
yeah we also are getting this request. Due to this lacking it might happen that we have to switch to another cross-platform solution in the future unfortunately.
I've noticed the same issue. Any chance to get it merged?
@Slapbox actually I seem to have major issues. The lazy load mechanism doesn't work at all for me (except for loading forcefully by a `forceCheck` call). I was trying it...
hmm weird. Actually I was surprised that it wasn't fixed yet supposedly. I did update CN1 via the maven command "`Update Codename One`" and then rebuilt the gradle build. Do...