domain

Possible to download entire whois database / list of registered domains?

I wanted to do some analysis on registered domain names. Looks like I can hit whois.internic.net to get information about each domain, but it also looks like there are rate limits that prevent me from doing large numbers of queries. Is there a way to periodically (say daily) grab the entire whois database? I really only care about wheth...

Windows domain changed cause sql2005 login fail

My company change the domain from abc to xyz and now i can't log into my local sql2005 via Windows login nor sql login. both login gave me this error: An error has occured while establishing a connection to the server. blah blah blah...Sql server does not allow remote connection. Error:26 - Error locating Server/Instance specified. i ...

How to get list of all domains in Active Directory using C#

Can anyone please help me to get all the domains in Active Directory. I have tried many times, but all the programs are listing only the current working domain. How can I do this? ...

IIS Configuration. 1 Domain, multiple applications.

Hi, I'm having a bit of a problem here. We have 2 urls let me call them http://www.testUrl.com/ and http://www.test-url.com/ This url points to a server using an "A-Record". In IIS I've appointed these url's through "Advanced Website Identification" to the correct application. Now we have 2 apps. One application is version one the ot...

Cross Domain Login - How to login a user automatically when transfered from one domain to another

We have offer a number of online services. We are required to develop a system which provides a quick/simple experience for users if they are transferred from one service (on domain1.com) to another service (on domain2.com). Is there a safe and secure way to automatically login a user automatically once they have been transferred to the...

.NET built-in helper to parse Domain\Username in User.Identity.Name

Is there any built-in utility or helper to parse HttpContext.Current.User.Identity.Name to get separately domain name if exists and user? Or is there any other class to do so? I udnerstand that it's very easy to call String.Split("\") but just intresting ...

Must all registered domains have domain name servers assigned to them?

If I just want to know if a domain name is reserved; is it sufficient to use this command and see if any domain name servers turn up, in which case it's reserved? host -t NS example.com It's a lot faster than visiting http://www.internic.net/whois.html and typing example.com to get much more detailed results, which I'm not interested ...

MOSS Domain Configuration

Hi, We are having some issues getting SharePoint to work as we want it to. We have an enterprise MOSS configuration on our domain and have the entry http://intranet pointing to it on port 80. We also have another site collection and have pointed an internet domain name http:/nww.oursector.nhs.uk at it. We have done this to allow those...

unidentified syntax in domain object constructor

Can someone help me identify what the purpose of this unidentified syntax is. It is an extra little something in the constructor for this object. What I'm trying to figure out is what is the "< IdT >" at the end of the class declaration line? I think that this is something I would find useful, I just need to understand what it is why so ...

Ethics of keeping a domain name hostage

I do some work as a freelance web developer, for which I do my own hosting. I have one client who is very behind on paying me. His domain is registered in my name not his. Is it ethical for me to threaten to let it expire unless he brings his account up to date? ...

Mapping existing tables to Domain classes in C#

Hi, I don't even know if I'm using the correct terms but here goes: Is there a way to map the tables and their relations in a SQL Server to domain (C# code) automatically, by means of a tool or something? I've used the nhibernate plugin, but it creates a file in .cs and another in xml, that has the mapping, but I want that mapping to b...

What is domain logic?

What is domain logic? The Wikipedia page for domain logic redirects to business logic. Are they the same thing, and, if not, how do they differ? ...

How do you track hosting / domain / SSL certificate expiry dates for customers?

Not a programming question per se, but interesting for people who do commercial web development. How do you track all of your clients' hosting, domain registration, and SSL certificate expiry dates? Do you just keep a spreadsheet or is there some useful piece of software for this? I've searched extensively and can't find a usable piec...

Is it possible to create a multi-server SharePoint farm in the DMZ without using a domain?

I'm working with a client to plan the topology for a public facing SharePoint internet site. The SharePoint installation will live in the client's DMZ and the plan is to use an existing SQL Server machine to host the SharePoint databases. The problem is that there is no domain in the DMZ - and the client doesn't want to create one wi...

Adapting Linq Entity objects to Domain objects

Hi, I have the following code which adapts linq entities to my Domain objects: return from g in DBContext.Gigs select new DO.Gig { ID = g.ID, Name = g.Name, Description = g.Description, StartDate = g.Date, En...

Free DNS server for Windows XP/Vista/Win7?

I'm currently developing a security solution that should work across domains and as such I need a small private dns server to add various entries to. I could alter the hosts file to achieve the same result but since the hosts file doesn't support wildcard chars I will have a whole lot of entries, so a DNS server that supports wildcards w...

(N)Hibernate: core/master mappings with relationships

I am starting a job with a mid size company working mostly on writing custom apps that interact with their ERP system. This is my first time doing this sort of work, so the ERP concept is new to me and I am learning it piece meal. I have only written two apps so far and have learned the database model as I went and only as much as I n...

Rails - Multiple top level domains and a single session/cookie

Hello all, I've been struggling with this for quite awhile and haven't been able to find a solution. I need a user to be able to view multiple top level domains with a single login. My understanding is that this needs to be set in environment.rb and called with before_dispatch. This is what I've come up with: require 'activesupport' r...

LinqToSQl and adapting from linq to Domain objects in a centralised manner

Imagine the following code: return from a in DBContext.Acts join artist in DBContext.Artists on a.ArtistID equals artist.ID into art from artist in art.DefaultIfEmpty() select new Shared.DO.Act { ID = a.ID, Name = a.Name, Artist = new Shared.DO.Artist { ...

How to create SubDomains and redirect to them in ASP.NET?

How do I create subdomains in ASP.NET? I have few links on my homepage(Home.aspx) Example: Link1 and Link2 I need to create two sub domains link1.example.com and link2.example.com and redirect to them. I will be using Response.Redirect for navigation. Questions: Do the files need to reside in different directory or something? Can I ...