Re: associating subdomains to .net sockets

Tech Tip: Click here to run a free scan for Windows Errors and optimize PC performance



With HTTP, subdomains/multiple hostnames for same IP address are enabled by
using a "Host Header" tag in the HTTP headers. That allows ONE service
(W3SVC) to respond differently to browser requests depending on the Host
Header sent by the client. All of the requests go to the same IP address on
the same port (80).

You would need to incorporate some similar mechanism in the protocol you use
for the service that is listening on service port on the shared IP address.


"radiax" <radiax@xxxxxxxxxxx> wrote in message
news:aKadnRMikaj-7S3enZ2dnUVZ_sqdnZ2d@xxxxxxxxxxxxxx
> when i say shared i meant that the box has only one ipaddress and all
> subdomains share that ip.
> "Vadym Stetsyak" <vadym_s@xxxxxxx> wrote in message
> news:#jAsmjkCGHA.516@xxxxxxxxxxxxxxxxxxxxxxx
>> What do you mean by "shared"?
>>
>> you can use "subdomain.domain.com" but then in order to do any network
>> i/o
>> you will
>> have to query your DNS server for the server ip address. ( because
>> sockets
>> work only with ip addresses )
>>
>> to obtain needed ip address
>>
>> Dns.GetHostByName("subdomain.domain.com"); ( .NET 1.1 )
>> or Dns.GetHostEntry("subdomain.domain.com"); ( .NET 2.0 )
>>
>> --
>> Vadym Stetsyak aka Vadmyst
>> http://vadmyst.blogspot.com
>>
>> "radiax" <radiax@xxxxxxxxxxx> wrote in message
>> news:9qOdndgpXttkczLenZ2dnUVZ_tOdnZ2d@xxxxxxxxxxxxxx
>> > Is there a way to associate or bind a subdomain to a tcp sockets under
>> > .net
>> > framework (vb.net / c#). I know ip address can be used when using
> sockets,
>> > but the problem is the ip address is shared among subdomains (limited
> ips
>> > supply). Iam looking for possible way to use subdomain.domain.com
> instead
>> > of
>> > ip address. Any inputs??
>> > thanks
>> >
>> >
>>
>>
>
>


.



Relevant Pages

  • Re: associating subdomains to .net sockets
    ... subdomains/multiple hostnames for same IP address are enabled ... > using a "Host Header" tag in the HTTP headers. ...
    (microsoft.public.dotnet.general)
  • Host Header IIS
    ... I have several sites hosted in iis, they differer by Host Header, ex: www.mysite.com.br, but i want to open all subdomains in that site, ex: ... Pietro ...
    (microsoft.public.dotnet.framework.aspnet)