Category: Web Development
Java | Maven | How to pack Maven dependencies while creating jar file
We were creating a Maven project having packaging type jar. We had main class from where we were starting project execution. It was working fine through Eclipse but when we created jar file by compiling with Maven, we were not
Salesforce | Fatal error: Uncaught SoapFault exception: [sf:REQUEST_LIMIT_EXCEEDED] REQUEST_LIMIT_EXCEEDED: TotalRequests Limit exceeded
Problem: “Fatal error: Uncaught SoapFault exception : [sf:REQUEST_LIMIT_EXCEEDED] REQUEST_LIMIT_EXCEEDED: TotalRequests Limit exceeded.” In our case, this exception was raised while upserting records in Salesforce using PHPSFDC toolkit. Solution: When our code exceeds API limit within Salesforce, it throws above exception. This
Eclipse | Generate client for RPC based web services
1. Select your project where you want to generate client code for your wsdl file: 2. Select File -> new -> other option from drop down menu as shown below: Select web service client option from the drop down and
Heroku | What to do when dyno worker crashes
Problem: What to do when your dyno worker crashes (Heroku)? Description: We were working on an application made on Heroku. Once our site was not opening and it was throwing “Application Error”. When we checked logs we saw following error
Salesforce | Passing value of the variables from Visualforce page to the controller
Problem : Accessing value of the variables on Visualforce page within the Controller. Solution: We can access the value of the variables in the Controller of the Visualforce page by declaring the variables in Controller as public and get, set
How to add slow blur effect using jquery and css
Suppose you have to blur this image: To show it like this and this blur effect should be gradual: This is one solution to achieve this: $(document).ready(function() { animationTime(); }); function slowblur(number) { $(‘#firstimage’).css({‘filter’:’blur(‘+number+’px)’,’-webkit-filter’: ‘blur(‘+number+’px)’,’-moz-filter’: ‘blur(‘+number+’px)’, ‘-o-filter’: ‘blur(‘+number+’px)’,’-ms-filter’: ‘blur(‘+number+’px)’}); }
Favicon not showing up in Google Chrome
We faced a problem in Chrome when all other browsers were properly showing favicon but not the chrome browser. The reason was our HTML was not proper. Above tag we had some extra HTML code written which should be inside
Heroku | How to find Configuration details for Heroku app
In Heroku, every app has its own configuration variables like GIT URL, database host, database URL, database username and Password etc. We can find this information by following the steps below: 1. Login to Heroku dashboard. 2. Click the app name to
HTML| Anchor Tag | How to link to a specific section of the page
In HTML, if one needs to create a link that redirects to a specific section of that page, following steps must be followed: 1.Give unique id to the section of HTML page where you want the link to be redirected