
I'm a bit of stuck here. I am trying to POST from firefox's poster a small snippet of XML.
<IntellexEvent>
<RuleName>a rule name</RuleName>
</IntellexEvent>
Simple enough, now my class for IntellexEvent is
@XmlRootElement(name = "IntellexEvent")
public class IntellexEvent {
// @XmlElement(name = "RuleName")
private String RuleName;
public String getRuleName()
{
return RuleName;
}
public void setRuleName(String RuleName)
{
this.RuleName = RuleName;
}
}
My Controller is...
@Controller
@RequestMapping("/cace/**")
public class CaceController
{
@Autowired
IUserService userService;
public CaceController()
{
}
@RequestMapping(value = "/cace/postXML", method = RequestMethod.POST)
public Result postXML(@RequestBody String intellexEvent) throws Exception
{
String temp = intellexEvent;
Result result = new Result();
result.setStatusCode(200);
result.setSuccess(true);
return result;
}
}
--EDITED -- So here I have the @RequestBody as a String. What I wanted was for it to be automatically marshalled into an IntellexEvent.... As a string I am able to hit my backend on the POST, when I change the String to an IntellexEvent I get a 415 error.
I just want to be able to hit my backend, I've tried GETs, and I hit just fine, (I didn't include them in my controller here) what am I missing here? In spring-mvc-servlet.xml I've defined the jaxb2 marshaller. If you need more information just ask, thanks in advance guys!