RE: DNS query with ColdFusion
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 Boisvert [mailto:[EMAIL PROTECTED] Sent: Wednesday, June 15, 2005 1:58 PM To: CF-Talk Subject: Re: DNS query with ColdFusion Surely that's simpler than doing a CFEXECUTE call and parsing the result, let alone the zero-dependancy nature of it. cheers, barneyb ~| Find out how CFTicket can increase your company's customer support efficiency by 100% http://www.houseoffusion.com/banners/view.cfm?bannerid=49 Message: http://www.houseoffusion.com/lists.cfm/link=i:4:209718 Archives: http://www.houseoffusion.com/cf_lists/threads.cfm/4 Subscription: http://www.houseoffusion.com/lists.cfm/link=s:4 Unsubscribe: http://www.houseoffusion.com/cf_lists/unsubscribe.cfm?user=11502.10531.4 Donations & Support: http://www.houseoffusion.com/tiny.cfm/54
RE: DNS query with ColdFusion
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 Surely that's simpler than doing a CFEXECUTE call and parsing the result, let alone the zero-dependancy nature of it. cheers, barneyb ~| Find out how CFTicket can increase your company's customer support efficiency by 100% http://www.houseoffusion.com/banners/view.cfm?bannerid=49 Message: http://www.houseoffusion.com/lists.cfm/link=i:4:209602 Archives: http://www.houseoffusion.com/cf_lists/threads.cfm/4 Subscription: http://www.houseoffusion.com/lists.cfm/link=s:4 Unsubscribe: http://www.houseoffusion.com/cf_lists/unsubscribe.cfm?user=11502.10531.4 Donations & Support: http://www.houseoffusion.com/tiny.cfm/54
Re: DNS query with ColdFusion
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 didn't say it was preferable in any way. If I were on a Windows box, > which I am, I would probably just use CFEXECUTE. Fortunately, I don't > have to worry about portability here. > > M!ke -- Barney Boisvert [EMAIL PROTECTED] 360.319.6145 http://www.barneyb.com/ Got Gmail? I have 50 invites. ~| Logware (www.logware.us): a new and convenient web-based time tracking application. Start tracking and documenting hours spent on a project or with a client with Logware today. Try it for free with a 15 day trial account. http://www.houseoffusion.com/banners/view.cfm?bannerid=67 Message: http://www.houseoffusion.com/lists.cfm/link=i:4:209599 Archives: http://www.houseoffusion.com/cf_lists/threads.cfm/4 Subscription: http://www.houseoffusion.com/lists.cfm/link=s:4 Unsubscribe: http://www.houseoffusion.com/cf_lists/unsubscribe.cfm?user=89.70.4 Donations & Support: http://www.houseoffusion.com/tiny.cfm/54
RE: DNS query with ColdFusion
I didn't say it was preferable in any way. If I were on a Windows box, which I am, I would probably just use CFEXECUTE. Fortunately, I don't have to worry about portability here. M!ke -Original Message- From: Barney Boisvert [mailto:[EMAIL PROTECTED] Sent: Wednesday, June 15, 2005 1: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. cheers, barneyb On 6/15/05, Dawson, Michael <[EMAIL PROTECTED]> wrote: > If you don't "need" to use Java, you can CFEXECUTE the "nslookup" > command, then parse the results. > > M!ke ~| Discover CFTicket - The leading ColdFusion Help Desk and Trouble Ticket application http://www.houseoffusion.com/banners/view.cfm?bannerid=48 Message: http://www.houseoffusion.com/lists.cfm/link=i:4:209595 Archives: http://www.houseoffusion.com/cf_lists/threads.cfm/4 Subscription: http://www.houseoffusion.com/lists.cfm/link=s:4 Unsubscribe: http://www.houseoffusion.com/cf_lists/unsubscribe.cfm?user=89.70.4 Donations & Support: http://www.houseoffusion.com/tiny.cfm/54
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. cheers, barneyb On 6/15/05, Dawson, Michael <[EMAIL PROTECTED]> wrote: > If you don't "need" to use Java, you can CFEXECUTE the "nslookup" > command, then parse the results. > > M!ke -- Barney Boisvert [EMAIL PROTECTED] 360.319.6145 http://www.barneyb.com/ Got Gmail? I have 50 invites. ~| Logware (www.logware.us): a new and convenient web-based time tracking application. Start tracking and documenting hours spent on a project or with a client with Logware today. Try it for free with a 15 day trial account. http://www.houseoffusion.com/banners/view.cfm?bannerid=67 Message: http://www.houseoffusion.com/lists.cfm/link=i:4:209594 Archives: http://www.houseoffusion.com/cf_lists/threads.cfm/4 Subscription: http://www.houseoffusion.com/lists.cfm/link=s:4 Unsubscribe: http://www.houseoffusion.com/cf_lists/unsubscribe.cfm?user=11502.10531.4 Donations & Support: http://www.houseoffusion.com/tiny.cfm/54
RE: DNS query with ColdFusion
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 within ColdFusion MX 6.1 to figure out the Active Directories servers for a domain name (TXT records) . I am looking for some example code to do that using the underlying Java classes. Any link? Thanks a lot. ~| Discover CFTicket - The leading ColdFusion Help Desk and Trouble Ticket application http://www.houseoffusion.com/banners/view.cfm?bannerid=48 Message: http://www.houseoffusion.com/lists.cfm/link=i:4:209592 Archives: http://www.houseoffusion.com/cf_lists/threads.cfm/4 Subscription: http://www.houseoffusion.com/lists.cfm/link=s:4 Unsubscribe: http://www.houseoffusion.com/cf_lists/unsubscribe.cfm?user=11502.10531.4 Donations & Support: http://www.houseoffusion.com/tiny.cfm/54