Tell me more ×
Stack Overflow is a question and answer site for professional and enthusiast programmers. It's 100% free, no registration required.

I am using JSF framework in my application. I need to run a specific script before the render response phase in my Phase Listener class.

Condition for running this script is that, if the request triggered is a Ajax request i need to run the script, if the request triggered is a Http request i should not run that script.

Can anyone please help me to differentiate the requests recieved.?

share|improve this question
Might be of interest: stackoverflow.com/questions/216173/… – Thrustmaster Feb 3 '11 at 12:14

3 Answers

up vote 5 down vote accepted

Ajax requests have usually a X-Requested-With: XMLHttpRequest request header. In JSF, you can obtain the request headers by ExternalContext#getRequestHeaderMap().

ExternalContext externalContext = facesContext.getExternalContext();
Map<String, String> headers = externalContext.getRequestHeaderMap();
boolean ajax = "XMLHttpRequest".equals(headers.get("X-Requested-With"));
share|improve this answer
if you are using RF then request.getParameter("AJAXREQUEST")==null will also work – Jigar Joshi Feb 3 '11 at 12:10
Yes, you can also hook on implementation/library-specific parameters/attributes, but that tight-couples your code to specific implementations/libraries. – BalusC Feb 3 '11 at 12:11
i have tried headers.get("X-Requested-With") but it returned null object.!!!! – R K Feb 3 '11 at 14:12
Where do ajax requests originate? JSF? JS library? Homegrown? Anyway, just determine the request headers to see if there's a viable key/value pair which differs between normal and ajax requests. Do System.out.println(headers); to see them. – BalusC Feb 3 '11 at 14:16

Ajax requests set a server variable X-Requested-With to XMLHttpRequest. You can use that information to differentiate between ajax and normal requests.

share|improve this answer
private boolean isAjaxRequest() {
  PartialViewContext partialViewContext = FacesContext.getCurrentInstance().getPartialViewContext();
  return null != partialViewContext && partialViewContext.isAjaxRequest();
}
share|improve this answer

Your Answer

 
discard

By posting your answer, you agree to the privacy policy and terms of service.

Not the answer you're looking for? Browse other questions tagged or ask your own question.