Ask a Question related to ASP.NET Security, Design and Development.
-
Martin Madreza #1
HttpContext
Hello,
i searched 2days for a solution and maybe someone can help me.
I'm programmin' a C# Assemblie and don't know which class I should use
for a WebRequest where I can hold the connection like in the
InternetExplorer.
I connect to [url]http://www.mypage.com:7070/main?name=myname&pass=mypass[/url]
with HttpWebResponse and GetResponse or with a WebClient. Both ways
deliver me the right page. I'm logged in!
Now I want to get the [url]http://www.mypage.com:7070/topframe[/url] page but I'm
no longer logged in. How can I hold the connection? I tried with
System.Web.HttpContext, WebClient or
[url]http://www.mypage.com:7070/topframe?name=myname&pass=mypass[/url] and
searched the hole Web for information...
Does the HttpContext work in C# programs?
How does the IE handel this? i hope some on got an idea or know where
i can find informations.
MM
Martin Madreza Guest
-
using HttpContext Class
I'm trying to get the PathInfo propert for the current URL request in a class file, but I can't get it to work. Here's what I've tried so far: ... -
httpcontext HELP
The issue is that I want to maintain the login without asking the user to login back to the application in case the session times out.....and how do... -
HttpContext items and one-way methods
Hi, I try to put some custom objects into HttpContext.Current.Items collection in one-way webmethod, but they seem not to be there in another... -
HttpContext.Current
Now how in the wolrd does that work? How does it know that some static method I called on some library was called by a page that had that context?... -
Questions on HttpContext
Hello ALL! It is known that there's a HttpContext class in dotnet framework which provides variable sharing. I have two questions that i can... -
Steve Jansen #2
Re: HttpContext
Hi Martin,
The response from
[url]http://www.mypage.com:7070/main?name=myname&pass=mypass[/url] likely includes
some authentication token, such as an authentication cookie or a
redirect to a URL with a querystring token.
I would examine intializing the HttpWebClient.CookieContainer property,
so that your client receives and maintains the state of cookies when
communicating with the remote web app.
Try the C# code below.
Hope it helps,
Steve
using System;
using System.IO; // Stream
using System.Net; /* Uri, HttpWebRequest, HttpWebResponse, Uri
WebException */
namespace Sample
{
class WebExample
{
static int Main()
{
Uri loginUri = new
Uri("http://www.mypage.com:7070/main?name=myname&pass=mypass");
Uri contentUri = new Uri("http://www.mypage.com:7070/topframe");
CookieContainer cookies = new CookieContainer();
HttpWebRequest request;
HttpWebResponse response;
Stream responseStream;
try
{
request = (HttpWebRequest)WebRequest.Create(loginUri);
request.CookieContainer = cookies;
response = (HttpWebResponse)request.GetResponse();
Console.WriteLine("HTTP {0:D} {1}", response.StatusCode,
response.ResponseUri);
request = (HttpWebRequest)WebRequest.Create(contentUri );
request.CookieContainer = cookies;
response = (HttpWebResponse)request.GetResponse();
responseStream = response.GetResponseStream();
Console.WriteLine("HTTP {0:D} {1}", response.StatusCode,
response.ResponseUri);
// read responseStream
responseStream.Close();
}
catch(WebException ex)
{
// handle exception here
Console.WriteLine("Exception: {0}", ex.ToString());
}
return 0;
}
}
}
Martin Madreza wrote:> Hello,
>
> i searched 2days for a solution and maybe someone can help me.
>
> I'm programmin' a C# Assemblie and don't know which class I should use
> for a WebRequest where I can hold the connection like in the
> InternetExplorer.
>
> I connect to [url]http://www.mypage.com:7070/main?name=myname&pass=mypass[/url]
>
> with HttpWebResponse and GetResponse or with a WebClient. Both ways
> deliver me the right page. I'm logged in!
>
> Now I want to get the [url]http://www.mypage.com:7070/topframe[/url] page but I'm
> no longer logged in. How can I hold the connection? I tried with
> System.Web.HttpContext, WebClient or
> [url]http://www.mypage.com:7070/topframe?name=myname&pass=mypass[/url] and
> searched the hole Web for information...
>
> Does the HttpContext work in C# programs?
>
> How does the IE handel this? i hope some on got an idea or know where
> i can find informations.
>
> MMSteve Jansen Guest
-
-
Mithun #4
httpcontext
How to maintain user authentication/authorization if session times out?
Mithun Guest
-
Beginner #5
Re: httpcontext
Not sure what's the question, if you use form authentication, it should
automatically redirect to login page.
"Mithun" <mithun_babu@hotmail.com> wrote in message
news:9D93362A-CB08-444D-A964-14525A133284@microsoft.com...> How to maintain user authentication/authorization if session times out?
Beginner Guest
-
Mithun #6
Re: httpcontext
The issue is that I want to maintain the login without asking the user to login back to the application in case the session times out..that too how do i do it using http context?
Mithun Guest



Reply With Quote

