XML encoding for '#'
I'm trying to configure this in spring/camel xml:
<c:from uri="mina:upd://localhost:6060?codec=#myCodec&sync=false" />
so i get this excpetion
Unrecognised MINA protocol: upd for uri: mina://upd://localhost:6060?codec=%23myCodec&sync=false
See: %23
I already tried 
and #开发者_如何转开发;
but it does not work.
Obs: My file is UTF-8 and i declare
<?xml version="1.0" encoding="UTF-8"?>
Any idea?
The protocol should be "udp" I think.
精彩评论