Tagged Questions
The domain tag has no wiki summary.
79
votes
8answers
27k views
How to use Google app engine with my own domain (not subdomain)?
After hours of reading about and experimenting with DNS records I can access my Google app engine app via these URLs:
myappid.appspot.com
www.myappid.myowndomain.com
What does not work:
...
21
votes
3answers
574 views
Measure the pronounceability of a word?
I'm tinkering with a domain name finder and want to favour those words which are easy to pronounce.
Example: nameoic.com (bad) versus namelet.com (good).
Was thinking something to do with soundex ...
20
votes
9answers
3k views
Recommendations for domain name registrar with API-support
I'm building a web application that needs to register domain names programmatically.
What domain name registrars with API support fulfill the following requirements:
Supports .COM
Ideally cheap
...
19
votes
4answers
13k views
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 ...
18
votes
15answers
3k views
Programming against interfaces: Do you write interfaces for all your domain classes?
I agree, that programming against interfaces is a good practice. In most cases in Java "interface" in this sense means the language construct interface, so that you write an interface and an ...
13
votes
10answers
1k views
Public Wildcard Domain Name To Resolve To 127.0.0.1
Is anyone aware of a public wildcard domain name that resolves to IP address 127.0.0.1. For example if I wanted to test a URL locally such as mywebsite.localhost.com or example.localhost.com but I ...
13
votes
3answers
2k views
Validation in a Domain Driven Design
How do you deal with validation on complex aggregates in a domain driven design? Do you consolidate your business rules/validation logic?
I understand argument validation. And I understand property ...
13
votes
18answers
1k views
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 ...
12
votes
6answers
568 views
Using 2 domains on one website
I have a dedicated server (apache, php, mysql)
There is a primary domain (let's call it www.domain1.com) that actually holds all the files like any other regular web hosting account. Another domain ...
12
votes
5answers
5k views
Cross Domain Login - How to login a user automatically when transferred from one domain to another
We 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 ...
10
votes
1answer
6k views
C# Active Directory: Get domain name of user?
I know that this type of question has been asked before, but other methods are failing me right now.
As it stands our windows service polls AD, given an LDAP (i.e. LDAP://10.32.16.80) and a list of ...
10
votes
2answers
2k views
Custom Incoming Mail Domain With Google App Engine
I have set up a custom domain for my google app engine application, which accepts incoming email. While this works great if you want to use an email address like example@example.appspotmail.com, I ...
10
votes
5answers
663 views
Is using one-to-one interfaces with domain entities a good or bad practice? Why?
One thing I see in some DDD enterprise apps that I work on, is the use of interfaces that are identical to the domain entities, with a one-to-one mapping of properties and functions. Indeed a domain ...
9
votes
2answers
1k views
Facebook App Domain dissapears
I've added a comment box to my site. I'm using an app_id. I've added my domain to "App Domain" in the settings section for the app. I save it. I then come back and the "App Domain" has disappeared. ...
9
votes
4answers
155 views
Creating a PHP API: Checking from which server the API Request comes from
I'm creating a PHP API for a website and I'd want to restrict the API access to domains that are registered on our server (in order to prevent abusing of API usage). So, this is my approach right now, ...
9
votes
4answers
234 views
Should Interfaces be aware of Domain Objects?
In my system I have two different projects, one defining its interfaces and another defining its domain objects. So far I managed to have the interface definitions independent of the domain objects ...
9
votes
13answers
7k views
PHP Getting Domain Name From Subdomain
I need to write a function to parse variables which contain domain names. It's best I explain this with an example, the variable could contain any of these things:
here.example.com
example.com
...
9
votes
5answers
2k views
How do browser cookie domains work?
Due to weird domain/subdomain cookie issues that I'm getting, I'd like to know how browsers handle cookies. If they do it in different ways, it would also be nice to know the differences.
In other ...
9
votes
8answers
4k views
Rails - Multiple top level domains and a single session/cookie
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 ...
9
votes
5answers
18k views
Is it possible to find all DNS subdomains for a given domain name? [closed]
This question exists because it has
historical significance, but it is not
considered a good, on-topic question
for this site, so please do not use it
as evidence that you can ask similar
...
9
votes
7answers
2k views
LINQ To SQL entity objects as domain objects
Clearly separation of concerns is a desirable trait in our code and the first obvious step most people take is to separate data access from presentation. In my situation, LINQ To SQL is being used ...
8
votes
1answer
944 views
How to determine which domain registrars (e.g., GoDaddy, Register.com) support which top level domains (TLDs)?
If someone wants a .LY TLD (top level domain) or .IO TLD, how do I determine which domain registrar (e.g., GoDaddy, Register.com) supports the purchasing of this TLD?
Thanks!
8
votes
3answers
2k views
SSL iframe is embedded on other web site
Iframe from domain with SSLcertificate will be embedded on other site (foo.com).
Must foo.com have SSL cerificate?
If foo.com has SSL certificate, will it be an security error? foo.com has SSL ...
8
votes
8answers
788 views
If you are forced to use an Anemic domain model, where do you put your business logic and calculated fields?
Our current O/RM tool does not really allow for rich domain models, so we are forced to utilize anemic (DTO) entities everywhere. This has worked fine, but I continue to struggle with where to put ...
8
votes
8answers
262 views
Non-English domain naming issues in programming
Most programming code, I imagine is written in English. But I'm curious how people are handling the issue of naming herein. A lot of programming is done within some bussiness domain, usually with well ...
8
votes
7answers
2k views
What methods should go in my DDD factory class?
I am struggling to understand what my factory class should do in my DDD project. Yes a factory should be used for creating objects, but what exactly should it be doing. Consider the following ...
8
votes
4answers
2k views
Machine's domain name in .NET?
There gotta be an easy way to do this, I can't believe there's none. I have scanned through net and found, like, 20 different methods to find in which domain current user is, but none to get domain ...
7
votes
2answers
462 views
How to Create an Internal DSL in Scala?
I have been looking at a couple of books and resources on domain specific languages.
I think I want to build an internal DSL in Scala.
def instrument = new FXInstrument {
provider = "EuroBase"
...
7
votes
1answer
1k views
CNAME for top level domain?
Is it possible to set a CNAME record for a toplevel domain like example.com?
My ISP says that it's only possible to use CNAME's for subdomains but I've read somewhere else that is should be possible ...
7
votes
6answers
2k views
DTO or Domain Model Object in the View Layer?
I know this is probably an age-old question, but what is the better practice? Using a domain model object throughout all layers of your application, and even binding values directly to them on the ...
7
votes
7answers
508 views
C++ domain specific embedded language operators
In numerical oriented languages (Matlab, Fortran) range operator and semantics is very handy when working with multidimensional data.
For example:
A(i:j,k,:n) // represents two-dimensional slice ...
7
votes
1answer
775 views
Google App Engine on Google Apps Domain
I'm having trouble getting my domain pointed to my website hosted with google app engine. Here's the background... take care to separate the concepts of "google apps" (domain hosting, email, etc.) and ...
7
votes
4answers
13k views
7
votes
1answer
340 views
methods in DDD entities vs services
Our team is fairly new to DDD, and are trying to implement some of the concepts in our current project. One question that has come up is whether to put methods into entity objects, or service ...
7
votes
4answers
945 views
How do you modify a Domain Class in Grails?
I can't figure how what the "standard practice" is for modifying a Domain Class after it has automatically created the corresponding database table.
There's no "migration" in Grails, and there's no ...
7
votes
8answers
3k views
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?
7
votes
7answers
2k views
object editing and isDirty() flag
I'm working on a system were a user can edit existing objects ("Filter" domain objects to be exact) through a GUI. As a UI hint, we only want to enable the save button if the user really modified ...
6
votes
6answers
243 views
How do I stop other domains from pointing to my domain?
I recently found out that there are other domain names pointing to my website (that don't belong to me) and I was wondering how people can stop/prevent this from happening. I'm hosting this on peer1 ...
6
votes
2answers
218 views
At which level should I apply dependency injection? Controller or Domain?
Hey guys, I would like to hear from you what are de the main advantages and drawbacks in applying dependency injection at the controller level, and/or domain level.
Let me explain; if I receive a ...
6
votes
1answer
2k views
SQL Server Management Studio 2008 Runas user on different domain over VPN
I am currently trying to run SQL Server Management Studio 2008 as a user who is on a different domain. I noticed in other threads that running the following command from a batch script will do this ...
6
votes
1answer
4k views
Consuming REST Web Service in .NET MVC 3
I am working on a .NET 4 MVC 3 application. I'm trying to follow a domain driven design paradigm. Right now, my application is broken into two pieces, a domain and my MVC code for the web. I'd like ...
6
votes
3answers
406 views
Is it at all possible to use Google App Engine with a naked domain?
I am working on a site for which I really want to be able to use a naked domain, e.g. example.com. Preferably, www.example.com should redirect to example.com, but that is not strictly necessary.
If I ...
6
votes
3answers
1k views
GAE naked to www custom domain mapping does not work
I setup a custom domain on GAE using the tutorial at aral balkan to access http;//app.apspot.com at http://app.com. (I can access the app at www.app.com)
The tutorial is pretty old(Sep 2008) and it ...
6
votes
2answers
909 views
DDD - Aggregate Root - Example Order and OrderLine
Am trying to get my hands dirty learning the DDD (by developing a sample eCommerce site with entities like Order, OrderLines, Product, Categories etc).
From what I could perceive about Aggregate Root ...
6
votes
8answers
257 views
Constructing a (somewhat) complex object
When I create classes, simple constructors tend to be the norm. On one of my current projects, a movie library, I have a Movie domain object. It has a number of properties, resulting in a constructor ...
6
votes
1answer
2k views
How can I retrieve a Windows Computer's SID using WMI?
I'm not looking for User SIDs. I'm looking for the computer SID, which active directory would use to uniquely identify the computer. I also don't want to query the active directory server, i want to ...
6
votes
2answers
853 views
How many entities should RIA domain service include?
I was wondering about how to exactly implement domain service in RIA. Is it common to include all entities in the entire domain model in a single domain service, thus making the service responsible ...
6
votes
3answers
664 views
Checking if a domain name is registered
How would I go about checking if a domain name is registered? I was thinking about checking if it has a corresponding IP but it doesn't seem to work as well as I had hoped. Is there a solution in ...
6
votes
6answers
2k views
Why ww2 sub domains?
I have seen on the web some domain names having prefix of ww2 or ww3 or so (ww2.somedomain.com, ww3.yourdomain.com). And these happen mostly when travelling from a page to page. What would be the ...
6
votes
2answers
1k views
Multi-domain deployment of Google App Engine (GAE) apps
We would like to develop and sell custom commercial GAE applications. I would like information on the deployment of GAE applications on arbitrary Google Apps domains (i.e. not appspot).
Suppose our ...