Skip to main content

Posts

Showing posts from May, 2014

Checking signature with Gpg4win - Kleopatra - Error Set up at least one ceterificate server

Error: Gpg4win - Kleopatra - Error Set up at least one ceterificate server FIX: This document shows details about PGP Certificate servers and how to set up one.    http://gpg4win.org/doc/en/gpg4win-compendium_22.html At the fist time you open the Kleopatra - Settings first row in the below window may be empty. Just 'CLICK THE NEW BUTTON' - it will automatically fill up this default certificate server  ( hkp://keys.gnupg.net   ) for you. The above document doesn't address this correctly. Great reference: http://www.gpg4win.org/ http://dev.mysql.com/doc/refman/5.6/en/checking-gpg-signature-windows.html

WHY THE JAVA_HOME OFTEN AN ISSUE?

ERROR : While  installing Elastic Search / Tomcat / eclipse or any java apps you might get this error. 'JAVA_HOME variable to be set...' 'No Java virtual machine found ....' 'A java Runtime Environment (JRE) or Java Development kit (JDK) must be available in order to run 'Eclipse. No Java virtual machine was found after searching the following locations:C:\your program\jre\bin\' 'javaw.exe in your current PATH' - it occurs even if the JAVA_HOME - system variable is already set in the Environment variables. CAUSE : The applications using batch files to execute the jar files before even detecting the JAVA_HOME from the code, are looking for a javaw.exe to run the java code in the local path or in the global path (which is set in the system environment variables).  FIX : Add System Variables in Environment Variables in WIN 8 / WIN 7 do the following, Add   %JAVA_HOME%\bin    - to the PATH  - System Variable in the Environment Variable...

Hr (horizontal line) style in FireFox vs IE vs Chrome - Simplest Simple feature doesn't work same - Hope you can save some time.

ISSUE: I wasted few minutes figuring out World's simplest simple issue 'drawing a single line' with 1pixel width and a color in html that looks same in at least 3 browsers ( Firefox, IE, Chrome ) I just want to do a simple  code like, < hr style = " color : #ff6a00 ; " >  - Firefox: Shows the line with given color but with a border. (Thats good. 4 Stars for Firefox team) - IE: Shows line with default 'gray' with default width - Chrome: Shows line with default 'gray' with default width   (depending on the browser you are looking - the above line will show as mentioned above) < hr style = " color : #ff6a00 ; height : 1 px ; border : 0 ; width : 100 % ; " >   All 3 Browsers: No Show - No line Even if you try increasing border and height,  < hr style = " color : #ff6a00 ; height : 1 0px ; border : 3px; width : 100 % ; " > it will not show the line. FIX:  You have to use the backgro...

Open ID Connect vs OpenID 2.0 : Witness the difference

OpenID Connect request is just 2 lines! OpenID 2.0 request is like 5-10 lines of code Simple Identity Layer on top of OAuth 2.0 REST and JSON instead of SOAP and XML No signatures (for lower levels of assurance Protocol Complexity, e.g. Message Format Authentication request in OpenID Connect  https://accounts.login.idm.telekom.com/oauth2/auth?response_type=code&client_id=MEDIAST ORE&scope=openid+profile+phone&redirect_uri=https%3A%2F%2Fsamtestt1.toon.sul.t-online.d e%2Fmedia-store%2Flogin%2F%3Fmode%3Doic Authentication request in OpenID 2.0  https://accounts.login.idm.telekom.com/idmip?openid.ns=http%3A%2F%2Fspecs.openid.net%2F auth%2F2.0&openid.claimed_id=http%3A%2F%2Fspecs.openid.net%2Fauth%2F2.0%2Fidentifier_se lect&openid.identity=http%3A%2F%2Fspecs.openid.net%2Fauth%2F2.0%2Fidentifier_select&ope nid.return_to=https%3A%2F%2Ffavoriten.t-online.de%2Fdashboard%2Fverification_openid.htm l%3FproviderId%3Dcdb-de&openid.realm=https%3A%2...