CodeGuru Home VC++ / MFC / C++ .NET / C# Visual Basic VB Forums Developer.com
Results 1 to 2 of 2
  1. #1
    Join Date
    Jun 2010
    Posts
    1

    Smile Multi-Tier Application in .NET

    Hello,

    I am still learning .NET framework and I want to implement multi-tier application just for practice.
    I was wondering what is the best way to achieve that.


    My goal is to make application for hospitals.

    What is my question?

    Is it good idea to implement multithreaded server that accepts client requests via sockets.
    Worker threads that deal with client requests and than route requests to data access layer.

    This would be decent practice for Thread managment, but is this right way for my application?


    Is there any other solution to achieve this goal?

    Maybe to implement multithreaded server in java, and client in .net?

    Vlada

  2. #2
    Arjay's Avatar
    Arjay is offline Moderator / EX MS MVP Power Poster
    Join Date
    Aug 2004
    Posts
    13,490

    Re: Multi-Tier Application in .NET

    Why would you want to write your own multithreaded server when there are technologies like WCF out there that already do this (and do this well)?

Tags for this Thread

Posting Permissions

  • You may not post new threads
  • You may not post replies
  • You may not post attachments
  • You may not edit your posts
  •  





Click Here to Expand Forum to Full Width

Featured