RE: DNS query with ColdFusion

2005-06-16 Thread Calvin Ward
Or you're on this list apparently :D -Original Message- From: Dawson, Michael [mailto:[EMAIL PROTECTED] Sent: Wednesday, June 15, 2005 3:13 PM To: CF-Talk Subject: RE: DNS query with ColdFusion Well, sure. *If* you know Java. ;^) M!ke -Original Message- From: Barney

RE: DNS query with ColdFusion

2005-06-15 Thread Dawson, Michael
If you don't need to use Java, you can CFEXECUTE the nslookup command, then parse the results. M!ke -Original Message- From: wolf2k5 [mailto:[EMAIL PROTECTED] Sent: Wednesday, June 15, 2005 1:31 PM To: CF-Talk Subject: DNS query with ColdFusion Hi all, I need to make a DNS query from

Re: DNS query with ColdFusion

2005-06-15 Thread Barney Boisvert
And that's preferable how? The java method is guarenteed to work on any CF install, while using nslookup not only requires CFEXECUTE access, but also requires nslookup to be installed, and for the format of it's output to never change. cheers, barneyb On 6/15/05, Dawson, Michael [EMAIL

RE: DNS query with ColdFusion

2005-06-15 Thread Dawson, Michael
:43 PM To: CF-Talk Subject: Re: DNS query with ColdFusion And that's preferable how? The java method is guarenteed to work on any CF install, while using nslookup not only requires CFEXECUTE access, but also requires nslookup to be installed, and for the format of it's output to never change

Re: DNS query with ColdFusion

2005-06-15 Thread Barney Boisvert
cfset ipAddr = createObject(java, java.net.InetAddress).getByName(www.barneyb.com).getHostAddress() / Surely that's simpler than doing a CFEXECUTE call and parsing the result, let alone the zero-dependancy nature of it. cheers, barneyb On 6/15/05, Dawson, Michael [EMAIL PROTECTED] wrote: I

RE: DNS query with ColdFusion

2005-06-15 Thread Dawson, Michael
Well, sure. *If* you know Java. ;^) M!ke -Original Message- From: Barney Boisvert [mailto:[EMAIL PROTECTED] Sent: Wednesday, June 15, 2005 1:58 PM To: CF-Talk Subject: Re: DNS query with ColdFusion cfset ipAddr = createObject(java, java.net.InetAddress).getByName(www.barneyb.com