Doorgaan naar hoofdcontent

JSpring 2009

Het is alweer eventjes geleden maar op 15 april was er weer de jaarlijkse NLJUG. Deze bijeenkomst van de Nederlandse Java Usergroup stond deze keer voor mij in het teken van SOA en integratie. Dus op zoek naar lezingen in deze richting ben ik naar de volgende sessies gegaan:
Het is natuurlijk altijd afwachten wat de kwaliteit van de lezingen is maar deze keer waren er 3 van de 5 (1 lezing heb ik niet eens genoemd) goed te doen.

Het modelleren van een CDM
Deze lezing gaf wat handvaten om een CDM te maken. Hierbij werd er onderscheid gemaakt tussen een hierarchisch en een relationeel datamodel. Ook werd er ingegaan hoe je semantiek kunt vastleggen m.b.v. schemas.
Conclusie: Helaas kon ze niet ingaan op het gebruik van Schematron, een andere XML standaard waarmee je semantische relaties kunt vastleggen (nog beter dan XML schema kan).

SOA its a hard knock life
Leuke lezing gegeven door Tijs Rademakers (auteur van Open Source ESBs) over de praktijk van de ESB. Zeer herkenbaar.
Conclusie: Een SOA (en ESB) is niet per definitie een oplossing natuurlijk. Hetzelfde zag je bij Object Orientatie en Component Based Development. Nu zie je ook weer bij SOA dat het een hele kluif is om dit goed te doen.

REST, het web als database
REST wordt altijd neergezet als de tegenhanger van SOAP, maar in deze lezing ging het vooral om het web als social web, waarbij alle data toegangekelijk gemaakt wordt via URIs.
Conclusie: Leuke lezing maar in het kader van SOA was ik meer geinteresseerd in het gebruik ervan. Maar hier ging de lezing niet echt over. Ik zie REST als een tool om (webservice) interfaces mee te maken evt naast SOAP interfaces. Wel iets om in de gaten te houden omdat grote spelers op de markt (Oracle, Microsoft) deze techniek aanbieden in hun producten.

Spring integration in jBPM
Dit was een zeer technische lezing over een implementatie van Spring in jBPM. Totaal niet wat ik van de lezing verwachtte. Dus niet over het gebruik van jBPM in combinatie met Spring.
Conclusie: Helaas zonde van mijn tijd geweest.

Reacties

Populaire posts van deze blog

Microservices mindmap

"The tree" - See also   my photo page When you are fairly new within the Microservices land, there are a lot of terms fired at you. So also for my own understanding i have made a mindmap. I think it has a good status now, so that i can share it with you. As always feedback is very welcome ! You can download the mindmap here .

OSB 10gR3 and SWA and MTOM

This blog is about using soap with attachments and the use of MTOM within the OSB (10gR3). A service is created that accepts a soap with attachment (DocumentService) and translates it to a service that accepts a binary element. MTOM is used for performance reasons for the second. Some notes: * For the use of attachments you need RPC-style document instead of the usual document-style. This due to the fact that the document-style limits a message to a single . * A service can not have both SWA and MTOM within OSB. First a WSDL is setup for the DocumentService: The $attachments variable holds the attachments and the body holds the attachment data. Also other data is stored within the attachment element (see h...

Cloud to Cloud Application Integration

A lot of applications have integration possibilities, so do cloud applications. The question I got from a customer is whether to have a point-to-point integration with Cloud applications or to go through their ESB solution. This blog describes some considerations. Context The customer has a HRM application in which job vacancies are managed. Furthermore that system also handles the full applicant process flow. They also have another cloud application that handles the job vacancies. This application posts the jobs to social sites and other channels to promote the vacancies. Furthermore this application has some intelligence for job seekers to advice some new vacancies based on previous visits or profiles. The job vacancies need to be sent to the Vacancies application and applicant information needs to be sent to the HRM application, when a job seeker actually applies for a job. Furthermore status information about the job application is als...