all groups > asp.net security > march 2005 > threads for march 15 - 21, 2005
Filter by week: 1 2 3 4 5
Security Application Block
Posted by John Childress at 3/21/2005 3:45:56 PM
Anyone using the Security Application Block from the Enterprise Library?
I have a rather embarassing situation where I've setup the database and
configured my application to use this block. I have added users to the database
using a web form, but I am unable to login using any of the new use... more >>
Writing a text file to the file system
Posted by cwbp at 3/21/2005 3:11:09 PM
Using Visual Studio C#
When I ran the following code:
System.IO;
private void Button1_Click(object sender, System.EventArgs e)
{
//FileStream fs = File.Create(Server.MapPath("test.txt"));
FileStream fs = File.Create("C:\\MYSAVEDFILES\\test.txt");
StreamWriter sw = new StreamWriter(fs)... more >>
Forms auth / Location element
Posted by Mark Teague at 3/21/2005 2:43:59 PM
Greetings!
I am attempting to secure the root of an IIS virtual directory and an =
Admin subdirectory separately from one another. At first, I attempted =
to create an additional Web.Config in the /Admin folder to direct =
unauthenticated access attempts to URLs within this directory to a =
... more >>
ASP.NET User.Identity.Name returns wrong value?
Posted by JohnH. at 3/18/2005 1:01:44 PM
When I got Visual Studio setup and configured to remotely debug c#
ASP.NET applications on a development IIS server I apparently changed
something on one of my .config files.
(1) When I login into my workstation using my domain account and
connect to our development IIS server User.Identi... more >>
authentication and access control (.NET socket connection)
Posted by Dan at 3/18/2005 10:15:09 AM
Hi,
Can someone point me in the right direction on a really simple access
control issue? Here is the situation:
1. an app on a client computer connected to internet and executes this kind
of code:
acceptor = new Socket(AddressFamily.InterNetwork, SocketType.Stream,
ProtocolType.Tcp);
... more >>
Registry - Writing to ..Security / Auth problems
Posted by Neal Rogers via .NET 247 at 3/18/2005 1:49:58 AM
Hi All
Using VB.Net
I have tried unsuccessfully (firstly with a Web App.. and IUSER_MachineName permissions ) to write to the registry.
So , now I've tried from a windows application, and same result
ie
key.SetValue("pwd", sValIn) ' = ERROR: cannot write to the registry key
("Run-time ex... more >>
Error while trying to debug
Posted by Guest at 3/17/2005 11:05:33 AM
Hello,
When I was trying to open one of my ASP projects somewhere else, I got the following error message:
Error while trying to run project: Unable to start debugging on the web server. The project is not configured to be debugged.
They suggest to click the Help button. When I do that I ge... more >>
ASP, Error message
Posted by Guest at 3/17/2005 10:42:20 AM
I'm making a project for school. In school everything worked, but now that I've took it Home. I get following error message if I want to run it:
"Error while trying to run project: Unable to start debugging on the web server. the project is not configured to be debugged."
When I look to the we... more >>
Don't see what you're looking for? Search DevelopmentNow.com.
Trouble Accessing Active Directory Domain Controller
Posted by webbertsolutions NO[at]SPAM newsgroups.nospam at 3/17/2005 9:49:31 AM
I am having troubles accessing a different Domain Controller than the one
I am currently in. Any help would be appreciated.
Dave
=================================================
Access DC_1 Access DC_2
Machine_1 in Domain_1 Works Exception
Machine_2... more >>
Newbie: Data transfer security problem
Posted by clsmith66 at 3/16/2005 3:53:02 PM
I am building a reservation system for a client using ASP.NET and VB.NET.
They want the ability to create customers and invoices in the application and
then export them into QuickBooks. No problems there. My problem is
QuickBooks is stored on one server and the application will be run from ... more >>
ASP.NET Security/Authentication question
Posted by Terry at 3/16/2005 9:03:09 AM
I am a newbie on ASP.NET.
I am creating an asp.net application (with C#) which will have a number of
screens.
The backend database for this app is SQL Server.
The user is required to login and we have to be able to control which users
have access to which screens and if they have read only or u... more >>
Web form w/ Access DB Security
Posted by wwcoop at 3/16/2005 6:25:03 AM
I am deploying a web form developed in VB.NET
using an OleDB connection to an Access DB.
I am able to deploy the app with the DB residing
in the same folder to the web server and get it
running.
I now want to change the configuration so that
the the DB does NOT reside anhywhere in the web
d... more >>
Forms Authentication for only selected webforms? How to do this
Posted by Rich at 3/16/2005 5:21:22 AM
Hi,
I might have missed this perhaps, but here's my query:
I am presently designing a site that is for public use in general. However,
several forms (pages) I need authentication from members.
For example: default.aspx is allowed for everyone, but members.aspx isn't
(and so are various ... more >>
Re: Retrieve User Name in C#.net
Posted by Dominick Baier [DevelopMentor] at 3/15/2005 11:54:13 PM
So - i guess your backend store is AD ?? If yes use the classes found in System.DirectoryService to query for the name - or wait till Joe Kaplan jumps on the thread :)
---
Dominick Baier - DevelopMentor
http://www.leastprivilege.com
nntp://news.microsoft.com/microsoft.public.dotne... more >>
Question about a long session timeout (somewhat long)
Posted by Stupid48 at 3/15/2005 8:46:29 PM
I've been told by my developers to increase the asp.net session timeout
to 72 hours. Being a server guy, it concerns me because of the obvious
potential for denial of service due to resource consumption.
Basically, it is an asp.net application that runs ssl and may take some
personal informatio... more >>
path for DirectoryEntry
Posted by at 3/15/2005 4:41:11 PM
Hi All
I have a directory server hosting multiple OUs, and I found that all the
users I created under each OU will not appear under "Users" folder, which
looks fine to me until now. I am working on an ASP.NET application which
would allow a selected user from each OU to login and to update pr... more >>
Retrieve User Name in C#.net
Posted by anonymous NO[at]SPAM discussions.microsoft.com at 3/15/2005 2:43:07 PM
Hi All,
I am trying to find how to retrieve the user name
using .Net. I know how to retrieve the user login using
HttpContext.Current.User.Identity.Name but I ned to
retrieve the name and not the login.
Thanks In Advance.... more >>
Web forms authentication, should I use it?
Posted by Vlad at 3/15/2005 8:27:54 AM
Hello, people!
I’m presently trying to choose an appropriate user authentication
solution for online banking system implemented in ASP.NET, and as far as
I understood the best practice of what Mcrosoft has to offer (with the
exception of Windows integrated) is WEB forms authentication. So my ... more >>
|