package com.informatika.ojek.webservice;

import java.net.MalformedURLException;
import java.net.URL;
import javax.xml.namespace.QName;
import javax.xml.ws.Service;

public class test {
    public static void main(String[] args) {
        try {
            String url = "http://localhost:9999/ws/history?wsdl";
            String namespace = "http://webservice.ojek.informatika.com/";
            QName serviceQN = new QName(namespace, "HistoryService");
            Service service = Service.create(new URL(url), serviceQN);

            String portName = "HistoryPort";
            QName portQN = new QName(namespace, portName);

            IHistory sample = service.getPort(portQN, IHistory.class);

//            Transaction[] hasil = sample.getPenumpangHistory("blabla");
//            if (hasil != null) {
//                System.out.println(hasil[0]);
//                System.out.println(hasil[1]);
//            }

            if (sample.hideHistory("bbbbb", 1)) {
                System.out.println("Sukses Hide");
            } else {
                System.out.println("Gagal");
            }

        } catch (MalformedURLException e) {
            e.printStackTrace();
        }

    }
}