active questions tagged domain - Stack Overflow most recent 30 from stackoverflow.com 2009-12-03T06:30:36Z http://stackoverflow.com/feeds/tag/domain http://www.creativecommons.org/licenses/by-nc/2.5/rdf http://stackoverflow.com/questions/1829843/sending-large-of-amounts-of-data-cross-domain 0 Sending large of amounts of data cross domain numerical25 2009-12-02T00:09:13Z 2009-12-02T02:37:44Z <p>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... </p> <p>Will this work?? Does Google use it ??</p> <p>Does anyone have a concept or some type of psuedo that describes how google does it?</p> <p>I pretty much need to know how to go about doing it. I am using jquery so if anyone knows of any examples in jquery, that would be great.</p> http://stackoverflow.com/questions/1826000/know-the-domain-of-the-action-called-in-rails 0 know the domain of the action called in rails Luca Romagnoli 2009-12-01T12:49:22Z 2009-12-01T13:48:11Z <p>I have 2 domain: domain1.com and domain2.com</p> <p>how can i know what is the domain that the user used to call a action?</p> <p>like</p> <p>domain1.com/controller/action</p> <p>i want get domain1.com from the action</p> <p>is possible?</p> <p>thanks</p> http://stackoverflow.com/questions/377137/rails-multiple-top-level-domains-and-a-single-session-cookie 2 Rails - Multiple top level domains and a single session/cookie Thadius B 2008-12-18T07:48:32Z 2009-11-30T20:07:13Z <p>Hello all,</p> <p>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.</p> <p>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:</p> <pre><code> require 'activesupport' require 'dispatcher' module ActionController class Dispatcher def set_session_domain ActionController::Base.session_options.update :session_domain =&gt; "#{@request.host}" end before_dispatch :set_session_domain end end </code></pre> <p><hr /></p> <p>However, this does not seem to be working when I try and pull the values from session[:session_domain].</p> <p>Any help is greatly appreciated.</p> http://stackoverflow.com/questions/1820614/redirect-query-string-parameters-to-individual-domain-names-in-apache 0 Redirect query string parameters to individual domain names in apache Pete Jones 2009-11-30T15:48:47Z 2009-11-30T15:48:47Z <p>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:</p> <pre><code>www.client.com/aboutus.php?id=branchId </code></pre> <p>shows the About Us page for that particular branch. What I need is a way to map specific domains to their branchId (this is all stored in a DB at the moment) so that</p> <pre><code>www.client.com/aboutus.php?id=4 </code></pre> <p>maps to</p> <pre><code>www.branchid4.com/aboutus.php </code></pre> http://stackoverflow.com/questions/1820428/do-domain-classes-usually-get-jpa-or-jaxb-annotations-or-both 2 Do Domain Classes usually get JPA or JAXB Annotations or both? HDave 2009-11-30T15:20:17Z 2009-11-30T15:25:23Z <p>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. </p> <p>Currently the application uses DTO's on the persistence side and annotates the Domain classes with JAXB annotations. However, the more I read and think about it, the more this seems backwards! (Not to mention there is a lot of code to support the mindless back and forth between the DTO's and the Domain objects.) It seems like most architects suggest puting JPA annotations on the domain model and create DTO's for sending objects over the wire.</p> <p>In my case, could I put both the JAXB and JPA (Hibernate) annotations on my domain classes? </p> <p>The thought of keeping my web service facade, my domain, and my persistence all tightly bundled together seems easy to maintain, but does concern me as these may need to change in time. But would it be smarter to create a set of DTO classes for the web services side and skip the DTO's for the persistence side?</p> http://stackoverflow.com/questions/1819105/register-domain-with-country-code 0 Register domain with country Code [closed] mainu raj kehte hai 2009-11-30T10:53:30Z 2009-11-30T10:57:13Z <p>im planning to register a domain , im yet to register before that i have a query , ok . so what i need to do is register a domain country specific like say www.in.webtechar.com for india , www.uk.webtechar.com for UK and so on ... ok is this can be achieved with one single domain www.webtechar.com or ill have to register a country specific domain for each country e.g. <a href="http://www.in.capgemini.com/" rel="nofollow">http://www.in.capgemini.com/</a> </p> <p>THanks, Mukesh</p> http://stackoverflow.com/questions/1779121/domain-language-what-is-the-best-way-to-express 2 Domain Language: What is the best way to express? Vadi 2009-11-22T16:01:27Z 2009-11-30T10:12:42Z <p>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 will make every one to understand the domain better.</p> <p>I understand that since I know what is blog and comment and post I am able to relate it easily here. However, if one chop down all the technical terms of their business in this manner, will it not be easy to make every one on the same page?</p> <ul> <li>Model: <ul> <li>blog <strong>has a</strong> date </li> <li>blog <strong>has a</strong> content</li> <li>blog <strong>has a</strong> author </li> <li>blog <strong>has many</strong> comments </li> <li>content <strong>may have</strong> images</li> <li>content <strong>may have</strong> links </li> <li>comment <strong>has a</strong> blog </li> <li>comment <strong>has a</strong> name </li> <li>comment <strong>has an</strong> email </li> <li>comment <strong>may have</strong> an url </li> <li>comment <strong>has a</strong> date</li> </ul></li> <li>Rules: <ul> <li>blog <strong>cannot be</strong> empty</li> <li>blog <strong>may be</strong> published <strong>or</strong> drafted</li> <li>blog <strong>should have a</strong> author</li> <li>blog <strong>cannot be</strong> deleted <strong>when</strong> comment is present</li> <li>blog <strong>cannot have</strong> comments <strong>after</strong> 20 days</li> </ul></li> </ul> http://stackoverflow.com/questions/1508909/why-outlook-asks-user-name-password-and-domain 0 Why outlook asks user name, password and domain? [closed] kulakli 2009-10-02T11:04:23Z 2009-11-29T02:56:36Z <p>After updating computer where exchange server runs, some users on domain now have a problem. They say, outlook keeps asking for user name, password and domain. I make some of them to try their passwords but they say it does not work.</p> <p>I have been using an email on same exhange server and I have no problem. Until we fix this, I keep recommending people to use web access (it is working). Do you have any idea what may be the cause of this problem?</p> <p>Administrator of exchange server says he has just installed latest updates on windows pc. Is there a relation for some users that tried to connect exchange server while this installation and reboot runs, a misconfiguration in profile cache or something?</p> <p>Regards, Burak</p> http://stackoverflow.com/questions/1814083/what-is-more-important-domain-or-the-technology 2 what is more important Domain or the technology? [closed] Hemant 2009-11-28T23:14:29Z 2009-11-28T23:54:38Z <p>As it's very difficult to focus on the both, what is more important as a software engineer for the long term? Is it the domain, like finance , telecom etc... or the technology like C/C++, Unix etc.?</p> http://stackoverflow.com/questions/1810084/quantify-the-move-to-a-domain-based-network-vs-a-workgroup 0 Quantify the move to a Domain based network vs a workgroup [closed] Rump 2009-11-27T18:20:42Z 2009-11-27T18:20:42Z <p>I've recently been hired for a network administrator position and one of first things I noticed was that the company still uses a workgroup network model. I want to switch to a Domain based model, but my boss has questioned this and asked me to "quantify" it. Can anyone help me out here? Apparently, explaining the benefits of centralized administration of accounts, increased security, among others, was not enough to sway him.</p> http://stackoverflow.com/questions/1806037/domai-name-availbility-checker 0 domai name availbility checker air 2009-11-26T22:59:54Z 2009-11-27T01:44:14Z <p>actually i am looking for jquery and php script for checking domain name availability and whois.</p> <p>like this example</p> <p><a href="http://davidwalsh.name/?s=WHOIS%20Domain%20Availability%20Checker" rel="nofollow">http://davidwalsh.name/?s=WHOIS%20Domain%20Availability%20Checker</a></p> <p>Thanks</p> http://stackoverflow.com/questions/1169327/tools-for-finding-domain-names 2 Tools for finding domain names Paul Tarjan 2009-07-23T02:47:02Z 2009-11-26T04:31:19Z <p>I've built out a pet project of mine, and am now looking for a good domain name for it. Arbitrarily doing whois lookups on ideas that pop into my head seems inefficient.</p> <p>What tools do you use when searching for a good domain name?</p> <p>Some ideas to get the wheels greased :</p> <ul> <li>given a few letters does prefix/suffix/infix searches for available domains</li> <li>suggests other words from a thesaurus</li> <li>shows you short available domains</li> </ul> <p>And of course, another requirement is that the tool isn't shady and quickly registers the domain name while it searches for you.</p> http://stackoverflow.com/questions/1799068/getting-a-list-of-users-on-a-network-domain 0 Getting a list of users on a network domain Sean p 2009-11-25T18:38:30Z 2009-11-26T00:00:49Z <p>I want to get back to get a list of users on a network domain using VB.Net.</p> <p>I will have the domain name available to me for use. </p> <p>Thanks in advance. </p> http://stackoverflow.com/questions/1796426/get-nt-style-domain-user-given-dn 0 Get NT style domain\user given DN Henrik 2009-11-25T11:44:34Z 2009-11-25T12:22:34Z <p>Hi,</p> <p>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?</p> <p>Thanks</p> http://stackoverflow.com/questions/1778438/domain-repository-for-requirements-management-build-or-buy 2 Domain repository for requirements management - build or buy? Justin 2009-11-22T11:07:47Z 2009-11-24T09:40:22Z <p>In my organisation, we have some very inefficient processes around managing requirements, tracking what was actually delivered on what versions, etc, do subsequent releases break previous functionality, etc - its currently all managed manually. The requirements are spread over several documents and issue trackers, and the implementation details is in code in subversion, Jira, TestLink. I'm trying to put together a system that consolidates the requirements info, so that it is sourced from a single, authoritative source, is accessible via standard interfaces - web services, browsers, etc, and can be automatically validated against. The actual domain knowledge is not that complicated but is highly proprietary and non-standard (i.e., not just customers with addresses, emails, etc), and is relational: customers have certain functionalities, features switched on/off, specific datasources hooked up - all on specific versions. So modelling this should be straightforward.</p> <p>Can anyone advise the best approach for this - I a certain that I can develop a system from scratch that matches exactly the requirements, in say ruby on rails, grails, or some RAD framework. But I'm having difficulty getting management buy-in, they would feel safer with an off the shelf solution. </p> <p>Can anyone recommend such a system? Or am I better off building it from scratch, as I feel I am? I'm afraid a bought system would take just as long to deploy, and would not meet our requirements.</p> <p>Thanks for any advice. </p> http://stackoverflow.com/questions/1773894/have-htaccess-ask-for-password-depending-on-domain-name 0 Have .htaccess ask for password depending on domain name nute 2009-11-20T23:40:23Z 2009-11-20T23:53:24Z <p>We have several domain name aliases all pointing to the same server and directory (just aliases).</p> <p>But I'd like to password-protect (htaccess) the site when people come from certain domain names. </p> <p>Thanks</p> http://stackoverflow.com/questions/1594576/access-denied-uncaught-exception-in-ff-2-0-servlet-call-from-another-host 0 Access denied | uncaught exception in FF 2.0 | servlet call from another host Mohammed Arif 2009-10-20T13:21:46Z 2009-11-20T11:43:15Z <p>Hi,</p> <p>Seems like got stuck in the cross domain issue.</p> <p>Just trying to get the XML response from the servlet call through POST method:</p> <p>$.ajax({ type: "POST", url: "http://10.210.221.43:9081/shopsfinder/servlet/ ShopsFinderStoreServlet" //THIS DOESN'T //url: "../ShopsFinderStoreServlet" //IT WORKS ..................</p> <p>It works fine when we place the servlet at the same location where our application server is, with the relative path.</p> <p>BUT we have to put the servlet somewhere else means [at some other location], due to some limitations.</p> <p>Then it doesn't hit the servlet and we don't give any response back to the browser and it goes in error function as given:</p> <pre><code> error: function(XMLHttpRequest, textStatus, errorThrown) { alert("errror XMLHttpRequest: " + XMLHttpRequest.responseXML + "textStatus: " + textStatus + " errorThrown: " +errorThrown); } </code></pre> <p>Which gives all the values NULL and get the exception in FF.</p> <p>Do we have any work around to overcome this issue?</p> <p>Many thanks Mohammed Arif </p> http://stackoverflow.com/questions/1756143/open-directory-directory-domain-name-on-mac-os-x 0 Open Directory directory domain name on Mac OS X Glen Low 2009-11-18T13:52:34Z 2009-11-19T02:26:33Z <p>I can retrieve the logged in user name using NSUserName(), but how do I get the Open Directory "directory domain name" or other domain he is a member of? i.e. similar to the notion in Windows where a logged-in user is DOMAIN\USERNAME, where DOMAIN is his local machine, workgroup or Active Directory domain.</p> http://stackoverflow.com/questions/1624443/crm-filtered-views-through-vpn-access 0 CRM Filtered Views through VPN access Brian Scott 2009-10-26T12:09:14Z 2009-11-18T22:00:03Z <p>Hi,</p> <p>I'm currently developing a set of reports for Microsoft CRM. I'm using Visual Studio 2005 to create and design the RDL files from my local development machine which sits on a different network from the client. I have access to the CRM database through VPN and by using a SQL Server user logon which is not an Active Directory user setup within the CRM.</p> <p>I need to use the filtered views from the CRM database but as I'm not logged in as an active directory user whilst I'm connected from Visual Studio I do not receive any results from my queries. </p> <p>I've seen the solution some people have suggested whereby you use "EXECUTE AS USER = 'domain\user'" before performing the lookup but I cannot use a remote domain user as I get the following error upon querying:</p> <p>"Cannot execute as the database principal because the principal "DomainEx\usernameEx" does not exist, this type of principal cannot be impersonated, or you do not have permission."</p> <p>Can someone please provide me some guidance on how to use the filtered views during report development when you are not in the local domain context?</p> http://stackoverflow.com/questions/1197573/domain-pointing 0 Domain Pointing Phil 2009-07-29T01:00:59Z 2009-11-18T16:09:35Z <p>Hi</p> <p>Basically I bought a domain through a (cheap!) domain company and I want this domain to point to a folder on the server.</p> <p><strong>The story</strong></p> <p>I originally bought www.domain.com along with hosting</p> <p>A few months down the line I bought www.domain2.com</p> <p>I want www.domain2.com to point ------> to www.domain.com/folder</p> <p>How do I do this? can it be done through DNS, Im quite new to this!</p> <p>Help!</p> http://stackoverflow.com/questions/1207838/how-to-block-my-site-from-one-known-ip-address 0 how to block my site from one known IP address? coderex 2009-07-30T16:45:27Z 2009-11-18T16:05:49Z <p>I want to block access of my site from one particular IP address, how can i do that.?</p> <p>using htaccess or ? </p> http://stackoverflow.com/questions/1752139/how-to-map-the-nhibernate-data-model-to-the-domain-model 0 How to map the NHibernate Data Model to the Domain Model? Rookian 2009-11-17T21:57:41Z 2009-11-18T10:05:45Z <p>I started creating a domain model and now I asking myself, how can I map this domain model to a NHibernate Data Model ((using Fluent NHibernate)? Is there anywhere a good and simple example of how to do that?</p> <p>With Data Model I didn't think about the physical/relational Database Model(!) What I meant was the Data Model in the Data Access Layer. So maybe I should change the term into Data Access Layer Data Model?! I hope some of you can follow me^^</p> http://stackoverflow.com/questions/959825/knowing-when-to-model-domain-relationships-and-how-to-handle-contextual-relations 1 Knowing when to model domain relationships and how to handle contextual relationships. Dave 2009-06-06T14:40:32Z 2009-11-18T03:25:03Z <p>Hi - I am new to Domain Modelling so forgive me for asking a couple of elementary questions. My first question is about knowing when to model domain relationships. I find sometimes I feel like all classes appear to be related in some way to most others and I am unclear about when I should model these relationships directly (by holding a reference in one class to another).</p> <p>For example, say I have a Person class that is related to a collection of Orders and each Order is related to a collection of Products (forgive the unimaginative example). Each od these entities had a corresponding table in the database. If I am writing some client logic that deals with the Products that a Person is associated with (through that persons orders) it seems temping to have a Person.Products collection, especially as I could craft some SQL to get this collection without the need to pull back the Persons Orders collection. Is this OK or bad design? If what would be the better way to handle this?</p> <p>Secondly, what about situations where relationships are contextual in nature? Continuing with the previous example say that some business logic that I want to run in a person method needs to deal with all of the Person's associated Orders that contain a specific Product (i.e. a subset of the Person's Orders collection). I can construct some SQL that will return exactly this subset very easily. The question is where do I expose the results? Should I put a method on Person that takes a Product parameter and returns the Orders collection so that client code looks like this? </p> <pre><code>person.OrdersContaining(Product p) </code></pre> <p>Should entities have multiple methods like this to expose different subsets of their relationships or should a Person just have a single Orders collection and subsets be handled in some other way?</p> <p>Thanks</p> http://stackoverflow.com/questions/1748000/single-character-domain-names 0 single character domain names [closed] boss 2009-11-17T10:44:44Z 2009-11-17T10:47:55Z <p>why there is no single character domain names? is there any?</p> http://stackoverflow.com/questions/1657710/free-subdomain-redirection-services-with-api-and-path-forwarding 0 free subdomain redirection services with api and path forwarding? rutherford 2009-11-01T17:20:22Z 2009-11-16T20:34:17Z <p>Hi</p> <p>I am familiar with <a href="http://dot.tk/" rel="nofollow">dot.tk</a>, a free subdomain service that provides url cloaking and an api to create new subdomains programmatically. Tragically it seems to be the only one that does not do path forwarding, so if I have a mydomain.tk url pointing to myhost.com and want to access myhost.com/path/to/resource via mydomain.tk/path/to/resource, I cannot do so.</p> <p>I can with most of the other free providers, e.g. <a href="http://freedomain.co.nr/" rel="nofollow">freedomain.co.nr</a>. But they do not provide programmatic access to subdomain creation.</p> <p>Know any services out there that do?</p> http://stackoverflow.com/questions/1719132/how-do-i-register-a-domain-with-special-symbols-or-characters 0 How do I register a domain with special symbols or characters? beausmith 2009-11-12T00:45:38Z 2009-11-12T02:18:50Z <p><a href="http://twitter.com/daringfireball/status/5629998555" rel="nofollow">Daring Fireball tweeted:</p> <blockquote> <p>‘We Don’t Lie to Google’: http://✪df.ws/e4f</a></p> </blockquote> <p>I've been thinking about creating a url shortener and a short url similar to <code>http://✪df.ws/</code> would be ideal as no one will ever have to manually type the symbol.</p> <p>I tried to register a domain with a heart ♥ on a few of the more popular domain name registrars, but upon submitting I was told that the domain name contained invalid characters.</p> <p>How do I search and register a domain with one of these symbols or characters?</p> http://stackoverflow.com/questions/1107730/php-cant-send-email-to-addresses-at-my-own-domain 0 PHP - can't send email to addresses at my own domain sol 2009-07-10T04:44:23Z 2009-11-11T02:06:09Z <p>I have a simple php script on my domain that sends me an email:</p> <pre><code>... $toMail = "me@gmail.com"; //this works - I get the email at my gmail $toMail = "me@mydomain.com"; //this doesn't - I get nothing mail($toMail, $subject, $message, $header); </code></pre> <p>What setting to I change to fix this?</p> http://stackoverflow.com/questions/1712399/can-someone-explain-domain-like-this 1 Can someone explain domain like this? [closed] Paypal 2009-11-11T01:19:24Z 2009-11-11T01:26:11Z <p>www.intco.com.cn</p> <p>Is its domain "intco" or "intco.com",please give a detailed reason!</p> <p><strong>EDIT</strong></p> <p>What's the relationship between www.intco.com and www.intco.com.cn?</p> http://stackoverflow.com/questions/1709013/org-or-com-domain-for-open-source-project-site 0 Org or com domain for open source project site? [closed] Sergei Kozlov 2009-11-10T15:57:20Z 2009-11-10T16:02:08Z <p>Let's say I have an open project called Some Project. Would you recommend hosting the project site under someproject.com or someproject.org, and why? I realize that .org suits an open source project better, but I'm afraid that on longer term, I may want to (<em>cough...</em>) start making money out of it, and .org would become misleading, while moving to .com could cause troubles in the sense of SEO and promotion. I hope someone could shed some light on this dilemma.</p> http://stackoverflow.com/questions/1707327/domains-foreward-slash 0 Domains & Foreward Slash David Logan 2009-11-10T11:34:14Z 2009-11-10T11:44:18Z <p>Hi,</p> <p>This is rather difficult to explain so please bear with me.</p> <p>We will be hosting 4 websites on our server and the plan is to have each site sit under its own domain:</p> <ul> <li>site-a.com</li> <li>site-b.com</li> <li>sub1.site-b.com</li> <li>sub2.site-b.com</li> </ul> <p>Notice the two sub domains!</p> <p>However, our client has asked if we can implement the following url structure instead of using subdomains:</p> <ul> <li>sub1.site-b.com BECOMES site-b.com/sub1/</li> <li>sub2.site-b.com BECOMES site-b.com/sub2/</li> </ul> <p>Does this make sense so far??? So we are using forward slash as opposed to sub domains.</p> <p>Can you advise on the best way to achieve this please?</p> <p>Thanks for any help!</p> <p>Dave.</p>