Bankera, a interesting crypto

Bankera has recently accelerated the search ... already has tokens cost € 0.018 each. And until February will increase to 0.024 €. Anyone who wants to invest in this ICO has to think about not losing the train, because the cheaper tokens have already been. They intend to have a banking service (payments, loans, deposits, investments) but in the world of crypto-coins. Team that already has an exchange...
Read More... Bankera, a interesting crypto

Alternative Exchange - Binance

Hi there, like i said in the previous post i will now talk about Binance. Binance is a exchange where you can buy a lot of alternative coins. To start, you can register at https://www.binance.com/?ref=22825535 If you need help you can view this youtube video, they explain how to create and verify the account (the verification is also a fast process) https://www.youtube.com/watch?v=okI6ZnNUOoU After...
Read More... Alternative Exchange - Binance

Start buying some bitcoins

Everyone is talking about bitcoins, so i investigate and create a account in Coinbase to buy some bitcoins, litecoins and ethereum. After i did some research one of the best exchange to start buying bitcoins or litecoins is the Coinbase. You can register at coinbase from here  https://www.coinbase.com/join/5a5dcc6829393903cda3bfbc If you register via this link when you buy 100€ of...
Read More... Start buying some bitcoins

Create a Web Service Client with JAX-WS

This example shows how to create a web service client using JAX-WS reference implementation and its tool 'wsimport'. JAX-WS RI can be downloaded from Sun (http://java.sun.com). To create the web service client we need an existing web service, so we will use the one created in the example 'Create a simple Web Service': Click here to go to the 'Create a simple Web Service' example So we assume the...
Read More... Create a Web Service Client with JAX-WS

Create a simple Web Service

This code example shows how to create a simple web service. We use the annotation @WebService to declare the class as a such. The annotation @WebMethod is provided at method level to declare it as an operation for the web service. The operation getTime of the JavadbWebService simply returns the current time. package com.javadb.ws.example; import java.text.SimpleDateFormat; import java.util.Calendar; import...
Read More... Create a simple Web Service

Using a Message Handler to alter the SOAP Header in a Web Service Client

Sometimes you need to insert information in the soap header when calling a web service. Perhaps the service needs authentication information that needs to be set. This example shows how to set the security information for a Web Service that is deployed on a Weblogic server using JAX-WS and SAAJ. First we need to create the actual handler which implements the SOAPHandler interface. Next we need...
Read More... Using a Message Handler to alter the SOAP Header in a Web Service Client

Configure FTP ( Firewall ) - Windows Server 2008 R2

In the first place i tried this option : Windows Firewall and non-secure FTP traffic Windows firewall can be configured from command line using netsh command. 2 simple steps are required to setup Windows Firewall to allow non-secure FTP traffic 1) Open port 21 on the firewall netsh advfirewall firewall add rule name="FTP (no SSL)" action=allow protocol=TCP dir=in localport=21 2) Activate firewall...
Read More... Configure FTP ( Firewall ) - Windows Server 2008 R2