Vraptor nao substitui valores no JSP no Tomcat 5.5

Ola pessoal. Estou com um problema estranho.

Quando executo minha aplicacao no Tomcat 7, o processador do jsp preenche corretamente os campos definidos com expression language ${variavel} definidos pelo Result. Porém quando executo no servidor de producao Tomcat 5.5, o jsp vem com os valores sem serem substituidos. Existe alguma coisa q posso fazer para funcionar no Tomcat 5.5?

Eis algumas infos:

JSP

<%@ page language="java" contentType="text/plain; charset=ISO-8859-1"
    pageEncoding="ISO-8859-1"%>codigoDeRetorno=${codigoDeRetorno }
descricaoDoRetorno=${descricaoDoRetorno} 
cpfDoCliente=${cpfDoCliente}
quantidadeDeContratos=${quantidadeDeContratos} 
numeroDoContrato=${numeroDoContrato}
assessoria=${assessoria} 
dddAssessoria=${dddAssessoria}
foneAssessoria=${foneAssessoria}
valorDaQuitacaoParaHoje=${valorDaQuitacaoParaHoje}
valorDaQuitacaoParaHojeMais1=${valorDaQuitacaoParaHojeMais1}

Retorno no 5.5

codigoDeRetorno=${codigoDeRetorno }
descricaoDoRetorno=${descricaoDoRetorno} 
cpfDoCliente=${cpfDoCliente}
quantidadeDeContratos=${quantidadeDeContratos} 
numeroDoContrato=${numeroDoContrato}
assessoria=${assessoria} 
dddAssessoria=${dddAssessoria}
foneAssessoria=${foneAssessoria}
valorDaQuitacaoParaHoje=${valorDaQuitacaoParaHoje}
valorDaQuitacaoParaHojeMais1=${valorDaQuitacaoParaHojeMais1}

Retorno no 7

codigoDeRetorno=0
descricaoDoRetorno=Consulta Efetuada com Sucesso 
cpfDoCliente=11111111111
quantidadeDeContratos=1 
numeroDoContrato=1
assessoria=true 
dddAssessoria=11
foneAssessoria=31032400
valorDaQuitacaoParaHoje=1000.0
valorDaQuitacaoParaHojeMais1=1500.0

Codigo do controller

public void parcelaEmAberto(String cpfOuCnpj) {
		try {
			ParcelaEmAbertoResponse response = parcelaEmAberto
					.consult(cpfOuCnpj);
			result.include("codigoDeRetorno", response.getCodigoDeRetorno());
			result.include("descricaoDoRetorno",
					response.getDescricaoDoRetorno());
			result.include("cpfDoCliente", response.getCpfDoCliente());
			result.include("quantidadeDeContratos", response.getContratos()
					.size());
			result.include(
					"numeroDoContrato",
					join(extract(response.getContratos(), on(Contrato.class)
							.getNumeroDoContrato()), "#"));
			result.include(
					"assessoria",
					join(extract(response.getContratos(), on(Contrato.class)
							.isAssessoria()), "#"));
			result.include(
					"dddAssessoria",
					join(extract(response.getContratos(), on(Contrato.class)
							.getDddAssessoria()), "#"));
			result.include(
					"foneAssessoria",
					join(extract(response.getContratos(), on(Contrato.class)
							.getFoneAssessoria()), "#"));
			result.include(
					"valorDaQuitacaoParaHoje",
					join(extract(response.getContratos(), on(Contrato.class)
							.getValorDaQuitacaoParaHoje()), "#"));
			result.include(
					"valorDaQuitacaoParaHojeMais1",
					join(extract(response.getContratos(), on(Contrato.class)
							.getValorDaQuitacaoParaHojeMais1()), "#"));
		} catch (IllegalArgumentException e) {
			result.include("codigoDeRetorno", 3);
			result.include("descricaoDoRetorno", "Cpf do Cliente invalido");
		} catch (Exception e) {
			result.include("codigoDeRetorno", 99);
			result.include("descricaoDoRetorno", e.getMessage());
		}
	}

Log no tomcat 5.5

22/12/11 10:57:28 [http-8090-Processor23] DEBUG vraptor.VRaptor:82 - VRaptor received a new request
22/12/11 10:57:28 [http-8090-Processor23] DEBUG support.DefaultListableBeanFactory:242 - Returning cached instance of singleton bean 'br.com.caelum.vraptor.http.EncodingHandlerFactory'
22/12/11 10:57:28 [http-8090-Processor23] DEBUG support.DefaultListableBeanFactory:242 - Returning cached instance of singleton bean 'encodingHandlerFactory'
22/12/11 10:57:28 [http-8090-Processor23] DEBUG support.DefaultListableBeanFactory:430 - Creating instance of bean 'enhancedRequestExecution'
22/12/11 10:57:28 [http-8090-Processor23] DEBUG support.DefaultListableBeanFactory:430 - Creating instance of bean 'defaultInterceptorStack'
22/12/11 10:57:28 [http-8090-Processor23] DEBUG support.DefaultListableBeanFactory:242 - Returning cached instance of singleton bean 'defaultInterceptorHandlerFactory'
22/12/11 10:57:28 [http-8090-Processor23] DEBUG support.DefaultListableBeanFactory:458 - Finished creating instance of bean 'defaultInterceptorStack'
22/12/11 10:57:28 [http-8090-Processor23] DEBUG support.DefaultListableBeanFactory:242 - Returning cached instance of singleton bean 'topologicalSortedInterceptorRegistry'
22/12/11 10:57:28 [http-8090-Processor23] DEBUG support.DefaultListableBeanFactory:458 - Finished creating instance of bean 'enhancedRequestExecution'
22/12/11 10:57:28 [http-8090-Processor23] DEBUG support.DefaultListableBeanFactory:430 - Creating instance of bean 'resourceLookupInterceptor'
22/12/11 10:57:28 [http-8090-Processor23] DEBUG support.DefaultListableBeanFactory:242 - Returning cached instance of singleton bean 'defaultResourceTranslator'
22/12/11 10:57:28 [http-8090-Processor23] DEBUG support.DefaultListableBeanFactory:430 - Creating instance of bean 'defaultMethodInfo'
22/12/11 10:57:28 [http-8090-Processor23] DEBUG support.DefaultListableBeanFactory:458 - Finished creating instance of bean 'defaultMethodInfo'
22/12/11 10:57:28 [http-8090-Processor23] DEBUG support.DefaultListableBeanFactory:242 - Returning cached instance of singleton bean 'defaultResourceNotFoundHandler'
22/12/11 10:57:28 [http-8090-Processor23] DEBUG support.DefaultListableBeanFactory:242 - Returning cached instance of singleton bean 'defaultMethodNotAllowedHandler'
22/12/11 10:57:28 [http-8090-Processor23] DEBUG support.DefaultListableBeanFactory:242 - Returning cached instance of singleton bean 'VRaptorRequestProvider'
22/12/11 10:57:28 [http-8090-Processor23] DEBUG support.DefaultListableBeanFactory:458 - Finished creating instance of bean 'resourceLookupInterceptor'
22/12/11 10:57:28 [http-8090-Processor23] DEBUG core.ToInstantiateInterceptorHandler:53 - Invoking interceptor ResourceLookupInterceptor
22/12/11 10:57:28 [http-8090-Processor23] DEBUG http.DefaultResourceTranslator:51 - trying to access /bancoPanamericano/parcelaEmAberto
22/12/11 10:57:28 [http-8090-Processor23] DEBUG http.DefaultResourceTranslator:61 - found resource [DefaultResourceMethod: BancoPanamericanoController.parcelaEmAbertoBancoPanamericanoController.parcelaEmAberto(String)]
22/12/11 10:57:28 [http-8090-Processor23] DEBUG support.DefaultListableBeanFactory:430 - Creating instance of bean 'flashInterceptor'
22/12/11 10:57:28 [http-8090-Processor23] DEBUG support.DefaultListableBeanFactory:242 - Returning cached instance of singleton bean 'httpSessionProvider'
22/12/11 10:57:28 [http-8090-Processor23] DEBUG support.DefaultListableBeanFactory:430 - Creating instance of bean 'defaultResult'
22/12/11 10:57:28 [http-8090-Processor23] DEBUG support.DefaultListableBeanFactory:242 - Returning cached instance of singleton bean 'httpServletRequestProvider'
22/12/11 10:57:28 [http-8090-Processor23] DEBUG support.DefaultListableBeanFactory:242 - Returning cached instance of singleton bean 'br.com.caelum.vraptor.ioc.spring.SpringBasedContainer'
22/12/11 10:57:28 [http-8090-Processor23] DEBUG support.DefaultListableBeanFactory:430 - Creating instance of bean 'defaultExceptionMapper'
22/12/11 10:57:28 [http-8090-Processor23] DEBUG support.DefaultListableBeanFactory:242 - Returning cached instance of singleton bean 'cglibProxifier'
22/12/11 10:57:28 [http-8090-Processor23] DEBUG support.DefaultListableBeanFactory:458 - Finished creating instance of bean 'defaultExceptionMapper'
22/12/11 10:57:28 [http-8090-Processor23] DEBUG support.DefaultListableBeanFactory:242 - Returning cached instance of singleton bean 'defaultTypeNameExtractor'
22/12/11 10:57:28 [http-8090-Processor23] DEBUG support.DefaultListableBeanFactory:458 - Finished creating instance of bean 'defaultResult'
22/12/11 10:57:28 [http-8090-Processor23] DEBUG support.DefaultListableBeanFactory:242 - Returning cached instance of singleton bean 'httpServletResponseProvider'
22/12/11 10:57:28 [http-8090-Processor23] DEBUG support.DefaultListableBeanFactory:458 - Finished creating instance of bean 'flashInterceptor'
22/12/11 10:57:28 [http-8090-Processor23] DEBUG core.ToInstantiateInterceptorHandler:53 - Invoking interceptor FlashInterceptor
22/12/11 10:57:28 [http-8090-Processor23] DEBUG support.DefaultListableBeanFactory:430 - Creating instance of bean 'parametersInstantiatorInterceptor'
22/12/11 10:57:28 [http-8090-Processor23] DEBUG support.DefaultListableBeanFactory:430 - Creating instance of bean 'ognlParametersProvider'
22/12/11 10:57:28 [http-8090-Processor23] DEBUG support.DefaultListableBeanFactory:242 - Returning cached instance of singleton bean 'paranamerNameProvider'
22/12/11 10:57:28 [http-8090-Processor23] DEBUG support.DefaultListableBeanFactory:242 - Returning cached instance of singleton bean 'httpServletRequestProvider'
22/12/11 10:57:28 [http-8090-Processor23] DEBUG support.DefaultListableBeanFactory:242 - Returning cached instance of singleton bean 'br.com.caelum.vraptor.ioc.spring.SpringBasedContainer'
22/12/11 10:57:28 [http-8090-Processor23] DEBUG support.DefaultListableBeanFactory:430 - Creating instance of bean 'ognlFacade'
22/12/11 10:57:28 [http-8090-Processor23] DEBUG support.DefaultListableBeanFactory:242 - Returning cached instance of singleton bean 'defaultConverters'
22/12/11 10:57:28 [http-8090-Processor23] DEBUG support.DefaultListableBeanFactory:430 - Creating instance of bean 'emptyElementsRemoval'
22/12/11 10:57:28 [http-8090-Processor23] DEBUG support.DefaultListableBeanFactory:458 - Finished creating instance of bean 'emptyElementsRemoval'
22/12/11 10:57:28 [http-8090-Processor23] DEBUG support.DefaultListableBeanFactory:242 - Returning cached instance of singleton bean 'cglibProxifier'
22/12/11 10:57:28 [http-8090-Processor23] DEBUG support.DefaultListableBeanFactory:458 - Finished creating instance of bean 'ognlFacade'
22/12/11 10:57:28 [http-8090-Processor23] DEBUG support.DefaultListableBeanFactory:458 - Finished creating instance of bean 'ognlParametersProvider'
22/12/11 10:57:28 [http-8090-Processor23] DEBUG support.DefaultListableBeanFactory:430 - Creating instance of bean 'defaultValidator'
22/12/11 10:57:28 [http-8090-Processor23] DEBUG support.DefaultListableBeanFactory:430 - Creating instance of bean 'defaultValidationViewsFactory'
22/12/11 10:57:28 [http-8090-Processor23] DEBUG support.DefaultListableBeanFactory:242 - Returning cached instance of singleton bean 'cglibProxifier'
22/12/11 10:57:28 [http-8090-Processor23] DEBUG support.DefaultListableBeanFactory:458 - Finished creating instance of bean 'defaultValidationViewsFactory'
22/12/11 10:57:28 [http-8090-Processor23] DEBUG support.DefaultListableBeanFactory:430 - Creating instance of bean 'replicatorOutjector'
22/12/11 10:57:28 [http-8090-Processor23] DEBUG support.DefaultListableBeanFactory:242 - Returning cached instance of singleton bean 'paranamerNameProvider'
22/12/11 10:57:28 [http-8090-Processor23] DEBUG support.DefaultListableBeanFactory:458 - Finished creating instance of bean 'replicatorOutjector'
22/12/11 10:57:28 [http-8090-Processor23] DEBUG support.DefaultListableBeanFactory:242 - Returning cached instance of singleton bean 'cglibProxifier'
22/12/11 10:57:28 [http-8090-Processor23] DEBUG support.DefaultListableBeanFactory:430 - Creating instance of bean 'nullBeanValidator'
22/12/11 10:57:28 [http-8090-Processor23] DEBUG support.DefaultListableBeanFactory:458 - Finished creating instance of bean 'nullBeanValidator'
22/12/11 10:57:28 [http-8090-Processor23] DEBUG support.DefaultListableBeanFactory:430 - Creating instance of bean 'jstlLocalization'
22/12/11 10:57:28 [http-8090-Processor23] DEBUG support.DefaultListableBeanFactory:242 - Returning cached instance of singleton bean 'VRaptorRequestProvider'
22/12/11 10:57:28 [http-8090-Processor23] DEBUG support.DefaultListableBeanFactory:458 - Finished creating instance of bean 'jstlLocalization'
22/12/11 10:57:28 [http-8090-Processor23] DEBUG support.DefaultListableBeanFactory:458 - Finished creating instance of bean 'defaultValidator'
22/12/11 10:57:28 [http-8090-Processor23] DEBUG support.DefaultListableBeanFactory:242 - Returning cached instance of singleton bean 'httpServletRequestProvider'
22/12/11 10:57:28 [http-8090-Processor23] DEBUG support.DefaultListableBeanFactory:430 - Creating instance of bean 'sessionFlashScope'
22/12/11 10:57:28 [http-8090-Processor23] DEBUG support.DefaultListableBeanFactory:242 - Returning cached instance of singleton bean 'httpSessionProvider'
22/12/11 10:57:28 [http-8090-Processor23] DEBUG support.DefaultListableBeanFactory:458 - Finished creating instance of bean 'sessionFlashScope'
22/12/11 10:57:28 [http-8090-Processor23] DEBUG support.DefaultListableBeanFactory:458 - Finished creating instance of bean 'parametersInstantiatorInterceptor'
22/12/11 10:57:28 [http-8090-Processor23] DEBUG core.LazyInterceptorHandler:58 - Invoking interceptor ParametersInstantiatorInterceptor
22/12/11 10:57:28 [http-8090-Processor23] DEBUG core.JstlLocalization:83 - couldn't find message bundle, creating an empty one
22/12/11 10:57:28 [http-8090-Processor23] DEBUG http.ParanamerNameProvider:51 - Found parameter names with paranamer for BancoPanamericanoController.parcelaEmAberto(String) as [cpfOuCnpj]
22/12/11 10:57:28 [http-8090-Processor23] DEBUG support.DefaultListableBeanFactory:430 - Creating instance of bean 'stringConverter'
22/12/11 10:57:28 [http-8090-Processor23] DEBUG support.DefaultListableBeanFactory:458 - Finished creating instance of bean 'stringConverter'
22/12/11 10:57:28 [http-8090-Processor23] DEBUG ognl.OgnlParametersProvider:160 - Applying  with [11111111111]
22/12/11 10:57:28 [http-8090-Processor23] DEBUG ognl.OgnlFacade:118 - unable to parse expression ''. Ignoring.
22/12/11 10:57:28 [http-8090-Processor23] DEBUG interceptor.ParametersInstantiatorInterceptor:84 - Parameter values for [DefaultResourceMethod: BancoPanamericanoController.parcelaEmAbertoBancoPanamericanoController.parcelaEmAberto(String)] are [11111111111]
22/12/11 10:57:28 [http-8090-Processor23] DEBUG support.DefaultListableBeanFactory:430 - Creating instance of bean 'instantiateInterceptor'
22/12/11 10:57:28 [http-8090-Processor23] DEBUG support.DefaultListableBeanFactory:242 - Returning cached instance of singleton bean 'br.com.caelum.vraptor.ioc.spring.SpringBasedContainer'
22/12/11 10:57:28 [http-8090-Processor23] DEBUG support.DefaultListableBeanFactory:458 - Finished creating instance of bean 'instantiateInterceptor'
22/12/11 10:57:28 [http-8090-Processor23] DEBUG core.ToInstantiateInterceptorHandler:53 - Invoking interceptor InstantiateInterceptor
22/12/11 10:57:28 [http-8090-Processor23] DEBUG support.DefaultListableBeanFactory:430 - Creating instance of bean 'bancoPanamericanoController'
22/12/11 10:57:28 [http-8090-Processor23] DEBUG support.DefaultListableBeanFactory:242 - Returning cached instance of singleton bean 'br.com.dds.ivrintegration.ws.bancopanamericano.ParcelaEmAbertoCreator'
22/12/11 10:57:28 [http-8090-Processor23] DEBUG support.DefaultListableBeanFactory:430 - Creating instance of bean 'parcelaEmAbertoCreator'
22/12/11 10:57:28 [http-8090-Processor23] DEBUG support.DefaultListableBeanFactory:242 - Returning cached instance of singleton bean 'br.com.dds.ivrintegration.ws.bancopanamericano.ApiProviderCreator'
22/12/11 10:57:28 [http-8090-Processor23] DEBUG support.DefaultListableBeanFactory:242 - Returning cached instance of singleton bean 'apiProviderCreator'
22/12/11 10:57:28 [http-8090-Processor23] DEBUG support.DefaultListableBeanFactory:458 - Finished creating instance of bean 'parcelaEmAbertoCreator'
22/12/11 10:57:28 [http-8090-Processor23] DEBUG support.DefaultListableBeanFactory:242 - Returning cached instance of singleton bean 'br.com.dds.ivrintegration.ws.bancopanamericano.TotalParaQuitacaoCreator'
22/12/11 10:57:28 [http-8090-Processor23] DEBUG support.DefaultListableBeanFactory:430 - Creating instance of bean 'totalParaQuitacaoCreator'
22/12/11 10:57:28 [http-8090-Processor23] DEBUG support.DefaultListableBeanFactory:242 - Returning cached instance of singleton bean 'br.com.dds.ivrintegration.ws.bancopanamericano.ApiProviderCreator'
22/12/11 10:57:28 [http-8090-Processor23] DEBUG support.DefaultListableBeanFactory:242 - Returning cached instance of singleton bean 'apiProviderCreator'
22/12/11 10:57:28 [http-8090-Processor23] DEBUG support.DefaultListableBeanFactory:458 - Finished creating instance of bean 'totalParaQuitacaoCreator'
22/12/11 10:57:28 [http-8090-Processor23] DEBUG support.DefaultListableBeanFactory:458 - Finished creating instance of bean 'bancoPanamericanoController'
22/12/11 10:57:28 [http-8090-Processor23] DEBUG support.DefaultListableBeanFactory:430 - Creating instance of bean 'exceptionHandlerInterceptor'
22/12/11 10:57:28 [http-8090-Processor23] DEBUG support.DefaultListableBeanFactory:242 - Returning cached instance of singleton bean 'httpServletRequestProvider'
22/12/11 10:57:28 [http-8090-Processor23] DEBUG support.DefaultListableBeanFactory:458 - Finished creating instance of bean 'exceptionHandlerInterceptor'
22/12/11 10:57:28 [http-8090-Processor23] DEBUG core.ToInstantiateInterceptorHandler:53 - Invoking interceptor ExceptionHandlerInterceptor
22/12/11 10:57:28 [http-8090-Processor23] DEBUG support.DefaultListableBeanFactory:430 - Creating instance of bean 'executeMethodInterceptor'
22/12/11 10:57:28 [http-8090-Processor23] DEBUG support.DefaultListableBeanFactory:458 - Finished creating instance of bean 'executeMethodInterceptor'
22/12/11 10:57:28 [http-8090-Processor23] DEBUG core.ToInstantiateInterceptorHandler:53 - Invoking interceptor ExecuteMethodInterceptor
22/12/11 10:57:28 [http-8090-Processor23] DEBUG interceptor.ExecuteMethodInterceptor:60 - Invoking BancoPanamericanoController.parcelaEmAberto(String)
22/12/11 10:57:28 [http-8090-Processor23] DEBUG support.DefaultListableBeanFactory:430 - Creating instance of bean 'forwardToDefaultViewInterceptor'
22/12/11 10:57:28 [http-8090-Processor23] DEBUG support.DefaultListableBeanFactory:458 - Finished creating instance of bean 'forwardToDefaultViewInterceptor'
22/12/11 10:57:28 [http-8090-Processor23] DEBUG core.ToInstantiateInterceptorHandler:53 - Invoking interceptor ForwardToDefaultViewInterceptor
22/12/11 10:57:28 [http-8090-Processor23] DEBUG interceptor.ForwardToDefaultViewInterceptor:59 - forwarding to the dafault page for this logic
22/12/11 10:57:28 [http-8090-Processor23] DEBUG support.DefaultListableBeanFactory:430 - Creating instance of bean 'defaultPageResult'
22/12/11 10:57:28 [http-8090-Processor23] DEBUG support.DefaultListableBeanFactory:242 - Returning cached instance of singleton bean 'httpServletRequestProvider'
22/12/11 10:57:28 [http-8090-Processor23] DEBUG support.DefaultListableBeanFactory:242 - Returning cached instance of singleton bean 'httpServletResponseProvider'
22/12/11 10:57:28 [http-8090-Processor23] DEBUG support.DefaultListableBeanFactory:430 - Creating instance of bean 'defaultPathResolver'
22/12/11 10:57:28 [http-8090-Processor23] DEBUG support.DefaultListableBeanFactory:430 - Creating instance of bean 'defaultFormatResolver'
22/12/11 10:57:28 [http-8090-Processor23] DEBUG support.DefaultListableBeanFactory:242 - Returning cached instance of singleton bean 'httpServletRequestProvider'
22/12/11 10:57:28 [http-8090-Processor23] DEBUG support.DefaultListableBeanFactory:242 - Returning cached instance of singleton bean 'defaultAcceptHeaderToFormat'
22/12/11 10:57:28 [http-8090-Processor23] DEBUG support.DefaultListableBeanFactory:458 - Finished creating instance of bean 'defaultFormatResolver'
22/12/11 10:57:28 [http-8090-Processor23] DEBUG support.DefaultListableBeanFactory:458 - Finished creating instance of bean 'defaultPathResolver'
22/12/11 10:57:28 [http-8090-Processor23] DEBUG support.DefaultListableBeanFactory:242 - Returning cached instance of singleton bean 'cglibProxifier'
22/12/11 10:57:28 [http-8090-Processor23] DEBUG support.DefaultListableBeanFactory:458 - Finished creating instance of bean 'defaultPageResult'
22/12/11 10:57:28 [http-8090-Processor23] DEBUG view.DefaultPageResult:66 - forwarding to /WEB-INF/jsp/bancoPanamericano/parcelaEmAberto.jsp
22/12/11 10:57:28 [http-8090-Processor23] DEBUG [localhost].[/ivrintegration-ws]:185 - servletPath=/WEB-INF/jsp/bancoPanamericano/parcelaEmAberto.jsp, pathInfo=null, queryString=null, name=null
22/12/11 10:57:28 [http-8090-Processor23] DEBUG [localhost].[/ivrintegration-ws]:371 -  Path Based Forward
22/12/11 10:57:28 [http-8090-Processor23] DEBUG core.DefaultStaticContentHandler:63 - Deferring request to container: /ivrintegration-ws/WEB-INF/jsp/bancoPanamericano/parcelaEmAberto.jsp 
22/12/11 10:57:28 [http-8090-Processor23] DEBUG servlet.JspServlet:248 - JspEngine --> /WEB-INF/jsp/bancoPanamericano/parcelaEmAberto.jsp
22/12/11 10:57:28 [http-8090-Processor23] DEBUG servlet.JspServlet:249 - 	     ServletPath: /WEB-INF/jsp/bancoPanamericano/parcelaEmAberto.jsp
22/12/11 10:57:28 [http-8090-Processor23] DEBUG servlet.JspServlet:250 - 	        PathInfo: null
22/12/11 10:57:28 [http-8090-Processor23] DEBUG servlet.JspServlet:251 - 	        RealPath: D:\Program Files\Tomcat 5.5\webapps\ivrintegration-ws\WEB-INF\jsp\bancoPanamericano\parcelaEmAberto.jsp
22/12/11 10:57:28 [http-8090-Processor23] DEBUG servlet.JspServlet:252 - 	      RequestURI: /ivrintegration-ws/WEB-INF/jsp/bancoPanamericano/parcelaEmAberto.jsp
22/12/11 10:57:28 [http-8090-Processor23] DEBUG servlet.JspServlet:253 - 	     QueryString: cpfOuCnpj=11111111111
22/12/11 10:57:28 [http-8090-Processor23] DEBUG servlet.JspServlet:254 - 	  Request Params: 
22/12/11 10:57:28 [http-8090-Processor23] DEBUG servlet.JspServlet:258 - 		 cpfOuCnpj = 11111111111
22/12/11 10:57:28 [http-8090-Processor23] DEBUG [localhost].[/ivrintegration-ws]:404 -  Disabling the response for futher output
22/12/11 10:57:28 [http-8090-Processor23] DEBUG [localhost].[/ivrintegration-ws]:412 -  The Response is vehiculed using a wrapper: br.com.caelum.vraptor.http.VRaptorResponse
22/12/11 10:57:28 [http-8090-Processor23] DEBUG vraptor.VRaptor:96 - VRaptor ended the request

Log no tomcat 7


22/12/11 10:54:50 [http-bio-8080-exec-10] DEBUG vraptor.VRaptor:82 - VRaptor received a new request
22/12/11 10:54:50 [http-bio-8080-exec-10] DEBUG support.DefaultListableBeanFactory:242 - Returning cached instance of singleton bean 'br.com.caelum.vraptor.http.EncodingHandlerFactory'
22/12/11 10:54:50 [http-bio-8080-exec-10] DEBUG support.DefaultListableBeanFactory:242 - Returning cached instance of singleton bean 'encodingHandlerFactory'
22/12/11 10:54:50 [http-bio-8080-exec-10] DEBUG support.DefaultListableBeanFactory:430 - Creating instance of bean 'enhancedRequestExecution'
22/12/11 10:54:50 [http-bio-8080-exec-10] DEBUG support.DefaultListableBeanFactory:430 - Creating instance of bean 'defaultInterceptorStack'
22/12/11 10:54:50 [http-bio-8080-exec-10] DEBUG support.DefaultListableBeanFactory:242 - Returning cached instance of singleton bean 'defaultInterceptorHandlerFactory'
22/12/11 10:54:50 [http-bio-8080-exec-10] DEBUG support.DefaultListableBeanFactory:458 - Finished creating instance of bean 'defaultInterceptorStack'
22/12/11 10:54:50 [http-bio-8080-exec-10] DEBUG support.DefaultListableBeanFactory:242 - Returning cached instance of singleton bean 'topologicalSortedInterceptorRegistry'
22/12/11 10:54:50 [http-bio-8080-exec-10] DEBUG support.DefaultListableBeanFactory:458 - Finished creating instance of bean 'enhancedRequestExecution'
22/12/11 10:54:50 [http-bio-8080-exec-10] DEBUG support.DefaultListableBeanFactory:430 - Creating instance of bean 'resourceLookupInterceptor'
22/12/11 10:54:50 [http-bio-8080-exec-10] DEBUG support.DefaultListableBeanFactory:242 - Returning cached instance of singleton bean 'defaultResourceTranslator'
22/12/11 10:54:50 [http-bio-8080-exec-10] DEBUG support.DefaultListableBeanFactory:430 - Creating instance of bean 'defaultMethodInfo'
22/12/11 10:54:50 [http-bio-8080-exec-10] DEBUG support.DefaultListableBeanFactory:458 - Finished creating instance of bean 'defaultMethodInfo'
22/12/11 10:54:50 [http-bio-8080-exec-10] DEBUG support.DefaultListableBeanFactory:242 - Returning cached instance of singleton bean 'defaultResourceNotFoundHandler'
22/12/11 10:54:50 [http-bio-8080-exec-10] DEBUG support.DefaultListableBeanFactory:242 - Returning cached instance of singleton bean 'defaultMethodNotAllowedHandler'
22/12/11 10:54:50 [http-bio-8080-exec-10] DEBUG support.DefaultListableBeanFactory:242 - Returning cached instance of singleton bean 'VRaptorRequestProvider'
22/12/11 10:54:50 [http-bio-8080-exec-10] DEBUG support.DefaultListableBeanFactory:458 - Finished creating instance of bean 'resourceLookupInterceptor'
22/12/11 10:54:50 [http-bio-8080-exec-10] DEBUG core.ToInstantiateInterceptorHandler:53 - Invoking interceptor ResourceLookupInterceptor
22/12/11 10:54:50 [http-bio-8080-exec-10] DEBUG http.DefaultResourceTranslator:51 - trying to access /bancoPanamericano/totalParaQuitacao
22/12/11 10:54:50 [http-bio-8080-exec-10] DEBUG http.DefaultResourceTranslator:61 - found resource [DefaultResourceMethod: BancoPanamericanoController.totalParaQuitacaoBancoPanamericanoController.totalParaQuitacao(String)]
22/12/11 10:54:50 [http-bio-8080-exec-10] DEBUG support.DefaultListableBeanFactory:430 - Creating instance of bean 'instantiateInterceptor'
22/12/11 10:54:50 [http-bio-8080-exec-10] DEBUG support.DefaultListableBeanFactory:242 - Returning cached instance of singleton bean 'br.com.caelum.vraptor.ioc.spring.SpringBasedContainer'
22/12/11 10:54:50 [http-bio-8080-exec-10] DEBUG support.DefaultListableBeanFactory:458 - Finished creating instance of bean 'instantiateInterceptor'
22/12/11 10:54:50 [http-bio-8080-exec-10] DEBUG core.ToInstantiateInterceptorHandler:53 - Invoking interceptor InstantiateInterceptor
22/12/11 10:54:50 [http-bio-8080-exec-10] DEBUG support.DefaultListableBeanFactory:430 - Creating instance of bean 'bancoPanamericanoController'
22/12/11 10:54:50 [http-bio-8080-exec-10] DEBUG support.DefaultListableBeanFactory:430 - Creating instance of bean 'defaultResult'
22/12/11 10:54:50 [http-bio-8080-exec-10] DEBUG support.DefaultListableBeanFactory:242 - Returning cached instance of singleton bean 'httpServletRequestProvider'
22/12/11 10:54:50 [http-bio-8080-exec-10] DEBUG support.DefaultListableBeanFactory:242 - Returning cached instance of singleton bean 'br.com.caelum.vraptor.ioc.spring.SpringBasedContainer'
22/12/11 10:54:50 [http-bio-8080-exec-10] DEBUG support.DefaultListableBeanFactory:430 - Creating instance of bean 'defaultExceptionMapper'
22/12/11 10:54:50 [http-bio-8080-exec-10] DEBUG support.DefaultListableBeanFactory:242 - Returning cached instance of singleton bean 'cglibProxifier'
22/12/11 10:54:50 [http-bio-8080-exec-10] DEBUG support.DefaultListableBeanFactory:458 - Finished creating instance of bean 'defaultExceptionMapper'
22/12/11 10:54:50 [http-bio-8080-exec-10] DEBUG support.DefaultListableBeanFactory:242 - Returning cached instance of singleton bean 'defaultTypeNameExtractor'
22/12/11 10:54:50 [http-bio-8080-exec-10] DEBUG support.DefaultListableBeanFactory:458 - Finished creating instance of bean 'defaultResult'
22/12/11 10:54:50 [http-bio-8080-exec-10] DEBUG support.DefaultListableBeanFactory:242 - Returning cached instance of singleton bean 'br.com.dds.ivrintegration.ws.bancopanamericano.ParcelaEmAbertoCreator'
22/12/11 10:54:50 [http-bio-8080-exec-10] DEBUG support.DefaultListableBeanFactory:430 - Creating instance of bean 'parcelaEmAbertoCreator'
22/12/11 10:54:50 [http-bio-8080-exec-10] DEBUG support.DefaultListableBeanFactory:242 - Returning cached instance of singleton bean 'br.com.dds.ivrintegration.ws.bancopanamericano.ApiProviderCreator'
22/12/11 10:54:50 [http-bio-8080-exec-10] DEBUG support.DefaultListableBeanFactory:242 - Returning cached instance of singleton bean 'apiProviderCreator$'
22/12/11 10:54:50 [http-bio-8080-exec-10] DEBUG support.DefaultListableBeanFactory:458 - Finished creating instance of bean 'parcelaEmAbertoCreator'
22/12/11 10:54:50 [http-bio-8080-exec-10] DEBUG support.DefaultListableBeanFactory:242 - Returning cached instance of singleton bean 'br.com.dds.ivrintegration.ws.bancopanamericano.TotalParaQuitacaoCreator'
22/12/11 10:54:50 [http-bio-8080-exec-10] DEBUG support.DefaultListableBeanFactory:430 - Creating instance of bean 'totalParaQuitacaoCreator'
22/12/11 10:54:50 [http-bio-8080-exec-10] DEBUG support.DefaultListableBeanFactory:242 - Returning cached instance of singleton bean 'br.com.dds.ivrintegration.ws.bancopanamericano.ApiProviderCreator'
22/12/11 10:54:50 [http-bio-8080-exec-10] DEBUG support.DefaultListableBeanFactory:242 - Returning cached instance of singleton bean 'apiProviderCreator$'
22/12/11 10:54:50 [http-bio-8080-exec-10] DEBUG support.DefaultListableBeanFactory:458 - Finished creating instance of bean 'totalParaQuitacaoCreator'
22/12/11 10:54:50 [http-bio-8080-exec-10] DEBUG support.DefaultListableBeanFactory:458 - Finished creating instance of bean 'bancoPanamericanoController'
22/12/11 10:54:50 [http-bio-8080-exec-10] DEBUG support.DefaultListableBeanFactory:430 - Creating instance of bean 'servlet3MultipartInterceptor'
22/12/11 10:54:50 [http-bio-8080-exec-10] DEBUG support.DefaultListableBeanFactory:242 - Returning cached instance of singleton bean 'httpServletRequestProvider'
22/12/11 10:54:50 [http-bio-8080-exec-10] DEBUG support.DefaultListableBeanFactory:242 - Returning cached instance of singleton bean 'httpServletRequestProvider'
22/12/11 10:54:50 [http-bio-8080-exec-10] DEBUG support.DefaultListableBeanFactory:430 - Creating instance of bean 'defaultValidator'
22/12/11 10:54:50 [http-bio-8080-exec-10] DEBUG support.DefaultListableBeanFactory:430 - Creating instance of bean 'defaultValidationViewsFactory'
22/12/11 10:54:50 [http-bio-8080-exec-10] DEBUG support.DefaultListableBeanFactory:242 - Returning cached instance of singleton bean 'cglibProxifier'
22/12/11 10:54:50 [http-bio-8080-exec-10] DEBUG support.DefaultListableBeanFactory:458 - Finished creating instance of bean 'defaultValidationViewsFactory'
22/12/11 10:54:50 [http-bio-8080-exec-10] DEBUG support.DefaultListableBeanFactory:430 - Creating instance of bean 'replicatorOutjector'
22/12/11 10:54:50 [http-bio-8080-exec-10] DEBUG support.DefaultListableBeanFactory:242 - Returning cached instance of singleton bean 'paranamerNameProvider'
22/12/11 10:54:50 [http-bio-8080-exec-10] DEBUG support.DefaultListableBeanFactory:458 - Finished creating instance of bean 'replicatorOutjector'
22/12/11 10:54:50 [http-bio-8080-exec-10] DEBUG support.DefaultListableBeanFactory:242 - Returning cached instance of singleton bean 'cglibProxifier'
22/12/11 10:54:50 [http-bio-8080-exec-10] DEBUG support.DefaultListableBeanFactory:430 - Creating instance of bean 'nullBeanValidator'
22/12/11 10:54:50 [http-bio-8080-exec-10] DEBUG support.DefaultListableBeanFactory:458 - Finished creating instance of bean 'nullBeanValidator'
22/12/11 10:54:50 [http-bio-8080-exec-10] DEBUG support.DefaultListableBeanFactory:430 - Creating instance of bean 'jstlLocalization'
22/12/11 10:54:50 [http-bio-8080-exec-10] DEBUG support.DefaultListableBeanFactory:242 - Returning cached instance of singleton bean 'VRaptorRequestProvider'
22/12/11 10:54:50 [http-bio-8080-exec-10] DEBUG support.DefaultListableBeanFactory:458 - Finished creating instance of bean 'jstlLocalization'
22/12/11 10:54:50 [http-bio-8080-exec-10] DEBUG support.DefaultListableBeanFactory:458 - Finished creating instance of bean 'defaultValidator'
22/12/11 10:54:50 [http-bio-8080-exec-10] DEBUG support.DefaultListableBeanFactory:458 - Finished creating instance of bean 'servlet3MultipartInterceptor'
22/12/11 10:54:50 [http-bio-8080-exec-10] DEBUG support.DefaultListableBeanFactory:430 - Creating instance of bean 'flashInterceptor'
22/12/11 10:54:50 [http-bio-8080-exec-10] DEBUG support.DefaultListableBeanFactory:242 - Returning cached instance of singleton bean 'httpSessionProvider'
22/12/11 10:54:50 [http-bio-8080-exec-10] DEBUG support.DefaultListableBeanFactory:242 - Returning cached instance of singleton bean 'httpServletResponseProvider'
22/12/11 10:54:50 [http-bio-8080-exec-10] DEBUG support.DefaultListableBeanFactory:458 - Finished creating instance of bean 'flashInterceptor'
22/12/11 10:54:50 [http-bio-8080-exec-10] DEBUG core.ToInstantiateInterceptorHandler:53 - Invoking interceptor FlashInterceptor
22/12/11 10:54:50 [http-bio-8080-exec-10] DEBUG support.DefaultListableBeanFactory:430 - Creating instance of bean 'exceptionHandlerInterceptor'
22/12/11 10:54:50 [http-bio-8080-exec-10] DEBUG support.DefaultListableBeanFactory:242 - Returning cached instance of singleton bean 'httpServletRequestProvider'
22/12/11 10:54:50 [http-bio-8080-exec-10] DEBUG support.DefaultListableBeanFactory:458 - Finished creating instance of bean 'exceptionHandlerInterceptor'
22/12/11 10:54:50 [http-bio-8080-exec-10] DEBUG core.ToInstantiateInterceptorHandler:53 - Invoking interceptor ExceptionHandlerInterceptor
22/12/11 10:54:50 [http-bio-8080-exec-10] DEBUG support.DefaultListableBeanFactory:430 - Creating instance of bean 'parametersInstantiatorInterceptor'
22/12/11 10:54:50 [http-bio-8080-exec-10] DEBUG support.DefaultListableBeanFactory:430 - Creating instance of bean 'ognlParametersProvider'
22/12/11 10:54:50 [http-bio-8080-exec-10] DEBUG support.DefaultListableBeanFactory:242 - Returning cached instance of singleton bean 'paranamerNameProvider'
22/12/11 10:54:50 [http-bio-8080-exec-10] DEBUG support.DefaultListableBeanFactory:242 - Returning cached instance of singleton bean 'httpServletRequestProvider'
22/12/11 10:54:50 [http-bio-8080-exec-10] DEBUG support.DefaultListableBeanFactory:242 - Returning cached instance of singleton bean 'br.com.caelum.vraptor.ioc.spring.SpringBasedContainer'
22/12/11 10:54:50 [http-bio-8080-exec-10] DEBUG support.DefaultListableBeanFactory:430 - Creating instance of bean 'ognlFacade'
22/12/11 10:54:50 [http-bio-8080-exec-10] DEBUG support.DefaultListableBeanFactory:242 - Returning cached instance of singleton bean 'defaultConverters'
22/12/11 10:54:50 [http-bio-8080-exec-10] DEBUG support.DefaultListableBeanFactory:430 - Creating instance of bean 'emptyElementsRemoval'
22/12/11 10:54:50 [http-bio-8080-exec-10] DEBUG support.DefaultListableBeanFactory:458 - Finished creating instance of bean 'emptyElementsRemoval'
22/12/11 10:54:50 [http-bio-8080-exec-10] DEBUG support.DefaultListableBeanFactory:242 - Returning cached instance of singleton bean 'cglibProxifier'
22/12/11 10:54:50 [http-bio-8080-exec-10] DEBUG support.DefaultListableBeanFactory:458 - Finished creating instance of bean 'ognlFacade'
22/12/11 10:54:50 [http-bio-8080-exec-10] DEBUG support.DefaultListableBeanFactory:458 - Finished creating instance of bean 'ognlParametersProvider'
22/12/11 10:54:50 [http-bio-8080-exec-10] DEBUG support.DefaultListableBeanFactory:242 - Returning cached instance of singleton bean 'httpServletRequestProvider'
22/12/11 10:54:50 [http-bio-8080-exec-10] DEBUG support.DefaultListableBeanFactory:430 - Creating instance of bean 'sessionFlashScope'
22/12/11 10:54:50 [http-bio-8080-exec-10] DEBUG support.DefaultListableBeanFactory:242 - Returning cached instance of singleton bean 'httpSessionProvider'
22/12/11 10:54:50 [http-bio-8080-exec-10] DEBUG support.DefaultListableBeanFactory:458 - Finished creating instance of bean 'sessionFlashScope'
22/12/11 10:54:50 [http-bio-8080-exec-10] DEBUG support.DefaultListableBeanFactory:458 - Finished creating instance of bean 'parametersInstantiatorInterceptor'
22/12/11 10:54:50 [http-bio-8080-exec-10] DEBUG core.LazyInterceptorHandler:58 - Invoking interceptor ParametersInstantiatorInterceptor
22/12/11 10:54:50 [http-bio-8080-exec-10] DEBUG core.JstlLocalization:83 - couldn't find message bundle, creating an empty one
22/12/11 10:54:50 [http-bio-8080-exec-10] DEBUG http.ParanamerNameProvider:51 - Found parameter names with paranamer for BancoPanamericanoController.totalParaQuitacao(String) as [cpfOuCnpj]
22/12/11 10:54:50 [http-bio-8080-exec-10] DEBUG support.DefaultListableBeanFactory:430 - Creating instance of bean 'stringConverter'
22/12/11 10:54:50 [http-bio-8080-exec-10] DEBUG support.DefaultListableBeanFactory:458 - Finished creating instance of bean 'stringConverter'
22/12/11 10:54:50 [http-bio-8080-exec-10] DEBUG ognl.OgnlParametersProvider:160 - Applying  with [11111111111]
22/12/11 10:54:50 [http-bio-8080-exec-10] DEBUG ognl.OgnlFacade:118 - unable to parse expression ''. Ignoring.
22/12/11 10:54:50 [http-bio-8080-exec-10] DEBUG interceptor.ParametersInstantiatorInterceptor:84 - Parameter values for [DefaultResourceMethod: BancoPanamericanoController.totalParaQuitacaoBancoPanamericanoController.totalParaQuitacao(String)] are [11111111111]
22/12/11 10:54:50 [http-bio-8080-exec-10] DEBUG support.DefaultListableBeanFactory:430 - Creating instance of bean 'executeMethodInterceptor'
22/12/11 10:54:50 [http-bio-8080-exec-10] DEBUG support.DefaultListableBeanFactory:458 - Finished creating instance of bean 'executeMethodInterceptor'
22/12/11 10:54:50 [http-bio-8080-exec-10] DEBUG core.ToInstantiateInterceptorHandler:53 - Invoking interceptor ExecuteMethodInterceptor
22/12/11 10:54:50 [http-bio-8080-exec-10] DEBUG interceptor.ExecuteMethodInterceptor:60 - Invoking BancoPanamericanoController.totalParaQuitacao(String)
22/12/11 10:54:50 [http-bio-8080-exec-10] DEBUG support.DefaultListableBeanFactory:430 - Creating instance of bean 'forwardToDefaultViewInterceptor'
22/12/11 10:54:50 [http-bio-8080-exec-10] DEBUG support.DefaultListableBeanFactory:458 - Finished creating instance of bean 'forwardToDefaultViewInterceptor'
22/12/11 10:54:50 [http-bio-8080-exec-10] DEBUG core.ToInstantiateInterceptorHandler:53 - Invoking interceptor ForwardToDefaultViewInterceptor
22/12/11 10:54:50 [http-bio-8080-exec-10] DEBUG interceptor.ForwardToDefaultViewInterceptor:59 - forwarding to the dafault page for this logic
22/12/11 10:54:50 [http-bio-8080-exec-10] DEBUG support.DefaultListableBeanFactory:430 - Creating instance of bean 'defaultPageResult'
22/12/11 10:54:50 [http-bio-8080-exec-10] DEBUG support.DefaultListableBeanFactory:242 - Returning cached instance of singleton bean 'httpServletRequestProvider'
22/12/11 10:54:50 [http-bio-8080-exec-10] DEBUG support.DefaultListableBeanFactory:242 - Returning cached instance of singleton bean 'httpServletResponseProvider'
22/12/11 10:54:50 [http-bio-8080-exec-10] DEBUG support.DefaultListableBeanFactory:430 - Creating instance of bean 'defaultPathResolver'
22/12/11 10:54:50 [http-bio-8080-exec-10] DEBUG support.DefaultListableBeanFactory:430 - Creating instance of bean 'defaultFormatResolver'
22/12/11 10:54:50 [http-bio-8080-exec-10] DEBUG support.DefaultListableBeanFactory:242 - Returning cached instance of singleton bean 'httpServletRequestProvider'
22/12/11 10:54:50 [http-bio-8080-exec-10] DEBUG support.DefaultListableBeanFactory:242 - Returning cached instance of singleton bean 'defaultAcceptHeaderToFormat'
22/12/11 10:54:50 [http-bio-8080-exec-10] DEBUG support.DefaultListableBeanFactory:458 - Finished creating instance of bean 'defaultFormatResolver'
22/12/11 10:54:50 [http-bio-8080-exec-10] DEBUG support.DefaultListableBeanFactory:458 - Finished creating instance of bean 'defaultPathResolver'
22/12/11 10:54:50 [http-bio-8080-exec-10] DEBUG support.DefaultListableBeanFactory:242 - Returning cached instance of singleton bean 'cglibProxifier'
22/12/11 10:54:50 [http-bio-8080-exec-10] DEBUG support.DefaultListableBeanFactory:458 - Finished creating instance of bean 'defaultPageResult'
22/12/11 10:54:50 [http-bio-8080-exec-10] DEBUG view.DefaultPageResult:66 - forwarding to /WEB-INF/jsp/bancoPanamericano/totalParaQuitacao.jsp
22/12/11 10:54:50 [http-bio-8080-exec-10] DEBUG core.DefaultStaticContentHandler:63 - Deferring request to container: /ivrintegration-ws/WEB-INF/jsp/bancoPanamericano/totalParaQuitacao.jsp 
22/12/11 10:54:50 [http-bio-8080-exec-10] DEBUG vraptor.VRaptor:96 - VRaptor ended the request

Resolvido de acordo com o descrito no post http://www.guj.com.br/java/93367-struts-tomcat-55–jsp-20-servlets-25–el-nao-funcionando-resolvido-