I need to quickly write a test console app for testing purposes.This app is basically the console version of an ASP.NET app.The original ASP.NET app makes use of the global Application object for storing global data.How can I get the same functionality of the Application object in my console app? Can I declare an HttpApplication object directly and use it?NOTE - this app is just for debugging some issues, not production code, so I'm ok if it's not "best practice".
I have no problem accessing these variables form .ascx.cs or .aspx.cs file -- ie. files that are part of the Web content. However, I can't seem to access 'Application' from basic class objects (ie. standalone .cs files). I read somewhere to use a slight variations in .cs files, as follows, but it always comes throws an exception when in use:
I want to create my own HttpApplication class, wherein I can handle methods like ExecuteStep. let me know if there are any examples to do this. Kindly provide some pointers to this...
I am using VS 2008. Basically I want to handle all events from httpApplication class (even before global.asax) before it reaches web pages inside Do other classes come into picture if I want to create my own HttpApplication class .
In S#Arch based web application I need to read some data during the application initialization. From the first point, the best place - HttpApplication.Application_Start() or HttpApplication.Init()But, Application_Start isn't applicable as there is no WebSessionStorage yet. Init() seems isn't fit as well, as there is no NHibernateSession.
How can I access the cache of one web application/domain from another web application/domain?Here is my scenario. I need to verify/check the existence of a certain object in one web application/domain's cache from another web application/domain.
am currently working on a web application, whereby I want to add code to the Application_BeginRequest method of the Global.asax file, without adding code to the Global.asax file, which sounds a little crazy, let me explain a bit more.If anyone has ever developed in sitecore before, they would have seen that the Global.asax file has empty methods, however it has 'using Sitecore;' and the global.asax file provided does not inherit from System.Web.HttpApplication.
Does anyone have a clue why setting the Principal for the context would be so slow that a request times out? I have a custom HttpModule that subscribes to the "AuthenticateRequest" event. I have this call which works fine to create the Principal (which makes all the DB queries)
[Code]....
where context.User is source.Context.User where source is the HttpApplication.
I hope I am posting into the right area... I want to know if you can access a session variable from a HTTP Module in IIS 7. Here is the scenario, I want to access the session values (i.e. User Object) from a HTTP Module. I have read oodles and tried many things but to no avail. I guess the application uses Forms authentication to authorize a logon to the site. I want to monitor the url that is submitted... RAWUrl property and if they are going to a certain page I want to grab their user object from THEIR session and validate them for access to that page. I want to use a httpmodule for this. The long and short of this is "Can I get access to session variables from the request from the httpmodule code behind? If I can, could you beso kind as to show me a working sample... I have tried many permutations on this using httpapplication, context and so forth and I can't seem to get access to session variables that would belong to the users request. it this possible?
I have just taken over a project from another programmer and want to add some functionality. The ASP.NET application allows users to sign up, fill out details about a company, and those details are submitted to companies house (very brief explanation!). These details are only submitted when an administrator logs in to the control panel and clicks a "Run Submissions" button. This then attempts to submit all pending formations to the gateway.
What I want to do is design an external desktop or console application, that "clicks" this button for me every set amount of minutes. The application will some how need to "log in".
I there a way to know if a request is a soap request on AuthenticateRequest event for HttpApplication? Checking ServerVariables["HTTP_SOAPACTION"] seems to not be working all the time.
public void Init(HttpApplication context) { context.AuthenticateRequest += new EventHandler(AuthenticateRequest); } protected void AuthenticateRequest(object sender, EventArgs e) { app = sender as HttpApplication; if (app.Request.ServerVariables["HTTP_SOAPACTION"] != null) { // a few requests do not enter here, but my webservice class still executing // ... } } I have disabled HTTP POST and HTTP GET for webservices in my web.config file. <webServices> <protocols> <remove name="HttpGet" /> <remove name="HttpPost" /> <add name="AnyHttpSoap" /> </protocols> </webServices> Looking at ContentType for soap+xml only partially solves my problem. For example, Cache-Control: no-cache Connection: Keep-Alive Content-Length: 1131 Content-Type: text/xml Accept: */* Accept-Encoding: gzip, deflate Accept-Language: ro Host: localhost mymethod: urn:[URL]
Some clients instead of having the standard header SOAPAction: [URL], have someting like in example above. "mymethod" represents the method in my web service class with [WebMethod] attribute on it and [URL] is the namespace of the webservice. Still the service works perfectly normal. The consumers use different frameworks (NuSOAP from PHP, .NET, Java, etc).
I've got a subweb as application. It's called ADMIN. It works fine when running locally but when deploying in the development web server, i got the error: Unable to cast object of type 'System.Web.HttpApplication' to type 'Microsoft.Practices.CompositeWeb.WebClientApplication'
I've got a App_global.asax.dll and App_global.asax.complied on the subweb folder Admin.
I'm just learning C# and using MS Visual Studio and a tutorial website.
I've written a little console app and now I want it on my website but I can't find out how to do it. Not in VS, nor their help screens, nor on that tutorial site, nor anywhere else I look.
I wrote a console app that displays information from a local file on my desktop and displays the content within the file. I was wondering how can I create a function that can search for keywords and only display the words, I want it to search for?I'm trying to display this content in a database and search for the content I want it to display.
* ZIP Codes * Area Codes * City Name * State Name * Two digit State Code * City Type * City Alias Abbrev. * County Name * State FIPS * County FIPS * Time Zone * Daylight Savings Indicator * Number of Businesses * Q1 Payroll * Annual Payroll * Number of Employees * Employment Flag * County Growth Rate
I tried something like this - And it didn't work.
Csharp Code: var keywords = new string[] {"some", "keywords"}; var foundKeywords = File.ReadAllLines("filename"). SelectMany(line => keywords.Where(keyword => line.Contains(keyword))). Distinct();
I can't seem to find the console where it's suppose to display the console.writeline(). Can someone post a picture of where it's supposed to be in Visual web developer 2010?
I am learning C# in Visual Studio (VS), and in VS i have successfully made different 'projects' under the 'solution' for each fo the samples in my C# book as can be seen here:
[URL]
the thing is when i press the green play button to run the debugger/program, it always executes "ConsoleApplication1" (look at the above image) when i want to try out the new application i wrote (named ConsoleApplication3)
I have the follwoing code that works in a console application but I would like to convert it to a web application. I was thinking of using a dataset. How do I go about doing so?
public static void Main() var id = AddContact(); } const string contactCompanyId = "lings"; const string firstName = "Bobby"; const string lastName = "Singh";........
Here's the situation, I've got a console application that needs to run once a day and make a few requests to pages that require authentication to view. The pages are hosted in a really basic ASP.Net Web Application.
So, I know that in order for the requests to go through successfully I have to authenticate with the server. So I've hooked up the console application to the ASP.Net Membership Provider I'm using for the web app and it successfully determines if a set of a credentials are valid. However, after calling Membership.ValidateUser() any requests I make just get the login screen. After doing some reading it seems that this is because I'm missing the important cookie information that persists my login or what-have-you.
I'm using a basic WebClient to make the requests and then reading/discarding the result.
So the meat of the question is this: Is there a simple way to validate the login information and hold on to it so that I can make the requests successfully, or is this the exact same case as the other two questions I found that require the WebClient to make a "manual" login request to the login.aspx page and try to hold on to the cookie from there?
The questions I'm referencing are:
Authenticating ASP.NET MVC user from a WPF application and Login to website and use cookie to get source for another page
I have come across some ASP.NET sites that rather than displaying a page, it launches a console-based application similar to how LiveMeeting kicks-off. I am interested in building an app that uses that feature so that I could take advantage of richer features of a console-based app, but for the life of me, I can't seem to find any info on the internet as to what type of project this would be in VS. I have tried WPF Browse Application, but thats not what I am looking for since the app type I am talking about does not run in the browser at all. The image below shows what happens when reaching the web site, which would therefore then launch the console-application (which is not even installed on the client's machine)