query: howto gracefully do HTTP shutdown

2009-10-17 Thread Ty
Hi, I'm wondering if I am doing this correctly, or if there is a better way. I have 2 applications (HTTP) on different ports; one is for the program functionality and the other is for administration. The program is contained in its own Component and Application; and the administration is also

RE: Re: Disabling weak ciphers in Restlet

2009-10-17 Thread Timothy Aanerud
Thanks! Three comments: 1. I ended up using parameters.add("enabledCipherSuites", aStringOfCiphers) At this level the ciphers are in a single string separated by a space. They eventually end up as array 2. I wasn't able to use "disabledCipherSuites" because deep down in HttpsServerHelper.start

Re: Disabling weak ciphers in Restlet

2009-10-17 Thread Bruno Harbulot
Hi, You should be able to select the cipher suites you want explicitly (otherwise, the default ones will be used) by setting the "enabledCipherSuites" and/or "disabledCipherSuites" attributes on your instance of Server. These attributes should contain a array of Strings (for example "TLS_RSA_W