Posts

Showing posts with the label api

SolrJ Java API for Solr

SolrJ Java API for Solr Introduction SolrJ is a Java client to access solr. SolrJ offers a java interface to add, update, and query the solr index. HttpSolrServer I use Spring to load this properties file: solr.host = 127.0.0.1 solr.port = 8983 solr.core = documents # defaults to 0. > 1 not recommended solr.maxretries = 1 # 5 seconds to establish TCP solr.connectiontimeout = 5000 # socket read timeout solr.socketreadtimeout = 50000 # max connections per host solr.maxconnectionsperhost = 250 # max total connections solr.maxtotalconnections = 100 # defaults to false solr.followredirects = false # defaults to false # Server side must support gzip or deflate for this to have any effect. solr.allowcompression = true and to populate this method: public static HttpSolrServer transform ( String url , boolean allowcompression , Integer connectiontimeout , String core , boolean followredirects , Integer maxconnectionsperhost , Integer maxretries , Integer maxtot...

Solution for DOMException Failed to load because no supported source was found error in Chrome with HTML5 media API

Solution for DOMException Failed to load because no supported source was found error in Chrome with HTML5 media API After updating Chrome to release 53 this week, my web application was no longer able to use the media API to capture video with a webcam. This is the third time that I am forced to update my code due to changes in Chrome... this is getting a little annoying! The error message I was getting in my javascript console is: DOMException: Failed to load because no supported source was found Ill keep it short. The problem was the way I set the source of my media element. I was setting the source like this: navigator.getUserMedia(videoObj, function(stream) {    CaptureImageStream = stream;    CaptureImageVideo.src = stream ;    CaptureImageVideo.play(); }, errBack); It seems like this is no longer supported. I changed it to this and it now works again: navigator.getUserMedia(videoObj, function(stream) {    CaptureImageStream = stream;   ...