The form-authentication tag has no wiki summary.
0
votes
0answers
17 views
Why do I get a “Forms authentication failed for the request” event on Microsoft Form Authentication?
I've inherited a ASP.NET 2.0 website that uses Microsoft form authentication.
The site is running on a Windows Server 2008 32bit which had recently installed the SP2.
Since the SP upgrade, the login ...
1
vote
1answer
57 views
C# .NET login not re-directing
I'm trying to setup Forms authentication in IIS 7. When the user tries to hit any url on the site they are redirected to the login page but after they login they don't leave the page. If I enable ...
0
votes
0answers
6 views
SharePoint 2007 permissions to form based users
i have SharePoint 2007 internet portal. i wonder if i cant specify security permissions on pages,lists,listitems on form based users level. just like the domain users.
is that possible ?!
Thanks
0
votes
1answer
26 views
can we replace form authentication ticket with custom object in form authentication module?
In my project there is a requirement to use a custom object in place of FormAuthenticationTicket. We have created a custom object with same properties as of FormAuthenticationTicket. Now we are using ...
2
votes
4answers
144 views
Forms Authentication & authorization MVC 4
I'm trying to create an anonymous controller in order to acheive form authentication. I configured my IIS 7 with anonymous and form authentication enabled and set my web.config to deny anonymous ...
1
vote
0answers
52 views
Properly creating WindowsIdentity from Forms Authentication?
I have an application from a vendor that expects a WindowsIdentity to function properly. I want to external face this application to grant access to users who are not domain joined. I am not an ...
5
votes
3answers
118 views
MVC 4 Form Authentication - Cannot access any other action beside the one declared on the web.config
This is my settings at web.config:
<authentication mode="Forms">
<forms loginUrl="~/Login/Login" timeout="2880" />
</authentication>
On my controller I have few actions, ...
0
votes
0answers
39 views
ASP.NET 4.0 Forms Authentication 500 internal server
We made a web site its working in LAN great. We want open it to outside. But login page is coming without any error. when we trying to login we got 500 internal server error. if we type wrong username ...
0
votes
0answers
22 views
FormsAuthentication UserData in another project
how can i store FormsAuthentication UserData in another project and use it in ASP.net webform and Asp.net MVC?
i wanna move all things about Authentication to another layer As much as I can
0
votes
2answers
80 views
How to apply form authentication for some web pages
Please consider this scenario:
I have a project that it contains some web pages.I add form authentication based on Active Direcotry for my all web pages.For Example :
<connectionStrings>
...
1
vote
0answers
135 views
VS 2012 Lightswitch and MySQL
I'm currently experiencing a problem which I'm not 100% certain about the part which is making the trouble, so I'm just gonna tell you guys what I'm trying to do and actually doing.
Its about trying ...
0
votes
0answers
68 views
Change From FormAuthentication to WindowsAuthentication
I just installed ASP.NET and Web Tools 2012.2 Update and create MvcApplication1 using the template "ASP.NET MVC4 Web Application"/"Single Page Application". I have made no change to it, and run it. ...
4
votes
1answer
122 views
Using Windows Authentication how to redirect all initial request to a specific page
I have a asp.net web application running on Windows Authentication mode. My requirement is whatever page(urls) user requested first time(session start) it shoud redirected to LandingPage.aspx. Can ...
0
votes
1answer
53 views
How to use form authentication without aspnetdb?
I am developing a small website which will be part of a big website. It won't have its own authentication and database but I want to use form authentication with it. I put in few lines in web.config
...
1
vote
1answer
111 views
IIS Forms Authentication Not Recognizing Cookie
For some reason IIS is not recognizing my Forms Authentication cookie, it keeps redirecting to the login page. The login page is ColdFusion 10 based using .NET integration. I've basically tried to ...
1
vote
3answers
218 views
Using Spring Security 3.1 to secure the same RESTful resources with both form-login and http-basic security
I have a java web application running on Tomcat 7.
I am using Spring 3.2 with Spring Security 3.1 on the backend, and am exposing an API via RESTful URLs following the /api/** pattern.
The UI for the ...
0
votes
0answers
69 views
GWT Spring security interceptor not working
I want to create login page for my GWT app. I have configured Spring as:
<http use-expressions="true" >
<form-login login-page="/login.jsp" default-target-url="/"
...
0
votes
1answer
113 views
Form authentication across multiple applications
We are trying to use authentication between two applications on our PC's (Windows 7, IIS 7.5) and eveything goes fine. But the problem is when we try to publish these sites (Windows web server 2008, ...
0
votes
0answers
95 views
2 authentication methods in grails
I'm developing an application using Grails. I'm using form based authentication configured with spring security. But I need to have at least one more client for example iOS which will be using the ...
1
vote
1answer
166 views
Accessing user details after logging in with Java EE Form authentication
I have implemented a Java EE security realm that redirects users to login.jsp if they try and access a protected resource.
Say a user wants to go to a protected url - http://mywebapp/shopping_cart ...
0
votes
1answer
219 views
Form based authentication is not redirecting to login page
I am using Form-based authentication in web.xml in Tomcat.
<login-config>
<auth-method>FORM</auth-method>
<realm-name>Example Form-Based Authentication ...
1
vote
1answer
197 views
Programmatic Form Based Authentication
I am trying to perform the programmatic form based authentication and it seems that
<i><b>My web.xml:</b></i>
<web-app>
...
0
votes
1answer
200 views
Role based access in asp.net mvc 3
How can i assign role to a user in asp.net mvc3 application ?
i tried doing following
public ActionResult Login(LoginModel model)
{
if (ModelState.IsValid)
{
if ...
1
vote
0answers
221 views
Window 8 consuming SharePoint REST Interface through FormsAuthentication?
I have created a sample Windows 8 Application getting SharePoint 2010 list data using REST Apis like _vti_bin/ListData.svc I am using NetworkCredential to access the list its working fine. How can I ...
0
votes
0answers
24 views
Changing ‘Error Responses’ setting resolves 401 authorization error? How/Why?
Changing ‘Error Responses’ from the ‘Edit Error Pages Setting’ dialogue to ‘detailed responses’ from ‘detailed for local and custom for remote’ resolves 401 authorization error? How/Why?
I was ...
0
votes
1answer
82 views
Tomcat: Custom form authenicator in a web application, not as a stand-alone JAR module. Possible?
Our web application requires custom form authentication with specific logic inside. The current form authenticator implementation requires the authenticator module, let's call it custom.auth.jar, to ...
2
votes
2answers
3k views
How Disable Browser Back Button only after Logout in mvc3.net
I am using FormsAuthentication for userlogin.
I am having a problem after user logs out successfuly the back button is browser allows user to view pages.
I tried using javascript
<script type = ...
0
votes
0answers
121 views
form authentication with mvc framework
I am trying to do form Authentication with mvc framework,but if I login and copy the url and logout from page and open in other browser or tab it should go to login page but its redirected to page ...
0
votes
2answers
86 views
RedirectFromPage do not work with special chars in the ReturnUrl
I am working on a form based auth module for MS SQL reporting Services which is described here:
So far so good, but I run into this problem.
The URL I call redirect to the login page to authenticate ...
0
votes
1answer
278 views
HttpWebRequest not passing Credentials simple form authentication
My code is like this
Doc doc = new Doc();
string url = HttpContext.Current.Request.Url.AbsoluteUri;
HttpWebRequest request = (HttpWebRequest)WebRequest.Create(url);
// required for ...
0
votes
2answers
93 views
asp.net form authenciation cookie does not work in ie8
In our asp.net application,we use the form authenciation.
And we use the iframe for layout ,but all the link of the src is inside our domain.
Sometimes if user login using ie8,he will always ...
6
votes
1answer
503 views
Handle session timeout in generic http handler
I have an application where around 20 http generic handler are used for ajax call.
I have used IReadOnlySessionState for accessing the session in my handlers.Everything is working fine.
But when ...
0
votes
1answer
89 views
How to I connect to ASPNETDB.MDF via webconfig?
I have a database in my App_Data that was created automatically by the system when I incorporated Membership and Role Manager and Profile into my web application.
The problem is there is no ...
0
votes
0answers
45 views
Could someone explain proxy server authtication cache?
If your company deploy a proxy server for accessing internet, and using form-auth to identity user, then when you config proxy server well, a dialog prompting to enter username and password.
My ...
0
votes
1answer
341 views
Embedded Jetty - Programatically add form based authentication
Is there a way to programatically add Form based Authentication as per below?
I am using my own LdapLoginModule. Initially I use Basic Authentication and it worked OK, but now I want more control on ...
0
votes
0answers
144 views
Log out in ASP.Net MVC through a Web Request call from outside domain
I have a Application that allow single sign on from multiple out side domains.
when user log outs from outer domain, my partner site(outer domain) will make a call to clear the Authentication on my ...
0
votes
0answers
63 views
Passing parameter to asp function from android for avoiding authentication window
I want implement a mechanism for automatic login in my ip-webcam, from Android application.
After connecting to my ipcam at url http://192.168.178.10 i click on a button in the web page, that show me ...
0
votes
2answers
160 views
Ajax with custom Form Authentication in MVC3 project
I have an MVC3 project with custom form authentication.
I got the authentication to work fine (I used the "HttpContext.Current.User.Identity.IsAuthenticated" property in order to make sure it worked)
...
1
vote
1answer
103 views
Java EE 6 form-authentication and FacesContext.isUserInRole
I'm using a form-based authentication (with a JDBC-realm) to authenticate users in my EE application. I created a /home/* section, which is only accessible if a user is in the role USER or ADMIN.
...
1
vote
1answer
58 views
Deactivate unused session id in database?
I have a website that has form authentication:
1) User logs in with choice of whether to keep him logged in or not.
2) Server generates token, saves it to the database and sends a token cookie to ...
0
votes
1answer
101 views
automatic user login by reverse proxy
Given is an application behind a Nginx configured as reverse proxy. The application requires user login via a web form and HTTP POST. Is there a possibility to provide the credentials of a generic ...
0
votes
0answers
80 views
Unable to create same application in iis7 with different name and folder
I have a Web application url in the following form.
URL: http://172.xx.xx.xx/Test1
Physical path : E:/Test1
Authentication mode : Form
I'm able to login and access all the pages, but when i try to ...
0
votes
2answers
84 views
User logged in as wrong user
I am using MVC3 along with Autofac & EF4.1 to build an secure web app deployed on two servers.
A very few users are experiencing a strange issue where user is logged into system as wrong user ...
0
votes
1answer
112 views
Form Authentication Ticket null issue in MVC3
what could the cause behind dropping of authentication cookie (.ASPXAUTH) intermittently in an MVC3 app?
I checked the size of cookie which seems to be around 2kB.
It flows without any issues during ...
2
votes
2answers
2k views
401 Unauthorized: Access is denied due to invalid credentials
I am using IIS Express to deploy MVC4 application. This website runs perfectly on same computer. But in Lan it gives me error 401.
<authentication mode="Forms">
<forms loginUrl="~/" ...
0
votes
0answers
590 views
MVC3 C# LDAP active directory with forms authentication using roles
I have been tasked with changing my authentication to Active directory and need a little bit of help.
I am referancing another post because you cannot add to it anymore (comments).
...
0
votes
1answer
121 views
Form Authentication on NetTcpBinding in WCF service
I am using WCF service, which have two endpoint WsHttpBinding and NetTcpBinding and the service is using Forms Authentication. Service is hosted on IIS 7.
This works perfectly with WsHttpBinding, but ...
0
votes
0answers
141 views
cxf-codegen-plugin, clientside how to do basic auth, form auth, saml?
I'm using the maven cxf-codegen-plugin to create the client-side artifacts for various existing webservices that I do not have direct control over (i.e. may be external ASP, Java, or 'other' types).
...
3
votes
1answer
1k views
ASP.NET login form authentication without login control
I am using ASP.NET membership and on registration page trying to login without a login control.
When user clicks on the register button, the control goes to redirect.aspx page.
But in that page, ...
0
votes
2answers
660 views
Form Authentication in JSP
I want to Setup form authentication in my JSP website without creating any folder. Can someone Suggest how to do this. ? thanks....



