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=21689>.
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=21689

Exception in get method





------- Additional Comments From [EMAIL PROTECTED]  2003-07-17 15:24 -------
The HttpMethod constructors that accept URIs, like the one you are using,
require that the URI be escaped.  This URI can be escaped using the URI class. 
You would want something like:

        URI uri = new URI(
            "http", 
            "dx.doi.org", 
           
"/10.1002/1521-3773(20020201)41:3<445::AID-ANIE445>3.0.CO;2-7a_totally_dummy_url_extension.htm",
             null
        ); 

        GetMethod get = new GetMethod(uri.getEscapedURI());


Mike

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

Reply via email to