Re: I/O Exception: Name in certificate does not match host name

2015-04-08 Thread Dave Watts
3) The dev API is (real domain names replaced with domain1 and domain2) prerelease-api.domain2.com initially this gave the error: I/O Exception: Name in certificate `*.domain1.net' does not match host name `prelease-api.domain2.com' I tried adding to the hosts: xx.xxx.xxx.xxx

Re: cfindex is taking forever

2015-04-08 Thread Byron Mann
Not in front of a computer right now, but there is an option in the CFcollection tag to list or get a collection details (something like that). Pretty sure that gives you the record or document count and maybe even size . I think that is accessible while indexing is happening. You could possibly

Re: cfindex is taking forever

2015-04-08 Thread Dave Watts
The collection was created successfully as far as I can tell. However, indexing has been running (or at least the wheel on my browser is still turning) for almost 3 hours now. I'm going to forget about it and go mow my grass and see what's happening when I finish. I'm thinking though ...

Re: cfindex is taking forever

2015-04-08 Thread Les Mizzell
I'm going to forget about it and go mow my grass and see what's happening when I finish. Well crap, somebody stole my lawnmower. This is why we can't have nice things ~| Order the Adobe Coldfusion Anthology now!

Re: cfindex is taking forever

2015-04-08 Thread Russ Michaels
you also have to take your disk iops into consideration. If you are on a VPS then this will give you much slower disk performance, especially if its not SSD, and actions like this can take a lot longer. On Wed, Apr 8, 2015 at 11:32 PM, Les Mizzell lesm...@bellsouth.net wrote: I'm going to

Re: cfindex is taking forever

2015-04-08 Thread Les Mizzell
That doesn't actually sound unreasonable, but it might be useful to come up with a document count more specific than very large. Approx 3000 documents - around 3 gb of data ... it's still running from what I can tell. ~|

cfindex is taking forever

2015-04-08 Thread Les Mizzell
I'm working on building a search interface for a document depo on a site. The document folder has files going all the way back to 2005, and includes a number of 10+ meg pdf files, a few that are over 20 megs, countless Word and Excel files, Power Point presentations I don't have access

I/O Exception: Name in certificate does not match host name

2015-04-08 Thread Ian Chapman
Hi Guys, Some time ago I posted a question about an error we were getting with MX7.1 http://www.houseoffusion.com/groups/cf-talk/message.cfm/messageid:353955 I have a similar problem but I believe the client is using a widlcard certificate so I get the error: I/O Exception: Name in

Re: I/O Exception: Name in certificate does not match host name

2015-04-08 Thread Dave Watts
I think you'll need to update the hosts file so that: prerelease-api.anotherdomain.com ...points to the right IP and then refer to: prerelease-api.anotherdomain.com ...in your code. That should make everything line up. I think this is nearly right, except that you'll need to find the IP

Re: I/O Exception: Name in certificate does not match host name

2015-04-08 Thread Byron Mann
Think what you might need is to add the SSL certificate to the java cacerts file as a trusted certificate. Then any sub-name for the domain will work. https://helpx.adobe.com/coldfusion/kb/import-certificates-certificate-stores-coldfusion.html This is a nice plugin for the CF Administrator to

Re: I/O Exception: Name in certificate does not match host name

2015-04-08 Thread John M Bliss
I think you'll need to update the hosts file so that: prerelease-api.anotherdomain.com ...points to the right IP and then refer to: prerelease-api.anotherdomain.com ...in your code. That should make everything line up. On Wed, Apr 8, 2015 at 5:23 AM, Ian Chapman ian.chap...@melodimedia.co.uk

Re: I/O Exception: Name in certificate does not match host name

2015-04-08 Thread John M Bliss
What Dave said. On Wed, Apr 8, 2015 at 10:01 AM, Dave Watts dwa...@figleaf.com wrote: I think you'll need to update the hosts file so that: prerelease-api.anotherdomain.com ...points to the right IP and then refer to: prerelease-api.anotherdomain.com ...in your code. That

RE: I/O Exception: Name in certificate does not match host name

2015-04-08 Thread Ian Chapman
I've tried it that way but no dice, let show you what I have tried: 1) Exported the cert and imported into the Truststore (this should not have been needed as it is a Thawte issued certificate which is already in the trsutstore and lack of record in the truststore causes a different IO error).