From: Wolfgang M. M. <wol...@us...> - 2004-09-14 15:26:59
|
Update of /cvsroot/exist/eXist-1.0/src/org/exist/xmlrpc In directory sc8-pr-cvs1.sourceforge.net:/tmp/cvs-serv14302/src/org/exist/xmlrpc Modified Files: RpcServlet.java Log Message: Statically set the encoding used by the xmlrpc lib to UTF-8. Index: RpcServlet.java =================================================================== RCS file: /cvsroot/exist/eXist-1.0/src/org/exist/xmlrpc/RpcServlet.java,v retrieving revision 1.2 retrieving revision 1.3 diff -C2 -d -r1.2 -r1.3 *** RpcServlet.java 29 Jan 2004 15:06:44 -0000 1.2 --- RpcServlet.java 14 Sep 2004 15:26:48 -0000 1.3 *************** *** 65,68 **** --- 65,69 ---- xmlrpc.addHandler( "$default", rpcserv ); XmlRpc.setDebug( false ); + XmlRpc.setEncoding( "UTF-8" ); } catch (EXistException e) { throw new ServletException( e ); |