Tell me more ×
Stack Overflow is a question and answer site for professional and enthusiast programmers. It's 100% free, no registration required.

I am trying to compile and run WebDav example project supplied as part of examples of Apache Wink project. I have successfully deployed the project into JBoss and can reach it throw http. However, when i try to use Total Commander with WebDav plug in, i get the following exception:

15:13:41,595 ERROR [[restSdkService]] Servlet.service() for servlet restSdkService threw exception java.io.UnsupportedEncodingException: "utf-8" at java.lang.StringCoding.decode(StringCoding.java:170) at java.lang.String.(String.java:443) at java.lang.String.(String.java:515)
etc...

Using windows WebDav network folders, produces no results at all. Jboss server version 5.1.0 GA.

Does anybody succeeded in running this example using WebDav client?

share|improve this question

1 Answer

I believe that the encoding name should be uppercase; i.e. "UTF-8".

share|improve this answer
Yep, I also though of that and changed it in the debbuger, however the result was same exception only with uppercase "UTF-8". – Oleg Jun 20 '10 at 13:59
That is really weird. What does Charset.isSupported("UTF-8") give you? – Stephen C Jun 20 '10 at 14:27
The canonical name for UTF-8 in java.io and java.lang is "UTF8". However, I haven't come across a JRE implementation that didn't accept "UTF-8" as an alias. – McDowell Jun 20 '10 at 16:19
@McDowell - are you sure about that? See the list of standard names in java.sun.com/javase/6/docs/api/java/nio/charset/Charset.html – Stephen C Jun 20 '10 at 21:27
@Stephen C - java.nio uses a different set of canonical names (from the IANA list); the APIs that predate java.nio do not. See java.sun.com/javase/6/docs/technotes/guides/intl/… – McDowell Jun 20 '10 at 22:01
show 3 more comments

Your Answer

 
discard

By posting your answer, you agree to the privacy policy and terms of service.

Not the answer you're looking for? Browse other questions tagged or ask your own question.