vote up 0 vote down star
1

So, I'm using freemarker templates with Struts2 to formulate my responses. However, since I'm trying to use taconite as well, I need the response to be sent with the content type of "text/xml". I can't seem to find a way to use freemarker directives to set the content type, and I am not well versed enough in struts to know if there is a way to do it through that.

So, how should I go about this?

flag

3 Answers

vote up 0 vote down

Answered my own question:

Use the following code at the type of the template:

${response.setContentType("text/xml")}
link|flag
vote up 0 vote down

In your Action class, implements the ServletResponseAware interface, and use a simple:

package your.package;
import javax.servlet.http.HttpServletRequest;
import javax.servlet.http.HttpServletResponse;
import com.opensymphony.xwork2.ActionSupport;
import org.apache.struts2.interceptor.ServletRequestAware;
import org.apache.struts2.interceptor.ServletResponseAware;

public class YourAction extends ActionSupport implements 
                 ServletResponseAware {

  private HttpServletResponse response;

  public String execute() throws Exception{
    response.setContentType("image/png");
    return SUCCESS;
  }

  public void setServletResponse(HttpServletResponse response){
    this.response = response;
  }

  public HttpServletResponse getServletResponse(){
    return response;
  }
}

More information here:http://www.roseindia.net/struts/struts2/strutsresources/access-request-response.shtml

link|flag
vote up 1 vote down

Or you can set it in the struts.xml

<action name="..." class="...">
  <result name="SUCCESS">
    <param name="contentType">text/html</param>
link|flag

Your Answer

Get an OpenID
or

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