* @param aResponse response (with the stream)
* @throws ServletException
* @throws IOException
*/
protected void doGet(HttpServletRequest aRequest, HttpServletResponse aResponse) throws ServletException, IOException {
ConnectionStrategyServerConnector theConnectionStrategyServerConnector = myConfigurationDependentFactory.getConnectionStrategyServerConnector();
if(theConnectionStrategyServerConnector instanceof StreamingServerConnector) {
final String theClientId = getClientId(aRequest);
StreamingServerConnector theStreamingServerConnector = (StreamingServerConnector)theConnectionStrategyServerConnector;
try {
//The streaming server connector has to be cloned, because it isn't stateless (a prepare method is required).