Dot Net web service load balancing

Collapse
X
 
  • Time
  • Show
Clear All
new posts
  • bala2it4u
    New Member
    • Jun 2007
    • 30

    Dot Net web service load balancing

    Hi Friends

    Presently we are developing a windows product using dot net, combined with

    sas (another language). If sas not get installed in local machines then we are in need of using server machine which has sas with it, we are using socket programming to communicate with server machine,

    Problem is when more number of requests comes to the server for processing sas it is becoming slow, so we need
    Load balancing

    If we go with web service which is having same domain name but different ip address mapped using
    Domain Name System (DNS)

    like google.com or gmail.com

    We will get work done faster



    What i want is will this work fine, what else i have to done for achieving this, how can i test it


    Waiting

    Balaji Manoharan
  • Sfreak
    New Member
    • Mar 2010
    • 64

    #2
    Hi Balaji Manoharan,

    You should implement an UDDI layer in order to balance you traffic. The idea is simple: you have a main web service with your external DNS and then this main web service redirects the remote calls to other web services inside your domain according to your balance needs. You could implement a workflow in the middle to manipulate those web services or just control it in a few variables.

    So in the end you have something like:

    --------------- MAIN WEB SERVICE ---------------


    WEB SERVICE 1 WEB SERVICE 2 WEB SERVICE 3

    Escalonating your system and making something more asynchronous.

    I hope this can help you

    Fernando Mello

    Comment

    Working...