Hi, we're using the HttpClient and btw - v cool, saves much time wasting. We're using the client to communicate with a silverstream server. Unfortunately silverstream has a bug in how it deals with Http1.1 so we needed to force the GetMethod use http1.0. The only problem with this is that the method in HttpMethodBase setHttp11(boolean http11) is protected.
just a few questions - is there any reason why this method should not be public. If the setHttp11 is to remain protected is the best solution be to extend GetMethod, overriding the setHttp11 method with a public implementation that simply calls the method in HttpMethodBase? Thanks Nathan ********************************************************************** This email and any files transmitted with it are confidential and intended solely for the use of the individual or entity to whom they are addressed. If you have received this email in error please notify the system manager. This footnote also confirms that this email message has been swept by MIMEsweeper at LevelSeas for the presence of computer viruses. ********************************************************************** -- To unsubscribe, e-mail: <mailto:[EMAIL PROTECTED]> For additional commands, e-mail: <mailto:[EMAIL PROTECTED]>
