Skip to main content

Posts

Register MySQL On Wildfly 8(JBOSS SERVER 8)

This is quick trick to register MySQL on Wildfly 8.  Goto  WILDFLY_HOME/modules/system/layers/base/com and create another directories mysql/main Inside the main directory, paste the myql.jar<version>  file inside  and create a "module.xml" file with the follow lines without the code     <?xml version="1.0" encoding="UTF-8"?>         <module xmlns="urn:jboss:module:1.1" name="com.mysql">             <resources>                 <resource-root path="mysql-connector-java-5.1.30-bin.jar"/>             </resources>             <dependencies>                 <module name="javax.api"/>                 <module name="javax.transaction.api"/>           ...

iPhone activation required No Sim Card Installed iPhone 4 after IOS 7 Upgrade Problem Fix

To Bypass the activation required screen after you upgrade to IOS 7.  Note that this process worked for me because I have a SIM card. 1. Power on the iPhone, 2. While the phone is booting and you have the apple logo display,  3. Insert your SIM card. 4. Bypass the wireless connection. 5. Viola. Done. This process works for me. I hope its works for you too. NB: Another way around is to keep clicking try again continuously. 

JSF View Parameter And Java EE 7 XML namespaces

After spending several hours trying to figure out why my old sample codes won't run on Glassfish 4.0 and Java EE 7, I found out that the problem was actually with the new XML schemas for Java. You can find more information about the new XML schemas for Java EE deployment descriptors on Oracle's websit e. You can also find more information about GlassFish Server Documentation on GitHub Pages . I figured out that the problem was actually with the XML Schemas below which I had to update back to the old version. xmlns="http://www.w3.org/1999/xhtml" xmlns:h="http://xmlns.jcp.org/jsf/html"  xmlns:ui="http://xmlns.jcp.org/jsf/facelets"  xmlns:f="http://xmlns.jcp.org/jsf/core" Working Version xmlns="http://www.w3.org/1999/xhtml"  xmlns:h="http://java.sun.com/jsf/html" xmlns:p="http://primefaces.org/ui"  xmlns:f="http://java.sun.com/jsf/core" I receive a response from this  site , which answered why t...

Work Around for HP Pavilion DV7 Volume and Wireless Touchpad Not Working

Got an HP Pavilion DV7 which wireless and volume touchpad suddenly stop responding ? The trick below works for me and it is quite simple. Unplug the Laptop from power. Unplug any attached device that is attached to the Laptop Remove the battery. Power on the laptop with the battery removed and no power source attached. Hold the power button down for at least 30 second. Place the battery back to the laptop. Power back the laptop. Its claimed that the problem is caused by   static buildup.  I hope this works for other similar devices with touch-pad problem This trick works perfectly for me as it saves my day. Special credit to this forum .  

Netbeans 7.3 And MySQL Java Connector Versioning Error

Error code 1064, SQL state 42000: You have an error in your SQL syntax; check the manual that corresponds to your MySQL server version for the right syntax to use near 'OPTION SQL_SELECT_LIMIT=DEFAULT' at line 1 While I was developing J2EE application (using Netbeans 7.3 as my IDE of choice and MYSQL as DB) some days ago, I stumble on the error above. At first, I thought is was my application querying problem until I made  a little search on the internet. I came across this link which comment helped in solving the issue.  The solution is: To download the latest version of MySQL Java Connector, Copy the jar file into "C:\Program Files\NetBeans 7.3\ide\modules\ext" directory Open Netbeans Services Panel - Open the Database Node - Open the Drivers Node - Right -Click On the MYSQL(Connector/J Driver) and select Customize On the customize panel, click add and point to the jar file you copied to  "C:\Program Files\NetBeans 7.3\ide\modules\...

AutoCAD® freezes During Startup.

If you are using AutoCAD-based products on isolated networks, you might experience a problem where the program freezes after it starts up. This usually happens after the AutoCAD screen appears, but before any tool palettes show up. To fix this problem, you have to change your Internet Options settings. Note: This procedure might be risky if your computer is connected to the Internet. These are the steps you need to follow: Go to the Start menu (Windows) > Settings > Control Panel. In Control Panel, find and open Internet Options. In the Internet Properties window, go to the Advanced tab. On the Advanced tab, look for the Security section under Settings. In the Security section, uncheck the Publisher’s Certificate Revocation box. Click Apply, and then click OK. Restart your computer, and then launch the program. I hope this works for you. If it does, please share the solution with others. Further Reading http://usa.autodesk.com/adsk/servlet/ps/dl/item?siteID=123112&id=4366058...