Advertisement
Guest User

Untitled

a guest
Dec 22nd, 2014
172
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 0.82 KB | None | 0 0
  1. @RequestMapping(method = RequestMethod.POST, value = { "/ssrfeed/exec/",
  2. "/query/exec" }, consumes = { "application/xml", "text/xml",
  3. "application/x-www-form-urlencoded" }, produces = {
  4. "application/xml;charset=UTF-8", "text/xml;charset=UTF-8",
  5. "application/x-www-form-urlencoded;charset=UTF-8" })
  6. @ResponseBody
  7. protected String getXmlFeed(HttpServletRequest request,
  8. @PathVariable String serviceName, @RequestBody String xmlReq) {
  9.  
  10. //code....
  11. return appXMLResponse;
  12. }
  13.  
  14. XML Parsing Error: not well-formed
  15. Location: //localhost:8083/MySerice/ssrfeed/exec/
  16. Line Number 18111, Column 17:
  17. <FIRST_NAME>Tzee ￿rfista</FIRST_NAME>
  18. ----------------^
  19.  
  20. The expected is : <FIRST_NAME>Tzeeürfista</FIRST_NAME>
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement