m1h43l
m1h43l
To be able to use the logger in an OSGi container as a bundle the manifest file needs some entries. A good primer on OSGi and what needs to be...
From time to time the wrong route id is set on in the request data structure on a request. ``` **FREE /// // Route Id Example // // This example...
When a web service uses SQL transactions it needs to scope these to the thread and not the job or activation group. The could be done with the Change Job...
Currently there is only a message which tells you that the thread could not be started when a request comes in. I think it would be better to test on...
If either plugin or endpoint sends an escape message/exception the post response plugins are not called anymore. Depending on what you do in a post response plugin this may cause...
Currently escape message are handled in ileastic.c serverThread function caught by the exception handler and passed to handleServletException which returns a 500 message to the client. It is currently not...
Currently you can just retrieve the value of the Accept header. But the header can have multiple values like ``` application/json,application/xml,text/plain ``` or even with a priority ``` application/json,application/xml;q=0.6,text/plain;q=0.8 ```...
In many cases you just need to send a HTTP status back to the caller without any content. Currently you must do the following: ``` response.status = IL_HTTP_NO_CONTENT; il_responseWrite(response :...
il_getParmStr does not work with the following HTTP message when used with a default value. ``` GET /?client HTTP/1.1 Host: localhost ``` The query parameter client has no value (which...
We need a function which returns a list (or in worst case an array) of query string values. http://localhost/postalcodes?id=32423&id=32425&id=32429&city=Minden&country=Germany Function suggestion: list il_getParmList(request : 'id'); or array il_getParmList(request : 'id');