im having problem whith a POST request. I have to receive an XML message and im parsing it with JAXB. Everithing works fine but when special chars are included in the message like\[code\]<sending> <sms> <message>Espa?a</message> </sms></sending>\[/code\]it throws a Bad Request Error (400)The request sent by the client was syntactically incorrect (Bad Request).This is my code to process the xml message\[code\]@POST@Path("smsSendPost")@Produces(MediaType.APPLICATION_XML)public Response smsSendPost(JAXBElement<Sending> xml){ Sending sending = xml.getValue(); //Process the message}\[/code\]Im using tomcat to test it.Can anyone help me with this?