Re: Check an email domain

2013-10-15 Thread Claude Schnéegans
>>To replace CFX_ValidEmail, I'd look at performing an MX lookup on the domain Thanks for your feedback. This is what I have implemented in my address validation function used by my forms. >>and then if you need to do an SMTP check, you'd have to implement a short SMTP client that "pretends"

Re: cfscript queries error in base.cfc

2013-10-15 Thread Raymond Camden
I see you are on CF9. Do you have a copy of CF10? If so, try copying over the CFCs. This may be something that was fixed. On Tue, Oct 15, 2013 at 10:13 AM, Raymond Camden wrote: > Weird. Not that it matters, but try this mod: > > local.qryObj = new com.adobe.coldfusion.query(); > local.qryObj.s

RE: Check an email domain

2013-10-15 Thread Paul Vernon
Just to be clear, CFX_ValidEmail is my tag. It was written in Delphi 7 and interfaces to CF through the C++ interface. All of the CFX tags I built are 32-bit only and unlikely to ever get an upgrade. They were all written at the time of CF4 and have had bug fixes and maintenance for them since tha

Re: cfscript queries error in base.cfc

2013-10-15 Thread Raymond Camden
Weird. Not that it matters, but try this mod: local.qryObj = new com.adobe.coldfusion.query(); local.qryObj.setDatasource("PNGOasis"); then continue On Tue, Oct 15, 2013 at 10:02 AM, Kumar Shah wrote: > > You get same error without the setName aspect: > > local.qryObj = new Query(datas

Re: cfscript queries error in base.cfc

2013-10-15 Thread Kumar Shah
You get same error without the setName aspect: local.qryObj = new Query(datasource="PNGOasis"); local.qryObj.setSQL(" INSERT INTO PNGOasisExt.dbo.Test(testValue) VALUES ('test value') "); local.qryObj.execute(); Error: 11:01:30.030 - Expression Exception - in C:/ColdFusion9/CustomTags/com/adobe