Copy link to clipboard
Copied
Hi,
I want to log in some users just with their login names (SSO). So I think http header authentication is the way to go.
I did everything what the doc says (http://help.adobe.com/en_US/connect/8.0/webservices/connect_8_webservices.pdf)
I added a line to custom.ini for HTTP_AUTH_HEADER (HTTP_AUTH_HEADER=white50)
My web.xml fil contains filter settings below.
I am requesting "https://example.com/api/xml?action=login&external-auth=use" with http header (white50=adobe_connect_loginname).
But I always get no-access error response from AC server. I could not authenticate user with its login name without password.
Could you help please.
web.xml:
---------------------------------------------------------------------------------------
<filter>
<filter-name>HeaderAuthenticationFilter</filter-name>
<filter-class>com.macromedia.airspeed.servlet.filter.HeaderAuthenticationFilter</filter-class>
<init-param>
<param-name>ignore-pattern-0</param-name>
<param-value>/api/</param-value>
</init-param>
<init-param>
<param-name>ignore-pattern-1</param-name>
<param-value>/common/</param-value>
</init-param>
<init-param>
<param-name>ignore-pattern-2</param-name>
<param-value>/servlet/gateway/</param-value>
</init-param>
<init-param>
<param-name>ignore-pattern-3</param-name>
<param-value>/servlet/mirror</param-value>
</init-param>
<init-param>
<param-name>ignore-pattern-4</param-name>
<param-value>/servlet/testbuilder</param-value>
</init-param>
<init-param>
<param-name>ignore-pattern-5</param-name>
<param-value>/main</param-value>
</init-param>
</filter>
<filter-mapping>
<filter-name>HeaderAuthenticationFilter</filter-name>
<url-pattern>/*</url-pattern>
</filter-mapping>
------------------------------------------
Copy link to clipboard
Copied
Not sure if it would make a difference, but if you are using Connect 8, that is the correct document, if not, I'd use the Connect 9 document available here: http://www.adobe.com/devnet/adobeconnect.html
I don't think anything changed with SSO between the versions, but I'd have to double check to be 100% sure.