想写的structs2的拦截器最后调用flex可是 不到错误页面!小弟刚学 请大伙赐教111这个是struct xml的定义
<!-- 定义一个拦截器 -->
    <interceptors> 
            <interceptor name ="auth" class ="com.common.AuthorityInterceptor" />
        </interceptors>          <global-results>
            <result name="login">/index.jsp</result>
            <result name="sucess">/SFJTest-debug/DeTree.html</result>
        </global-results>         <action name="showUser" class="UserActon" method="getAllUser">
<interceptor-ref name="auth"></interceptor-ref>
<result type="xslt"></result>
</action>222这个是那个过滤器 public String intercept(ActionInvocation arg0) throws Exception {
// TODO Auto-generated method stub
Object obj= ServletActionContext.getRequest().getAttribute("parm");
if(obj!=null)

return arg0.invoke();
else
return ActionSupport.LOGIN;
}
333 可是走return ActionSupport.LOGIN;的时候 在flex页面中出错了private function Warn(e:FaultEvent):void{
//ExternalInterface.call("function(){window.location.href='http://localhost:8080/SFJTest/SFJTest-debug/DeTree.html';}");

Alert.show(e.message.toString() );
}
在这个方法中把index.jsp页面的内容给打出来了