Skip to main content

Posts

Showing posts from March, 2016

Google Summer of Code 2016

This year also I worked on Google Summer of code 2016. This year there were lot of changes from google side. First thing was that   Carol Smith from gsoc and new manager for gsoc is  Stephanie Taylor. After new manager, they left the old melange site and migrated to new site    summerofcode.withgoogle.com developers.google.com/open-source/gsoc/ This time I worked on proposal to create an rest api and ui for JBoss Unified KIE Server. Idea details KIE Management Application (with REST api and UI) Status:  Final Summary of idea:  Build management extension and UI for KIE Server The project is about creating management extension to KIE Server (lightweight embeddable rule, process execution server) to manage it remotely. Typical management operations are: - manage containers (deploy/undeploy, upgrade etc) - view process instances and perform administration actions on them like cancelling, migrating etc - view tasks as admin - delegate, f...

Reverse nested - ElasticSearch

https://www.elastic.co/guide/en/elasticsearch/reference/1.4/search-aggregations-bucket-reverse-nested-aggregation.html GET app_default/review/_search {   "query": {     "bool": {       "must": [         {           "match": {             "entityId": "CitizenMLondonBankside"           }         },         {           "match": {             "entityType": "Hotel"           }         },         {           "nested": {             "path": "details",             "query": {               "range": {               ...

REST VS SOAP

SOAP and REST both allow you to create your own API. API stands for Application Programming Interface. It makes it possible to transfer data from an application to other applications. An API receives requests and sends back responses through internet protocols such as HTTP, SMTP, and others.  Many popular websites provide public APIs for their users, for example, Google Maps has a  public REST API  that lets you customize Google Maps with your own content. There are also many APIs that have been created by companies for internal use. There are significant differences between SOAP and RESTful web services. The bullets below break down the features of each web service based on personal experience. REST RESTful web services are stateless. You can test this condition by restarting the server and checking if interactions survive. For most servers, RESTful web services provide a good caching infrastructure over an HTTP GET method. This can improve the performance...