domain

Domain Language: What is the best way to express?

One of my client sent me a requirement document and while reading that document there was a flash came in my mind. I started rewriting that big document similar like below. Do you think, an automated tool can generate a data model and rules by running through this. Say, if any client communicate their requirement in this approach, it wil...

Checking domain name availability with DNS records

How accurately can a domain name's availibility be determined by checking for the existence of NS or SOA (Start of Authority) records? If not, how can I determine this as accurately as possible without resorting to WHOIS? For example, is it worth checking for MX records if no NS records exist? I am specifically interested in .co.za dom...

Get NT style domain\user given DN

Hi, I have the DN of a user in Active Directory, I want to get the "NT style" domain\user from this. The sAMAccountname AD property gives me the user part, but what about the domain? Thanks ...

Getting a list of users on a network domain

I want to get back to get a list of users on a network domain using VB.Net. I will have the domain name available to me for use. Thanks in advance. ...

domai name availbility checker

actually i am looking for jquery and php script for checking domain name availability and whois. like this example http://davidwalsh.name/?s=WHOIS%20Domain%20Availability%20Checker Thanks ...

Do Domain Classes usually get JPA or JAXB Annotations or both?

I have a Java enterprise application that provides a web service, has a domain layer, and a hibernate persistence layer. In this particular case, there is not a huge difference (at the moment) between the objects I send over the wire, the domain objects, and the persistence objects. Currently the application uses DTO's on the persis...

Redirect query string parameters to individual domain names in apache

We have a client who has many branches around the UK. Some of their branches have their own sites with their own domain names. The client has a part built system where visiting: www.client.com/aboutus.php?id=branchId shows the About Us page for that particular branch. What I need is a way to map specific domains to their branchId (thi...

know the domain of the action called in rails

I have 2 domain: domain1.com and domain2.com how can i know what is the domain that the user used to call a action? like domain1.com/controller/action i want get domain1.com from the action is possible? thanks ...

Sending large of amounts of data cross domain

I am wanting to create a mashup where large amounts of data need to be sent cross domain. I am thinking about using IFRAMES. My question is... Will this work?? Does Google use it ?? Does anyone have a concept or some type of psuedo that describes how google does it? I pretty much need to know how to go about doing it. I am using jque...

Grails GORM Domain class relationship

Grails 1.1.1 Goovy 1.5.7 In a relationship such this: Author 1 -- n Book n -- 1 Publisher Defined in Grails: class Author { String firstName String lastName static hasMany = [books: Book] static constraints = { books(nullable: true) } } class Book { String title Author author Publisher ...

Should I make a DateRange object?

Hi. First question ever. A few of my domain objects contain date ranges as a pair of start and end date properties: public class Period { public DateTime EffectiveDate { get; set; } public DateTime ThroughDate { get; set; } } public class Timeline { public DateTime StartDate { get; set; } public DateTime EndDate { get; set;...

What is a Domain Model

I have read the wikipedia definition of a domain model. I still don't get it. I have been reading alot of posts for NHibernate and almost in every post I read I see the term Domain Model. What exactly is it and does any one have an example of a domain model. ...

POST cross domain https in flex code faild

I have added https: / /catherine.mob.dev/crossdomain.xml: <!DOCTYPE cross-domain-policy SYSTEM "http://www.macromedia.com/xml/dtds/cross-domain-policy.dtd"&gt; <cross-domain-policy> <site-control permitted-cross-domain-policies="all"/> <allow-access-from domain="static.mob.dev" to-ports="*" secure="false"/> <allow-http-request-headers-f...

Can I create domain schema only (without any data) in Amazon SimpleDB?

Hello. I am evaluating Amazon SimpleDB at this time. SimpleDB is very flexible in the sense that it does not have to have table (or domain) schemas. The schema evolves as the create / update commands flow in. All this is good but while I am using a modeling tool (evaluating MindScape LightSpeed) I require the schema upfront, in order for...

Validating a domain object for persistence

In the system I'm currently working on, I'm following SRP (I think!) by separating the validation of domain business rules vs persistence constraints. Let's employ the overused customer example. Say a customer must have a valid zip code, street address and name to satisfy the system's business rules. Let's further say that the customer...

Can a Grails Domain Class inherit from a class that is not a domain class?

I tried to do this, but it insists on their being a table of the base class. I tried using tablePerHierarchy false as well and that didn't make any difference. I have a few domain classes that share a bunch of methods that operate on an inherited transient field. I had hoped that just having the class over in the non-domain secti...

SEO Destroyed By URL Forwarding - Can't figure out another way

We design and host websites for our clients/sales force. We have our own domain: http://www.firstheartland.com Our agents fill out a series of forms on our website that are loaded into a database. The database then renders the website as a database driven website. /repwebsites/repSite.cfm?link=&rep=rick.higgins /repwebsites/repSit...

Redirecting without change of address in browser address bar

I have a different but similar question. I have a dynamic dns account where I map my machine's dynamic IP to an address say, www.xxx.yyy.net Now, I have registered another short domain name say www.yyy.com, the hosting is on a linux server. Now, my machine is actually a webserver which runs .net website which can be accessed by www.xxx...

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 basic object-based business logic and calculated fields. Current layers: Presentation Service Repository Data/Entity Our repository la...

Multiple Sub Domains - Same root dir

Hi All, I have a shared server I access via Plesk and manage for a client. I needed to set up sub-domains but I was unable to use wild-card sub-domains so what I did was to create sub-domains as sub-folders. All sub-domains use the same app (with small changes per sub-domain, such as logo, title etc). At the moment I have 42 sub-doma...