Search

You searched for the word(s): userid:696864

Matching Posts

  • Re: System.InvalidOperationException: Internal .Net Framework Data Provider error 12.

    I solved the error finally myself. I had a shared connection object. So I think in case of concurrent user access, this shared object was the possible cause of the error. So i changed that code so that the connection object now gets created once for each user. This solved my problem.
  • System.InvalidOperationException: Internal .Net Framework Data Provider error 12.

    Hi, I have created an application in which there are few forms. Each form has fields which are linked to a backend table/tables. My application is supposed to be accessed by multiple users concurrently. I ran a test where I created a class file in windows application and i ran a for loop in it to call the url of my application. I wanted to test the effect of firing around 200 queries to my query engine. The test code is : namespace MachineGun { static class Program { /// <summary> /// The main
  • Re: Application object in a web farm scenario...

    Michael, I am trying to set up a webfarm and my application uses session. I have written the code that has been given, but I do not know where do i call it, ie. how will this cache controller come in action. Where do i call it in my code? Thanks
    Posted to Architecture (Forum) by sweetypie on 2/25/2008
  • Re: session in web farm

    I am trying to synchronizze session between all the servers in my web farm. I have analyzed the other options like SessionState and SQl Server. The use of the StateServer becomes a single point of failure and it also reduces the performancec by 15% whereas my application is designed to run with different type of database thereby not binding it to Sql Server. Also, SqlServer usage reduces the performance by 25%. This is too much to compromise. ute Most of the data that I am planning to store in the
    Posted to Architecture (Forum) by sweetypie on 2/25/2008
  • session in web farm

    Hi, i am trying to set up a web farm. My application uses session objects. So i am facing some problems. I am trying to use caching for the same. The code is : using System; using System.Data; using System.Configuration; using System.Web; using System.Web.Security; using System.Web.UI; using System.Web.UI.WebControls; using System.Web.UI.WebControls.WebParts; using System.Web.UI.HtmlControls; using System.IO; using System.Web.Caching; public class CacheController { public CacheController() { } public
    Posted to Architecture (Forum) by sweetypie on 2/22/2008
  • Re: Application object in a web farm scenario...

    Hi, I tried using the mentioned approach, but can't get it to work. What else do i need to do? Please let me know.... any changes in the config file ??? any changes in the code???? PLease help. Thanks.
    Posted to Architecture (Forum) by sweetypie on 2/22/2008
  • Re: facing problem when accessing the published website

    I went thru the log file, but its not showing any particular error as such (anyways, its not so readable as well). Anything else that I can do as part of trouble shooting?
    Posted to Configuration and Deployment (Forum) by sweetypie on 2/12/2008
  • Re: facing problem when accessing the published website

    TATWORTH , I tried doing as you mentioned. I created the aspx page and it worked fine. It may sound silly, but how do i check the IIS logs. PLease let me know. THanks. OK. I found where the log files are. I'll check it to search for the problem.
    Posted to Configuration and Deployment (Forum) by sweetypie on 2/12/2008
  • facing problem when accessing the published website

    Hi, i have developed an application that runs on IIS. This application can be accessed by multiple users. The important thing about this application is that it is first designed by user using a designer (I have created the designer as well ). The application thus created, then after internal deployment procedure results in a web application. In this application, all the forms are dymanically created, ie. based on the user inputs during the design process, I create all the .aspx pages that can have
    Posted to Configuration and Deployment (Forum) by sweetypie on 2/12/2008
  • Re: Good news for those of you who get "Unable to make the session state request to the session state server." error..

    Hi, I wanted to use the StateServer for storing sessions in a web farm scenario. To start with, I tried initally on one server where I ran the client and host on the same machine and I added the following code in web.config: < sessionState mode = " StateServer " stateConnectionString = " tcpip=localhost:42424 " cookieless = " false "/> But i kept getting the error mentioned above. Then I tried the solution mentioned, but I still keep getting the same error. Can
    Posted to Tips & Tricks (Forum) by sweetypie on 2/1/2008
Page 1 of 4 (34 items) 1 2 3 4 Next >