Re: associating subdomains to .net sockets
- From: "Jim Hughes" <NOSPAMJ3033@xxxxxxxxxxx>
- Date: Mon, 26 Dec 2005 16:11:00 -0800
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
>> >
>> >
>>
>>
>
>
.
- Follow-Ups:
- Re: associating subdomains to .net sockets
- From: radiax
- Re: associating subdomains to .net sockets
- References:
- associating subdomains to .net sockets
- From: radiax
- Re: associating subdomains to .net sockets
- From: Vadym Stetsyak
- Re: associating subdomains to .net sockets
- From: radiax
- associating subdomains to .net sockets
- Prev by Date: Re: associating subdomains to .net sockets
- Next by Date: Re: Outlook integration in vb.net Web development
- Previous by thread: Re: associating subdomains to .net sockets
- Next by thread: Re: associating subdomains to .net sockets
- Index(es):
Relevant Pages
|