虽然我必须回答我自己的问题,但我只想分享我的结果。我必须追查很多。但答案就是这么简单。
首先,这不是因为 cookie。
此答案不仅用于单击“开始工作流程”按钮,还用于在共享会话超时后调用 alfresco webscript。
EndPointProxyController
所有对 alfresco webscript的调用都是由org.springframework.extensions.webscripts.servlet.mvc.EndPointProxyController
.spring-webscripts-1.0.0-sources.jar
在handleRequestInternal
方法中如果没有会话并且 basicHttpAuthChallenge 为真,基本认证框如下图所示。
else if (this.basicHttpAuthChallenge || descriptor.getBasicAuth())
{
// check for HTTP authorisation request (i.e. RSS feeds, direct links etc.)
String authorization = req.getHeader("Authorization");
if (authorization == null || authorization.length() == 0)
{
res.setStatus(HttpServletResponse.SC_UNAUTHORIZED,
"No USER_ID found in session and requested endpoint requires authentication.");
res.setHeader("WWW-Authenticate", "Basic realm=\"Alfresco\"");
// no further processing as authentication is required but not provided
// the browser will now prompt the user for appropriate credentials
return null;
}
else
{
// other coding
}
我们可以避免这种情况
在endpointController
slingshot -application-context.xml中,将
basicHttpAuthChallenge 更改为 false。
像
<!-- Override EndPointProxyController to enable Basic HTTP auth challenge on 401 response -->
<bean id="endpointController" class="org.springframework.extensions.webscripts.servlet.mvc.EndPointProxyController">
<property name="cacheSeconds" value="-1" />
<property name="useExpiresHeader"><value>true</value></property>
<property name="useCacheControlHeader"><value>true</value></property>
<property name="configService" ref="web.config" />
<property name="connectorService" ref="connector.service" />
<property name="supportedMethods"><null/></property>
<property name="basicHttpAuthChallenge"><value>false</value></property>
</bean>