2011-12-30 2 views
0

Single Sign-On 인증 용 CAS를 구현할 때 동일한 SSL을 사용했습니다. 나는 다음과 같은 오류를 얻고있다SSL을 사용하여 CAS를 구현하는 중 "NoSuchFlowExecutionException"예외가 발생합니다.

,

org.springframework.webflow.execution.repository.NoSuchFlowExecutionException: No flow execution could be found with key '_c642A7AC9-3721-0813-DF9B-9B90458DB0C9_kD14EEF54-E743-8317-8735-825AB028366B' -- perhaps this executing flow has ended or expired? This could happen if your users are relying on browser history (typically via the back button) that references ended flows.; nested exception is org.springframework.webflow.conversation.NoSuchConversationException: No conversation could be found with id '642A7AC9-3721-0813-DF9B-9B90458DB0C9' -- perhaps this conversation has ended? 
org.springframework.webflow.execution.repository.support.AbstractConversationFlowExecutionRepository.getConversation(AbstractConversationFlowExecutionRepository.java:229) 
org.springframework.webflow.execution.repository.support.AbstractConversationFlowExecutionRepository.getLock(AbstractConversationFlowExecutionRepository.java:119) 
org.springframework.webflow.executor.FlowExecutorImpl.resume(FlowExecutorImpl.java:217) 
org.springframework.webflow.executor.support.FlowRequestHandler.handleFlowRequest(FlowRequestHandler.java:111) 
org.springframework.webflow.executor.mvc.FlowController.handleRequestInternal(FlowController.java:165) 
org.springframework.web.servlet.mvc.AbstractController.handleRequest(AbstractController.java:153) 
org.springframework.web.servlet.mvc.SimpleControllerHandlerAdapter.handle(SimpleControllerHandlerAdapter.java:48) 
org.springframework.web.servlet.DispatcherServlet.doDispatch(DispatcherServlet.java:875) 
org.springframework.web.servlet.DispatcherServlet.doService(DispatcherServlet.java:809) 
org.springframework.web.servlet.FrameworkServlet.processRequest(FrameworkServlet.java:571) 
org.springframework.web.servlet.FrameworkServlet.doPost(FrameworkServlet.java:511) 
javax.servlet.http.HttpServlet.service(HttpServlet.java:710) 
javax.servlet.http.HttpServlet.service(HttpServlet.java:803) 
org.jasig.cas.web.init.SafeDispatcherServlet.service(SafeDispatcherServlet.java:115) 
org.inspektr.common.web.ClientInfoThreadLocalFilter.doFilterInternal(ClientInfoThreadLocalFilter.java:48) 
org.springframework.web.filter.OncePerRequestFilter.doFilter(OncePerRequestFilter.java:76) 


root cause 

org.springframework.webflow.conversation.NoSuchConversationException: No conversation could be found with id '642A7AC9-3721-0813-DF9B-9B90458DB0C9' -- perhaps this conversation has ended? 
org.springframework.webflow.conversation.impl.ConversationContainer.getConversation(ConversationContainer.java:107) 
org.springframework.webflow.conversation.impl.SessionBindingConversationManager.getConversation(SessionBindingConversationManager.java:125) 
org.springframework.webflow.execution.repository.support.AbstractConversationFlowExecutionRepository.getConversation(AbstractConversationFlowExecutionRepository.java:227) 
org.springframework.webflow.execution.repository.support.AbstractConversationFlowExecutionRepository.getLock(AbstractConversationFlowExecutionRepository.java:119) 
org.springframework.webflow.executor.FlowExecutorImpl.resume(FlowExecutorImpl.java:217) 
org.springframework.webflow.executor.support.FlowRequestHandler.handleFlowRequest(FlowRequestHandler.java:111) 
org.springframework.webflow.executor.mvc.FlowController.handleRequestInternal(FlowController.java:165) 
org.springframework.web.servlet.mvc.AbstractController.handleRequest(AbstractController.java:153) 
org.springframework.web.servlet.mvc.SimpleControllerHandlerAdapter.handle(SimpleControllerHandlerAdapter.java:48) 
org.springframework.web.servlet.DispatcherServlet.doDispatch(DispatcherServlet.java:875) 
org.springframework.web.servlet.DispatcherServlet.doService(DispatcherServlet.java:809) 
org.springframework.web.servlet.FrameworkServlet.processRequest(FrameworkServlet.java:571) 
org.springframework.web.servlet.FrameworkServlet.doPost(FrameworkServlet.java:511) 
javax.servlet.http.HttpServlet.service(HttpServlet.java:710) 
javax.servlet.http.HttpServlet.service(HttpServlet.java:803) 
org.jasig.cas.web.init.SafeDispatcherServlet.service(SafeDispatcherServlet.java:115) 
org.inspektr.common.web.ClientInfoThreadLocalFilter.doFilterInternal(ClientInfoThreadLocalFilter.java:48) 
org.springframework.web.filter.OncePerRequestFilter.doFilter(OncePerRequestFilter.java:76) 

사람이 일에 대한 생각을 가지고 있다면, 안내하시기 바랍니다.

감사합니다.

"login-webflow.xml"과 관련된 몇 가지 실마리를 얻었습니다. 누군가가 얻으면 ... 되돌아갑니다.

답변

0

완료, 인증서 이름에 문제가있어서 인증서 이름을 컴퓨터 번호로 지정하고 작동했습니다.

관련 문제