Latest

  • Signing android application

    Keytool command that generates a private key: d:> keytool -genkey -v -keystore my-release-key.keystore -alias alias_name -keyalg RSA -keysize 2048 -validity 18250 Reference: 18250 is days…

  • ‘Who am I’ in Oracle

    Reports information about your current database context select ‘User: ‘|| user || ‘ on database ‘ || global_name,        ‘  (term=’||USERENV(‘TERMINAL’)||        ‘, audsid=’||USERENV(‘SESSIONID’)||’)’ as…

  • Reference torque-classpath not found

    I get the following error when I import KFS database (ant import) Build Failed: database-impex/build.xml:107: Reference torque-classpath not found. Solution: Build with Apache Ant 1.7.1. Do…

  • Creating XML Document with C#

    Here is the sample code to create XML document private XmlDocument createDoc () {         XmlDocument xmlDoc = new XmlDocument();         XmlElement root = xmlDoc.CreateElement(“Root”);             xmlDoc.AppendChild(root);…