(Andrey Redko) Server-Sent Events (or just SSE) is quite useful protocol which allows the servers to push data to the clients over HTTP. This is something our web browsers support for ages but, surprisingly, neglected by JAX-RS specification for quite a long time.
Tag: JSON / JAVA / XML
Vue.Js with ASP.NET Core MVC
(HR Rony) This article mainly focusses on the basic configuration and setup Vue.js with Dot NET Core. There are basic discussions of Web-pack, Grunt or Gulp, Type-Script, Babel, Axios and Web-pack Task Runner. There are short descriptions of Package Installer like NPM, Bower and Yarn.
Java 10 – The Story So Far
(Ben Evans) It has been exactly two months since the release of Java 9, so as per the new schedule, the next release of Java is now only four months away. The complete scope for Java 10 is still being confirmed and locked down.
Retrieve User Profile Properties Using SPFx And PnP JS In SharePoint Online
(Priyaranjan K S) SharePoint Framework is the new development model in which a lot of work has been going on since it went for General Availability on Feb 23, 2017. It is a page and web part model that provides full support for client-side SharePoint development, easy integration with SharePoint dat
Dockerized Java EE 8 Apps With Glassfish 5.0
(Sebastian Daschner) There’s a shiny new base GlassFish Docker image specifically made for Java EE 8 app development. Take a look at what it offers and how you can put it to use.
Developing a Background Task in Less than 5 Minutes using JavaScript and Web Worker API
(O.Nasri) This article shows you how you implement a background task in JavaScript using Web Worker API
Convert XML Data To JSON And Return It From Web API
(Bipin Joshi) Recently I stumbled upon a situation where a large number of XML documents needed to be returned from ASP.NET Web API. This sounds like a straightforward task but there was a small twist to the story. The XML documents existed as physical disk files.
Java 9: Welcome to Module world
(Ramesh Kotha) Java 9 has been released on September 21 officially, Eclipse is supporting Java 9 from Eclipse Oxygen.1a (4.7.1a), Lets jump into module world..!!!
Obtaining a Thread Dump of Your Java App in Linux
(M S Sridhar) Thread dump is a mechanism to view the various threads active in your application and also to know the current methods that they are active on. The result may not be the same every time you take a thread dump as the state can be different at different intervals.
Accept / Reject File Upload Depending Upon XML Schema Validation
(Bipin Joshi) Uploading files from the client machine onto the server is a fairly common task in web applications. Recently I came across such an application where the end users are required to upload XML files from their machine onto the server.