How to install .box extension Virtual Machine

| By Webner

To install and use .box extension machine we have to follow these steps: 1.  Installing Virtualbox: $ sudo  apt-get install virtualbox $ sudo apt-get install virtualbox-dkms 2.   Installing vagrant: Please don’t install the repository version, because this is very old and

NetSuite API | operator undefined for search

| By Webner

On filtering contacts coming from Netsuite CRM based on last modified date, gives error “operator undefined for search”: Below is the code that retrieves all the contacts from Netsuite CRM: ContactSearch custSearch = new ContactSearch(); ContactSearchBasic custSearchBasic = new ContactSearchBasic();

Salesforce | Passing data via Javascript to Apex Controller

| By Webner

Some situations occur when we become unable to pass the data from visualforce page to apex controller directly.  For example: Suppose you have three divs (todoDiv, doingDiv, doneDiv) that are showing some tasks through the List from apex controller. It

How to install and use command line tools in Heroku

| By Webner

What is Heroku Command Line: The heroku command-line tool is an interface to the Heroku Platform API and includes support for things like creating/renaming apps, running one-off dynos, taking backups, and configuring add-ons. It is generally installed in your local

Java | Base64 Encoding/Decoding with javax.xml.bind.DatatypeConverter

| By Webner

Base64 Encoding/Decoding with javax.xml.bind.DatatypeConverter in java 6 and 7. Solution: javax.xml.bind.Datatypeconverter class is the built in class inside JRE. We don’t need any third party library as we need in case of Cipher encoding/decoding method. javax.xml.bind.DatatypeConverter.printBase64Binary(byte[]) encodes a byte[] array into