Search

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

Matching Posts

  • Re: Extending columns/fields of entities without changing code.

    You can try some of the O/R mappers. NHibernate for example can generate the SQL DDL for your entity model. So when your class properties change, you can add the properties to the mapping file , and have Nhibernate generate the SQL DDL to change the structure of your tables. http://www.hibernate.org/hib_docs/nhibernate/1.2/reference/en/html/toolsetguide.html The Nolics OR Mapper does this automatically during initialization.
    Posted to Architecture (Forum) by hibri on 12/4/2007
  • Re: Sessons vs Viewstates

    Hi May, ViewState is available within the same page only. Values stored in the viewstate of one page cannot be accessed by another page. If you want to share information across pages use the Session object or the Cache object. Use the Session object when you want to store data that is unique to a single user visiting your site. Use the Cache object to store data that is shared accross your application (ie : common to all users and pages ) http://msdn2.microsoft.com/en-us/library/ms972976.aspx Hope
    Posted to State Management (Forum) by hibri on 8/14/2007
  • Re: Http Error perspective

    Hi, yes, it would be a bad idea to raise an HttpException. The scenario you describe is not something that is handled by an exception. You shouldnt use exceptions for this scenario. It is better handled by a "IsRequestValid" method that returns a boolean. if(! IsRequestValid()){ //redirect to page with message "You cannot access" } Exceptions should be used to handle abnormal situations. Hope this helps..
    Posted to Architecture (Forum) by hibri on 7/25/2007
  • Re: uploaded files and load balancing

    I've done a similar project. I've mapped a virtual directory that points to a network path on a remote fileserver. All the load balanced webservers share the same file store location.This makes the location same for all users. Each time you add a loadbalanced server you just have to configure the virtual directory to point to the remote network path
    Posted to Architecture (Forum) by hibri on 6/28/2007
  • Re: ASP.NET website that needs to be able to send 800 simultaneous http requests for each page view.

    wouldnt it be better of to do the search in a middleware component ? The user's search request can be send off to a seperate component that will send off the requests to the different suppliers and collect the results. you would be able to cache common searches this way rather than having to send 800 requests each time. This is a better approach to look into. Your asp.net page makes a request through remoting to a windows service sitting on another server, which then sends the requests to the
    Posted to Architecture (Forum) by hibri on 5/29/2007
  • Re: .NET 2.0 Framework Diagram/Chart

    You can start off with this for the providers http://msdn2.microsoft.com/en-us/library/aa478948.aspx Though it is not the chart you are looking for, it gives an intro to what each of the providers can do. For the rest of the .Net framework, you can buy this http://www.amazon.com/gp/product/0735623171/sr/ref=pd_cp_b_title/102-9704438-6176160?ie=UTF8&qid=1104699732&sr=1-3&pf_rd_m=ATVPDKIKX0DER&pf_rd_s=center-41&pf_rd_r=0MYY0Q643YDMAPNYZ6WD&pf_rd_t=201&pf_rd_p=252362401&pf_rd_i
    Posted to Architecture (Forum) by hibri on 4/10/2007
  • Re: WS problem:Unable to connect to the remote server

    It sounds like the HTTP POST verb is blocked or not setup for the .asmx extension. Does POST to a web page work ? i.e simple form witha few fields. If you are daring you can test with a file upload form, and try different file sizes, to check if there is a limit on how much you can POST.
    Posted to Architecture (Forum) by hibri on 3/10/2007
  • Re: WS problem:Unable to connect to the remote server

    Hi Brad, A network error can mean many things, the web server hosting the webservice not running, your client machine cannot physically access the server hosting the webservice etc.. What I suggested was a few tests to isolate the problem and test basic connectivity. From your client machine try to access a page on the server hosting the webservice. Do you have any other sites hosted on the same webserver/farm that are working ? . This test will show if you have network access to the server. If this
    Posted to Architecture (Forum) by hibri on 3/9/2007
  • Re: App_offline.htm - Are the Databaseconnections closed too?

    Hi, Yes your database connections are close too. The connections are opened only when a request is made. When the application is offline no requests can be made, there for no database connections are opened.
    Posted to Configuration and Deployment (Forum) by hibri on 3/8/2007
  • Re: Transaction Where It's Works More Efficiently

    The effectiveness of transactions is not decided on wether is is a win app or a web app. What problems are you trying to solve ?
    Posted to Architecture (Forum) by hibri on 3/8/2007
Page 1 of 13 (125 items) 1 2 3 4 5 Next > ... Last »