Problem When BMC Remedy or AREasy accesses the LDAP (in this case Microsoft Active Directory), either to start the server or during configuration tasks, LDAP: error code 49 can be encountered. Symptom The error shown below is similar each time […]
Tag: Development
Known implementations of NTLM support
See below the list of known implementations of NTLM protocol: Jakarta (Apache) HTTP Client (free, Apache license) – Support for LM/NTLM (not NTLM V2) protocol on all Java platforms. Requires JRE 1.2 or higher. Not plug-compatible with the Java UrlConnection […]
Jespa – Java Active Directory Integration
Jespa is a Java software library that provides advanced integration between Microsoft Active Directory and Java applications. Jespa is a comprehensive language-level security solution for Java applications. Rather than wrapping or inserting security into applications such as websites, Jespa provides […]
How to initialize a GIT repository
I order to initialize a git repository you have to perform the following steps: $ cd /path/to/project $ git init $ git remote add origin https://xxxxx.com/repo $ git add . $ git commit -m ‘initial commit’ $ git push origin […]