Today i want to share about Hibernate Mapping Entity with multiple primary key. For some reason we need to add multiple key in our database table, for example: you have table S_PARAMETER that will save all updatable parameter in your system and for some reason(easy read, clean code) you nedd param_group, and param_id field to…
Different Between TransactionParticipant and AbortParticipant
Today, i want to share about the different between TransactionParticipant and AbortParticipant interface on jPOS iso 8583 framework. you need to implement one of these interface when you are using Transaction Manager on your jPOS project. you can find my post about how to implement Transaction Manager here. back to the main topic in this…
Implementation JPos Transaction Manager
Today i want to share about Implementation JPos Transaction Manager. In this post, i will implement the integration with ISORequestListener, Transaction Manager Group Selector, Transaction Participant, and Abort Participant. From JPos Programmer guide book, the explanation of TransactionManager is: The TransactionManager implementation takes care of ‘driving’ the transaction by calling all of the participants’ prepare…
jPOS Client Receive Response to Specific Port
Today, i want to share about jPOS Client Receive Response to Specific Port. In my current project integration between SOA and DSP, the basic requirment is, DSP will send request message(not define the request port) to SOA (as Server, SOA listen to spesific port) and DSP will receive the SOA response to the specific port(may…
Create Dynamic Navigation Menu using Javascript
Today, i’ve learn how to Create Dynamic Navigation Menu using Javascript. In this post, i will focus on client side implementation therefore i use json for data format. My main idea is: i will save the menu data on database and when the user do log in, i will retrieve the menu data (based on…
Hide and Show HTML Element based on Select Option Using JQuery
Today, i want to share about Hide and Show HTML Element based on Select Option Using JQuery for some purpose, we want to show or hide an HTML element (eg: button, input text, etc) based on select option. we can achieve that requirement using JQury framework you can get here. We will use hide(), show(),…