English 中文(简体)
• 如何用4.00英特网框架单独签署工作
原标题:how to make single sign on work with asp.net framework 4.0

我有家长网络应用程序和儿童网络应用。 我在他们中间使用一个信号。 儿童申请应当将匿名用户转至父母申请的标识页。 我们刚刚更新到4.0网框架,而现在,SSO则不再工作。

设置如下。 我在这两种应用中都安装了机器钥匙和加密钥匙。

因此,对于认证的标签,在儿童身上有以下内容(我把实际的父母亲胎换成“隐私使用”):

<authentication mode="Forms">
            <forms name=".SSOAuth" loginUrl="parentApp/Login.aspx" path="/" protection="All"/>
        </authentication>
        <sessionState mode="InProc" cookieless="false" timeout="30"/>
        <authorization>
            <!--<deny users="?"/>
            <allow users="*"/>-->
        </authorization>

这在我们改用4.net之前就完全是细致的。 任何人都能够说明为什么不工作? 它没有回头,也没有在儿童现场认证,即便是人工上传到父母的 app和 log。

Edit:我们从未在机器中制造任何东西。 装配机Key 标签应在网上安装。 config文档。

问题回答




相关问题
Anyone feel like passing it forward?

I m the only developer in my company, and am getting along well as an autodidact, but I know I m missing out on the education one gets from working with and having code reviewed by more senior devs. ...

How to Add script codes before the </body> tag ASP.NET

Heres the problem, In Masterpage, the google analytics code were pasted before the end of body tag. In ASPX page, I need to generate a script (google addItem tracker) using codebehind ClientScript ...

Transaction handling with TransactionScope

I am implementing Transaction using TransactionScope with the help this MSDN article http://msdn.microsoft.com/en-us/library/system.transactions.transactionscope.aspx I just want to confirm that is ...

System.Web.Mvc.Controller Initialize

i have the following base controller... public class BaseController : Controller { protected override void Initialize(System.Web.Routing.RequestContext requestContext) { if (...

Microsoft.Contracts namespace

For what it is necessary Microsoft.Contracts namespace in asp.net? I mean, in what cases I could write using Microsoft.Contracts;?

Separator line in ASP.NET

I d like to add a simple separator line in an aspx web form. Does anyone know how? It sounds easy enough, but still I can t manage to find how to do it.. 10x!

热门标签