Killing a Client thread spawned by a WS call

Hi,
I am using a 4.04 Servoy server to service a small web service, more of a trigger, I update a record and trigger servoy to process it with a call via HTTP. All is working except that every time the call happens, a new client thread is spawned on the server, and will not go away. I am using an HTTPGET command to trigger the request, and thus there isn’t anyway to “Close the browser”

Any tips on how to kill this thread? Aside from the admin page.

Thanks

Need more information in order to be able to help out.

What are you using on the Servoy side? Servoy WebClient? Headless Client? Restful WebService plugin?

Paul

I am using the webclient. I didn’t work too hard at getting it up and running, I needed Servoy to process a request and this was the first trigger I thought of. I have the parent program call a HTTPGET with the url
http://192.168.1.28:443/servoy-webclient/solutions/solution/LDAP_Get/method/LDAP_args/argument/’&Trim (Str (BS,‘#9’))

It seems to work fine, it just doesn’t close the client.

A web client session remains active for 30 minutes (by default).

You can either do an application.exit() at the end of the method you’re calling, or even better use the restfull Webservice plugin.

The advantage of the latter is that it uses a pool of headless clients to handle the incoming requests, to it means that there is no need to fire up a new web client session each time a webservice request comes in.

Paul