(Nilesh Jadav) In this tutorial we will see a Chat Application in Java, which is another module of remote procedure call, we will deal with sockets and its parameter to work out with our requirement.
Tag: JSON / JAVA / XML
Implications of the Presence of StringBuffer
(Dustin Marx) When I am working on legacy code and run across instances of StringBuffer, I typically replace them with instances of StringBuilder.
JUST – JSON Under Simple Transformation
(JUST_Neeraj) The article describes how to use the JUST.NET library to transform JSON documents.
From Microservices to Distributed Systems – Survival guide for Java Developers
(Markus Eisele) It kind of feel like the hype for Microservices is slowly coming down to earth and our industry is starting to realise, that a system according to the architectural paradigms behind Microservices can’t easily be created by just exposing some HTTP interfaces on top of existing compone
SharePoint JSOM Operations Using SPFx Solution
(Nakkeeran Natarajan) Here, let us look at working with SharePoint JavaScript Object Model (JSOM) operations on SharePoint framework solutions (SPFx).
Cinchoo – Using JSON format configuration values
This article shows how to consume JSON data as configuration source using Cinchoo.
Sequence Of JavaScript Function Loaded After The UI Has Been Loaded In SharePoint 2013
(Sagar Pardeshi) Hi, I am a SharePoint front-end developer. As such, it is important to understand the client life cycle in terms of DOM, Browser-engine, etc. We will be talking about the Onload process in this post. There are different techniques used to Provide our custom JavaScript code loaded be
Converting JSON Results in Camel Case
(Srinath M S) Use the CamelCasePropertyNamesContractResolver class of the Newtonsoft.Json assembly to return the JSON serialized string in camel case.
Calling JavaScript functions from TSQL
(Durgaprasad Gorti) Why would you ever want to call a JavaScript function from TSQL? It does sound crazy, but there may be a case where you might want to do this. Even if it not for real production use, it might be useful for some test scenarios. And it is very cool and you get to brag about it.
Java 101: Regular expressions in Java, Part 1
(Jeff Friesen) Java’s character and assorted string classes offer low-level support for pattern matching, but that support typically leads to complex code. For simpler and more efficient coding, Java offers the Regex API.