You are viewing a plain text version of this content. The canonical link for it is here.
Posted to dev@myfaces.apache.org by "Mario Ivankovits (JIRA)" <de...@myfaces.apache.org> on 2007/08/11 10:25:43 UTC

[jira] Resolved: (ORCHESTRA-1) Use servlet 2.4

     [ https://issues.apache.org/jira/browse/ORCHESTRA-1?page=com.atlassian.jira.plugin.system.issuetabpanels:all-tabpanel ]

Mario Ivankovits resolved ORCHESTRA-1.
--------------------------------------

       Resolution: Fixed
    Fix Version/s: 1.0-SNAPSHOT

thanks for the patch!

> Use servlet 2.4
> ---------------
>
>                 Key: ORCHESTRA-1
>                 URL: https://issues.apache.org/jira/browse/ORCHESTRA-1
>             Project: MyFaces Orchestra
>          Issue Type: Bug
>          Components: Conversation
>    Affects Versions: 1.0-SNAPSHOT
>         Environment: xp, spring 2.0.6, jsf-1.2 ri
>            Reporter: Dan Tran
>            Priority: Blocker
>             Fix For: 1.0-SNAPSHOT
>
>
> the current orchestra fails to start my app with 2.4 container.  
> Please change the poms to use servlet 2.4 and add this changes
> --- core/src/main/java/org/apache/myfaces/orchestra/requestParameterProvider/RequestParameterResponseWrapper.java	(revision 562289)
> +++ core/src/main/java/org/apache/myfaces/orchestra/requestParameterProvider/RequestParameterResponseWrapper.java	(working copy)
> @@ -187,7 +187,7 @@
>  	{
>  		this.original.setContentType(string);
>  	}
> -
> +	
>  	public void setBufferSize(int i)
>  	{
>  		this.original.setBufferSize(i);
> @@ -227,4 +227,18 @@
>  	{
>  		return this.original.getLocale();
>  	}
> +	
> +	public String getContentType()
> +	{
> +		return this.original.getContentType();
> +	}
> +	
> +	public void setCharacterEncoding( String encoding ) 
> +	{
> +		this.original.setCharacterEncoding(encoding);
> +	}

-- 
This message is automatically generated by JIRA.
-
You can reply to this email to add a comment to the issue online.