Category Archive For "Error"
Can’t Load URL: The domain of this URL isn’t included in the app’s domains [Solved]
In this video I have shown step by step how you can solve the below facebook APP error, Can’t Load URL: The domain of this URL isn’t included in the app’s domains. To be able to load this URL, add all domains and subdomains of your app to the App Domains field in your app …
The archive: which is referenced by the classpath, does not exist.
In this video I have shown how you can solve the error like the one shown below, The archive: C:/Users/MIRITPC/Desktop/New folder (5)/New folder/mysql-connector-java-5.0.0-beta-bin.jar which is referenced by the classpath, does not exist. This error comes if when the jar file is dislocated from the path you added to the class path. To get the error …
The goal you specified requires a project to execute but there is no POM in this directory
On executing the mvn generate the below error will come sometimes mvn archetype:generate -DgroupId = com.chillyfacts.helloworld -DartifactId = helloworld -DarchetypeArtifactId = maven-archetype-webapp -DinteractiveMode = false [INFO] Scanning for projects… [INFO] ———————————————————————— [INFO] BUILD FAILURE [INFO] ———————————————————————— [INFO] Total time: 0.147 s [INFO] Finished at: 2017-11-26T21:08:47+03:00 [INFO] Final Memory: 7M/116M [INFO] ———————————————————————— [ERROR] The goal you …
java.sql.SQLException: Unknown initial character set index ‘224’ received from server.
In this video I have shown how to solve the below exception that comes while connection to MySql database. java.sql.SQLException: Unknown initial character set index ‘224’ received from server. Initial client character set can be forced via the ‘characterEncoding’ property. Solution This error comes due to the version of MySQL connector class. As shown in …
ERROR 1045 (28000): Access denied for user ‘ODBC’@’localhost’ (using password: NO) permanently
In this video I have shown how to over come the below error, ERROR 1045 (28000): Access denied for user ‘ODBC’@’localhost’ (using password: NO) permanently As shown in the video, Open MySQL through command Prompt and give user name and password of MySQL as command line argument. C:\cd MySQL installed path\MySQL -u{mysql username>} -p{mysql password} …
ERROR 2003 (HY000): Can’t connect to MySQL server on localhost (10061)
This is solution for MySQL Windows command line client closes after password entry. In this video I have shown how to solve the below error, ERROR 2003 (HY000): Can’t connect to MySQL server on localhost (10061) This error is because the Mysql Server of windows stops for some reason. Here is the steps to solve …
javac is not recognized as an internal or external command, operable program or batch file
In this video I have shown how to add java to environment variables. How to solve the error, javac is not recognized as an internal or external command, operable program or batch file Here is the steps, Right click on My Computer(This PC) and Click on Properties 2.1 Click on Advanced System settings. 2.2 Open …
HelloWorld.java:1: error: error while writing HelloWorld: HelloWorld.class (Access is denied)
Error while compiling java program access denied error Error while compiling using command ‘javac HelloWorld.java’ HelloWorld.java:1: error: error while writing HelloWorld: HelloWorld.class (Access is denied) public class HelloWorld{ ^ 1 error Solution, Try running your command Prompt CMD in Administrator mode and execute the command
sun.net.www.protocol.http.HttpURLConnection cannot be cast to javax.net.ssl.HttpsURLConnection
Error java.lang.ClassCastException: sun.net.www.protocol.http.HttpURLConnection cannot be cast to javax.net.ssl.HttpsURLConnection at com.chillyfacts.com.Send_HTTP_Request.call_me(Send_HTTP_Request.java:21) at com.chillyfacts.com.Send_HTTP_Request.main(Send_HTTP_Request.java:13) You might be using URL obj = new URL(url); HttpsURLConnection con = (HttpsURLConnection) obj.openConnection(); Solution,Convert it to http protocol URL obj = new URL(url); HttpURLConnection con = (HttpURLConnection) obj.openConnection(); See the Example shown in this link, https://chillyfacts.com/java-send-http-getpost-request-and-read-json-response/
JSF Error Failed to parse the expression [#{navController.go_to_index()}]
JSF Page load Error javax.faces.view.facelets.TagAttributeException: /tab.xhtml @12,84 action=”#{navController.go_to_index()}” Failed to parse the expression [#{navController.go_to_index()}] An error comes on running code as shown below. <html xmlns=”http://www.w3.org/1999/xhtml” xmlns:h=”http://xmlns.jcp.org/jsf/html”> <h:head> <title>Facelet Title</title> </h:head> <h:body> <h:form> <h:commandButton value=”Index” action=”#{navController.go_to_index()}”></h:commandButton> <h:commandButton value=”About Us” action=”#{navController.go_to_about()}”></h:commandButton> <h:commandButton value=”Contact Us” action=”#{navController.go_to_contact()}”></h:commandButton> </h:form> </h:body> </html> Solution. Remove the Braces () of the call function. …