(Serdar Yegulalp) Some call it “lambda architecture,” others call it “serverless computing.” Whatever the name, the idea is the same: Break applications into clusters of single functions that run on demand and on automatically managed resources.
Tag: JSON / JAVA / XML
Consuming Web API Using jQuery – Part Two
(Amit Mishra) In this article you will learn about how we can consume an ASP.NET Web API using jQuery.
Convert XML to JSON In Angular JS
(Sibeesh Venu) Angular JS is a JavaScript framework for developing applications and generally expects data to be in the form of JSON, here you’ll see how to get JSON from XML.
Writing JavaScript Tests Using Jasmine Framework
(Sibeesh Passion) In this post we will see how we can write unit test cases in JavaScript. Here we are going to use a framework called Jasmine to write and test our unit test cases. Jasmine is a behavior driven development framework to test our JavaScript codes.
How To Get ASP.NET Web API to Return JSON Instead of XML in a Browser
(Travis Nelson) One of the more frequently asked questions about ASP.NET Web API is how to force it to return JSON instead of the default, XML. When viewing a GET endpoint in a browser like Google Chrome, Firefox, or Microsoft Edge, the default Content-Type displayed in the browser is generally text
Publishing ASP.NET Web API REST Service Using File System Method
(Vithal Wadje) In this article, we will learn how to publish ASP.NET Web API REST Service, using file system method.
How to Get JSON Response in Struts 1
(Aftab Ahmed Sajid) Sometimes, you have to integrate your mobile or other web applications to your previous web applications via webservices and the first thing that comes into your mind is to get a simple JSON type data, which is easy to parse and manipulate and does not put extra burden on the exi
Create Multi-Page PDF Using iTextSharp And jQuery In ASP.NET
(Narayan pandey) This article describes how we can create a multi-page pdf using iTextSharp.
JavaScript insiders predict its future features
(Paul Krill) At one time, JavaScript evolved slowly. But its pace of evolution has stepped up considerably, particularly with last year’s ECMAScript 2015 specification. In the coming years, developers could see innovations like a type system and multithreading.
The Internal Cache of Integers
(Dan Lawesson) Instances of Integer and other wrapper classes are cached by the JVM for increased performance. Read this post and learn how you can tweak the internal JVM Integer cache to better fit your own needs and potentially gain performance.