tld

Read only spinner

I am learning Jsf.Is there any method for making the spinners read only?I should change the value only using spinners and not directly typing the number.Can i implement that by setting attribute in the spinners.tld file? ...

Custom tld function validation in eclipse

Hi, I am working in eclipse (Ganymede 3.4.1) and have created a ctl TLD : <?xml version="1.0" encoding="UTF-8"?> <taglib version="2.0" xmlns="http://java.sun.com/xml/ns/j2ee" xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance" xsi:schemaLocation="http://java.sun.com/xml/ns/j2ee http://java.sun.com/xml/ns/j2ee/web-jsptaglibrary_2_0.x...

DNS: How to Dig thru the right domain name from the TLD?

I'd like to query the DNS records until get the right domain name. For instance, given www.subdomain.site.com.br, be able to dig from .br until site.com.br. Which is the most (protocol-speaking) way to achieve that? An recipe using dig/nslookup would be best. Thanks. ...

Have we reached the point that a mysite.net is as good as mysite.com?

Although not strictly programming related, this is something I believe us web developers think about a lot more than most people, so I wanted to ask this community. When trying to find domains to launch my projects on I'm still convinced that I must find an available .COM and that perfectname.net is not as good as almostperfectname.com....

Does Silverlight restrict .root TLDs?

I've been working on a Silverlight app that loads XML. Internally, in our QA environment, the URL for an XML response is servername.stage.root/script/var1=1/var2=abc/etc i kept getting unexplained Security Errors when it was time to load an XML from this URL. I tried a variety of tests and finally determined that the error only occurs w...

Get root DNS entry from php server; get domain name without www, ect...

How would one get the root DNS entry from $_SERVER['HTTP_HOST']? Input: example.co.uk www.example.com blog.example.com forum.example.co.uk Output: example.co.uk example.com example.com example.co.uk EDIT: Lookup list is very long ...

What is the problem in this application?

Hi, in my application I am getting a problem which is like Http status-500, I think the problem is in the tld, but really i don't get what is the problem, I'm posting the codes below please check it out and tell me where is the problem. import javax.servlet.jsp.*; import javax.servlet.jsp.tagext.*; public class RequiredTag implements Ta...

Confusion in function tag of TLD

Hi, I've made an application to understand the EL expression. In the TLD file firstly I used just the function name and its return type like- "int length( String x )", then it gives and error but when I replace it with "java.lang.int length(java.lang.String)" the code runs fine. Moreover there is another function where there is no parame...

Is there any disadvantage (in SEO terms) to using a country-specific subdomain over the country's TLD?

Hey guys, I'm developing a site at the moment which requires localization to a number of different countries. We own our site's name on many of the countries' TLDs (though not all of them). From a developer's perspective, many things are simplified if we could simply redirect all traffic to "domainname.co.uk" to "uk.domainnname.com" (or...

can we write php tag libararies just like in java's tld

can we write php tag libararies just like in java's tld? ...

Where is Displaytag.tld(not jar)

I am not seeing the .tld file in my download folder. I only see JAR files. What I am missing? My problem is that, I can't refer like this in my JSP: <%@ taglib uri="http://displaytag.sf.net" prefix="display" %> I get some error. Hence want to download .tld and put it under local WEB-INF folder and then change my JSP like this: <%@ ...

How to identify the top level domain of a URL object using java ?

Hi , Given this : URL u=new URL("someURL"); How do i identify the top level domain of the URL.. ...

How to generate tld files from grails taglibs?

I want to have full code autocompletion. I managed to add core/grails/spring taglibs so that STS does autocomplete tags for me in gsp files. What i want to do now is do same thing for my own custom tag libs. If i create tag lib descriptor by hand and put it in tld folder i can add include to my gsp file like this <%@ taglib prefix="p"...

URL to check if domain is available

I use AJAX to check Australian domain availability with this web service: http://portal.ausregistry.com.au/whois/whois_check_result.jsp?qry=[AU domain goes here] Are there equivalent services that expose availability for other TLD's? (particularly the big 3: .com, .org, .net) ...

Domain routing to directory, .htaccess or DNS-magic?

I have three domains of the same name with tlds: .com, .de and .ru. Can I route the visitor depended on tld he had choosen? As example: test.com routes to /english/ directory, test.de to /german/ directory, test.ru to /russian/ one. I have full access to the server. ...

Whois list of Top Level Domain against their corresponding registrar

I'm trying to find a list of TLD's to their corresponding whois server, for example .com americanWhoisServer .net someOtherWhoisServer .au australianWhoisServer In the end i'm aiming for something like a Dictionary where the key is the TLD and the value is the whois server address (eg whois.apnic.net). Ah snap, i just realised that i ...

JSF Turn off tags validation

Can you in JSF 1.2 turn off tag validation so that no exception would be thrown if given tag's attribute doesn't conform to tld definition? ...

Allowed unicode characters in IDN host labels

Hi all, Im currently working on a "proper" URI validator and currently it all comes down to hostname validation, the rest isnt that tricky. Im stuck at IDN hostname labels (e.g. containing unicode; possible punycode encoded strings have been decoded at this point). My first idea was basicly a regex for TLD's not supporting IDN and one...

Regex to match Domain.CCTLD

Does anyone know a regular expression to match Domain.CCTLD? I don't want subdomains, only the "atomic domain". For example, docs.google.com doesn't get matched, but google.com does. However, this gets complicated with stuff like .co.uk, CCTLDs. Does anyone know a solution? Thanks in advance. EDIT: I've realized I also have to deal with...

When should I change the tlib-version of my tag library?

I'm after guidelines on when I should change the tlib-version in the .tld of a tag library that I author. Specifically I'm wondering if I should bump the version number if I add new tags to the library or if I should only do this if I make breaking changes to existing tags? ...