How To Track Web Traffic For An Intranet Site

Sep 16, 2010

I have built my intranet using MS Visual Web Developer Express 2008. There are several secured areas and my manager asked me to find out if tracking the traffic is possible. Things that I would need to track include:

Which unique user ID's logged in and when? How many times did the same user login? Last login What info was accessed? What page(s) had the most hits? Would I need a database for tracking purposes? Would this info be available with a "dashboard" interface?

View 6 Replies


Similar Messages:

Redirecting Traffic To The New Site?

Apr 4, 2011

We have a web site up and are moving to a new site, with a more modern design and some jQuery/ajax features for better usability. The old site is on IIS6 and the new one is on IIS7.5. The old site is on domain.com and the new site is on beta.domain.com. I want to test out how the load will affect the new server, so I want to begin sending users to the new site slowly. I want to start sending every 20th user to the new site and save a cookie so that a user that was directed to the new site will always be directed to the new site and a user which was directed to the old site will always be directed to the old site, as long as we don't change a key and "reset" the system.I was wondering where would be the best place to implement this behavior / logic?

View 2 Replies

How To Send Email From Heavy Traffic Site

Jan 6, 2010

My question is today, i have a web system. its every we need send more than 1000 emails to system users and for their activity. its must we need send from asp.net application. so i have written common class to send email its worjing well. but when i'm use without thread it take time to send email adn re direct to thier pages. but after that i try use this

ThreadPool.QueueUserWorkItem(delegate { SendEmail(emailto, subjecttext, bodyText, IsHtmlFormat, CCEmails, BccEmails, enumSenderFrom, hasLogo); });

Its now workign well, but i have read some articles ThreadPool.QueueUserWorkItem is not good when site get heavy traffic. so what is best way to do i'm expecting expert comments to this

Here :[URL]

View 7 Replies

Showing Internet Content On An Intranet Site

Feb 23, 2011

I've an ASP.NET application hosted inside a local area network. The application host machine has access to the internet while the local area network clients do not.

There is one requirement where I've to show a web page with rich content (images) in an IFrame from internet (public network) address.

However since internet access is not available on the client, this somehow has to be done from server and then needs to be served to client.

How can this be done?

View 1 Replies

Security :: 3.5 - Set Up An Intranet Site With Windows Authentication

Jul 26, 2010

i m trying to set up an Intranet site with Windows Authentication. I have configured the web.config as shown below.

<authentication mode="Windows">
<roleManager enabled="true" />

I wanted to do authorization by roles so

<authorization>
<deny users ="?"/>
<allow roles="D820MySite_Developers, D820MySite_Admins"/>
</authorization>

I'm in the D820MySite_Developers group. When I attempt to login, it wants my password. I thought that with Windows Authentication it should not prompt for the password. If is use <allow user="*"/> it does not.

1. Is this the correct behavior?

2. My aspnetdb does not appear in the App_Data folder. Should it and is this causing the problem. If it should be there, how do I get it there?

3. I was under the impression that by using Windows Authentication, I can prevent users from accessing pages by folder. Is this provided by IIS or is this provided by Windows (using Windows Explorer)?

View 3 Replies

Security :: Use AD Authentication With Our Intranet Site To Control?

Feb 24, 2011

We would like to use AD authentication with our Intranet site to control what pages different users can access. I'm very new to ASP.net and would be interested in links to a how to description. We are using Visual Studio 2008.

View 1 Replies

Security :: Windows Authentication On An Intranet Site

Mar 23, 2010

I'm trying to set up Windows authentication on an intranet site. I have this code in the web.config:

<system.web>
<authentication mode="Windows"/>
<authorization>
<allow users="domainuser, domainuser2" />
<deny users="*" />
</authorization>
</system.web>

I can log in with my own credentials, but I have virtually all the rights in AD. User2 can not log in. The website is set to use Windows authentication in IIS manager. And I've tried setting permissions in IIS manager and NTFS permissions for the folde

View 3 Replies

C# - Setting Up An Access Controlled Intranet Site?

Jan 26, 2010

An abstract high level idea of where to begin as I am totally clueless at this point.

Background:

I am setting up an intranet site (ASP .NET) where users from our local user group (who are also added in our user table) will have access to web applications they are given access to. Right now I am developing from my PC and using SQL Server 2005 Express as the database, but the final site will be hosted on an application server with IIS 6.0 and the database on an instance of SQL Server 2005. I am a .NET newbie and it's a daunting task, but the experience is worth a million dollars.

Details:

We are using Windows Athentication for our intranet site. Therefore I am not using ASP .NET's membership data sources. Rather all the user information will be stored in two tables tblEmployee (all employees in my company) and tblUser (all users of the intranet site).

tblEmployee has fields - EmployeeID, FirstName, LastName, CostCentre, Role, ManagerName, UserID
tblUser has fields - EmoployeeID, UserID, ApplicationID, AccessLevel, AddedBy, DateAdded

(I have set up these tables and I can change them any time).

What I need to accomplish - When an user goes to the intranet site, I can get his/her domain username. I need to check if this user exists in tblUser (domain username is same as UserID in tblUser). If user exists, we display all the applications he/she has access to, else display a "no access" page.

Specific questions:

What are some of the things I need to "learn"? (as I said before, I am a .NET newbie, but a fast learner too) I need to use URLAuthorizationModule for validating a page request. How do I hide the username from the URL? I was thinking along the lines of using a session ID... but then how do I know who the user is? I am sure these is a way to encrypt the UserID, just can't find it.

View 1 Replies

Security :: Intranet Site Authentication Against Active Directory?

Oct 2, 2010

I am trying to build a web app for an intranet site that for security reasons needs to make the user type in their Windows or Active Directory username pwd manually. I have previously worked with Integrated Windows Auth but in this case, we do want them to use type in their AD credentials.

I have been trying to look up how to do this and frankly I am a bit lost. It should be a fairly straightforward task and am hoping you can point me in the right direction, with some tutorials or examples. We will be using SSL so, dont have to worry about passing pwd in cleartext over the wire.

My environment is visual studio 2008 in C#, .net 3.5 if that matters.

View 1 Replies

Google Apps For Business Can Open ID Login For .NET Intranet Site

Nov 27, 2010

My company uses Google Apps for our e-mail/business app provider. Every employee has an account here.I'm looking into creating an asp.net web app that would allow users to sign-in (using their Google Apps account) and then accomplish certain things (first goal: keep a current record of the employee's skillset).Before I get started, I wanted to find out if an OpenID login system using Google Apps is any more difficult than doing it the standard way, or if I need to be aware of any pitfalls.

View 2 Replies

Get Dynamic Data From Log File To Track The Site Usage?

Oct 27, 2010

How can I track the users who visit the site using Log file. I want to automate the same. We have deployed around 10 websites on the web server which include .net and Flex applications. I want to make the report of site usage. Would it be possible to do the same using log files?

View 7 Replies

Trying To Put Together A "message Board" Type Of Section On Intranet Site?

Jul 14, 2010

i was wondering if this was possible.. any tips or thoughts are welcome!!

i'm trying to put together a "message board" type of section on my intranet site.. right now theres an ajax timer that just ticks and checks for messages.. so basically its "real time" messaging.. however.. the tick events do pose some annoying problems with other portions of the site..

so i was curious.. is it possible to hit a button.. post the message.. and have that trigger IIS.. or something.. to tell all actively connected sessions.. to update.. this would eliminate the need for a timer.. or anything like that

View 9 Replies

VS 2008 - Restricting Access To Web Pages (on Intranet Site) Based On Role Based Authorization

Jul 12, 2011

I have a simple intranet site. It has a role based authorization in the web.config file.

Any user's in a specific role called as "Apr-Sales-Writers" will be authorized to use those pages. If not, they will not be authorized. So far so good. Works fine. But we added additional functionality where a new active directory group (means new role) has to be added and user's belonging to this new AD group should be given access to only specific .aspx pages on the intranet site. I am using a web.sitemap and it looks like this.

If the user's belong to say AD group "Apr-Sales-Writers", they should access only default.aspx and salesData.aspx pages. User's belonging to new AD group (which I did not include in the web.config file below), should have access to other .aspx pages.

[CODE]<?xml version="1.0" encoding="utf-8" ?>
<siteMap xmlns="http://schemas.microsoft.com/AspNet/SiteMap-File-1.0" >
<siteMapNode url="default.aspx" title="Home" description="Home">
<siteMapNode title="sales Data" description="sales Data">
<siteMapNode url="salesData.aspx" title="sales Data" description="sales Data" />

[Code] ....

View 7 Replies

Test For Traffic Simulation?

Jan 25, 2011

I need to test how our website will manage a higher volume of traffic.Is there such a thing as traffic simulation software?

View 1 Replies

Monitoring Traffic To Cassini On Localhost?

Jul 22, 2010

I'm experiencing some really odd timeout issues when running a ASP.NET 2.0 project on Cassini on localhost, and I don't have enough data to get a clue of what's going on.

Is there a way to monitor localhost traffic to Cassini, either using some specific development tool or a general-purpose monitoring app such as fiddler?

Just to pre-empt some answers I'm already aware of:

Normally I can use the well-known dot-hack for using fiddler to monitor localhost traffic, but with Cassini I get the following error message in the browser:

[Fiddler] Connection to localhost. failed. Exception Text: No connection could be made because the target machine actively refused it ::1:3213

Fiddler also listens to localhost on http://ipv4.fiddler:port, and I can intercept the traffic. But when I do this the timeout issues don't occur!

Edit: Oops. This question had already been asked... Twice.. Didn't come up on search or . The solution found in the second thread is to use the dot-hack with ip-address (http://127.0.0.1.:port/ instead of "localhost". This question may be closed.

View 3 Replies

C# - Is It Possible To Use Fiddler To Debug HTTP Traffic

Jul 18, 2010

I am using ASP.Net + .Net 3.5 + VSTS 2008 + IIS 7.0 + C# to develop a web application. I want to use Fiddler to debug (i.e. monitor request and response Http traffic) local traffic -- i.e. when I test web application inside VSTS 2008's built-in test ASP.Net web server. Is that feasible? If yes, how to monitor such traffic? For example, in VSTS 2008's built-in ASP.Net test web application server, the Url I want to monitor request traffic sent to [URL] and its response (i.e. when F5 is pressed in VSTS 2008).

BTW: I previously think Fiddler could only be used to monitor port 80 Http traffic, not sure whether port 1870 could be monitored?

View 3 Replies

Filter Out Search Engine Bot Traffic?

Jun 16, 2010

I'm doing custom-rolled view tracking on my website, and I just realize that I totally forgot about search bots hitting the pages. How do I filter out that traffic from my view tracking?

View 2 Replies

Wcf - Fiddler Not Sniffing SOAP Traffic From Website

May 6, 2010

So far I've been successfully using fiddler to sniff web service traffic from both test fixtures, console apps and web projects.

Today I noticed I am not able anymore to sniff that kind of traffic if I am running my web application (it's a ASP.NET website, hosted locally on IIS). I see all the local traffic but the web service traffic is just gone (the service is being hit as I do see the response debugging into the code).

I am still able to successfully sniff soap requests and responses from test fixtures or console apps in the same solution (exact same environment).If it was a windows (I am on Win7) security update or the likes it would never work I guess (unless it affects only traffic routed through IIS).

What should I be looking for that could cause the emergence this behavior?

NOTE: I can see local traffic, but not the SOAP request/responses to the web service which is not hosted locally anyway (it's a sandbox another team is providing)

EDIT: This bit of configuration did the trick (found on Rick Strahl's blog)

<system.net>
<defaultProxy>
<proxy [code].....

View 5 Replies

MVC :: How To Create A Web Traffic Light User Control

Dec 21, 2010

I am new in web developement, creating the web Traffic Light user control?

THe user control will have 3 indicators just like the real traffic light: red indicator which will be blinking when error state is received; yellow indicator which will be blinking when the warning state is received; green indicator which will be illuminated when the normall state is received.

View 2 Replies

HttpHandlers / Modules :: ASP Page Traffic Test?

Jan 20, 2010

I'm going to test the performance of my page in 2 situation.

1. Using update panel to perform partial page render to display the result.

2. Implement "ICallbackEventHandler" interface to return and display the result.

May I know how to prove that 2nd situation will perform better than the 1st situation?

View 2 Replies

Add Incoming Querystring To All Outgoing Links / Traffic C#?

Nov 1, 2010

If i have a page called www.testsite.com and I link to that page using a querystring in the url, is it possible to attach that same querystring to all the outgoing links/traffic somehow?

For instance, say I link to that page like this www.testsite.com?parameter1=somevalue And then, on that page I click a link to for instance google, and I would like the parameter to be passed so the url would be www.google.com?parameter1=somevalue.

I know how to do this manually, but is there someway it can be appended to the url automatically? Like catch the outgoing request before happening and add the parameter?

View 4 Replies

How To Make Website That Response Even On Heavy Traffic Load

Aug 28, 2010

i wanted to know that how to make the website that performance never goes down even if the load is increased up to some extent rather than the general websites.

i am confusued that is this related to the database server or the coding...

View 3 Replies

Php - Which Language Would Be Best Contents For Classified Ad High Traffic Website

Dec 25, 2010

Average visitors: 5000.

I'm wondering should i make it in PHP or ASP.NET/C#. Website contents might grow really fast because it is expected there going to be daily/continuous posts from users. Its an interactive website that has to login, post, check replies and private messages without any advanced/complex features.

Website might use AJAX as well as JQuery.

What language do you suggest me to go with?

View 2 Replies

Web Forms :: How To Know Port 443 Is Open For Incoming And Outgoing Traffic?

Feb 9, 2010

I am trying to set up a paypal IPN listener. Here is my code:

[Code]....
[Code]....

For testing purposes I have code to send an email at different spots. The only email that I get is the first one. None of the other email checks are being sent. I have checked with paypal and they said to make sure that port 443 is open for incoming and outgoing traffic. If that is the problem how would I go about making sure the port is open? Or could it be something else?

View 12 Replies

C# - How To Write A HttpHandler To Redirect Traffic To Various Webpages On The Server

Apr 29, 2010

I want to write an HttpHandler to redirect traffic to various webpages on the server. The user will type in http://www.thisissupposedtoberedirected.com/site12 and should be redirected to the appropiate site, in this example site version 1.2

I know how to program in ASP.NET and C# but I don't seem to grab the finer detail about website management.
How can I manage to get this done? What should I do in the web.config?

View 2 Replies







Copyrights 2005-15 www.BigResource.com, All rights reserved