While migrating application code from VS2010 to VS2015, I got the error U1077 related to link.exe in NMAKE file and many more related errors. After alot of research on this error and migartion related stuff,Finally I …
Category: Technical
While I was accessing Json webservice from C++ using “C++ rest sdk” ,I came across the error “Incorrect Content-Type: must be textual to extract_string, JSON to extract_json.” Reason was The webservice I was calling using “GET” …
Being a C++ developer ,It was quite difficult to start working with webservices. Believe me after setting a proper development environment it was quite simple to access json webservice and extract json content through VC++. Setting …
Once you have installed XAMPP, You have your system ready necessary development programs like PHP, MySQL etc. But you cannot yet run those commands from you command line, Because your terminal does not recognise those yet. …
Apache Tomcat is used to deploy your Java Servlets and JSPs. So in your Java project you can build your WAR (short for Web ARchive) file, and just drop it in the deploy directory in Tomcat. …
This post shows the steps to configure Auto Suggest Feature on the Solr Search in Broadleaf Commerce Framework. If your Solr Configuration is embedded in the broadleaf framework instead of being an Stand Alone server. I …
Starting the solr server. You can cd to /path/to/solr-5.0.0/bin and execute the following command: ./solr -p 8983 -s /path/to/solr/home path/to/solr/home is the path where you store your index. Stopping the solr server. To stop Solr, you …
BroadLeaf DemoSite comes with a embedded Solr, which is basically to have the ease of demonstration. But Ideally you should be using a separate Solr Instance with your web application for obvious performance benefits. The link …
mysql -h host.address.for.rds.server -u rdsusername -p rdsdatabase < backupfile.sql host.address.for.rds.server = this will be what is referred to as the “end point” in your RDS description/settings page rdsusername = the master user account which you created …
The reason this occurs is because bash actually expands the asterisk to every matching file, producing a very long command line. Solution find Path/to/source-folder/ -name '*.*' -exec mv {} Path/to/destination-folder/ \; …