DO NOT REPLY TO THIS EMAIL, BUT PLEASE POST YOUR BUG 
RELATED COMMENTS THROUGH THE WEB INTERFACE AVAILABLE AT
<http://nagoya.apache.org/bugzilla/show_bug.cgi?id=23708>.
ANY REPLY MADE TO THIS MESSAGE WILL NOT BE COLLECTED AND 
INSERTED IN THE BUG DATABASE.

http://nagoya.apache.org/bugzilla/show_bug.cgi?id=23708

DefaultHttpParamsFactory violates applet sandbox





------- Additional Comments From [EMAIL PROTECTED]  2003-10-09 21:02 -------
I've got a similiar issue in both org.apache.commons.httpclient.URI (my 
modified code follows):

        // in order to support platform encoding
        try {
          defaultDocumentCharsetByPlatform = System.getProperty
("file.encoding");
          if (defaultDocumentCharset == null) {
            // set the default document charset
            defaultDocumentCharset = defaultDocumentCharsetByPlatform;
          }
        }
        catch (SecurityException dontCare) { }

as well as org.apache.commons.httpclient.HttpClient:

    static {

        if (LOG.isDebugEnabled()) {
            try {
              LOG.debug("Java version: " + System.getProperty("java.version"));
              LOG.debug("Java vendor: " + System.getProperty("java.vendor"));
              LOG.debug("Java class path: " + System.getProperty
("java.class.path"));
              LOG.debug("Operating system name: " + System.getProperty
("os.name"));
              LOG.debug("Operating system architecture: " + System.getProperty
("os.arch"));
              LOG.debug("Operating system version: " + System.getProperty
("os.version"));
            }
            catch (SecurityException dontCare) { }

            Provider[] providers = Security.getProviders();

---------------------------------------------------------------------
To unsubscribe, e-mail: [EMAIL PROTECTED]
For additional commands, e-mail: [EMAIL PROTECTED]

Reply via email to