0

We are deploying our ASP.NET 3.5 app to a production server for beta testing.

Each page is secured using SSL.

On our homepage (default.aspx) we have web services which populate flash objects.

I am getting an error:

The HTTP request is unauthorized with client authentication scheme 'Anonymous'. The authentication header received from the server was 'Negotiate,NTLM'.

Also, when using firefox, receive the Windows Login pop up screen.

Does anyone have any clue what or why this is happening?

Much thanks!

4

2 回答 2

1

我认为从 Flash 到安全 Web 服务的请求没有凭据,或者无法验证响应中的安全证书。

大概两者兼而有之。

所以在闪存中可能需要一些代码,例如:

request.Username = "xyz"
request.Password = "***"

或类似的东西

在 .net 中有一种方法可以手动覆盖对请求的证书验证。我不确定你会如何在 Flash 中做到这一点。

如果我找到 .net 方式的示例,我会更新它。

于 2008-10-30T00:42:18.397 回答
0

Sounds like IIS isn't configured for anonymous access.

If you believe you have it setup correctly (sounds like it isn't), then you might try troubleshooting your connection with Wfetch.

于 2008-10-29T21:31:23.867 回答